diff --git a/README.md b/README.md index 7b95401dc46245ac339fc25059d4a56d90b4cde5..ad13ef5ba6f358def2a2c722119269b3b5df40bf 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,198 @@ ---- -license: apache-2.0 ---- +# ZENO Benchmark Datasets + +This directory contains diverse, real-world JSON datasets collected for benchmarking ZENO's compression performance against JSON and other formats. + +## Collection Summary + +**Last Updated:** November 5, 2025 +**Total Datasets:** 65 +**Total Size:** 4.17 MB (4,373,804 bytes) + +## Dataset Categories + +### 1. GitHub API (30 datasets, 1.24 MB) + +Real GitHub API responses covering various endpoint types: + +**Repository Information (10 datasets):** +- Major OSS projects: Kubernetes, React, VS Code, TensorFlow, Rust, Python, Go, Node.js, Django, Vue.js +- Contains: stars, forks, issues, language stats, license info, etc. +- Size range: 6-7 KB per file + +**User Profiles (5 datasets):** +- Famous developers: Linus Torvalds, Guido van Rossum, DHH, Kyle Simpson, TJ Holowaychuk +- Contains: follower counts, repos, bio, location, etc. +- Size range: 1-1.5 KB per file + +**Issues (3 datasets):** +- Open issues from Rust, VS Code, React +- 10 issues per dataset with full metadata +- Size range: 54-70 KB per file + +**Pull Requests (2 datasets):** +- Active PRs from Kubernetes, TensorFlow +- Includes commits, reviews, labels, assignees +- Size range: 198-283 KB per file + +**Contributors (2 datasets):** +- Top 20 contributors from React, Node.js +- Contains: contributions count, commit stats +- Size: ~21 KB per file + +**Commits (2 datasets):** +- Recent 15 commits from Rust, Python +- Full commit metadata with author, message, stats +- Size: 77-78 KB per file + +**Releases (2 datasets):** +- Release history from Rust, Node.js +- Includes: version tags, release notes, assets +- Size: 107-217 KB per file + +**Organizations (4 datasets):** +- Microsoft, Google, Facebook, Apache +- Org metadata: repos, members, location +- Size: 1-1.3 KB per file + +### 2. JSONPlaceholder (10 datasets, 235 KB) + +Fake REST API data for testing: + +- **posts** (27 KB): 100 blog posts +- **comments** (157 KB): 500 comments +- **albums** (9 KB): 100 photo albums +- **photos** (10 KB): 50 photo metadata +- **todos** (24 KB): 200 todo items +- **users** (5 KB): 10 user profiles +- **user_posts** (2 KB): Posts by specific user +- **user_albums** (1 KB): Albums by specific user +- **post_comments** (1 KB): Comments on specific post +- **posts_single** (292 bytes): Single post detail + +### 3. Public APIs (10 datasets, 2.34 MB) + +Data from various public REST APIs: + +**Geographic Data:** +- **countries_usa** (21 KB): USA country information +- **countries_region_europe** (263 KB): All European countries +- **countries_language_spanish** (122 KB): Spanish-speaking countries + +**Cryptocurrency Data:** +- **crypto_coins_list** (1.6 MB): Complete cryptocurrency list (15,000+ coins) +- **crypto_bitcoin** (140 KB): Bitcoin detailed data +- **crypto_ethereum** (140 KB): Ethereum detailed data +- **crypto_markets** (47 KB): Top 50 crypto markets + +**Other APIs:** +- **dog_breeds** (4 KB): Dog breed catalog +- **breweries** (25 KB): 50 brewery records +- **nested_posts_with_comments** (10 KB): Posts with embedded comments + +### 4. Synthetic Datasets (15 datasets, 463 KB) + +Carefully crafted datasets representing common real-world patterns: + +**E-commerce & Business:** +- **ecommerce_catalog** (31 KB): 100 products with varied attributes +- **user_profiles** (34 KB): 80 user accounts with preferences +- **npm_packages** (40 KB): 60 package.json configurations + +**Logging & Events:** +- **server_logs** (48 KB): 200 structured log entries +- **event_stream** (41 KB): 150 event records +- **api_responses** (51 KB): 50 API response samples + +**Time-series & Sensor Data:** +- **sensor_timeseries** (32 KB): 150 sensor readings +- **geographic_data** (12 KB): 60 city records with coordinates + +**Compression Test Cases:** +- **numeric_sequences** (1.9 KB): Linear, Fibonacci, powers, primes (delta compression test) +- **repeated_values** (11 KB): High repetition data (sparse mode test) +- **wide_table** (21 KB): 50 records × 20 fields (column mode test) +- **database_records_sparse** (13 KB): Records with sparse fields + +**Complex Structures:** +- **nested_structures** (22 KB): Deeply nested objects +- **mixed_types** (23 KB): All JSON types mixed +- **large_text_fields** (86 KB): Articles with large text content + +## Size Distribution + +| Size Range | Count | Example | +|------------|-------|---------| +| < 10 KB | 28 | User profiles, organizations, small configs | +| 10-50 KB | 24 | Repository info, logs, synthetic data | +| 50-100 KB | 7 | Issues, commits, large text fields | +| 100-300 KB | 7 | Releases, crypto data, country lists | +| > 300 KB | 1 | Crypto coins list (1.6 MB) | + +## Diversity Characteristics + +The dataset collection includes: + +- **Multiple domains:** Development tools, social media, e-commerce, finance, geography +- **Various structures:** Flat objects, nested hierarchies, arrays, mixed types +- **Different patterns:** + - Repetitive data (sparse mode candidates) + - Numeric sequences (delta encoding candidates) + - Wide tables (column mode candidates) + - String-heavy content (dictionary candidates) +- **Size variety:** 292 bytes to 1.6 MB +- **Real-world APIs:** GitHub, CoinGecko, REST Countries, etc. +- **Representative synthetic data:** Common use cases like logs, configs, time-series + +## File Structure + +Each dataset consists of two files: + +``` +source/ + dataset_name.json # The actual JSON data + dataset_name.metadata.json # Collection metadata +``` + +### Metadata Format + +```json +{ + "id": "source_dataset_name", + "source": "github|jsonplaceholder|public_apis|synthetic", + "collected_date": "2025-11-05T22:51:39.293685", + "size_bytes": 12345, + "description": "Brief description of the dataset", + "url": "Original URL if applicable" +} +``` + +## Usage in Benchmarks + +These datasets are used to: + +1. **Measure compression ratios:** ZENO vs JSON vs MessagePack vs Protobuf +2. **Test encoding modes:** Verify column/row/sparse/delta selection +3. **Benchmark performance:** Encoding/decoding speed across dataset types +4. **Validate correctness:** Round-trip testing (JSON → ZENO → JSON) +5. **Token efficiency:** Estimate LLM token reduction + +## Expanding the Dataset + +To scale to 1000+ datasets: + +1. **GitHub API:** Expand to more repos, longer histories +2. **Package Registries:** npm, PyPI, crates.io package metadata +3. **Social Media:** Twitter/X, Reddit public APIs +4. **Open Data:** Government datasets, scientific data +5. **Logs:** Real production logs (anonymized) +6. **Configurations:** Real-world config files from OSS projects +7. **Database Dumps:** Sample SQL→JSON exports + +## License & Attribution + +- **GitHub API data:** Public API, subject to GitHub's terms +- **JSONPlaceholder:** Fake data, free to use +- **Public APIs:** Various licenses, check individual sources +- **Synthetic data:** Generated for this project, no restrictions + +All data is for benchmarking and research purposes only \ No newline at end of file diff --git a/collection_summary.json b/collection_summary.json new file mode 100644 index 0000000000000000000000000000000000000000..984c622b6ecd59dedb26e8c3b42657fed168dc46 --- /dev/null +++ b/collection_summary.json @@ -0,0 +1,510 @@ +{ + "collected_date": "2025-11-05T22:51:39.293685", + "total_datasets": 65, + "total_size_bytes": 4373804, + "by_source": { + "github": { + "count": 30, + "size": 1266295, + "files": [ + "repos_kubernetes", + "repos_react", + "repos_vscode", + "repos_tensorflow", + "repos_rust", + "repos_python", + "repos_golang", + "repos_nodejs", + "repos_django", + "repos_vue", + "user_torvalds", + "user_gvanrossum", + "user_dhh", + "user_getify", + "user_tj", + "issues_rust", + "issues_vscode", + "issues_react", + "pulls_kubernetes", + "pulls_tensorflow", + "contributors_react", + "contributors_nodejs", + "commits_rust", + "commits_python", + "releases_rust", + "releases_nodejs", + "org_microsoft", + "org_google", + "org_facebook", + "org_apache" + ] + }, + "jsonplaceholder": { + "count": 10, + "size": 240788, + "files": [ + "posts", + "posts_single", + "comments", + "albums", + "photos", + "todos", + "users", + "user_posts", + "user_albums", + "post_comments" + ] + }, + "public_apis": { + "count": 10, + "size": 2392506, + "files": [ + "countries_usa", + "countries_region_europe", + "crypto_coins_list", + "crypto_bitcoin", + "crypto_ethereum", + "crypto_markets", + "nested_posts_with_comments", + "dog_breeds", + "breweries", + "countries_language_spanish" + ] + }, + "synthetic": { + "count": 15, + "size": 474215, + "files": [ + "ecommerce_catalog", + "user_profiles", + "server_logs", + "sensor_timeseries", + "npm_packages", + "api_responses", + "database_records_sparse", + "numeric_sequences", + "repeated_values", + "wide_table", + "nested_structures", + "mixed_types", + "geographic_data", + "event_stream", + "large_text_fields" + ] + } + }, + "collected": [ + { + "source": "github", + "name": "repos_kubernetes", + "size": 7080, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_kubernetes.json" + }, + { + "source": "github", + "name": "repos_react", + "size": 6708, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_react.json" + }, + { + "source": "github", + "name": "repos_vscode", + "size": 7035, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_vscode.json" + }, + { + "source": "github", + "name": "repos_tensorflow", + "size": 7266, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_tensorflow.json" + }, + { + "source": "github", + "name": "repos_rust", + "size": 6684, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_rust.json" + }, + { + "source": "github", + "name": "repos_python", + "size": 6537, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_python.json" + }, + { + "source": "github", + "name": "repos_golang", + "size": 6547, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_golang.json" + }, + { + "source": "github", + "name": "repos_nodejs", + "size": 6542, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_nodejs.json" + }, + { + "source": "github", + "name": "repos_django", + "size": 6714, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_django.json" + }, + { + "source": "github", + "name": "repos_vue", + "size": 6429, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/repos_vue.json" + }, + { + "source": "github", + "name": "user_torvalds", + "size": 1356, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/user_torvalds.json" + }, + { + "source": "github", + "name": "user_gvanrossum", + "size": 1420, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/user_gvanrossum.json" + }, + { + "source": "github", + "name": "user_dhh", + "size": 1294, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/user_dhh.json" + }, + { + "source": "github", + "name": "user_getify", + "size": 1435, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/user_getify.json" + }, + { + "source": "github", + "name": "user_tj", + "size": 1246, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/user_tj.json" + }, + { + "source": "github", + "name": "issues_rust", + "size": 57355, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/issues_rust.json" + }, + { + "source": "github", + "name": "issues_vscode", + "size": 70166, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/issues_vscode.json" + }, + { + "source": "github", + "name": "issues_react", + "size": 54493, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/issues_react.json" + }, + { + "source": "github", + "name": "pulls_kubernetes", + "size": 283446, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/pulls_kubernetes.json" + }, + { + "source": "github", + "name": "pulls_tensorflow", + "size": 198542, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/pulls_tensorflow.json" + }, + { + "source": "github", + "name": "contributors_react", + "size": 21354, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/contributors_react.json" + }, + { + "source": "github", + "name": "contributors_nodejs", + "size": 21515, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/contributors_nodejs.json" + }, + { + "source": "github", + "name": "commits_rust", + "size": 77142, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/commits_rust.json" + }, + { + "source": "github", + "name": "commits_python", + "size": 78004, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/commits_python.json" + }, + { + "source": "github", + "name": "releases_rust", + "size": 107359, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/releases_rust.json" + }, + { + "source": "github", + "name": "releases_nodejs", + "size": 217781, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/releases_nodejs.json" + }, + { + "source": "github", + "name": "org_microsoft", + "size": 1250, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/org_microsoft.json" + }, + { + "source": "github", + "name": "org_google", + "size": 1195, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/org_google.json" + }, + { + "source": "github", + "name": "org_facebook", + "size": 1265, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/org_facebook.json" + }, + { + "source": "github", + "name": "org_apache", + "size": 1135, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/github/org_apache.json" + }, + { + "source": "jsonplaceholder", + "name": "posts", + "size": 27520, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/posts.json" + }, + { + "source": "jsonplaceholder", + "name": "posts_single", + "size": 292, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/posts_single.json" + }, + { + "source": "jsonplaceholder", + "name": "comments", + "size": 157745, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/comments.json" + }, + { + "source": "jsonplaceholder", + "name": "albums", + "size": 9333, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/albums.json" + }, + { + "source": "jsonplaceholder", + "name": "photos", + "size": 10730, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/photos.json" + }, + { + "source": "jsonplaceholder", + "name": "todos", + "size": 24311, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/todos.json" + }, + { + "source": "jsonplaceholder", + "name": "users", + "size": 5645, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/users.json" + }, + { + "source": "jsonplaceholder", + "name": "user_posts", + "size": 2726, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/user_posts.json" + }, + { + "source": "jsonplaceholder", + "name": "user_albums", + "size": 976, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/user_albums.json" + }, + { + "source": "jsonplaceholder", + "name": "post_comments", + "size": 1510, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/jsonplaceholder/post_comments.json" + }, + { + "source": "public_apis", + "name": "countries_usa", + "size": 21712, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/countries_usa.json" + }, + { + "source": "public_apis", + "name": "countries_region_europe", + "size": 263474, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/countries_region_europe.json" + }, + { + "source": "public_apis", + "name": "crypto_coins_list", + "size": 1617013, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/crypto_coins_list.json" + }, + { + "source": "public_apis", + "name": "crypto_bitcoin", + "size": 140474, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/crypto_bitcoin.json" + }, + { + "source": "public_apis", + "name": "crypto_ethereum", + "size": 140100, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/crypto_ethereum.json" + }, + { + "source": "public_apis", + "name": "crypto_markets", + "size": 47280, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/crypto_markets.json" + }, + { + "source": "public_apis", + "name": "nested_posts_with_comments", + "size": 9984, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/nested_posts_with_comments.json" + }, + { + "source": "public_apis", + "name": "dog_breeds", + "size": 4008, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/dog_breeds.json" + }, + { + "source": "public_apis", + "name": "breweries", + "size": 25738, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/breweries.json" + }, + { + "source": "public_apis", + "name": "countries_language_spanish", + "size": 122723, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/public_apis/countries_language_spanish.json" + }, + { + "source": "synthetic", + "name": "ecommerce_catalog", + "size": 31452, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/ecommerce_catalog.json" + }, + { + "source": "synthetic", + "name": "user_profiles", + "size": 34013, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/user_profiles.json" + }, + { + "source": "synthetic", + "name": "server_logs", + "size": 48446, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/server_logs.json" + }, + { + "source": "synthetic", + "name": "sensor_timeseries", + "size": 32135, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/sensor_timeseries.json" + }, + { + "source": "synthetic", + "name": "npm_packages", + "size": 40608, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/npm_packages.json" + }, + { + "source": "synthetic", + "name": "api_responses", + "size": 51422, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/api_responses.json" + }, + { + "source": "synthetic", + "name": "database_records_sparse", + "size": 13852, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/database_records_sparse.json" + }, + { + "source": "synthetic", + "name": "numeric_sequences", + "size": 1927, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/numeric_sequences.json" + }, + { + "source": "synthetic", + "name": "repeated_values", + "size": 11673, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/repeated_values.json" + }, + { + "source": "synthetic", + "name": "wide_table", + "size": 21541, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/wide_table.json" + }, + { + "source": "synthetic", + "name": "nested_structures", + "size": 22533, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/nested_structures.json" + }, + { + "source": "synthetic", + "name": "mixed_types", + "size": 23296, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/mixed_types.json" + }, + { + "source": "synthetic", + "name": "geographic_data", + "size": 12451, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/geographic_data.json" + }, + { + "source": "synthetic", + "name": "event_stream", + "size": 41922, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/event_stream.json" + }, + { + "source": "synthetic", + "name": "large_text_fields", + "size": 86944, + "path": "/Users/fenilsonani/Developer/zero-formate/research/benchmarks/datasets/synthetic/large_text_fields.json" + } + ], + "failed": [ + { + "url": "https://restcountries.com/v3.1/all", + "error": "HTTP 400" + }, + { + "url": "https://fakestoreapi.com/products", + "error": "HTTP 403" + }, + { + "url": "https://fakestoreapi.com/products/category/electronics", + "error": "HTTP 403" + }, + { + "url": "https://fakestoreapi.com/carts", + "error": "HTTP 403" + }, + { + "url": "https://fakestoreapi.com/users", + "error": "HTTP 403" + } + ] +} \ No newline at end of file diff --git a/github/commits_python.json b/github/commits_python.json new file mode 100644 index 0000000000000000000000000000000000000000..3e31aa02777ccbefeb9dc0b9e1e08872fe097412 --- /dev/null +++ b/github/commits_python.json @@ -0,0 +1,1232 @@ +[ + { + "sha": "95f6e1275b1c9de550d978cb2b4351cc4ed24fe4", + "node_id": "C_kwDOBN0Z8doAKDk1ZjZlMTI3NWIxYzlkZTU1MGQ5NzhjYjJiNDM1MWNjNGVkMjRmZTQ", + "commit": { + "author": { + "name": "Savannah Ostrowski", + "email": "savannah@python.org", + "date": "2025-11-05T22:46:30Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T22:46:30Z" + }, + "message": "GH-108009: Add clarification of parser and argument defaults in argparse docs (#124154)\n\nCo-authored-by: C.A.M. Gerlach ", + "tree": { + "sha": "104731a887510b07ec5908e077455bc1fd10cf14", + "url": "https://api.github.com/repos/python/cpython/git/trees/104731a887510b07ec5908e077455bc1fd10cf14" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/95f6e1275b1c9de550d978cb2b4351cc4ed24fe4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC9PGCRC1aQ7uu5UhlAAA9NIQACxGDLkJOIkiPL2JsrVqQB39\nIXqUIYP/dG/EfgmTqkeGj0prNCX4f5WQoumIliqmZGTwv9fmjun/FFWbdK6Z/8u8\n+6CNECzGZm1p2JTJJBRMmHZwHBZsTiAazkybngyNEaXHUrKqiLfESzULGpQ/Cym2\nx2T7RDDVpWVlnLT7YZ2DF0GLFzF6p64jbEbw5fqm5tICB+x/zgXcpN0cqyig06Ub\nDky9pxnd8GpQ+MPMcprhPB0VaXKDk3dTa3PYuICGuRHRwGANkRbdUpGE84iZSrWE\nuOUOiyk9cgbNOHcMW1liIpMaDIjnPQ0SAzrk5XlWNyiodTlmTb17Sl2CvFSt5gea\nehNY2a4xDDmhBni+vOMq5E2bY0hqX1hhXN/I1oaPBZflDC3f/0y/SObKJsQG6zzx\nWDQItmtCV5Z86bDnpHxasHXuVpz8+h+JOP7pCDXThhcXMa4zVUnYLT6NU4+e6iia\n7VaTVjocB1ARXooDcU6XW9RA7CGEKI5+GEdXKa2axH51Qp6h1O0Io2irGXES9lWd\n5C7K4D/iOrtcaT9bVYnQn2G2lXIsnJEI9bz+g8U9b59Hhsv3d4q++pKAiV9jLWNE\nz8qs4OvrbK1Kzrihxn+D3iOiq8OzwLMQHsUqfegyLVqdr3Z+oYCjbK2oydDwu112\nRe8FsR4IKInYaZ0V2AIm\n=WckV\n-----END PGP SIGNATURE-----\n", + "payload": "tree 104731a887510b07ec5908e077455bc1fd10cf14\nparent f0ab07f22c5fd18058a3ece7a1e745b3922af908\nauthor Savannah Ostrowski 1762382790 -0800\ncommitter GitHub 1762382790 +0000\n\nGH-108009: Add clarification of parser and argument defaults in argparse docs (#124154)\n\nCo-authored-by: C.A.M. Gerlach ", + "verified_at": "2025-11-05T22:46:31Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/95f6e1275b1c9de550d978cb2b4351cc4ed24fe4", + "html_url": "https://github.com/python/cpython/commit/95f6e1275b1c9de550d978cb2b4351cc4ed24fe4", + "comments_url": "https://api.github.com/repos/python/cpython/commits/95f6e1275b1c9de550d978cb2b4351cc4ed24fe4/comments", + "author": { + "login": "savannahostrowski", + "id": 8949415, + "node_id": "MDQ6VXNlcjg5NDk0MTU=", + "avatar_url": "https://avatars.githubusercontent.com/u/8949415?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/savannahostrowski", + "html_url": "https://github.com/savannahostrowski", + "followers_url": "https://api.github.com/users/savannahostrowski/followers", + "following_url": "https://api.github.com/users/savannahostrowski/following{/other_user}", + "gists_url": "https://api.github.com/users/savannahostrowski/gists{/gist_id}", + "starred_url": "https://api.github.com/users/savannahostrowski/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/savannahostrowski/subscriptions", + "organizations_url": "https://api.github.com/users/savannahostrowski/orgs", + "repos_url": "https://api.github.com/users/savannahostrowski/repos", + "events_url": "https://api.github.com/users/savannahostrowski/events{/privacy}", + "received_events_url": "https://api.github.com/users/savannahostrowski/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "f0ab07f22c5fd18058a3ece7a1e745b3922af908", + "url": "https://api.github.com/repos/python/cpython/commits/f0ab07f22c5fd18058a3ece7a1e745b3922af908", + "html_url": "https://github.com/python/cpython/commit/f0ab07f22c5fd18058a3ece7a1e745b3922af908" + } + ] + }, + { + "sha": "f0ab07f22c5fd18058a3ece7a1e745b3922af908", + "node_id": "C_kwDOBN0Z8doAKGYwYWIwN2YyMmM1ZmQxODA1OGEzZWNlN2ExZTc0NWIzOTIyYWY5MDg", + "commit": { + "author": { + "name": "Peter Bierma", + "email": "zintensitydev@gmail.com", + "date": "2025-11-05T22:32:12Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T22:32:12Z" + }, + "message": "gh-141004: Document `PyDict_GET_SIZE` (GH-141078)", + "tree": { + "sha": "a09681a713fb92158779b1f9ff215a9653fa6a43", + "url": "https://api.github.com/repos/python/cpython/git/trees/a09681a713fb92158779b1f9ff215a9653fa6a43" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/f0ab07f22c5fd18058a3ece7a1e745b3922af908", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC9BsCRC1aQ7uu5UhlAAAU9AQAD7ovKI4TRRHA/giIb/UPl71\nouscrycV7bikRM6Vo9QVzo9DZF0oDWaJDQkT/ET5ZIAGzSpPBtkVCD4GWLCxp8ok\nkEiHysIlC37gRmrQQO21C7jgByQ2JG7imMcexcZVq0vVVQtcbTBTjtPUaBS59ulu\npsLeLGalqvQmLr07FWkmRQpbVS2YJCUzSQD9j20cIiJ/6L+viqR+X2zTJez0I3Vo\n/LlsK+zzqAwMd4ZMXe4JOF7nKYm4lwbBrhHMHjOosCj5nC5zgyWG5iAiEpU1YaEg\nqK9rtNTyZpo/CsomIDaWMrlTKkbOmpfALMVYW9KmKaVpkVoCcyvmuTR2PbKtvzWx\nDtR5C61/3Digik3y5RSynuCDEKZfniq2sxP/7dsN8M61+Md8VPSWOp6ySQjgEUAp\nXklREZxws1OkHzqQ47CeSSgEq77a5onsn04o+K1N5IyJuGEjrvCViuB5JzMjO7Zz\nu620/WtY3oSNuOV2EwULwgTjmkt519G7qWu6AhYA2TZiGd7wSJzoPUqzV657CPf1\nlVlgaCK3pfvrwzZaaG47lpZyupi6SPMGIzuhQVOTeFuu5qHYYZ+kDXOobXlqovT7\nCvHzyhztV/UfeCyRPDwKLuOJeMJi+CdfgKTCP+JvSugG4vQCg1sgXgv7/0XDKaeE\nr4d8jBN8cV1CxOpDzOEu\n=SeRr\n-----END PGP SIGNATURE-----\n", + "payload": "tree a09681a713fb92158779b1f9ff215a9653fa6a43\nparent 227f4abacdd89bb3816c172a7f6fdaa2024dbada\nauthor Peter Bierma 1762381932 -0500\ncommitter GitHub 1762381932 -0500\n\ngh-141004: Document `PyDict_GET_SIZE` (GH-141078)\n\n", + "verified_at": "2025-11-05T22:32:13Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/f0ab07f22c5fd18058a3ece7a1e745b3922af908", + "html_url": "https://github.com/python/cpython/commit/f0ab07f22c5fd18058a3ece7a1e745b3922af908", + "comments_url": "https://api.github.com/repos/python/cpython/commits/f0ab07f22c5fd18058a3ece7a1e745b3922af908/comments", + "author": { + "login": "ZeroIntensity", + "id": 49501366, + "node_id": "MDQ6VXNlcjQ5NTAxMzY2", + "avatar_url": "https://avatars.githubusercontent.com/u/49501366?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ZeroIntensity", + "html_url": "https://github.com/ZeroIntensity", + "followers_url": "https://api.github.com/users/ZeroIntensity/followers", + "following_url": "https://api.github.com/users/ZeroIntensity/following{/other_user}", + "gists_url": "https://api.github.com/users/ZeroIntensity/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ZeroIntensity/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ZeroIntensity/subscriptions", + "organizations_url": "https://api.github.com/users/ZeroIntensity/orgs", + "repos_url": "https://api.github.com/users/ZeroIntensity/repos", + "events_url": "https://api.github.com/users/ZeroIntensity/events{/privacy}", + "received_events_url": "https://api.github.com/users/ZeroIntensity/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "227f4abacdd89bb3816c172a7f6fdaa2024dbada", + "url": "https://api.github.com/repos/python/cpython/commits/227f4abacdd89bb3816c172a7f6fdaa2024dbada", + "html_url": "https://github.com/python/cpython/commit/227f4abacdd89bb3816c172a7f6fdaa2024dbada" + } + ] + }, + { + "sha": "227f4abacdd89bb3816c172a7f6fdaa2024dbada", + "node_id": "C_kwDOBN0Z8doAKDIyN2Y0YWJhY2RkODliYjM4MTZjMTcyYTdmNmZkYWEyMDI0ZGJhZGE", + "commit": { + "author": { + "name": "Zenith", + "email": "me@arielle.codes", + "date": "2025-11-05T22:00:36Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T22:00:36Z" + }, + "message": "gh-76007: remove curses.__version__ doc (#141052)", + "tree": { + "sha": "d4b77d551083c740dfbe2c7abe312c149ac76f6b", + "url": "https://api.github.com/repos/python/cpython/git/trees/d4b77d551083c740dfbe2c7abe312c149ac76f6b" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/227f4abacdd89bb3816c172a7f6fdaa2024dbada", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC8kECRC1aQ7uu5UhlAAAsMIQAH8Zeqq1Y1dPMuH5ts12WOne\nWfwZQunQT3pDN40NC72sbqqUZJskKsGGQ1b97GRY51ZfaLeQreLkmwFUmQrtijji\npxBx+5TndAaBhI3x7AGs1aNvVfn79rdIg/zL7xWjfNigDkfIz1slJxvKWBXU/ZW4\ngvrjvRZabjjkD4ny6n6TFb3Uwla3BPQMX2MAIPd6XXqtfF3tOqGioC/vyl+a5HG/\n5qjBA6ZKoNOSHqWCWfEmk8D14R9/7tA+F40t1phQAS0uBSv3SGZOh2oHgxrbbP7E\n1keH3bNEHUexR3WES1xdhmnc3WCoQYYukSc5mceyP9VLiqUM/LoZiKdBGzafOGmy\naeoGQr9uTlN0Lp9HgT6YmsYR7Rr1NYqB6+ZWXAtC8+6jBFDOSzcZU9Jq9LO+riUQ\nauRz/irsP9qIbQWt7CY+lCByk0fXEw4bo5HMwThh9wXvtZEhTptZuimI6v4Y7DxH\ndbf3dmt8o6SsteC8WeTVevGrXI1swDX1Q8xMOlBNhFqMIfqp0QBXwBH/sTx5LPfr\n8mRaqUKyDjTwVBVUm7H9PMPWQQhmZJ+ztlbvbSgxTj6v9B78rnLqrimUsCsyhZrk\nHKxHG3OpF7HrqpcbkNQvk1cRBfMN/SHbpHeliQQ3Z+Zh4yoBDJ8tgd0vN0WXfgaW\n5Tagd9owZXrw9HwAMWK4\n=xQu0\n-----END PGP SIGNATURE-----\n", + "payload": "tree d4b77d551083c740dfbe2c7abe312c149ac76f6b\nparent 5b02c6e920aaef4b202fc19186f742d008460fd3\nauthor Zenith 1762380036 -0500\ncommitter GitHub 1762380036 +0200\n\ngh-76007: remove curses.__version__ doc (#141052)\n\n", + "verified_at": "2025-11-05T22:00:37Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/227f4abacdd89bb3816c172a7f6fdaa2024dbada", + "html_url": "https://github.com/python/cpython/commit/227f4abacdd89bb3816c172a7f6fdaa2024dbada", + "comments_url": "https://api.github.com/repos/python/cpython/commits/227f4abacdd89bb3816c172a7f6fdaa2024dbada/comments", + "author": { + "login": "onerandomusername", + "id": 71233171, + "node_id": "MDQ6VXNlcjcxMjMzMTcx", + "avatar_url": "https://avatars.githubusercontent.com/u/71233171?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/onerandomusername", + "html_url": "https://github.com/onerandomusername", + "followers_url": "https://api.github.com/users/onerandomusername/followers", + "following_url": "https://api.github.com/users/onerandomusername/following{/other_user}", + "gists_url": "https://api.github.com/users/onerandomusername/gists{/gist_id}", + "starred_url": "https://api.github.com/users/onerandomusername/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/onerandomusername/subscriptions", + "organizations_url": "https://api.github.com/users/onerandomusername/orgs", + "repos_url": "https://api.github.com/users/onerandomusername/repos", + "events_url": "https://api.github.com/users/onerandomusername/events{/privacy}", + "received_events_url": "https://api.github.com/users/onerandomusername/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5b02c6e920aaef4b202fc19186f742d008460fd3", + "url": "https://api.github.com/repos/python/cpython/commits/5b02c6e920aaef4b202fc19186f742d008460fd3", + "html_url": "https://github.com/python/cpython/commit/5b02c6e920aaef4b202fc19186f742d008460fd3" + } + ] + }, + { + "sha": "5b02c6e920aaef4b202fc19186f742d008460fd3", + "node_id": "C_kwDOBN0Z8doAKDViMDJjNmU5MjBhYWVmNGIyMDJmYzE5MTg2Zjc0MmQwMDg0NjBmZDM", + "commit": { + "author": { + "name": "Peter Bierma", + "email": "zintensitydev@gmail.com", + "date": "2025-11-05T22:00:26Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T22:00:26Z" + }, + "message": "gh-141004: Document `Py_RETURN_NAN` and `Py_RETURN_INF` (GH-141029)\n\nCo-authored-by: Sergey B Kirpichev ", + "tree": { + "sha": "7701950757f11b218c8694aa269ec33ceb491b22", + "url": "https://api.github.com/repos/python/cpython/git/trees/7701950757f11b218c8694aa269ec33ceb491b22" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/5b02c6e920aaef4b202fc19186f742d008460fd3", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC8j6CRC1aQ7uu5UhlAAAHB0QAEf4ElfG9S0fuTXo8YGEd+7h\nmjm6bubF/pBqZaXwaQTrojiu9ex3ubttfnm/BeHj56J6bzH1NdlWhiQHbr1aQj+1\nE9+NI9ylWdAKD0sSTaWFNx9BOpsoYzAux2Zz/6yo4GEgibwnR6YR/HC44no6s4eu\nAkZ+oMaEjgxREKJ8raeRqw70WTIyfojxF1X2zoxRVdhdDUVnO1TAvFyg/lGtapzY\naLGkSusD7jCr8+AtFukvN7gOdL6B9wO2BH8Y6Gm99O8H/Aojmd5WvZOXbTjZpCEZ\nwgcciTJzlwzMeuAf+h0L+neCXtMiOBP+ZE17ze9Hl+nRQYUp/a1KcPk22vbYgBik\n6LQGiGMYUAMpdNwrgWNMS2/ln22qosIryL/U10QsQF2hr7T2T2H5OM/Nk/4lngbM\nXsv1efOSVNxoDioYtyU1MYvNcKskktlic5+GjH59tls+gdEXB65cGB0u8iD93+bq\nqDlANiv0I6AYRat3B7BwcVFgqBxlQmx27bEa59B+KP4PtW2llMJqufjwenyK4DmU\nCjSYo1KJITGY17l/NpPxH6ypyom84sTbVV+aKlBVo9ECUTUk35AphQpyk9BB1nKY\njY1wujotrTieX1nB1rLZ8j0yuL40rMBjHOyZN0OTi2xpbtIIE0Z59/3xiiLJbYE5\nSpHk6gBOwJycFoWUSP1k\n=iVIg\n-----END PGP SIGNATURE-----\n", + "payload": "tree 7701950757f11b218c8694aa269ec33ceb491b22\nparent 11fc411f98a04947a2a21329c29fe0f35ff52dba\nauthor Peter Bierma 1762380026 -0500\ncommitter GitHub 1762380026 -0500\n\ngh-141004: Document `Py_RETURN_NAN` and `Py_RETURN_INF` (GH-141029)\n\nCo-authored-by: Sergey B Kirpichev ", + "verified_at": "2025-11-05T22:00:27Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/5b02c6e920aaef4b202fc19186f742d008460fd3", + "html_url": "https://github.com/python/cpython/commit/5b02c6e920aaef4b202fc19186f742d008460fd3", + "comments_url": "https://api.github.com/repos/python/cpython/commits/5b02c6e920aaef4b202fc19186f742d008460fd3/comments", + "author": { + "login": "ZeroIntensity", + "id": 49501366, + "node_id": "MDQ6VXNlcjQ5NTAxMzY2", + "avatar_url": "https://avatars.githubusercontent.com/u/49501366?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ZeroIntensity", + "html_url": "https://github.com/ZeroIntensity", + "followers_url": "https://api.github.com/users/ZeroIntensity/followers", + "following_url": "https://api.github.com/users/ZeroIntensity/following{/other_user}", + "gists_url": "https://api.github.com/users/ZeroIntensity/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ZeroIntensity/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ZeroIntensity/subscriptions", + "organizations_url": "https://api.github.com/users/ZeroIntensity/orgs", + "repos_url": "https://api.github.com/users/ZeroIntensity/repos", + "events_url": "https://api.github.com/users/ZeroIntensity/events{/privacy}", + "received_events_url": "https://api.github.com/users/ZeroIntensity/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "11fc411f98a04947a2a21329c29fe0f35ff52dba", + "url": "https://api.github.com/repos/python/cpython/commits/11fc411f98a04947a2a21329c29fe0f35ff52dba", + "html_url": "https://github.com/python/cpython/commit/11fc411f98a04947a2a21329c29fe0f35ff52dba" + } + ] + }, + { + "sha": "11fc411f98a04947a2a21329c29fe0f35ff52dba", + "node_id": "C_kwDOBN0Z8doAKDExZmM0MTFmOThhMDQ5NDdhMmEyMTMyOWMyOWZlMGYzNWZmNTJkYmE", + "commit": { + "author": { + "name": "AN Long", + "email": "aisk@users.noreply.github.com", + "date": "2025-11-05T21:49:45Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T21:49:45Z" + }, + "message": "gh-140916: Remove unused codes in winreg.c (#140934)", + "tree": { + "sha": "65a421b6b24dd4a421e1c3fd48dcc53f21d29a1e", + "url": "https://api.github.com/repos/python/cpython/git/trees/65a421b6b24dd4a421e1c3fd48dcc53f21d29a1e" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/11fc411f98a04947a2a21329c29fe0f35ff52dba", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC8Z6CRC1aQ7uu5UhlAAAwHwQAD7riC55ABeaZQxFaf8ymV9H\nprfzdfWhDTG3XD9+lMC+Ljv2pPexyC/ZblosF1yJXprrGQv9Y50MElpaQZUMM3nM\nlldWY/ByxUa9LJI24fNr4g5p7MTOwnlptlOyU3XuB/GDTK4JU8apgC09i5vIDP5M\ngezlwMosrhpfbAgw7IufT9cNIgAyJNFTdDxERWgcO4ayasQmph+lZ43VQflnKQjX\nnK0NRNwwyigm2eqhG4dLIAXwQtv5UUJ/DUvvLJ3LC8/mT53KB5y6Z1sy8rlr+QHL\nnaCx4ivik4a7WTT6a8IBBRw5gAaRLezbUFEvKrJz6x/zqeWlCDCft6u8YWYt2EXE\nJaJLSn6Clizor105RM2fRBsOkVDkMzol3i4bcQHp7AZpsW0rM0ypjXp+OFucj7pq\nqZjATEORfRc2FLropdJvnTTegNXfQOKiSPUM/77E2eUIC6xhZPv2+7Eqvv6a+aP8\nMps8uYaE5/LUaFEGF+tYBo3XFUTsYXhutVi/2nSJ3lAOHlubGrFwZb9uaxFZkAb1\nAoUPgcWxUeDyYV2TAyZjacwcyZPs4EKybtrHR065Qj8OJrytI3hwkVOpfITQ25uS\n8hAKm2o2wTsEwvxKDs6b/Ez/lnhbn3Ev9vu7RYOP89rK7ngxse1JldNc6Tc8s7Ut\nK9fuyPcvzLMd/hVa/Ppp\n=m3Cc\n-----END PGP SIGNATURE-----\n", + "payload": "tree 65a421b6b24dd4a421e1c3fd48dcc53f21d29a1e\nparent b83f379a972c001864d3593cd64fc07e7c7f375f\nauthor AN Long 1762379385 +0900\ncommitter GitHub 1762379385 +0100\n\ngh-140916: Remove unused codes in winreg.c (#140934)\n\n", + "verified_at": "2025-11-05T21:49:46Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/11fc411f98a04947a2a21329c29fe0f35ff52dba", + "html_url": "https://github.com/python/cpython/commit/11fc411f98a04947a2a21329c29fe0f35ff52dba", + "comments_url": "https://api.github.com/repos/python/cpython/commits/11fc411f98a04947a2a21329c29fe0f35ff52dba/comments", + "author": { + "login": "aisk", + "id": 699636, + "node_id": "MDQ6VXNlcjY5OTYzNg==", + "avatar_url": "https://avatars.githubusercontent.com/u/699636?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aisk", + "html_url": "https://github.com/aisk", + "followers_url": "https://api.github.com/users/aisk/followers", + "following_url": "https://api.github.com/users/aisk/following{/other_user}", + "gists_url": "https://api.github.com/users/aisk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aisk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aisk/subscriptions", + "organizations_url": "https://api.github.com/users/aisk/orgs", + "repos_url": "https://api.github.com/users/aisk/repos", + "events_url": "https://api.github.com/users/aisk/events{/privacy}", + "received_events_url": "https://api.github.com/users/aisk/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "b83f379a972c001864d3593cd64fc07e7c7f375f", + "url": "https://api.github.com/repos/python/cpython/commits/b83f379a972c001864d3593cd64fc07e7c7f375f", + "html_url": "https://github.com/python/cpython/commit/b83f379a972c001864d3593cd64fc07e7c7f375f" + } + ] + }, + { + "sha": "b83f379a972c001864d3593cd64fc07e7c7f375f", + "node_id": "C_kwDOBN0Z8doAKGI4M2YzNzlhOTcyYzAwMTg2NGQzNTkzY2Q2NGZjMDdlN2M3ZjM3NWY", + "commit": { + "author": { + "name": "Edward Xu", + "email": "xuxiangad@foxmail.com", + "date": "2025-11-05T21:20:40Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T21:20:40Z" + }, + "message": "gh-133467: Fix typeobject `tp_base` race in free threading (gh-140549)", + "tree": { + "sha": "69636cd4eb9dfbad7a3ea4de8fd01062dbb81640", + "url": "https://api.github.com/repos/python/cpython/git/trees/69636cd4eb9dfbad7a3ea4de8fd01062dbb81640" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/b83f379a972c001864d3593cd64fc07e7c7f375f", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7+oCRC1aQ7uu5UhlAAAf/cQAF6ywmoJZjUYM6gUenKjFG98\nJLZjervBDM2FyUFr+ATd9Oqsif6MP3nSjiZQQLKFV2Wj8IuvNqOAo+E4tGt//04o\nfW4DUVDKoFfuUuoHOzr0kH2P+b6Cdvra3uaHLekwNVBLpZe8+mQEWiAs7PbnpLWe\nKTyEkKegyPWPvUkkMs0NV6tf5k9IG6dbGWrAPQOu+kt0cNes/PG9ikb14JSNvnJI\nHFl37cvVVlt8PgRGP74nF4564OkAmVsqQdArGVahbtMSx8HEsItASRKHcvRCURZ0\nS3VvwKuOCHrBBdbBIhLtbnSBHHduYFFrcPZeWxa0+iMk2wtDKjeBhMiRfLkZIc6T\nIEd25C4/hkMIuzJVG1MInW6IBQ+GPn30WquqauLdEXtrKjvlR0hzLnCnThAmtcXN\nMdDwtKLG94cvxytT5UESX8ZVR3g+4LqHiNzpmq1n6J8piAxMkfSEdsE9HJE9UNGe\nB1NAhd7c80TaSwcZBsCfVp9RveWkPD44q2qwGSBRYytXPFrNugYI5pRu3PBmZ2JJ\n1SxnZ2m3AHru8+2/0U8Cs0W4/mu5RRCNVPnS7LfbJhTN/deo5/lO4B3JHHvsydX4\nu1wBM7Cn2ms0kma1ocPU3HAN2Ns7m1ItZZQYQ6VoFN/ebTbKeaHzCOQxLAHYo067\nnV2PMLg0mhIKo6zZzAsL\n=gaqj\n-----END PGP SIGNATURE-----\n", + "payload": "tree 69636cd4eb9dfbad7a3ea4de8fd01062dbb81640\nparent 986bb0a1a2bd290f5da347e455b23468aa3f62f0\nauthor Edward Xu 1762377640 +0800\ncommitter GitHub 1762377640 -0500\n\ngh-133467: Fix typeobject `tp_base` race in free threading (gh-140549)\n\n", + "verified_at": "2025-11-05T21:20:40Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/b83f379a972c001864d3593cd64fc07e7c7f375f", + "html_url": "https://github.com/python/cpython/commit/b83f379a972c001864d3593cd64fc07e7c7f375f", + "comments_url": "https://api.github.com/repos/python/cpython/commits/b83f379a972c001864d3593cd64fc07e7c7f375f/comments", + "author": { + "login": "LindaSummer", + "id": 14014471, + "node_id": "MDQ6VXNlcjE0MDE0NDcx", + "avatar_url": "https://avatars.githubusercontent.com/u/14014471?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/LindaSummer", + "html_url": "https://github.com/LindaSummer", + "followers_url": "https://api.github.com/users/LindaSummer/followers", + "following_url": "https://api.github.com/users/LindaSummer/following{/other_user}", + "gists_url": "https://api.github.com/users/LindaSummer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/LindaSummer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/LindaSummer/subscriptions", + "organizations_url": "https://api.github.com/users/LindaSummer/orgs", + "repos_url": "https://api.github.com/users/LindaSummer/repos", + "events_url": "https://api.github.com/users/LindaSummer/events{/privacy}", + "received_events_url": "https://api.github.com/users/LindaSummer/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "986bb0a1a2bd290f5da347e455b23468aa3f62f0", + "url": "https://api.github.com/repos/python/cpython/commits/986bb0a1a2bd290f5da347e455b23468aa3f62f0", + "html_url": "https://github.com/python/cpython/commit/986bb0a1a2bd290f5da347e455b23468aa3f62f0" + } + ] + }, + { + "sha": "986bb0a1a2bd290f5da347e455b23468aa3f62f0", + "node_id": "C_kwDOBN0Z8doAKDk4NmJiMGExYTJiZDI5MGY1ZGEzNDdlNDU1YjIzNDY4YWEzZjYyZjA", + "commit": { + "author": { + "name": "Victor Stinner", + "email": "vstinner@python.org", + "date": "2025-11-05T20:16:37Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:16:37Z" + }, + "message": "gh-83714: Fix stat_nanosecond_timestamp() for 32-bit time_t (#141069)", + "tree": { + "sha": "b5ba52067b814c46f2329358375d292ee447b9c7", + "url": "https://api.github.com/repos/python/cpython/git/trees/b5ba52067b814c46f2329358375d292ee447b9c7" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/986bb0a1a2bd290f5da347e455b23468aa3f62f0", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7ClCRC1aQ7uu5UhlAAAv38QAJ3gSch+YxqImMUw/sfvNYqW\nGoWrrfZ5DpZ1W7i8p4U+urnFPbaPb0uTaJDrv1jtw0dnfO3Th+/o4BUFqywicwOh\npJwmaPSSNm+66QxTpsF1tKqeg/flLQ254IS3nFPRd5LBtL+XB3jmxGoLX0bwKvlN\nlN7EkL7f/zxXkMX7mjf5b7VJcrpbI8VCe2JlyTLXWYmu3p7TXhEAAGsuJF6uow0T\ncLjMtcmyAxvEazzSFV4/iqjXJiHUp31F6zfmfPtqkRcsLvF0zrqhTVErKkw8VPOq\nPUMbXCFNT/R1cHL1H/BMdb+QXDfiei66IpuRDfPxd+1uMwMlrbnIiiwnASMHah1w\nTCaU9J6Y7JFo73Tui5XtQZo/VfZV4FdnOCcJ8t9RLYAFH3FcIb7IetsZonImUGS4\nsDiX/om+CLM+du4voNHeg61Pn8YGI+D8P62ZSE7HacsM5WWoAGMtRJnaf52R+8ku\nPC8oxNA4dW2+83DqL1+1lJT168QWJCUsQiqTQXIXb7mH42ZSm7C2oKwoC7t1wgg3\nvp0Jw7ggMm0d3AaGwcXc18MvuJRQ1MH2IClYS7hLXWF77+OmPVHzZIKZhygVRN2S\n4OpbrLy4H8XFSKE+lMqubfFE1EvrEzWBxNi86oMgB3bBxdbvh0m/OtY3Grsl0osc\n43zJ03dSP19ej202w6k3\n=moXc\n-----END PGP SIGNATURE-----\n", + "payload": "tree b5ba52067b814c46f2329358375d292ee447b9c7\nparent f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69\nauthor Victor Stinner 1762373797 +0100\ncommitter GitHub 1762373797 +0100\n\ngh-83714: Fix stat_nanosecond_timestamp() for 32-bit time_t (#141069)\n\n", + "verified_at": "2025-11-05T20:16:38Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/986bb0a1a2bd290f5da347e455b23468aa3f62f0", + "html_url": "https://github.com/python/cpython/commit/986bb0a1a2bd290f5da347e455b23468aa3f62f0", + "comments_url": "https://api.github.com/repos/python/cpython/commits/986bb0a1a2bd290f5da347e455b23468aa3f62f0/comments", + "author": { + "login": "vstinner", + "id": 194129, + "node_id": "MDQ6VXNlcjE5NDEyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vstinner", + "html_url": "https://github.com/vstinner", + "followers_url": "https://api.github.com/users/vstinner/followers", + "following_url": "https://api.github.com/users/vstinner/following{/other_user}", + "gists_url": "https://api.github.com/users/vstinner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vstinner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vstinner/subscriptions", + "organizations_url": "https://api.github.com/users/vstinner/orgs", + "repos_url": "https://api.github.com/users/vstinner/repos", + "events_url": "https://api.github.com/users/vstinner/events{/privacy}", + "received_events_url": "https://api.github.com/users/vstinner/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69", + "url": "https://api.github.com/repos/python/cpython/commits/f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69", + "html_url": "https://github.com/python/cpython/commit/f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69" + } + ] + }, + { + "sha": "f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69", + "node_id": "C_kwDOBN0Z8doAKGY0NThhYzAxYmE1MjJjYzdmOTRjMGMwZWU5YTAwYzgyZjFiZTZkNjk", + "commit": { + "author": { + "name": "Victor Stinner", + "email": "vstinner@python.org", + "date": "2025-11-05T19:18:45Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T19:18:45Z" + }, + "message": "Fix compiler warnings in remote debugging (#141060)\n\nExample of fixed warnings on 32-bit Windows:\n\n Python\\remote_debugging.c(24,53): warning C4244: 'function':\n conversion from 'uint64_t' to 'uintptr_t', possible loss of data\n\n Modules\\_remote_debugging_module.c(789,44): warning C4244:\n 'function': conversion from 'uint64_t' to 'size_t', possible loss\n of data", + "tree": { + "sha": "c5089d1034f1128d76337c54d588ffcfbbe34362", + "url": "https://api.github.com/repos/python/cpython/git/trees/c5089d1034f1128d76337c54d588ffcfbbe34362" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC6MVCRC1aQ7uu5UhlAAAerMQAGs5ZBO7S0QfE+rKh8PtFkl1\nv5j1eKIvBhl+3lkv97yIiBFNGV1dCyykeJcfmI7sfModOLxIPkMdALCYJThzBYNv\nfB6SuqpRpXSPv09KpvJT4n+J9ij626kodo9DR3ki/pMe7Q2w66Fam10M/jipSryS\nrgftJEIAg87MVhb19UVzdkzrMu7VPX2Jl9A9vgE8JQTp7fGlPCd2IhALERGu6gd+\nPWbpo13YzDNrHz5j25YLAEouOYcKlTDHfGK6kvGV1lmIpC5zfiDR20VideQEjjFu\nVJqNivdpZt2C+u7/6DDlw/YXCphQUrZ8CrbbDvLyzrSq8Tpe+neguoy6rroRqE+j\nSURVuyuvA0RftbQxtgEZDCVZeO8KwdDhwO3plfZYTC/ZL77M6tfeU1MVSuu42ooj\nQLykqTLVIaaeP9f5lo7P019f7V6ipfIXtDbNwx9vxWY7MCGdskqZb9SrTWbYZFHm\nX2BJUpVs4gBWXh+hCUjphwdXgTmYti1O40Oyez72CKOL/VCod5XlFmQmvI6Y2hmo\nsrj4ruXhHYirKoYwVNQuiscZA4xh1Qkt04nrsizRVQ+YuXCs6QeH3ALDOmunLxrB\n5gI7eBR596+tcpnYDaPZf1OW9w69a/zDFbYAeR/BWiQSt50sYGFWucRBBXzGBef3\nVe1GhJEQAnkSYiqWZFE+\n=oW0f\n-----END PGP SIGNATURE-----\n", + "payload": "tree c5089d1034f1128d76337c54d588ffcfbbe34362\nparent 1d25b751c5382aa808dbdfd7eacd77cd793418fc\nauthor Victor Stinner 1762370325 +0100\ncommitter GitHub 1762370325 +0100\n\nFix compiler warnings in remote debugging (#141060)\n\nExample of fixed warnings on 32-bit Windows:\n\n Python\\remote_debugging.c(24,53): warning C4244: 'function':\n conversion from 'uint64_t' to 'uintptr_t', possible loss of data\n\n Modules\\_remote_debugging_module.c(789,44): warning C4244:\n 'function': conversion from 'uint64_t' to 'size_t', possible loss\n of data", + "verified_at": "2025-11-05T19:18:46Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69", + "html_url": "https://github.com/python/cpython/commit/f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69", + "comments_url": "https://api.github.com/repos/python/cpython/commits/f458ac01ba522cc7f94c0c0ee9a00c82f1be6d69/comments", + "author": { + "login": "vstinner", + "id": 194129, + "node_id": "MDQ6VXNlcjE5NDEyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vstinner", + "html_url": "https://github.com/vstinner", + "followers_url": "https://api.github.com/users/vstinner/followers", + "following_url": "https://api.github.com/users/vstinner/following{/other_user}", + "gists_url": "https://api.github.com/users/vstinner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vstinner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vstinner/subscriptions", + "organizations_url": "https://api.github.com/users/vstinner/orgs", + "repos_url": "https://api.github.com/users/vstinner/repos", + "events_url": "https://api.github.com/users/vstinner/events{/privacy}", + "received_events_url": "https://api.github.com/users/vstinner/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1d25b751c5382aa808dbdfd7eacd77cd793418fc", + "url": "https://api.github.com/repos/python/cpython/commits/1d25b751c5382aa808dbdfd7eacd77cd793418fc", + "html_url": "https://github.com/python/cpython/commit/1d25b751c5382aa808dbdfd7eacd77cd793418fc" + } + ] + }, + { + "sha": "1d25b751c5382aa808dbdfd7eacd77cd793418fc", + "node_id": "C_kwDOBN0Z8doAKDFkMjViNzUxYzUzODJhYTgwOGRiZGZkN2VhY2Q3N2NkNzkzNDE4ZmM", + "commit": { + "author": { + "name": "Sachin Shah", + "email": "39803835+inventshah@users.noreply.github.com", + "date": "2025-11-05T19:15:27Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T19:15:27Z" + }, + "message": "gh-140650: Fix write(), flush() and close() methods of io.BufferedWriter (GH-140653)\n\nThey could raise SystemError or crash when getting the \"closed\" attribute\nor converting it to boolean raises an exception.", + "tree": { + "sha": "6f462d73c02d5199d4295fc1749f9be097fb0f87", + "url": "https://api.github.com/repos/python/cpython/git/trees/6f462d73c02d5199d4295fc1749f9be097fb0f87" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/1d25b751c5382aa808dbdfd7eacd77cd793418fc", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC6JPCRC1aQ7uu5UhlAAAOkQQAJGuDdPwLjm/38xCu+Tt5IAy\nZI9EBZi9vJot40Tm8UvYsBj+DLBPotuyQ/iHyDTaCvF4aWAV5QjrpPw6CM0j+Jgs\n06knomi4a/CD0cjCnKjHIvayijql3b9UPlwDksyquRPArP9ICFw/wnKQn398brl7\n4acLQDek8AoX69mnPhsWK5ltYCZ8cTICEuQqIUrmSMV9exO1ujB9L1376EVVhEOT\nob6GGicXsX1ubg8yAt1NbTelHGXL5NbhE6oHloNUOfB+LgtqC9jKecckEn5lKdPS\nJwGBF50R199Upn9x0l5W1Xl5Bb6VXUf50gXu9PusJRzGy4DcZYC280S/D/nLU+9V\nt8vacuFXI8Y4gf5EN4xOCUmW5xLEo0qGC9N6XwXzDX+7fHALlkODsywc4Y8Hs/dO\nHqnJkWajFYkH+/6ZHfAcXobZ2BXJnEfJsPgGY+CjPT5bKTJ6c3BSMN7NDLk2iuWC\nFiwBfPdd9ZURmjRtBvg9xdSGVhT+6OqWbuwA3aRyxYlK1H5O/G7KvxYmJC8ZAWi2\n4lbo9DEuqHa90ibp8ioi56y77ZNflAc3AZWdsNoAKXLBhDG6BkNok789RYBDoBcq\niPh+sqLBNhYZyawNDib67E1AORRjYbtYzA43N7rjJDM1zMm/+ghj8phScts75PZ8\nC9zKPJq60arAd/79dmvH\n=JxAI\n-----END PGP SIGNATURE-----\n", + "payload": "tree 6f462d73c02d5199d4295fc1749f9be097fb0f87\nparent 3cb1ab0e5de340861afce50f338b2a9d40b04e68\nauthor Sachin Shah <39803835+inventshah@users.noreply.github.com> 1762370127 -0500\ncommitter GitHub 1762370127 +0200\n\ngh-140650: Fix write(), flush() and close() methods of io.BufferedWriter (GH-140653)\n\nThey could raise SystemError or crash when getting the \"closed\" attribute\nor converting it to boolean raises an exception.", + "verified_at": "2025-11-05T19:15:28Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/1d25b751c5382aa808dbdfd7eacd77cd793418fc", + "html_url": "https://github.com/python/cpython/commit/1d25b751c5382aa808dbdfd7eacd77cd793418fc", + "comments_url": "https://api.github.com/repos/python/cpython/commits/1d25b751c5382aa808dbdfd7eacd77cd793418fc/comments", + "author": { + "login": "inventshah", + "id": 39803835, + "node_id": "MDQ6VXNlcjM5ODAzODM1", + "avatar_url": "https://avatars.githubusercontent.com/u/39803835?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/inventshah", + "html_url": "https://github.com/inventshah", + "followers_url": "https://api.github.com/users/inventshah/followers", + "following_url": "https://api.github.com/users/inventshah/following{/other_user}", + "gists_url": "https://api.github.com/users/inventshah/gists{/gist_id}", + "starred_url": "https://api.github.com/users/inventshah/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/inventshah/subscriptions", + "organizations_url": "https://api.github.com/users/inventshah/orgs", + "repos_url": "https://api.github.com/users/inventshah/repos", + "events_url": "https://api.github.com/users/inventshah/events{/privacy}", + "received_events_url": "https://api.github.com/users/inventshah/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3cb1ab0e5de340861afce50f338b2a9d40b04e68", + "url": "https://api.github.com/repos/python/cpython/commits/3cb1ab0e5de340861afce50f338b2a9d40b04e68", + "html_url": "https://github.com/python/cpython/commit/3cb1ab0e5de340861afce50f338b2a9d40b04e68" + } + ] + }, + { + "sha": "3cb1ab0e5de340861afce50f338b2a9d40b04e68", + "node_id": "C_kwDOBN0Z8doAKDNjYjFhYjBlNWRlMzQwODYxYWZjZTUwZjMzOGIyYTlkNDBiMDRlNjg", + "commit": { + "author": { + "name": "Mikhail Efimov", + "email": "efimov.mikhail@gmail.com", + "date": "2025-11-05T19:12:56Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T19:12:56Z" + }, + "message": "gh-131527: Stackref debug borrow checker (#140599)\n\nAdd borrow checking to the stackref debug mode\n\n---------\n\nCo-authored-by: mpage ", + "tree": { + "sha": "f3b5b0d5ab14644ba148340c6682274260774c44", + "url": "https://api.github.com/repos/python/cpython/git/trees/f3b5b0d5ab14644ba148340c6682274260774c44" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/3cb1ab0e5de340861afce50f338b2a9d40b04e68", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC6G4CRC1aQ7uu5UhlAAAY0IQAEa9rIFNetnXRoJE42ZAL1RN\neN/YdzCfGnNKV3LsYoYMGFE+ZNZ6Vidxgbse8G7X3MucfroncJptZ3BxRvwwxCfU\no+KK6XPkIe9q4ldhIRlJkQlK3MeeRnQX9DobbRMvmN6OVZq/5zmQbbZk1XiLR1PW\nUZ9qxVFVzzqyY4aL9x/VaFgCl7UuMqGvUNhcHMFMXH1TIUkaPmcLBTz8dOskKCQW\nYW8CigmrJNlnx8fq9kkiZ+Cm1ZLmcO1ug7mHrePGJldGebkS+0p8mjVk2QRBpg3+\nhqjxvTSaC80WIUq5DVqRgAacxBFI13WhgK+/z4RiMvSlMbbuUN+i2wJm66HUrOgk\nrLNSh52z7/gsco56e6vLLsc24i+Pd+Ag7Jo4HFjgpQTif77WoX+/rdff07W+O7Bj\nMeIIjeNxVT7a1IOYnkK/XheQUP6xi5ulh8Y90GAOHc3mToh9J05PGLnlvEO++wBB\nt9qgHlHdyxWTEhp5qtXa8d6BIM6NQ3GatdfiwPFwwxNutP7muTrwYXrSunWCamuu\nJrEcR/cy6caRCJNN0SLVMcnPZNSGbJMWgvPh2xsCyE0ndv3ZQqXncghK+/hsRKGj\nQ+AI4UaXquuFRFaSAM2W+RpD2yu3v6pykWF4tcxOkK+6g9A0hfdpJJXxt8PR/PEW\naSYWIxv7D7etlRUCM38X\n=b8Iv\n-----END PGP SIGNATURE-----\n", + "payload": "tree f3b5b0d5ab14644ba148340c6682274260774c44\nparent baa9f338971c6a13433a8232db77cd45e6b87b77\nauthor Mikhail Efimov 1762369976 +0300\ncommitter GitHub 1762369976 -0800\n\ngh-131527: Stackref debug borrow checker (#140599)\n\nAdd borrow checking to the stackref debug mode\n\n---------\n\nCo-authored-by: mpage ", + "verified_at": "2025-11-05T19:12:57Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/3cb1ab0e5de340861afce50f338b2a9d40b04e68", + "html_url": "https://github.com/python/cpython/commit/3cb1ab0e5de340861afce50f338b2a9d40b04e68", + "comments_url": "https://api.github.com/repos/python/cpython/commits/3cb1ab0e5de340861afce50f338b2a9d40b04e68/comments", + "author": { + "login": "efimov-mikhail", + "id": 5574866, + "node_id": "MDQ6VXNlcjU1NzQ4NjY=", + "avatar_url": "https://avatars.githubusercontent.com/u/5574866?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/efimov-mikhail", + "html_url": "https://github.com/efimov-mikhail", + "followers_url": "https://api.github.com/users/efimov-mikhail/followers", + "following_url": "https://api.github.com/users/efimov-mikhail/following{/other_user}", + "gists_url": "https://api.github.com/users/efimov-mikhail/gists{/gist_id}", + "starred_url": "https://api.github.com/users/efimov-mikhail/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/efimov-mikhail/subscriptions", + "organizations_url": "https://api.github.com/users/efimov-mikhail/orgs", + "repos_url": "https://api.github.com/users/efimov-mikhail/repos", + "events_url": "https://api.github.com/users/efimov-mikhail/events{/privacy}", + "received_events_url": "https://api.github.com/users/efimov-mikhail/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "baa9f338971c6a13433a8232db77cd45e6b87b77", + "url": "https://api.github.com/repos/python/cpython/commits/baa9f338971c6a13433a8232db77cd45e6b87b77", + "html_url": "https://github.com/python/cpython/commit/baa9f338971c6a13433a8232db77cd45e6b87b77" + } + ] + }, + { + "sha": "baa9f338971c6a13433a8232db77cd45e6b87b77", + "node_id": "C_kwDOBN0Z8doAKGJhYTlmMzM4OTcxYzZhMTM0MzNhODIzMmRiNzdjZDQ1ZTZiODdiNzc", + "commit": { + "author": { + "name": "Sebastian Pipping", + "email": "sebastian@pipping.org", + "date": "2025-11-05T18:59:59Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T18:59:59Z" + }, + "message": "gh-139313: Improve docs on XML security (GH-139460)\n\nClarify that:\n- it takes parsing for an attack\n- that some doors are closed by default\n- only Expat version 2.7.2 has all the fixes\n- use of the bundle depends on configuration", + "tree": { + "sha": "32ece7cf99704d8ca6502494c59fe8b259be6bca", + "url": "https://api.github.com/repos/python/cpython/git/trees/32ece7cf99704d8ca6502494c59fe8b259be6bca" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/baa9f338971c6a13433a8232db77cd45e6b87b77", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC56vCRC1aQ7uu5UhlAAAcUEQABQqmF4nc8zmUFRoUt6BAAsw\n1svpJaTKgqr47GWfgFBvA+4bqaNSrv1vKZUfjx75hcRqkDk/DPwD/dkuM3lZEpaT\nxqeIDuCpPsrVlB5cZcyBH5lxJALMngSLRP4bVKIRnRuPjtmL/bWYbRlgsV80LrEL\nsD5G5ahkjNqzbUTNaAFT+Bt3inc9SFc0bnGmLPnsSNnF1sHGCsrdxmRYZaML2bHi\nkBvOuHMlTRNAhfug78pgLVvOT9bvbict16ruzpr+swSOUiLG4o8EXNEWvQCB/OVt\nGCO4qPgjNKfaRDTHQF/MOfnWOt0fjvkBrg5xbyJ/q3tntGHrTIB6FyYcJMF1fc9N\nEj307rbDNjh/wMsAZHKRdJzuv48LRDaB8dX8y2UKnvLneiS6dBG7NCk8UA7HUWNF\nhHf7BRsfzq6YD6q7rDlf/GFmiwWQoNYY5zcXv26731n3QiBrQwJ0iXwhF4YZ/j0T\nvFVY84yGgZJULTT+L/SkphZxi2LushyLRW2B4sgzNF2RriW/OeeXB8RK3p9DxlAt\nrNHbVeode+n8RF5HxI6ISi0iuZJC86fouOP6WFBBO0/2pieLFjidZ6eGy5U+nQNO\nMUhwOQT+2rA2J2uNpnbjkkTtRihcY9U7B3SlM7NWoi2kgHPCid5IkwHnSo0YeA0U\nmOsV+Itq553eZa9w4n/C\n=lUaP\n-----END PGP SIGNATURE-----\n", + "payload": "tree 32ece7cf99704d8ca6502494c59fe8b259be6bca\nparent 4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1\nauthor Sebastian Pipping 1762369199 +0100\ncommitter GitHub 1762369199 +0200\n\ngh-139313: Improve docs on XML security (GH-139460)\n\nClarify that:\n- it takes parsing for an attack\n- that some doors are closed by default\n- only Expat version 2.7.2 has all the fixes\n- use of the bundle depends on configuration\n", + "verified_at": "2025-11-05T18:59:59Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/baa9f338971c6a13433a8232db77cd45e6b87b77", + "html_url": "https://github.com/python/cpython/commit/baa9f338971c6a13433a8232db77cd45e6b87b77", + "comments_url": "https://api.github.com/repos/python/cpython/commits/baa9f338971c6a13433a8232db77cd45e6b87b77/comments", + "author": { + "login": "hartwork", + "id": 1577132, + "node_id": "MDQ6VXNlcjE1NzcxMzI=", + "avatar_url": "https://avatars.githubusercontent.com/u/1577132?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hartwork", + "html_url": "https://github.com/hartwork", + "followers_url": "https://api.github.com/users/hartwork/followers", + "following_url": "https://api.github.com/users/hartwork/following{/other_user}", + "gists_url": "https://api.github.com/users/hartwork/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hartwork/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hartwork/subscriptions", + "organizations_url": "https://api.github.com/users/hartwork/orgs", + "repos_url": "https://api.github.com/users/hartwork/repos", + "events_url": "https://api.github.com/users/hartwork/events{/privacy}", + "received_events_url": "https://api.github.com/users/hartwork/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1", + "url": "https://api.github.com/repos/python/cpython/commits/4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1", + "html_url": "https://github.com/python/cpython/commit/4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1" + } + ] + }, + { + "sha": "4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1", + "node_id": "C_kwDOBN0Z8doAKDRhYzE2ZGQxMDk1MGZhZDJkM2U1OGU4YjBiYTVmMmU2MjFhZjNjYzE", + "commit": { + "author": { + "name": "Victor Stinner", + "email": "vstinner@python.org", + "date": "2025-11-05T18:00:32Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T18:00:32Z" + }, + "message": "Fix a compiler warning in _randommodule.c (#141058)\n\nThe test just before the cast ensures that the cast cannot overflow.\n\nFix the warning on 32-bit Windows:\n\n Modules\\_randommodule.c(525,28): warning C4244: '=': conversion\n from 'uint64_t' to 'Py_ssize_t', possible loss of data", + "tree": { + "sha": "de83b31fa122135fecd8097900513e29b930b9a1", + "url": "https://api.github.com/repos/python/cpython/git/trees/de83b31fa122135fecd8097900513e29b930b9a1" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC5DACRC1aQ7uu5UhlAAAtD8QAJL2H1Q2/JbIqCODo1pfjZmK\nEMqKcnNCeHWKYvFUhaiyy3mLKcyAS21F2NS2pfPYUNd5YXsn/65hRLL0XMF+iMsV\n4r3wklrYol1t3KoHWazvt3ZLclVPaqnn5zTLVfDo9ic+FQRwlLhDdbUvIJjTIdhy\nOCzdy+Zr8ghFBdhqTFYbWhZqWUOdKkeSXseNMJVXhD08Y8x4IyHOvbDIi/xn15gg\nxtTA703y1/eQvU70INdaePzpBFrrB8aRFA6ojA2DIewBI6lwgQbUjx/Q8jW5UPD8\nuRWQVNvFGWEhPeTSxihsIZv3Pn8ZQWxtKt2DHnVZo3W6wI0kBEaONo33RUral/BS\nfQsTCPksJmMFdRrDMO3hRuxxgfK5BiZibGOxOLMWyjo49mv3ygIsWaZktxalsdeo\nuZR8b3A6Hj1vvdxv77rvqCgZHaTqDZjMC6PTWERrMQI4BOkaIQ3EYkAu1ee7RCoC\naygrq3TokEohYEOT7L08eYr3/YDRTe1g/mI5j0+wANpwp072Kmip8mU/kozHweEA\nbQhpd+rGs5afFMmio20/Vz5Rrc5TQuTsat4BEUkjv8yAlNMtDWAtNxsxTmZuOOv2\nBjIsVBSxCOZCMhvF3SKQkibytP9III5l3jJlNRNa2vBjF2OnjeOppxb/TD/2jQcD\n6SEFRMcTUwc+HkNZqftG\n=dNzx\n-----END PGP SIGNATURE-----\n", + "payload": "tree de83b31fa122135fecd8097900513e29b930b9a1\nparent 8d55faf2d68bbb6486a3e4509e8912d211748756\nauthor Victor Stinner 1762365632 +0100\ncommitter GitHub 1762365632 +0000\n\nFix a compiler warning in _randommodule.c (#141058)\n\nThe test just before the cast ensures that the cast cannot overflow.\n\nFix the warning on 32-bit Windows:\n\n Modules\\_randommodule.c(525,28): warning C4244: '=': conversion\n from 'uint64_t' to 'Py_ssize_t', possible loss of data", + "verified_at": "2025-11-05T18:00:32Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1", + "html_url": "https://github.com/python/cpython/commit/4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1", + "comments_url": "https://api.github.com/repos/python/cpython/commits/4ac16dd10950fad2d3e58e8b0ba5f2e621af3cc1/comments", + "author": { + "login": "vstinner", + "id": 194129, + "node_id": "MDQ6VXNlcjE5NDEyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vstinner", + "html_url": "https://github.com/vstinner", + "followers_url": "https://api.github.com/users/vstinner/followers", + "following_url": "https://api.github.com/users/vstinner/following{/other_user}", + "gists_url": "https://api.github.com/users/vstinner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vstinner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vstinner/subscriptions", + "organizations_url": "https://api.github.com/users/vstinner/orgs", + "repos_url": "https://api.github.com/users/vstinner/repos", + "events_url": "https://api.github.com/users/vstinner/events{/privacy}", + "received_events_url": "https://api.github.com/users/vstinner/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "8d55faf2d68bbb6486a3e4509e8912d211748756", + "url": "https://api.github.com/repos/python/cpython/commits/8d55faf2d68bbb6486a3e4509e8912d211748756", + "html_url": "https://github.com/python/cpython/commit/8d55faf2d68bbb6486a3e4509e8912d211748756" + } + ] + }, + { + "sha": "8d55faf2d68bbb6486a3e4509e8912d211748756", + "node_id": "C_kwDOBN0Z8doAKDhkNTVmYWYyZDY4YmJiNjQ4NmEzZTQ1MDllODkxMmQyMTE3NDg3NTY", + "commit": { + "author": { + "name": "Victor Stinner", + "email": "vstinner@python.org", + "date": "2025-11-05T17:37:06Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T17:37:06Z" + }, + "message": "Remove internal _PyTime_AsLong() function (#141053)\n\n* Replace _PyTime_AsLong() with PyLong_FromInt64()\n* Replace _PyTime_FromLong() with PyLong_AsInt64().", + "tree": { + "sha": "7e98fda19beceb4a561be9558b5e54db612df85a", + "url": "https://api.github.com/repos/python/cpython/git/trees/7e98fda19beceb4a561be9558b5e54db612df85a" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/8d55faf2d68bbb6486a3e4509e8912d211748756", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC4tCCRC1aQ7uu5UhlAAAIPsQAKmbds1KwmsUSfjx9WHtwk+2\npHT1ELjQ5+FCg4welePQWUs2fonjxumy67vXXLF4LRhKSOyqTQQ+2I8wjdLX+FGO\nT76fkEjSbfhuHifDwv6Dv/Pt2lSFqjqJduWLfDWR254wnIYjFVkDQk84Q3wHXhiX\n+OuzqNFIsGb0OerAwZGTMKBn4Dy1KB6hzlkTmpDJpWipnctmYhQ/Syx7IdeW3PAI\n2gSF3QaDdgq3+p0hAnbJ/JOwRIO3wxFJ9EWpy9Mg0FcJkMHvCL76PUGxtsAuPu1/\nQkTMoLby6QnWU5DVBXGHRnyYCMphMZ7RFV/mISREn8OmL4tG3ZEqYU562wa3M7Bh\nRYDaE6VVcd66UseOpQ6cMXGvjjvZaGq3EW4Iq8hLxIJLNILCDfhHcBFL9m/TF32i\npAwSRd7Q7yomV0ChGUFu2q+WWZqe1Qmv5gJWKH4GNmgH7qcZkxP2tsVKBIgYuDGE\nDmJUOMeOC1o2GTfgOhNQ81qIuqD/GIlGbi9jDLp+YZ6vtvM5aQzcfkz+akHU4OUx\nhMh4Qa03pidjxzPvtQ6BhX+gVYIsQ/hfPFJjWTzKfzBZr3teOjPnIEV2h3Lwk4Ap\ndK8Ajqk5S/T/5QKYMA4XyLk6SqzWvK6htT2nM0NNqa9ci/1npTvP22PgbUtOx7Xy\npFiXcEcU8M/KSkGPoXWl\n=cao1\n-----END PGP SIGNATURE-----\n", + "payload": "tree 7e98fda19beceb4a561be9558b5e54db612df85a\nparent 30ab627aab050840d17ac14c9d3730d065bda6af\nauthor Victor Stinner 1762364226 +0100\ncommitter GitHub 1762364226 +0100\n\nRemove internal _PyTime_AsLong() function (#141053)\n\n* Replace _PyTime_AsLong() with PyLong_FromInt64()\n* Replace _PyTime_FromLong() with PyLong_AsInt64().", + "verified_at": "2025-11-05T17:37:07Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/8d55faf2d68bbb6486a3e4509e8912d211748756", + "html_url": "https://github.com/python/cpython/commit/8d55faf2d68bbb6486a3e4509e8912d211748756", + "comments_url": "https://api.github.com/repos/python/cpython/commits/8d55faf2d68bbb6486a3e4509e8912d211748756/comments", + "author": { + "login": "vstinner", + "id": 194129, + "node_id": "MDQ6VXNlcjE5NDEyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vstinner", + "html_url": "https://github.com/vstinner", + "followers_url": "https://api.github.com/users/vstinner/followers", + "following_url": "https://api.github.com/users/vstinner/following{/other_user}", + "gists_url": "https://api.github.com/users/vstinner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vstinner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vstinner/subscriptions", + "organizations_url": "https://api.github.com/users/vstinner/orgs", + "repos_url": "https://api.github.com/users/vstinner/repos", + "events_url": "https://api.github.com/users/vstinner/events{/privacy}", + "received_events_url": "https://api.github.com/users/vstinner/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "30ab627aab050840d17ac14c9d3730d065bda6af", + "url": "https://api.github.com/repos/python/cpython/commits/30ab627aab050840d17ac14c9d3730d065bda6af", + "html_url": "https://github.com/python/cpython/commit/30ab627aab050840d17ac14c9d3730d065bda6af" + } + ] + }, + { + "sha": "30ab627aab050840d17ac14c9d3730d065bda6af", + "node_id": "C_kwDOBN0Z8doAKDMwYWI2MjdhYWIwNTA4NDBkMTdhYzE0YzlkMzczMGQwNjViZGE2YWY", + "commit": { + "author": { + "name": "Victor Stinner", + "email": "vstinner@python.org", + "date": "2025-11-05T17:31:35Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T17:31:35Z" + }, + "message": "gh-83714: Fix a compiler warning in stat_nanosecond_timestamp() (#141043)\n\nDisable the fast path on systems with 32-bit long.", + "tree": { + "sha": "c5fee30ca76a1d6b858a3252aaa1098b95832482", + "url": "https://api.github.com/repos/python/cpython/git/trees/c5fee30ca76a1d6b858a3252aaa1098b95832482" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/30ab627aab050840d17ac14c9d3730d065bda6af", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC4n3CRC1aQ7uu5UhlAAAu4cQAKQKbgaZklC52dfDAIfgah7f\nu8uN1Ke28dh//AR5jpG9Sh8Nt/8HQmj8o3s8ZiMyjv/CPBG1O6e6wq1wah4ajHBr\nu1dY1Vs9rkpsLJzFaBytCUxtnoj6aY6/xPrg3banWKZOMHqUPrlCLIBBsqUbOxaF\n4ExdJQKz0PigK467HY9YoEdQWw24JGsk/TQc/8l/JJYkU6nLEIDDwFBR0VXGmbOX\nXdRX6VjxpmBTi8ToAj4q24a2HvAZ3Ilj9NDmmxsz3ZtGHkATWmhBHPEclGdsZpLF\n9ffqCNOkYv/rnRyCfjUpcI2Q3ZYWdNJByZOzI72C6PUQurtzajJZ3At2CzZa2ioJ\nqv//W/DGbNs8+hYYT9fOkO6IdMeaR/55ADaTxWPhJ3fR/CIgGxhgFdCstkK/2wPJ\n0kwPOndU5/MVN6oASS0wQPR/lQmdKHGIuc3wrhiFA7QpfhGUfXSwKm0jqy9N53Mx\nkHvUhy/lXR/LZsEDoYdSP59uBmI1c4CCX5e05gqmlsXZKCf2pDhxMkpvTAdk6It9\n4kINHgkPK66dPg2KLLqNikYirFg33q84TARk6Ifq0qoiZ8z+6UIs+jw1HoC6orWp\no5ia7PA1phUuIqX5eef1lFf7MyhZNJ4kMlXVnEl7t46fl/ieR/0VTamISXDN55Bz\n9e42ZfYOtam3y5gjDdI/\n=V2u+\n-----END PGP SIGNATURE-----\n", + "payload": "tree c5fee30ca76a1d6b858a3252aaa1098b95832482\nparent 579b2f8910d6c4b07094d86b01d5421a55b09533\nauthor Victor Stinner 1762363895 +0100\ncommitter GitHub 1762363895 +0100\n\ngh-83714: Fix a compiler warning in stat_nanosecond_timestamp() (#141043)\n\nDisable the fast path on systems with 32-bit long.", + "verified_at": "2025-11-05T17:31:35Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/30ab627aab050840d17ac14c9d3730d065bda6af", + "html_url": "https://github.com/python/cpython/commit/30ab627aab050840d17ac14c9d3730d065bda6af", + "comments_url": "https://api.github.com/repos/python/cpython/commits/30ab627aab050840d17ac14c9d3730d065bda6af/comments", + "author": { + "login": "vstinner", + "id": 194129, + "node_id": "MDQ6VXNlcjE5NDEyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vstinner", + "html_url": "https://github.com/vstinner", + "followers_url": "https://api.github.com/users/vstinner/followers", + "following_url": "https://api.github.com/users/vstinner/following{/other_user}", + "gists_url": "https://api.github.com/users/vstinner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vstinner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vstinner/subscriptions", + "organizations_url": "https://api.github.com/users/vstinner/orgs", + "repos_url": "https://api.github.com/users/vstinner/repos", + "events_url": "https://api.github.com/users/vstinner/events{/privacy}", + "received_events_url": "https://api.github.com/users/vstinner/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "579b2f8910d6c4b07094d86b01d5421a55b09533", + "url": "https://api.github.com/repos/python/cpython/commits/579b2f8910d6c4b07094d86b01d5421a55b09533", + "html_url": "https://github.com/python/cpython/commit/579b2f8910d6c4b07094d86b01d5421a55b09533" + } + ] + }, + { + "sha": "579b2f8910d6c4b07094d86b01d5421a55b09533", + "node_id": "C_kwDOBN0Z8doAKDU3OWIyZjg5MTBkNmM0YjA3MDk0ZDg2YjAxZDU0MjFhNTViMDk1MzM", + "commit": { + "author": { + "name": "Victor Stinner", + "email": "vstinner@python.org", + "date": "2025-11-05T16:57:06Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T16:57:06Z" + }, + "message": "gh-140550: Run make regen-limited-abi (#141056)", + "tree": { + "sha": "87cd092cd04e13a23b4aa6fa23c710a03eae120c", + "url": "https://api.github.com/repos/python/cpython/git/trees/87cd092cd04e13a23b4aa6fa23c710a03eae120c" + }, + "url": "https://api.github.com/repos/python/cpython/git/commits/579b2f8910d6c4b07094d86b01d5421a55b09533", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC4HiCRC1aQ7uu5UhlAAANUQQAHH7p6vRBfAHGfNKSzHe2Bhh\nchFeD6m0zchLbdjIMf1OX+c2Ye/fUvFFZaxsfDqUWjTCCbF70Ju8OBL+gJ/C9Tsc\n8DY26o9HXS+5nBgzhPIPqB++c3awuq6BxA1uU1ZjewYkLoN+WJXRO0YPYPHnubJp\n+mOBxVHmtVdpWB3gT0qrg+xH+g4MCRZqKkl2dSlhCVUy0wz7Zw/w5HzsXx+xXQw7\nYSM0LDK4DTr8NRo7sGXKCmPRsKLbd8wcvS0SIG3P1kqsXk1ckhdUS7ffSfk+E5ZX\nRUK+6QCfnPLEAwwsrMK7fDnX9VasXHDb4BRpyfew7+7pXI8PAwVgsAHROYhzxUJb\n79wAtlgs93ZhamynDLnlhsnWi9Rs4r7gajHUtsVWN71AYgyRwC5B1Isw6zLROvtB\nVDiAzy9/CtF7r7NVH/xpIpnDBOwq41IZSNdlTUT3Ldwi6yfLogN+rRTqvLOZ8deK\nMClXFAgrjS+kGUS6rXdI6L0BvFWQKMHXA+ykA2Vif6EdzNWGiVc8TKYrUoCxyjZJ\nz5yuoC8kBpJy1db5put70Ou2XP3zGEyoALJxq4rhDp7M9y4dzHCoh45irhzzm/Yv\nroAMLE7AhrxqkR8MYQXE1xUNGNxDbhRg2arkwpqpvrZD+Kr9Xir5MnwIK3nJ7Z9A\n0SKgWAxZRJDIxug8RgjO\n=JcUV\n-----END PGP SIGNATURE-----\n", + "payload": "tree 87cd092cd04e13a23b4aa6fa23c710a03eae120c\nparent 3f6aca1be49f96c5c5f52040b8e78c73c79c0a86\nauthor Victor Stinner 1762361826 +0100\ncommitter GitHub 1762361826 +0000\n\ngh-140550: Run make regen-limited-abi (#141056)\n\n", + "verified_at": "2025-11-05T16:57:07Z" + } + }, + "url": "https://api.github.com/repos/python/cpython/commits/579b2f8910d6c4b07094d86b01d5421a55b09533", + "html_url": "https://github.com/python/cpython/commit/579b2f8910d6c4b07094d86b01d5421a55b09533", + "comments_url": "https://api.github.com/repos/python/cpython/commits/579b2f8910d6c4b07094d86b01d5421a55b09533/comments", + "author": { + "login": "vstinner", + "id": 194129, + "node_id": "MDQ6VXNlcjE5NDEyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/194129?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vstinner", + "html_url": "https://github.com/vstinner", + "followers_url": "https://api.github.com/users/vstinner/followers", + "following_url": "https://api.github.com/users/vstinner/following{/other_user}", + "gists_url": "https://api.github.com/users/vstinner/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vstinner/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vstinner/subscriptions", + "organizations_url": "https://api.github.com/users/vstinner/orgs", + "repos_url": "https://api.github.com/users/vstinner/repos", + "events_url": "https://api.github.com/users/vstinner/events{/privacy}", + "received_events_url": "https://api.github.com/users/vstinner/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "3f6aca1be49f96c5c5f52040b8e78c73c79c0a86", + "url": "https://api.github.com/repos/python/cpython/commits/3f6aca1be49f96c5c5f52040b8e78c73c79c0a86", + "html_url": "https://github.com/python/cpython/commit/3f6aca1be49f96c5c5f52040b8e78c73c79c0a86" + } + ] + } +] \ No newline at end of file diff --git a/github/commits_python.metadata.json b/github/commits_python.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..98a358fda04415a2e26dc3124c6787cd879b5fb8 --- /dev/null +++ b/github/commits_python.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_commits_python", + "source": "github", + "collected_date": "2025-11-05T22:50:58.091069", + "size_bytes": 78004, + "description": "Python recent commits", + "url": "https://api.github.com/repos/python/cpython/commits?per_page=15" +} \ No newline at end of file diff --git a/github/commits_rust.json b/github/commits_rust.json new file mode 100644 index 0000000000000000000000000000000000000000..b3c3a2c1a6b003060eaac3880836ddefcd4e01cf --- /dev/null +++ b/github/commits_rust.json @@ -0,0 +1,1287 @@ +[ + { + "sha": "401ae55427522984e4a89c37cff6562a4ddcf6b7", + "node_id": "C_kwDOAAsO6NoAKDQwMWFlNTU0Mjc1MjI5ODRlNGE4OWMzN2NmZjY1NjJhNGRkY2Y2Yjc", + "commit": { + "author": { + "name": "bors", + "email": "bors@rust-lang.org", + "date": "2025-11-05T21:07:24Z" + }, + "committer": { + "name": "bors", + "email": "bors@rust-lang.org", + "date": "2025-11-05T21:07:24Z" + }, + "message": "Auto merge of #148544 - matthiaskrgr:rollup-n9dqgwc, r=matthiaskrgr\n\nRollup of 8 pull requests\n\nSuccessful merges:\n\n - rust-lang/rust#147994 (Deduplicate deprecation warning when using unit or tuple structs)\n - rust-lang/rust#148440 ([rustdoc search] Simplify itemTypes and filter \"dependencies\")\n - rust-lang/rust#148501 (triagebot: Create Zulip topics for libs backports)\n - rust-lang/rust#148517 (Remove no longer necessary lint allow)\n - rust-lang/rust#148518 (Unify the configuration of the compiler docs)\n - rust-lang/rust#148523 (miri subtree update)\n - rust-lang/rust#148525 (Fix ICE from lit_to_mir_constant caused by type error)\n - rust-lang/rust#148534 (Merge `Vec::push{,_mut}_within_capacity`)\n\nr? `@ghost`\n`@rustbot` modify labels: rollup", + "tree": { + "sha": "b1555b543e5daf994e1824f65e04c97863b240cc", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/b1555b543e5daf994e1824f65e04c97863b240cc" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/401ae55427522984e4a89c37cff6562a4ddcf6b7", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/401ae55427522984e4a89c37cff6562a4ddcf6b7", + "html_url": "https://github.com/rust-lang/rust/commit/401ae55427522984e4a89c37cff6562a4ddcf6b7", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/401ae55427522984e4a89c37cff6562a4ddcf6b7/comments", + "author": { + "login": "bors", + "id": 3372342, + "node_id": "MDQ6VXNlcjMzNzIzNDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3372342?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bors", + "html_url": "https://github.com/bors", + "followers_url": "https://api.github.com/users/bors/followers", + "following_url": "https://api.github.com/users/bors/following{/other_user}", + "gists_url": "https://api.github.com/users/bors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bors/subscriptions", + "organizations_url": "https://api.github.com/users/bors/orgs", + "repos_url": "https://api.github.com/users/bors/repos", + "events_url": "https://api.github.com/users/bors/events{/privacy}", + "received_events_url": "https://api.github.com/users/bors/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "bors", + "id": 3372342, + "node_id": "MDQ6VXNlcjMzNzIzNDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3372342?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bors", + "html_url": "https://github.com/bors", + "followers_url": "https://api.github.com/users/bors/followers", + "following_url": "https://api.github.com/users/bors/following{/other_user}", + "gists_url": "https://api.github.com/users/bors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bors/subscriptions", + "organizations_url": "https://api.github.com/users/bors/orgs", + "repos_url": "https://api.github.com/users/bors/repos", + "events_url": "https://api.github.com/users/bors/events{/privacy}", + "received_events_url": "https://api.github.com/users/bors/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "b01cc1cf01ed12adb2595c4696321ee722ef545e", + "url": "https://api.github.com/repos/rust-lang/rust/commits/b01cc1cf01ed12adb2595c4696321ee722ef545e", + "html_url": "https://github.com/rust-lang/rust/commit/b01cc1cf01ed12adb2595c4696321ee722ef545e" + }, + { + "sha": "05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5", + "url": "https://api.github.com/repos/rust-lang/rust/commits/05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5", + "html_url": "https://github.com/rust-lang/rust/commit/05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5" + } + ] + }, + { + "sha": "05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5", + "node_id": "C_kwDOAAsO6NoAKDA1ZjNhM2Q3ZjUwZDlmZTRkZDU0ZTFiN2NiZDZlYmE1MWM3ZTFmYjU", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:31Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:31Z" + }, + "message": "Rollup merge of #148534 - WaffleLapkin:push_within_capacity_now_with_50_percent_more_mut, r=Amanieu\n\nMerge `Vec::push{,_mut}_within_capacity`\n\nImplements https://github.com/rust-lang/libs-team/issues/689.\n\ncc https://github.com/rust-lang/rust/issues/135974, https://github.com/rust-lang/rust/issues/100486\n\nr? libs-api", + "tree": { + "sha": "77e1ae9d9fba59261239b6e281ba8e84431ed1c4", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/77e1ae9d9fba59261239b6e281ba8e84431ed1c4" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NvCRC1aQ7uu5UhlAAAZyAQAE+ayJ3NTQIL/97O1hyVTrn6\nB6VQMjJVXmuMQsY040ryiE5Pa7q9Ep6XBd/jJ+VXoLmosMHsJNtcxrN02qQqqthl\nGD2JYdzObaGTfP2ad+xP9Hiai/h2yLlah53Fn0IoHPq2cD7y3hIpsZGL7K+BD/UO\nQN1IZc1XD1TTVEkUwiLuc2uidUTOMtnTl+41uYfh9jxGYWnv6eJMkjHDdTx00yWF\nffuFTGMwuznrx3gJhykZ5YxxcGs18ZT0mp46nbARWEh5hFnRk6LrySclBhVLT2sf\nwTwuZlR3AdyE/YDMS06sFxy2wCOTdYGwOQEib0OlBtC+W4OVWXPrbJS5xyPXktGD\nz1m7BebdT8HstnRW2UzMoQLasmXRN5wiblp57LvEErUQPUNETWypnjMXzOSiMigT\n4ADJYbTXQxLNmOT0fbEt8A+Qh1PtEFUf95UXFDkK0iTVQLtf4iq1jSqTUh9hKYEE\ncUAPmJBXuiMTb69eTrYk7/iqQJULggJ3QNlNeOY/GOePgLh1wnq3HfXE0sCwFvrm\nAEBVsTCF+XV4AcB94IoqeoyrRZQkKMJaxi6rUK5Ov6r03LMn045kgz1iAnImQflI\nKdDX5H4Dw6oKb9B+pDBt9fwWNAyWXtFMgnAG6EqXwq3X77wnDnUI6Vo01kAasTHa\nI+naRh85KsfllwFGNS4V\n=rKhs\n-----END PGP SIGNATURE-----\n", + "payload": "tree 77e1ae9d9fba59261239b6e281ba8e84431ed1c4\nparent 72cef11570e7817e266fe0215b2625ca8ffd5077\nparent 32c93ccc89394a317ad272864d3970420bd4dc81\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374511 +0100\ncommitter GitHub 1762374511 +0100\n\nRollup merge of #148534 - WaffleLapkin:push_within_capacity_now_with_50_percent_more_mut, r=Amanieu\n\nMerge `Vec::push{,_mut}_within_capacity`\n\nImplements https://github.com/rust-lang/libs-team/issues/689.\n\ncc https://github.com/rust-lang/rust/issues/135974, https://github.com/rust-lang/rust/issues/100486\n\nr? libs-api\n", + "verified_at": "2025-11-05T20:28:32Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5", + "html_url": "https://github.com/rust-lang/rust/commit/05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/05f3a3d7f50d9fe4dd54e1b7cbd6eba51c7e1fb5/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "72cef11570e7817e266fe0215b2625ca8ffd5077", + "url": "https://api.github.com/repos/rust-lang/rust/commits/72cef11570e7817e266fe0215b2625ca8ffd5077", + "html_url": "https://github.com/rust-lang/rust/commit/72cef11570e7817e266fe0215b2625ca8ffd5077" + }, + { + "sha": "32c93ccc89394a317ad272864d3970420bd4dc81", + "url": "https://api.github.com/repos/rust-lang/rust/commits/32c93ccc89394a317ad272864d3970420bd4dc81", + "html_url": "https://github.com/rust-lang/rust/commit/32c93ccc89394a317ad272864d3970420bd4dc81" + } + ] + }, + { + "sha": "72cef11570e7817e266fe0215b2625ca8ffd5077", + "node_id": "C_kwDOAAsO6NoAKDcyY2VmMTE1NzBlNzgxN2UyNjZmZTAyMTViMjYyNWNhOGZmZDUwNzc", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:31Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:31Z" + }, + "message": "Rollup merge of #148525 - chenyukang:yukang-fix-148515, r=wesleywiser\n\nFix ICE from lit_to_mir_constant caused by type error\n\nFixes rust-lang/rust#148515\n\nwe still need to mark that there were errors to prevent later phases (like MIR building) from proceeding.", + "tree": { + "sha": "c14591d6932b0a97c9779cc8656fc16e9b6fc4e5", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/c14591d6932b0a97c9779cc8656fc16e9b6fc4e5" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/72cef11570e7817e266fe0215b2625ca8ffd5077", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NvCRC1aQ7uu5UhlAAA3Z0QAIi6/XkeaATBFDXVGe3j6XKb\nn62wUH3VVe7uls02O+C+fkVegOmbjuOMw4Sqdi3rW4ACOd+y8vWXUJQ4tFLytV76\nz27JG3/yhMHSJItE23sA4cIhDURhC6x05qRkPGXkLfcoCU3k4xNaxQBEAU0xuRmk\nxntdPyYfkQVQ8Jke5UfNLN1JyrIx+r7ADzFE1qOzq/Rt8RQ2YV4ZnR3qoVfpNYpP\n1JVUzp8BUbFSoHRXNvfKImib334tJ1qt//sH/RKqk464ZXOarlfEQNj2RJqgwLxz\nZikUnBLe0IVYhWKRklXkshpI3/M6kSPipDt2mv3lvZRyc8kaw+voHl02tU9eSoZv\nS0Vl0pHb25a7lcaXunecMMIi6mAkoH2LXM8t+7IYPXhLPhnD8FV6HjfHZGYET2s4\nrbTiRqw7gbv6vUyR9qUOdWG/kaKFDNmjP/7oA5sxvazgmo/SH3NvnUwMTsTD8tXp\nlidAccugszWsrzcXCJWmab0ErnIewvXptAJ8Xliemeo9/QXcUQq5uaiT2lp72U1n\n5iTskgH6eF/wROHPNndG6yUFkn6ojSrgyj9ZIaUWZYQSqCx9fuPM1k9rPVKSgZGS\nqEb6awuw0KBzWXX94AdvBRXoa8HFiEWjsTu12splwh+vHrAagcZT91+Pzw+kp6ka\nwnwNKDM7SAaLNitAxP4U\n=gSNa\n-----END PGP SIGNATURE-----\n", + "payload": "tree c14591d6932b0a97c9779cc8656fc16e9b6fc4e5\nparent 5ed4fafff2ca5bf220d1db959deb1e5d0f327cee\nparent eaf979e8dd98f006767632f0910cd2fdecf8541d\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374511 +0100\ncommitter GitHub 1762374511 +0100\n\nRollup merge of #148525 - chenyukang:yukang-fix-148515, r=wesleywiser\n\nFix ICE from lit_to_mir_constant caused by type error\n\nFixes rust-lang/rust#148515\n\nwe still need to mark that there were errors to prevent later phases (like MIR building) from proceeding.\n", + "verified_at": "2025-11-05T20:28:31Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/72cef11570e7817e266fe0215b2625ca8ffd5077", + "html_url": "https://github.com/rust-lang/rust/commit/72cef11570e7817e266fe0215b2625ca8ffd5077", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/72cef11570e7817e266fe0215b2625ca8ffd5077/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5ed4fafff2ca5bf220d1db959deb1e5d0f327cee", + "url": "https://api.github.com/repos/rust-lang/rust/commits/5ed4fafff2ca5bf220d1db959deb1e5d0f327cee", + "html_url": "https://github.com/rust-lang/rust/commit/5ed4fafff2ca5bf220d1db959deb1e5d0f327cee" + }, + { + "sha": "eaf979e8dd98f006767632f0910cd2fdecf8541d", + "url": "https://api.github.com/repos/rust-lang/rust/commits/eaf979e8dd98f006767632f0910cd2fdecf8541d", + "html_url": "https://github.com/rust-lang/rust/commit/eaf979e8dd98f006767632f0910cd2fdecf8541d" + } + ] + }, + { + "sha": "5ed4fafff2ca5bf220d1db959deb1e5d0f327cee", + "node_id": "C_kwDOAAsO6NoAKDVlZDRmYWZmZjJjYTViZjIyMGQxZGI5NTlkZWIxZTVkMGYzMjdjZWU", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:30Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:30Z" + }, + "message": "Rollup merge of #148523 - RalfJung:miri, r=RalfJung\n\nmiri subtree update\n\nx86/rounding-error is causing spurious test failures. This sync fixes that.\n\n---\n\nSubtree update of `miri` to https://github.com/rust-lang/miri/commit/de2a63b1e2df549087b33d0da10b3027537d6a07.\n\nCreated using https://github.com/rust-lang/josh-sync.\n\nr? ``@ghost``", + "tree": { + "sha": "ccbcfc2babebde74ff964be28c014f0ac154f770", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/ccbcfc2babebde74ff964be28c014f0ac154f770" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/5ed4fafff2ca5bf220d1db959deb1e5d0f327cee", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NuCRC1aQ7uu5UhlAAAyJoQAFhoDLpIRcOSWsteUTl5PVjv\nrnJH+CYKRCoai61Ste6ClihC24bmdgw40Z52T5CARUIwft56isnIlKjYWDf/wDie\nTsq1PEH5AcAwnOIYDbwGzl372OYqSqeazt3swRZe38P/iuN6c8jhQ0gdoYQj0NZg\nqwBbynb4bAA4hR7KxxwCM4sMv1uiY3Hqs8KnewjBJ5DOoNui7TOEjLK6rgJm7vSI\nn4oqmIecoBoIFWXeFMbcUldUyJ0AeCJmye2pFtsh5Phh+B0IotXKPWfEFyZ4OxnY\nn2V2ftRjKs2U16H62M5y+4aV7X2ByPc2lpcCMhKvcIlqHrVmEkMzKMBEwtRufOyh\nUPg7CRpHxnUXLQTnZRHyyy4aLyqJ246N7XlGtjWnzM38z5IDbFYHDttKAnVbJ8aZ\nAxzCAW0HWpqtnadhK7VS+zyJqwbUaUPybYii8oXkujadeB8SSTzs+NtiPuNo9F10\npLW1HfZ5rjkZfLcmfOHnoqq8cDBK2L+xIIyXftSivlZO7vtv3kVdIcMaxV4Oh0zN\nNzNNrq+Ho5tFopi+VZ+3E2B2i+wdxTlUXjqdht9deJi7lQlpisNV449uXPFCW+sb\nMS9dHrTf1aauuUXNQXVEtucZvb9ClMs3zkkeXi3YGGC5/fzBnS5LQX8A+bzJJCWm\nRGWEYp9muoGajGPpaqP+\n=2RMg\n-----END PGP SIGNATURE-----\n", + "payload": "tree ccbcfc2babebde74ff964be28c014f0ac154f770\nparent 958f2a911f545af153571380f86ee007cd207a33\nparent ac94379ff489c80d843fc9321ce6a0586a887f41\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374510 +0100\ncommitter GitHub 1762374510 +0100\n\nRollup merge of #148523 - RalfJung:miri, r=RalfJung\n\nmiri subtree update\n\nx86/rounding-error is causing spurious test failures. This sync fixes that.\n\n---\n\nSubtree update of `miri` to https://github.com/rust-lang/miri/commit/de2a63b1e2df549087b33d0da10b3027537d6a07.\n\nCreated using https://github.com/rust-lang/josh-sync.\n\nr? ``@ghost``\n", + "verified_at": "2025-11-05T20:28:30Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/5ed4fafff2ca5bf220d1db959deb1e5d0f327cee", + "html_url": "https://github.com/rust-lang/rust/commit/5ed4fafff2ca5bf220d1db959deb1e5d0f327cee", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/5ed4fafff2ca5bf220d1db959deb1e5d0f327cee/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "958f2a911f545af153571380f86ee007cd207a33", + "url": "https://api.github.com/repos/rust-lang/rust/commits/958f2a911f545af153571380f86ee007cd207a33", + "html_url": "https://github.com/rust-lang/rust/commit/958f2a911f545af153571380f86ee007cd207a33" + }, + { + "sha": "ac94379ff489c80d843fc9321ce6a0586a887f41", + "url": "https://api.github.com/repos/rust-lang/rust/commits/ac94379ff489c80d843fc9321ce6a0586a887f41", + "html_url": "https://github.com/rust-lang/rust/commit/ac94379ff489c80d843fc9321ce6a0586a887f41" + } + ] + }, + { + "sha": "958f2a911f545af153571380f86ee007cd207a33", + "node_id": "C_kwDOAAsO6NoAKDk1OGYyYTkxMWY1NDVhZjE1MzU3MTM4MGY4NmVlMDA3Y2QyMDdhMzM", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:29Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:29Z" + }, + "message": "Rollup merge of #148518 - bjorn3:unify_compiler_doc_config, r=GuillaumeGomez\n\nUnify the configuration of the compiler docs\n\nPreviously it was rather inconsistent which crates got the rust logo and which didn't and setting html_root_url was forgotten in many cases.", + "tree": { + "sha": "319c3a4edb54c3e3e26cb84938429e47071932f3", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/319c3a4edb54c3e3e26cb84938429e47071932f3" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/958f2a911f545af153571380f86ee007cd207a33", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NtCRC1aQ7uu5UhlAAAe64QAKLfZ9nuJ5PF75A7UKmO/YVL\nPOGn0HLtUMHEdNschE+LHpjruczdYnZEVgA9rNEji5igHNJLzpSbfvyqNRWO8glv\nClmVByECYr0CCONKAFnvGtv1SnB80Ofecjk2Mm4O7CA/gGFqU942RY5MKoiVqUiU\ngcGJs3uIuiGt7TCntQ9+uB2t0lndA4+zcZtjPJNAbS1orcUvxDZY52nV3iNMnfoc\nFloLO6CDnVD1H+5R/AZvNq3ZMNmNd5gfKy8Z86ErrQQvjaD6MO76pJhYilS9Ye1g\n1fMOKxNPMvTQX78QOJOX9VNakfyoUh4vQ6kvv0Dwk5eiMKOpVc1uXtmeDGffVXRa\nupEZFP7Pm/YHImiva8UatuBKQnf/9ofYCO0NLZHChIkAEDSdm1DB3VgqFnKBCYU/\nnfp8mDF320gDVibSUsRm4GmYp242u1uPy8CxqckLWfe0vU8Yt87iUIf5+j2GCx8c\nm78jqi0vGStUg76mv4iXkG+eFP+NKh40TWuCF3Z8oJY7Ff3qJ0qGHXmwk2w/V15d\nA4ClzfiJyn3HllKMPcriqdxAkbETa/pv9DyfbVpR9XQ1Y3Am+Z1oTbXEPYSFi569\nob9PW8nbIpw3jvukKWcY0TWGezHuDpTHEvn0/U3Epdmmxln1tM78sv3SB71WrG18\noa3uxilbD31e9C6tsa5a\n=lwb/\n-----END PGP SIGNATURE-----\n", + "payload": "tree 319c3a4edb54c3e3e26cb84938429e47071932f3\nparent d195074363930b036150b2d421c9d2ed5ca04fcd\nparent 222480dcb94c5a27fb10768aae7ccc99da0d805c\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374509 +0100\ncommitter GitHub 1762374509 +0100\n\nRollup merge of #148518 - bjorn3:unify_compiler_doc_config, r=GuillaumeGomez\n\nUnify the configuration of the compiler docs\n\nPreviously it was rather inconsistent which crates got the rust logo and which didn't and setting html_root_url was forgotten in many cases.\n", + "verified_at": "2025-11-05T20:28:30Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/958f2a911f545af153571380f86ee007cd207a33", + "html_url": "https://github.com/rust-lang/rust/commit/958f2a911f545af153571380f86ee007cd207a33", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/958f2a911f545af153571380f86ee007cd207a33/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "d195074363930b036150b2d421c9d2ed5ca04fcd", + "url": "https://api.github.com/repos/rust-lang/rust/commits/d195074363930b036150b2d421c9d2ed5ca04fcd", + "html_url": "https://github.com/rust-lang/rust/commit/d195074363930b036150b2d421c9d2ed5ca04fcd" + }, + { + "sha": "222480dcb94c5a27fb10768aae7ccc99da0d805c", + "url": "https://api.github.com/repos/rust-lang/rust/commits/222480dcb94c5a27fb10768aae7ccc99da0d805c", + "html_url": "https://github.com/rust-lang/rust/commit/222480dcb94c5a27fb10768aae7ccc99da0d805c" + } + ] + }, + { + "sha": "d195074363930b036150b2d421c9d2ed5ca04fcd", + "node_id": "C_kwDOAAsO6NoAKGQxOTUwNzQzNjM5MzBiMDM2MTUwYjJkNDIxYzlkMmVkNWNhMDRmY2Q", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:29Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:29Z" + }, + "message": "Rollup merge of #148517 - bjorn3:lint_cleanup, r=joboet\n\nRemove no longer necessary lint allow", + "tree": { + "sha": "fbe4810f7c69e7a0dee47423d654ee71b4878bc7", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/fbe4810f7c69e7a0dee47423d654ee71b4878bc7" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/d195074363930b036150b2d421c9d2ed5ca04fcd", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NtCRC1aQ7uu5UhlAAA4KIQAA9nlt5IvRMij0PUnzgChCZp\nKXXLvygNsNPPkVxs7z/wRlCHWKswB4N2yeBEdqu21lXqfiNAu6Spu39EfQ/kt+QO\n4pB9UUU8BP9q58hcFn9fJwCM0zvWA8XZIJsaIfG6Wm23ErKp1tiEJBeSNzI1j+0y\npE4e8cPVk25pgJrlUb45LmwEcWAABQD7GJWWdAsFCHYGxa6Ht73NS1ahQYnurx4T\nFk7HdpzKCvaZ0L565IAtc1JREgtEAZri4lxEfXSkjYbA2atdwIRb+y2wEZPlpSz9\nGzG4DW+cE2SFDRLucMnyCjgH1j1iuRvgNn51vwkt9biSZpil8D4042nKMDkNl06C\nQaO6fMJN695JrsEXxSsUZy1nAb8s5tXbdl6N9zfQp6wL8hTDEHWcvAKW1fF8CN5l\nI23zwcWSqHr0O3lggfpSx/Q/Hfk6ctQnqFD7ZGGGbxU4QZgrVvdF3+FlrDDw87jp\nQwYEK9f5T4JHmfhGDQkI+tE+tmkU0ZWxrgbBycNeYm0yJPZiDWBifY4WpPsjtM8T\n0u3+Flo2NWMRFt4mC40RmJgTGdpkJIwR7HTMaB/zblMr/1C8PuLsydtuuXf36V//\n4QqPD3/7lkd1OfSCbUfxD90rhINQrhu5M2Ce3GaX1y6h2EQdwCquHuUrk2ZtQEWn\nhbDgOHCUsu9TeDb+oleR\n=MFI5\n-----END PGP SIGNATURE-----\n", + "payload": "tree fbe4810f7c69e7a0dee47423d654ee71b4878bc7\nparent 5f3b18638e08de2d1d1e8d36fe186f392e6a12e4\nparent 389c3ce0f762bf4d6713ce6eb2b0f66945115065\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374509 +0100\ncommitter GitHub 1762374509 +0100\n\nRollup merge of #148517 - bjorn3:lint_cleanup, r=joboet\n\nRemove no longer necessary lint allow\n", + "verified_at": "2025-11-05T20:28:29Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/d195074363930b036150b2d421c9d2ed5ca04fcd", + "html_url": "https://github.com/rust-lang/rust/commit/d195074363930b036150b2d421c9d2ed5ca04fcd", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/d195074363930b036150b2d421c9d2ed5ca04fcd/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "5f3b18638e08de2d1d1e8d36fe186f392e6a12e4", + "url": "https://api.github.com/repos/rust-lang/rust/commits/5f3b18638e08de2d1d1e8d36fe186f392e6a12e4", + "html_url": "https://github.com/rust-lang/rust/commit/5f3b18638e08de2d1d1e8d36fe186f392e6a12e4" + }, + { + "sha": "389c3ce0f762bf4d6713ce6eb2b0f66945115065", + "url": "https://api.github.com/repos/rust-lang/rust/commits/389c3ce0f762bf4d6713ce6eb2b0f66945115065", + "html_url": "https://github.com/rust-lang/rust/commit/389c3ce0f762bf4d6713ce6eb2b0f66945115065" + } + ] + }, + { + "sha": "5f3b18638e08de2d1d1e8d36fe186f392e6a12e4", + "node_id": "C_kwDOAAsO6NoAKDVmM2IxODYzOGUwOGRlMmQxZDFlOGQzNmZlMTg2ZjM5MmU2YTEyZTQ", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:28Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:28Z" + }, + "message": "Rollup merge of #148501 - tgross35:triagebot-libs-backports, r=Amanieu\n\ntriagebot: Create Zulip topics for libs backports\n\nTake the configuration used by other teams to create Zulip topics for T-libs backports.", + "tree": { + "sha": "14c2905c329c057d3650397aad16f0799b14d665", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/14c2905c329c057d3650397aad16f0799b14d665" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/5f3b18638e08de2d1d1e8d36fe186f392e6a12e4", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NsCRC1aQ7uu5UhlAAA+f0QABmh/pz7mHFB0TYwxre887Wd\nnJr60p9Rjv5NzyZN5vSxUXgQUyuaxZY4FBlqhUI8u8L9s/GWUFd5ZDEMP8/05qWa\nKNRVkTIVXlrGIZM8nrt+xMPEXBtADlywMhqvd5QzAgw2D42WWwSyKxPuFhs3gTxm\nR0B+HUhoDQUSM6TetS1uwWDTdhkVt4CVfedkCEmr3ltIuTgAZI4njbDIPgEWkSfP\nSeYSa2yLxNyP4HGnus2nVOc6pFu8yiB9I/3mhi0kbPDnwJKdScuoUHPXHq80ERm5\nmNYeCgX7cYxSVHmUuqXnFDoyx2Zffz1WiQ5Bb99Wntmok5iPfD/+ljtoykAC0D2G\nG26zhpBcNrG3nDgOAIN/X7ygcfkbK063fWiTsMFGFFkmWp/rrjDK0Y8is27CJjA/\nx2P9ZZOa4+kq55cDJMjYNfGqXJTYOkP8tNBfGn95yWBQoNha66sxWa6rQD1kYr2p\nnaRQ1FmCCHh6OSoIylKR/vGS2A+BLqR0j0v9LmP2WgqD8BanUYbpqCFBfY2fbSKp\nSM2UV1KVXoFG+XorF25YnoBEw6jMciZ9tqP7enpX0gQeJQdO2DwW07gVL22potuc\n3xXBhwWQb2ecg4d/OKaGyvzE//iEpb+Oyr5udQNU//GhpFcIKIsU2ZbpbxZchm+o\nTVp1dCgVda5GJD9WFM3y\n=M5D8\n-----END PGP SIGNATURE-----\n", + "payload": "tree 14c2905c329c057d3650397aad16f0799b14d665\nparent 54fa49846ff4745816d91881c0133f75ea32e716\nparent f7f0ca4b76c5a3beaed7b4f4823200cb20ea54b7\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374508 +0100\ncommitter GitHub 1762374508 +0100\n\nRollup merge of #148501 - tgross35:triagebot-libs-backports, r=Amanieu\n\ntriagebot: Create Zulip topics for libs backports\n\nTake the configuration used by other teams to create Zulip topics for T-libs backports.\n", + "verified_at": "2025-11-05T20:28:28Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/5f3b18638e08de2d1d1e8d36fe186f392e6a12e4", + "html_url": "https://github.com/rust-lang/rust/commit/5f3b18638e08de2d1d1e8d36fe186f392e6a12e4", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/5f3b18638e08de2d1d1e8d36fe186f392e6a12e4/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "54fa49846ff4745816d91881c0133f75ea32e716", + "url": "https://api.github.com/repos/rust-lang/rust/commits/54fa49846ff4745816d91881c0133f75ea32e716", + "html_url": "https://github.com/rust-lang/rust/commit/54fa49846ff4745816d91881c0133f75ea32e716" + }, + { + "sha": "f7f0ca4b76c5a3beaed7b4f4823200cb20ea54b7", + "url": "https://api.github.com/repos/rust-lang/rust/commits/f7f0ca4b76c5a3beaed7b4f4823200cb20ea54b7", + "html_url": "https://github.com/rust-lang/rust/commit/f7f0ca4b76c5a3beaed7b4f4823200cb20ea54b7" + } + ] + }, + { + "sha": "54fa49846ff4745816d91881c0133f75ea32e716", + "node_id": "C_kwDOAAsO6NoAKDU0ZmE0OTg0NmZmNDc0NTgxNmQ5MTg4MWMwMTMzZjc1ZWEzMmU3MTY", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:27Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:27Z" + }, + "message": "Rollup merge of #148440 - GuillaumeGomez:improve-search-code, r=notriddle\n\n[rustdoc search] Simplify itemTypes and filter \"dependencies\"\n\nWe currently have a list of type filters, some constants to be able to index the list of type filters and finally a `switch` to include some types in a given filter (for example when we filter on `constant`, we also include `associatedconstant` items).\n\nr? ``@notriddle``", + "tree": { + "sha": "743c122c3bf583429b0b6bd38501cfb0cc452ebb", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/743c122c3bf583429b0b6bd38501cfb0cc452ebb" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/54fa49846ff4745816d91881c0133f75ea32e716", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NrCRC1aQ7uu5UhlAAA93oQAJrWZ5Vc0TCfbd0KSxjV6txr\nr5XDH34BSNyz+EmS8GJoxjkip08O299f9OuBiPtn76wJTEZaU6t8EpmKSufCecJi\nPV5KuvRBeurVeb3cQ0FXPRL8JFMhAmNTIbNfNry73kUlwCJ/W31W7pY/KkEQ5MW2\nYFCFLx3QWg5zAzAt2oTZn+ozmzL+bvhems4ixUgKTdWK8mSEcT/QQOXgocej/b8c\no9ccoH4c6mm1t0pbTiPI2BMzDtQgy6rsEjKZOAKcQj+bX8L03HNyoykflIJKVoM6\nJZuNb+kTG/pFg6cEH4REgG204d0jQ/90QDUXh+x73s+tfHmtSpb8GPs0J3LO9x6W\nl5/OJ3w5VyS3tlvlU4A4NaTzrT3qZhA7c8IF3gkEjvxNkjd8s2XWud7pABp+WqFq\nzr2nyk2VbU8ITT5mx8NdEZJrSQhVtrxk5ZhAgodCPyg5eNjswC1DYM1CLvagJMC0\nGbB4cNtNv2KNnAOrnD4Sw82iR5/0ltMAVmXaRm9EaA+W8D2Zo6jbVRs1gv3Plrph\nZPDrYIzy+UppPX8eze0lnT2tSzv/nyE7I8zMQ3Y1zKLK7Eko4XTmHTkh6dt/Iv+N\nITeMkP/aSld5iTElFiIo3p0FVlRPKuvICU1p4RhWc71b4RrYAkDCKWOOFdjyXqMO\nkLsePKaGp9lCayPQfqfQ\n=p1+E\n-----END PGP SIGNATURE-----\n", + "payload": "tree 743c122c3bf583429b0b6bd38501cfb0cc452ebb\nparent a508f6136a885876efcddcfe8ceecb18e3cd070a\nparent 72d94d10df294312c66da9c7bca0d2ea992c17fa\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374507 +0100\ncommitter GitHub 1762374507 +0100\n\nRollup merge of #148440 - GuillaumeGomez:improve-search-code, r=notriddle\n\n[rustdoc search] Simplify itemTypes and filter \"dependencies\"\n\nWe currently have a list of type filters, some constants to be able to index the list of type filters and finally a `switch` to include some types in a given filter (for example when we filter on `constant`, we also include `associatedconstant` items).\n\nr? ``@notriddle``\n", + "verified_at": "2025-11-05T20:28:28Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/54fa49846ff4745816d91881c0133f75ea32e716", + "html_url": "https://github.com/rust-lang/rust/commit/54fa49846ff4745816d91881c0133f75ea32e716", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/54fa49846ff4745816d91881c0133f75ea32e716/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "a508f6136a885876efcddcfe8ceecb18e3cd070a", + "url": "https://api.github.com/repos/rust-lang/rust/commits/a508f6136a885876efcddcfe8ceecb18e3cd070a", + "html_url": "https://github.com/rust-lang/rust/commit/a508f6136a885876efcddcfe8ceecb18e3cd070a" + }, + { + "sha": "72d94d10df294312c66da9c7bca0d2ea992c17fa", + "url": "https://api.github.com/repos/rust-lang/rust/commits/72d94d10df294312c66da9c7bca0d2ea992c17fa", + "html_url": "https://github.com/rust-lang/rust/commit/72d94d10df294312c66da9c7bca0d2ea992c17fa" + } + ] + }, + { + "sha": "a508f6136a885876efcddcfe8ceecb18e3cd070a", + "node_id": "C_kwDOAAsO6NoAKGE1MDhmNjEzNmE4ODU4NzZlZmNkZGNmZThjZWVjYjE4ZTNjZDA3MGE", + "commit": { + "author": { + "name": "Matthias Krüger", + "email": "476013+matthiaskrgr@users.noreply.github.com", + "date": "2025-11-05T20:28:27Z" + }, + "committer": { + "name": "GitHub", + "email": "noreply@github.com", + "date": "2025-11-05T20:28:27Z" + }, + "message": "Rollup merge of #147994 - jdonszelmann:duplicate-warning-struct, r=petrochenkov\n\nDeduplicate deprecation warning when using unit or tuple structs\n\nFirst commit adds a test that's broken currently, 2nd commit fixes it.\n\nCreated with `@WaffleLapkin`", + "tree": { + "sha": "0f26002efb9164d01f3a5c9b0100ce7341ea604d", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/0f26002efb9164d01f3a5c9b0100ce7341ea604d" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/a508f6136a885876efcddcfe8ceecb18e3cd070a", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJpC7NrCRC1aQ7uu5UhlAAAhccQAAUoJ65woCgJOIAIJ0P32Gn+\n3MO6hMXyaHJR0JNQ4BCxcnp9nCC2QzhgmtmjQxPhaxdlhXszW6s9ntHPmHJ6zXzQ\nRXWZGQsY0XroQ9mCY/z2yVHMAZ8hEteYBmqVNGOMAEFBkJT+rxuTffZbo4/rizT1\nOvoNljqBkFOMEYQavQnOc1JJotcOvGetx3O2HnCKZPXEbpkwdLc1QWWRze7SHYcw\nf5/iSxn4RisKd+gn9y3eUEmC4T6bLuVKmLYfmU+2pQcP84C71+/PBvJsu3mznMlD\n2UtJAhHrf40t7GDI0JIBsQK2QeOMWjkPfPPoX+DridSilHmoxP3lkhMJPqgt5DYn\nObvDScVWQ+uYaUHFptVuWLfGmO3bzti1rWb5lxNr+D8+x50+E1dM62G8OxnISBsY\nO2kd8rjlyl8+UKkVGZSi/xc8YdRjxhGxvt99Abe6q7rOEaTS6l5/IAQ74VWtnUCw\nkNfHEVKz/FtmLMdjUO605Mt/Po6X+x50v6fUGx071dOmQD4HpUhTKmpcCNKOYAxm\nnvI5QZsTztvzCK2UfiOqnnAysKgw/uPOnwbfEr6O/aam39MWrzUAj1pqFDKzBtsK\n7b8BjZEmYUNx92AXA2eTT8T0a2qK0ehlz5x9CIsq3tN8lEi7PkdK6q+qyVPBFmVI\nMPBvSV38h6kJtmdSGQlB\n=I0N8\n-----END PGP SIGNATURE-----\n", + "payload": "tree 0f26002efb9164d01f3a5c9b0100ce7341ea604d\nparent 1ef7943ee607160a564655b6596f83670ef95df5\nparent 1b00911b5b247c7da7089b140a0806269dca6905\nauthor Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> 1762374507 +0100\ncommitter GitHub 1762374507 +0100\n\nRollup merge of #147994 - jdonszelmann:duplicate-warning-struct, r=petrochenkov\n\nDeduplicate deprecation warning when using unit or tuple structs\n\nFirst commit adds a test that's broken currently, 2nd commit fixes it.\n\nCreated with `@WaffleLapkin`\n", + "verified_at": "2025-11-05T20:28:27Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/a508f6136a885876efcddcfe8ceecb18e3cd070a", + "html_url": "https://github.com/rust-lang/rust/commit/a508f6136a885876efcddcfe8ceecb18e3cd070a", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/a508f6136a885876efcddcfe8ceecb18e3cd070a/comments", + "author": { + "login": "matthiaskrgr", + "id": 476013, + "node_id": "MDQ6VXNlcjQ3NjAxMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/476013?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/matthiaskrgr", + "html_url": "https://github.com/matthiaskrgr", + "followers_url": "https://api.github.com/users/matthiaskrgr/followers", + "following_url": "https://api.github.com/users/matthiaskrgr/following{/other_user}", + "gists_url": "https://api.github.com/users/matthiaskrgr/gists{/gist_id}", + "starred_url": "https://api.github.com/users/matthiaskrgr/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/matthiaskrgr/subscriptions", + "organizations_url": "https://api.github.com/users/matthiaskrgr/orgs", + "repos_url": "https://api.github.com/users/matthiaskrgr/repos", + "events_url": "https://api.github.com/users/matthiaskrgr/events{/privacy}", + "received_events_url": "https://api.github.com/users/matthiaskrgr/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "web-flow", + "id": 19864447, + "node_id": "MDQ6VXNlcjE5ODY0NDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/19864447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/web-flow", + "html_url": "https://github.com/web-flow", + "followers_url": "https://api.github.com/users/web-flow/followers", + "following_url": "https://api.github.com/users/web-flow/following{/other_user}", + "gists_url": "https://api.github.com/users/web-flow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/web-flow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/web-flow/subscriptions", + "organizations_url": "https://api.github.com/users/web-flow/orgs", + "repos_url": "https://api.github.com/users/web-flow/repos", + "events_url": "https://api.github.com/users/web-flow/events{/privacy}", + "received_events_url": "https://api.github.com/users/web-flow/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1ef7943ee607160a564655b6596f83670ef95df5", + "url": "https://api.github.com/repos/rust-lang/rust/commits/1ef7943ee607160a564655b6596f83670ef95df5", + "html_url": "https://github.com/rust-lang/rust/commit/1ef7943ee607160a564655b6596f83670ef95df5" + }, + { + "sha": "1b00911b5b247c7da7089b140a0806269dca6905", + "url": "https://api.github.com/repos/rust-lang/rust/commits/1b00911b5b247c7da7089b140a0806269dca6905", + "html_url": "https://github.com/rust-lang/rust/commit/1b00911b5b247c7da7089b140a0806269dca6905" + } + ] + }, + { + "sha": "b01cc1cf01ed12adb2595c4696321ee722ef545e", + "node_id": "C_kwDOAAsO6NoAKGIwMWNjMWNmMDFlZDEyYWRiMjU5NWM0Njk2MzIxZWU3MjJlZjU0NWU", + "commit": { + "author": { + "name": "bors", + "email": "bors@rust-lang.org", + "date": "2025-11-05T17:56:16Z" + }, + "committer": { + "name": "bors", + "email": "bors@rust-lang.org", + "date": "2025-11-05T17:56:16Z" + }, + "message": "Auto merge of #148516 - bjorn3:target_feature_parsing_improvements, r=WaffleLapkin\n\nMove warning reporting from flag_to_backend_features to cfg_target_feature\n\nThis way warnings are emitted even in a check build.", + "tree": { + "sha": "8ba36fda87a029d31f3244e3bd2e3aaa4e1550df", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/8ba36fda87a029d31f3244e3bd2e3aaa4e1550df" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/b01cc1cf01ed12adb2595c4696321ee722ef545e", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/b01cc1cf01ed12adb2595c4696321ee722ef545e", + "html_url": "https://github.com/rust-lang/rust/commit/b01cc1cf01ed12adb2595c4696321ee722ef545e", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/b01cc1cf01ed12adb2595c4696321ee722ef545e/comments", + "author": { + "login": "bors", + "id": 3372342, + "node_id": "MDQ6VXNlcjMzNzIzNDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3372342?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bors", + "html_url": "https://github.com/bors", + "followers_url": "https://api.github.com/users/bors/followers", + "following_url": "https://api.github.com/users/bors/following{/other_user}", + "gists_url": "https://api.github.com/users/bors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bors/subscriptions", + "organizations_url": "https://api.github.com/users/bors/orgs", + "repos_url": "https://api.github.com/users/bors/repos", + "events_url": "https://api.github.com/users/bors/events{/privacy}", + "received_events_url": "https://api.github.com/users/bors/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "bors", + "id": 3372342, + "node_id": "MDQ6VXNlcjMzNzIzNDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3372342?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bors", + "html_url": "https://github.com/bors", + "followers_url": "https://api.github.com/users/bors/followers", + "following_url": "https://api.github.com/users/bors/following{/other_user}", + "gists_url": "https://api.github.com/users/bors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bors/subscriptions", + "organizations_url": "https://api.github.com/users/bors/orgs", + "repos_url": "https://api.github.com/users/bors/repos", + "events_url": "https://api.github.com/users/bors/events{/privacy}", + "received_events_url": "https://api.github.com/users/bors/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "1ef7943ee607160a564655b6596f83670ef95df5", + "url": "https://api.github.com/repos/rust-lang/rust/commits/1ef7943ee607160a564655b6596f83670ef95df5", + "html_url": "https://github.com/rust-lang/rust/commit/1ef7943ee607160a564655b6596f83670ef95df5" + }, + { + "sha": "1d344781472791a6e4773871da24dc7fed26afc3", + "url": "https://api.github.com/repos/rust-lang/rust/commits/1d344781472791a6e4773871da24dc7fed26afc3", + "html_url": "https://github.com/rust-lang/rust/commit/1d344781472791a6e4773871da24dc7fed26afc3" + } + ] + }, + { + "sha": "32c93ccc89394a317ad272864d3970420bd4dc81", + "node_id": "C_kwDOAAsO6NoAKDMyYzkzY2NjODkzOTRhMzE3YWQyNzI4NjRkMzk3MDQyMGJkNGRjODE", + "commit": { + "author": { + "name": "Waffle Lapkin", + "email": "waffle.lapkin@gmail.com", + "date": "2025-11-05T16:01:21Z" + }, + "committer": { + "name": "Waffle Lapkin", + "email": "waffle.lapkin@gmail.com", + "date": "2025-11-05T16:03:25Z" + }, + "message": "Merge `Vec::push{,_mut}_within_capacity`", + "tree": { + "sha": "304a83f0914c941cf837f66a662de0900cb7b8c3", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/304a83f0914c941cf837f66a662de0900cb7b8c3" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/32c93ccc89394a317ad272864d3970420bd4dc81", + "comment_count": 0, + "verification": { + "verified": true, + "reason": "valid", + "signature": "-----BEGIN SSH SIGNATURE-----\nU1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAg3kd7syxmodoZbDfcHMF4i987SQ\nXeJs61HM3t0Nby4AcAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5\nAAAAQJ/RMreWjvSYUib0Tl54sI10lWvDOlWaUaQrcxeMPmBbci4X10XjSOl0fxDERkdc/g\nm1TCC9UoagMYgzDnYsjAg=\n-----END SSH SIGNATURE-----", + "payload": "tree 304a83f0914c941cf837f66a662de0900cb7b8c3\nparent c9537a94a6300a8292804829801f7724fb8a33f6\nauthor Waffle Lapkin 1762358481 +0100\ncommitter Waffle Lapkin 1762358605 +0100\nchange-id konwzlntpkoyprxvlqztnwyzsponuupx\n\nMerge `Vec::push{,_mut}_within_capacity`\n", + "verified_at": "2025-11-05T16:03:39Z" + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/32c93ccc89394a317ad272864d3970420bd4dc81", + "html_url": "https://github.com/rust-lang/rust/commit/32c93ccc89394a317ad272864d3970420bd4dc81", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/32c93ccc89394a317ad272864d3970420bd4dc81/comments", + "author": { + "login": "WaffleLapkin", + "id": 38225716, + "node_id": "MDQ6VXNlcjM4MjI1NzE2", + "avatar_url": "https://avatars.githubusercontent.com/u/38225716?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/WaffleLapkin", + "html_url": "https://github.com/WaffleLapkin", + "followers_url": "https://api.github.com/users/WaffleLapkin/followers", + "following_url": "https://api.github.com/users/WaffleLapkin/following{/other_user}", + "gists_url": "https://api.github.com/users/WaffleLapkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WaffleLapkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WaffleLapkin/subscriptions", + "organizations_url": "https://api.github.com/users/WaffleLapkin/orgs", + "repos_url": "https://api.github.com/users/WaffleLapkin/repos", + "events_url": "https://api.github.com/users/WaffleLapkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/WaffleLapkin/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "WaffleLapkin", + "id": 38225716, + "node_id": "MDQ6VXNlcjM4MjI1NzE2", + "avatar_url": "https://avatars.githubusercontent.com/u/38225716?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/WaffleLapkin", + "html_url": "https://github.com/WaffleLapkin", + "followers_url": "https://api.github.com/users/WaffleLapkin/followers", + "following_url": "https://api.github.com/users/WaffleLapkin/following{/other_user}", + "gists_url": "https://api.github.com/users/WaffleLapkin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/WaffleLapkin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/WaffleLapkin/subscriptions", + "organizations_url": "https://api.github.com/users/WaffleLapkin/orgs", + "repos_url": "https://api.github.com/users/WaffleLapkin/repos", + "events_url": "https://api.github.com/users/WaffleLapkin/events{/privacy}", + "received_events_url": "https://api.github.com/users/WaffleLapkin/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "c9537a94a6300a8292804829801f7724fb8a33f6", + "url": "https://api.github.com/repos/rust-lang/rust/commits/c9537a94a6300a8292804829801f7724fb8a33f6", + "html_url": "https://github.com/rust-lang/rust/commit/c9537a94a6300a8292804829801f7724fb8a33f6" + } + ] + }, + { + "sha": "1ef7943ee607160a564655b6596f83670ef95df5", + "node_id": "C_kwDOAAsO6NoAKDFlZjc5NDNlZTYwNzE2MGE1NjQ2NTViNjU5NmY4MzY3MGVmOTVkZjU", + "commit": { + "author": { + "name": "bors", + "email": "bors@rust-lang.org", + "date": "2025-11-05T14:07:06Z" + }, + "committer": { + "name": "bors", + "email": "bors@rust-lang.org", + "date": "2025-11-05T14:07:06Z" + }, + "message": "Auto merge of #148302 - folkertdev:non-rustic-unsized, r=bjorn3\n\nerror on non-rustic ABIs using unsized parameters\n\ntracking issue: https://github.com/rust-lang/rust/issues/48055\n\nThis came up in https://github.com/rust-lang/rust/pull/144529#discussion_r2470214068.\n\nThe idea is that the layout of an unsized type is unstable (following the rust layout rules), and hence stable ABIs should not use unsized types. On stable, unsized types (or generics with a `?Sized` bound) are not accepted as parameters, so the errors introduced by this PR can only be observed when the unstable `unsized_fn_params` feature is enabled.\n\nr? `@bjorn3`\ncc `@RalfJung`", + "tree": { + "sha": "a17ed22e8a7a71db6eaef24f18a6f7d1735c85a2", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/a17ed22e8a7a71db6eaef24f18a6f7d1735c85a2" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/1ef7943ee607160a564655b6596f83670ef95df5", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/1ef7943ee607160a564655b6596f83670ef95df5", + "html_url": "https://github.com/rust-lang/rust/commit/1ef7943ee607160a564655b6596f83670ef95df5", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/1ef7943ee607160a564655b6596f83670ef95df5/comments", + "author": { + "login": "bors", + "id": 3372342, + "node_id": "MDQ6VXNlcjMzNzIzNDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3372342?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bors", + "html_url": "https://github.com/bors", + "followers_url": "https://api.github.com/users/bors/followers", + "following_url": "https://api.github.com/users/bors/following{/other_user}", + "gists_url": "https://api.github.com/users/bors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bors/subscriptions", + "organizations_url": "https://api.github.com/users/bors/orgs", + "repos_url": "https://api.github.com/users/bors/repos", + "events_url": "https://api.github.com/users/bors/events{/privacy}", + "received_events_url": "https://api.github.com/users/bors/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "bors", + "id": 3372342, + "node_id": "MDQ6VXNlcjMzNzIzNDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3372342?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bors", + "html_url": "https://github.com/bors", + "followers_url": "https://api.github.com/users/bors/followers", + "following_url": "https://api.github.com/users/bors/following{/other_user}", + "gists_url": "https://api.github.com/users/bors/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bors/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bors/subscriptions", + "organizations_url": "https://api.github.com/users/bors/orgs", + "repos_url": "https://api.github.com/users/bors/repos", + "events_url": "https://api.github.com/users/bors/events{/privacy}", + "received_events_url": "https://api.github.com/users/bors/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "53efb3d4f3b67d189a0c72eb475a52017d79d609", + "url": "https://api.github.com/repos/rust-lang/rust/commits/53efb3d4f3b67d189a0c72eb475a52017d79d609", + "html_url": "https://github.com/rust-lang/rust/commit/53efb3d4f3b67d189a0c72eb475a52017d79d609" + }, + { + "sha": "8e44e3f6a930e9576fb3281fca36dba7f7bcb12a", + "url": "https://api.github.com/repos/rust-lang/rust/commits/8e44e3f6a930e9576fb3281fca36dba7f7bcb12a", + "html_url": "https://github.com/rust-lang/rust/commit/8e44e3f6a930e9576fb3281fca36dba7f7bcb12a" + } + ] + }, + { + "sha": "eaf979e8dd98f006767632f0910cd2fdecf8541d", + "node_id": "C_kwDOAAsO6NoAKGVhZjk3OWU4ZGQ5OGYwMDY3Njc2MzJmMDkxMGNkMmZkZWNmODU0MWQ", + "commit": { + "author": { + "name": "yukang", + "email": "moorekang@gmail.com", + "date": "2025-11-05T12:24:20Z" + }, + "committer": { + "name": "yukang", + "email": "moorekang@gmail.com", + "date": "2025-11-05T12:26:43Z" + }, + "message": "Fix ICE from lit_to_mir_constant caused by type error", + "tree": { + "sha": "f31ce1cb665cc7b5f62ad7dafc0d302c4b4483ae", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/f31ce1cb665cc7b5f62ad7dafc0d302c4b4483ae" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/eaf979e8dd98f006767632f0910cd2fdecf8541d", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/eaf979e8dd98f006767632f0910cd2fdecf8541d", + "html_url": "https://github.com/rust-lang/rust/commit/eaf979e8dd98f006767632f0910cd2fdecf8541d", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/eaf979e8dd98f006767632f0910cd2fdecf8541d/comments", + "author": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "c0ff72ffc4e88a2bbb69add95a4946d213996895", + "url": "https://api.github.com/repos/rust-lang/rust/commits/c0ff72ffc4e88a2bbb69add95a4946d213996895", + "html_url": "https://github.com/rust-lang/rust/commit/c0ff72ffc4e88a2bbb69add95a4946d213996895" + } + ] + }, + { + "sha": "222480dcb94c5a27fb10768aae7ccc99da0d805c", + "node_id": "C_kwDOAAsO6NoAKDIyMjQ4MGRjYjk0YzVhMjdmYjEwNzY4YWFlN2NjYzk5ZGEwZDgwNWM", + "commit": { + "author": { + "name": "bjorn3", + "email": "17426603+bjorn3@users.noreply.github.com", + "date": "2025-11-05T11:13:23Z" + }, + "committer": { + "name": "bjorn3", + "email": "17426603+bjorn3@users.noreply.github.com", + "date": "2025-11-05T11:25:29Z" + }, + "message": "Allow internal_features lint in doc tests\n\nRustdoc forwards -Zcrate-attr=feature(rustdoc_internals) to doc tests,\nbut deny(warnings) overrides the -Ainternal_features.", + "tree": { + "sha": "3bd318c2b1aa8fe3e573cedae76a2414d775e6e8", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/3bd318c2b1aa8fe3e573cedae76a2414d775e6e8" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/222480dcb94c5a27fb10768aae7ccc99da0d805c", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/222480dcb94c5a27fb10768aae7ccc99da0d805c", + "html_url": "https://github.com/rust-lang/rust/commit/222480dcb94c5a27fb10768aae7ccc99da0d805c", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/222480dcb94c5a27fb10768aae7ccc99da0d805c/comments", + "author": { + "login": "bjorn3", + "id": 17426603, + "node_id": "MDQ6VXNlcjE3NDI2NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/17426603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bjorn3", + "html_url": "https://github.com/bjorn3", + "followers_url": "https://api.github.com/users/bjorn3/followers", + "following_url": "https://api.github.com/users/bjorn3/following{/other_user}", + "gists_url": "https://api.github.com/users/bjorn3/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bjorn3/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bjorn3/subscriptions", + "organizations_url": "https://api.github.com/users/bjorn3/orgs", + "repos_url": "https://api.github.com/users/bjorn3/repos", + "events_url": "https://api.github.com/users/bjorn3/events{/privacy}", + "received_events_url": "https://api.github.com/users/bjorn3/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "bjorn3", + "id": 17426603, + "node_id": "MDQ6VXNlcjE3NDI2NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/17426603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bjorn3", + "html_url": "https://github.com/bjorn3", + "followers_url": "https://api.github.com/users/bjorn3/followers", + "following_url": "https://api.github.com/users/bjorn3/following{/other_user}", + "gists_url": "https://api.github.com/users/bjorn3/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bjorn3/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bjorn3/subscriptions", + "organizations_url": "https://api.github.com/users/bjorn3/orgs", + "repos_url": "https://api.github.com/users/bjorn3/repos", + "events_url": "https://api.github.com/users/bjorn3/events{/privacy}", + "received_events_url": "https://api.github.com/users/bjorn3/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "973c7527b41f5b39ee84c705f61c0e7b8a712fff", + "url": "https://api.github.com/repos/rust-lang/rust/commits/973c7527b41f5b39ee84c705f61c0e7b8a712fff", + "html_url": "https://github.com/rust-lang/rust/commit/973c7527b41f5b39ee84c705f61c0e7b8a712fff" + } + ] + }, + { + "sha": "973c7527b41f5b39ee84c705f61c0e7b8a712fff", + "node_id": "C_kwDOAAsO6NoAKDk3M2M3NTI3YjQxZjViMzllZTg0YzcwNWY2MWMwZTdiOGE3MTJmZmY", + "commit": { + "author": { + "name": "bjorn3", + "email": "17426603+bjorn3@users.noreply.github.com", + "date": "2025-11-05T10:16:39Z" + }, + "committer": { + "name": "bjorn3", + "email": "17426603+bjorn3@users.noreply.github.com", + "date": "2025-11-05T11:25:27Z" + }, + "message": "Unify the configuration of the compiler docs\n\nPreviously it was rather inconsistent which crates got the rust logo and\nwhich didn't and setting html_root_url was forgotten in many cases.", + "tree": { + "sha": "168c41527c0594a83b70dc962958fa41ccfd043e", + "url": "https://api.github.com/repos/rust-lang/rust/git/trees/168c41527c0594a83b70dc962958fa41ccfd043e" + }, + "url": "https://api.github.com/repos/rust-lang/rust/git/commits/973c7527b41f5b39ee84c705f61c0e7b8a712fff", + "comment_count": 0, + "verification": { + "verified": false, + "reason": "unsigned", + "signature": null, + "payload": null, + "verified_at": null + } + }, + "url": "https://api.github.com/repos/rust-lang/rust/commits/973c7527b41f5b39ee84c705f61c0e7b8a712fff", + "html_url": "https://github.com/rust-lang/rust/commit/973c7527b41f5b39ee84c705f61c0e7b8a712fff", + "comments_url": "https://api.github.com/repos/rust-lang/rust/commits/973c7527b41f5b39ee84c705f61c0e7b8a712fff/comments", + "author": { + "login": "bjorn3", + "id": 17426603, + "node_id": "MDQ6VXNlcjE3NDI2NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/17426603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bjorn3", + "html_url": "https://github.com/bjorn3", + "followers_url": "https://api.github.com/users/bjorn3/followers", + "following_url": "https://api.github.com/users/bjorn3/following{/other_user}", + "gists_url": "https://api.github.com/users/bjorn3/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bjorn3/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bjorn3/subscriptions", + "organizations_url": "https://api.github.com/users/bjorn3/orgs", + "repos_url": "https://api.github.com/users/bjorn3/repos", + "events_url": "https://api.github.com/users/bjorn3/events{/privacy}", + "received_events_url": "https://api.github.com/users/bjorn3/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "committer": { + "login": "bjorn3", + "id": 17426603, + "node_id": "MDQ6VXNlcjE3NDI2NjAz", + "avatar_url": "https://avatars.githubusercontent.com/u/17426603?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bjorn3", + "html_url": "https://github.com/bjorn3", + "followers_url": "https://api.github.com/users/bjorn3/followers", + "following_url": "https://api.github.com/users/bjorn3/following{/other_user}", + "gists_url": "https://api.github.com/users/bjorn3/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bjorn3/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bjorn3/subscriptions", + "organizations_url": "https://api.github.com/users/bjorn3/orgs", + "repos_url": "https://api.github.com/users/bjorn3/repos", + "events_url": "https://api.github.com/users/bjorn3/events{/privacy}", + "received_events_url": "https://api.github.com/users/bjorn3/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "parents": [ + { + "sha": "8e0b68e63cd2b7b6d18474fe6f49df6fb1570c25", + "url": "https://api.github.com/repos/rust-lang/rust/commits/8e0b68e63cd2b7b6d18474fe6f49df6fb1570c25", + "html_url": "https://github.com/rust-lang/rust/commit/8e0b68e63cd2b7b6d18474fe6f49df6fb1570c25" + } + ] + } +] \ No newline at end of file diff --git a/github/commits_rust.metadata.json b/github/commits_rust.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..6d8ef9ce7d10534631729d1a093a9d91eaa0111e --- /dev/null +++ b/github/commits_rust.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_commits_rust", + "source": "github", + "collected_date": "2025-11-05T22:50:55.884156", + "size_bytes": 77142, + "description": "Rust recent commits", + "url": "https://api.github.com/repos/rust-lang/rust/commits?per_page=15" +} \ No newline at end of file diff --git a/github/contributors_nodejs.json b/github/contributors_nodejs.json new file mode 100644 index 0000000000000000000000000000000000000000..802c13548f3106da90fea96a3e8888d0216b7fbd --- /dev/null +++ b/github/contributors_nodejs.json @@ -0,0 +1,442 @@ +[ + { + "login": "Trott", + "id": 718899, + "node_id": "MDQ6VXNlcjcxODg5OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/718899?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Trott", + "html_url": "https://github.com/Trott", + "followers_url": "https://api.github.com/users/Trott/followers", + "following_url": "https://api.github.com/users/Trott/following{/other_user}", + "gists_url": "https://api.github.com/users/Trott/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Trott/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Trott/subscriptions", + "organizations_url": "https://api.github.com/users/Trott/orgs", + "repos_url": "https://api.github.com/users/Trott/repos", + "events_url": "https://api.github.com/users/Trott/events{/privacy}", + "received_events_url": "https://api.github.com/users/Trott/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 3144 + }, + { + "login": "ry", + "id": 80, + "node_id": "MDQ6VXNlcjgw", + "avatar_url": "https://avatars.githubusercontent.com/u/80?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ry", + "html_url": "https://github.com/ry", + "followers_url": "https://api.github.com/users/ry/followers", + "following_url": "https://api.github.com/users/ry/following{/other_user}", + "gists_url": "https://api.github.com/users/ry/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ry/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ry/subscriptions", + "organizations_url": "https://api.github.com/users/ry/orgs", + "repos_url": "https://api.github.com/users/ry/repos", + "events_url": "https://api.github.com/users/ry/events{/privacy}", + "received_events_url": "https://api.github.com/users/ry/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 3021 + }, + { + "login": "bnoordhuis", + "id": 275871, + "node_id": "MDQ6VXNlcjI3NTg3MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/275871?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bnoordhuis", + "html_url": "https://github.com/bnoordhuis", + "followers_url": "https://api.github.com/users/bnoordhuis/followers", + "following_url": "https://api.github.com/users/bnoordhuis/following{/other_user}", + "gists_url": "https://api.github.com/users/bnoordhuis/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bnoordhuis/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bnoordhuis/subscriptions", + "organizations_url": "https://api.github.com/users/bnoordhuis/orgs", + "repos_url": "https://api.github.com/users/bnoordhuis/repos", + "events_url": "https://api.github.com/users/bnoordhuis/events{/privacy}", + "received_events_url": "https://api.github.com/users/bnoordhuis/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 2290 + }, + { + "login": "isaacs", + "id": 9287, + "node_id": "MDQ6VXNlcjkyODc=", + "avatar_url": "https://avatars.githubusercontent.com/u/9287?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/isaacs", + "html_url": "https://github.com/isaacs", + "followers_url": "https://api.github.com/users/isaacs/followers", + "following_url": "https://api.github.com/users/isaacs/following{/other_user}", + "gists_url": "https://api.github.com/users/isaacs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/isaacs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/isaacs/subscriptions", + "organizations_url": "https://api.github.com/users/isaacs/orgs", + "repos_url": "https://api.github.com/users/isaacs/repos", + "events_url": "https://api.github.com/users/isaacs/events{/privacy}", + "received_events_url": "https://api.github.com/users/isaacs/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1655 + }, + { + "login": "addaleax", + "id": 899444, + "node_id": "MDQ6VXNlcjg5OTQ0NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/899444?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/addaleax", + "html_url": "https://github.com/addaleax", + "followers_url": "https://api.github.com/users/addaleax/followers", + "following_url": "https://api.github.com/users/addaleax/following{/other_user}", + "gists_url": "https://api.github.com/users/addaleax/gists{/gist_id}", + "starred_url": "https://api.github.com/users/addaleax/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/addaleax/subscriptions", + "organizations_url": "https://api.github.com/users/addaleax/orgs", + "repos_url": "https://api.github.com/users/addaleax/repos", + "events_url": "https://api.github.com/users/addaleax/events{/privacy}", + "received_events_url": "https://api.github.com/users/addaleax/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1625 + }, + { + "login": "targos", + "id": 2352663, + "node_id": "MDQ6VXNlcjIzNTI2NjM=", + "avatar_url": "https://avatars.githubusercontent.com/u/2352663?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/targos", + "html_url": "https://github.com/targos", + "followers_url": "https://api.github.com/users/targos/followers", + "following_url": "https://api.github.com/users/targos/following{/other_user}", + "gists_url": "https://api.github.com/users/targos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/targos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/targos/subscriptions", + "organizations_url": "https://api.github.com/users/targos/orgs", + "repos_url": "https://api.github.com/users/targos/repos", + "events_url": "https://api.github.com/users/targos/events{/privacy}", + "received_events_url": "https://api.github.com/users/targos/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1314 + }, + { + "login": "cjihrig", + "id": 2512748, + "node_id": "MDQ6VXNlcjI1MTI3NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/2512748?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cjihrig", + "html_url": "https://github.com/cjihrig", + "followers_url": "https://api.github.com/users/cjihrig/followers", + "following_url": "https://api.github.com/users/cjihrig/following{/other_user}", + "gists_url": "https://api.github.com/users/cjihrig/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cjihrig/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cjihrig/subscriptions", + "organizations_url": "https://api.github.com/users/cjihrig/orgs", + "repos_url": "https://api.github.com/users/cjihrig/repos", + "events_url": "https://api.github.com/users/cjihrig/events{/privacy}", + "received_events_url": "https://api.github.com/users/cjihrig/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1185 + }, + { + "login": "jasnell", + "id": 439929, + "node_id": "MDQ6VXNlcjQzOTkyOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/439929?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jasnell", + "html_url": "https://github.com/jasnell", + "followers_url": "https://api.github.com/users/jasnell/followers", + "following_url": "https://api.github.com/users/jasnell/following{/other_user}", + "gists_url": "https://api.github.com/users/jasnell/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jasnell/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jasnell/subscriptions", + "organizations_url": "https://api.github.com/users/jasnell/orgs", + "repos_url": "https://api.github.com/users/jasnell/repos", + "events_url": "https://api.github.com/users/jasnell/events{/privacy}", + "received_events_url": "https://api.github.com/users/jasnell/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1159 + }, + { + "login": "joyeecheung", + "id": 4299420, + "node_id": "MDQ6VXNlcjQyOTk0MjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/4299420?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/joyeecheung", + "html_url": "https://github.com/joyeecheung", + "followers_url": "https://api.github.com/users/joyeecheung/followers", + "following_url": "https://api.github.com/users/joyeecheung/following{/other_user}", + "gists_url": "https://api.github.com/users/joyeecheung/gists{/gist_id}", + "starred_url": "https://api.github.com/users/joyeecheung/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/joyeecheung/subscriptions", + "organizations_url": "https://api.github.com/users/joyeecheung/orgs", + "repos_url": "https://api.github.com/users/joyeecheung/repos", + "events_url": "https://api.github.com/users/joyeecheung/events{/privacy}", + "received_events_url": "https://api.github.com/users/joyeecheung/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1144 + }, + { + "login": "aduh95", + "id": 14309773, + "node_id": "MDQ6VXNlcjE0MzA5Nzcz", + "avatar_url": "https://avatars.githubusercontent.com/u/14309773?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aduh95", + "html_url": "https://github.com/aduh95", + "followers_url": "https://api.github.com/users/aduh95/followers", + "following_url": "https://api.github.com/users/aduh95/following{/other_user}", + "gists_url": "https://api.github.com/users/aduh95/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aduh95/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aduh95/subscriptions", + "organizations_url": "https://api.github.com/users/aduh95/orgs", + "repos_url": "https://api.github.com/users/aduh95/repos", + "events_url": "https://api.github.com/users/aduh95/events{/privacy}", + "received_events_url": "https://api.github.com/users/aduh95/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 905 + }, + { + "login": "BridgeAR", + "id": 8822573, + "node_id": "MDQ6VXNlcjg4MjI1NzM=", + "avatar_url": "https://avatars.githubusercontent.com/u/8822573?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BridgeAR", + "html_url": "https://github.com/BridgeAR", + "followers_url": "https://api.github.com/users/BridgeAR/followers", + "following_url": "https://api.github.com/users/BridgeAR/following{/other_user}", + "gists_url": "https://api.github.com/users/BridgeAR/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BridgeAR/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BridgeAR/subscriptions", + "organizations_url": "https://api.github.com/users/BridgeAR/orgs", + "repos_url": "https://api.github.com/users/BridgeAR/repos", + "events_url": "https://api.github.com/users/BridgeAR/events{/privacy}", + "received_events_url": "https://api.github.com/users/BridgeAR/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 837 + }, + { + "login": "nodejs-github-bot", + "id": 18269663, + "node_id": "MDQ6VXNlcjE4MjY5NjYz", + "avatar_url": "https://avatars.githubusercontent.com/u/18269663?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nodejs-github-bot", + "html_url": "https://github.com/nodejs-github-bot", + "followers_url": "https://api.github.com/users/nodejs-github-bot/followers", + "following_url": "https://api.github.com/users/nodejs-github-bot/following{/other_user}", + "gists_url": "https://api.github.com/users/nodejs-github-bot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nodejs-github-bot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nodejs-github-bot/subscriptions", + "organizations_url": "https://api.github.com/users/nodejs-github-bot/orgs", + "repos_url": "https://api.github.com/users/nodejs-github-bot/repos", + "events_url": "https://api.github.com/users/nodejs-github-bot/events{/privacy}", + "received_events_url": "https://api.github.com/users/nodejs-github-bot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 812 + }, + { + "login": "indutny", + "id": 238531, + "node_id": "MDQ6VXNlcjIzODUzMQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/238531?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/indutny", + "html_url": "https://github.com/indutny", + "followers_url": "https://api.github.com/users/indutny/followers", + "following_url": "https://api.github.com/users/indutny/following{/other_user}", + "gists_url": "https://api.github.com/users/indutny/gists{/gist_id}", + "starred_url": "https://api.github.com/users/indutny/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/indutny/subscriptions", + "organizations_url": "https://api.github.com/users/indutny/orgs", + "repos_url": "https://api.github.com/users/indutny/repos", + "events_url": "https://api.github.com/users/indutny/events{/privacy}", + "received_events_url": "https://api.github.com/users/indutny/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 780 + }, + { + "login": "tniessen", + "id": 3109072, + "node_id": "MDQ6VXNlcjMxMDkwNzI=", + "avatar_url": "https://avatars.githubusercontent.com/u/3109072?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tniessen", + "html_url": "https://github.com/tniessen", + "followers_url": "https://api.github.com/users/tniessen/followers", + "following_url": "https://api.github.com/users/tniessen/following{/other_user}", + "gists_url": "https://api.github.com/users/tniessen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tniessen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tniessen/subscriptions", + "organizations_url": "https://api.github.com/users/tniessen/orgs", + "repos_url": "https://api.github.com/users/tniessen/repos", + "events_url": "https://api.github.com/users/tniessen/events{/privacy}", + "received_events_url": "https://api.github.com/users/tniessen/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 761 + }, + { + "login": "danbev", + "id": 432351, + "node_id": "MDQ6VXNlcjQzMjM1MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/432351?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/danbev", + "html_url": "https://github.com/danbev", + "followers_url": "https://api.github.com/users/danbev/followers", + "following_url": "https://api.github.com/users/danbev/following{/other_user}", + "gists_url": "https://api.github.com/users/danbev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/danbev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/danbev/subscriptions", + "organizations_url": "https://api.github.com/users/danbev/orgs", + "repos_url": "https://api.github.com/users/danbev/repos", + "events_url": "https://api.github.com/users/danbev/events{/privacy}", + "received_events_url": "https://api.github.com/users/danbev/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 605 + }, + { + "login": "piscisaureus", + "id": 218257, + "node_id": "MDQ6VXNlcjIxODI1Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/218257?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/piscisaureus", + "html_url": "https://github.com/piscisaureus", + "followers_url": "https://api.github.com/users/piscisaureus/followers", + "following_url": "https://api.github.com/users/piscisaureus/following{/other_user}", + "gists_url": "https://api.github.com/users/piscisaureus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/piscisaureus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/piscisaureus/subscriptions", + "organizations_url": "https://api.github.com/users/piscisaureus/orgs", + "repos_url": "https://api.github.com/users/piscisaureus/repos", + "events_url": "https://api.github.com/users/piscisaureus/events{/privacy}", + "received_events_url": "https://api.github.com/users/piscisaureus/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 598 + }, + { + "login": "mhdawson", + "id": 9373002, + "node_id": "MDQ6VXNlcjkzNzMwMDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/9373002?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mhdawson", + "html_url": "https://github.com/mhdawson", + "followers_url": "https://api.github.com/users/mhdawson/followers", + "following_url": "https://api.github.com/users/mhdawson/following{/other_user}", + "gists_url": "https://api.github.com/users/mhdawson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mhdawson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mhdawson/subscriptions", + "organizations_url": "https://api.github.com/users/mhdawson/orgs", + "repos_url": "https://api.github.com/users/mhdawson/repos", + "events_url": "https://api.github.com/users/mhdawson/events{/privacy}", + "received_events_url": "https://api.github.com/users/mhdawson/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 411 + }, + { + "login": "richardlau", + "id": 5445507, + "node_id": "MDQ6VXNlcjU0NDU1MDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/5445507?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/richardlau", + "html_url": "https://github.com/richardlau", + "followers_url": "https://api.github.com/users/richardlau/followers", + "following_url": "https://api.github.com/users/richardlau/following{/other_user}", + "gists_url": "https://api.github.com/users/richardlau/gists{/gist_id}", + "starred_url": "https://api.github.com/users/richardlau/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/richardlau/subscriptions", + "organizations_url": "https://api.github.com/users/richardlau/orgs", + "repos_url": "https://api.github.com/users/richardlau/repos", + "events_url": "https://api.github.com/users/richardlau/events{/privacy}", + "received_events_url": "https://api.github.com/users/richardlau/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 391 + }, + { + "login": "RafaelGSS", + "id": 26234614, + "node_id": "MDQ6VXNlcjI2MjM0NjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/26234614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RafaelGSS", + "html_url": "https://github.com/RafaelGSS", + "followers_url": "https://api.github.com/users/RafaelGSS/followers", + "following_url": "https://api.github.com/users/RafaelGSS/following{/other_user}", + "gists_url": "https://api.github.com/users/RafaelGSS/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RafaelGSS/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RafaelGSS/subscriptions", + "organizations_url": "https://api.github.com/users/RafaelGSS/orgs", + "repos_url": "https://api.github.com/users/RafaelGSS/repos", + "events_url": "https://api.github.com/users/RafaelGSS/events{/privacy}", + "received_events_url": "https://api.github.com/users/RafaelGSS/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 387 + }, + { + "login": "mscdex", + "id": 54666, + "node_id": "MDQ6VXNlcjU0NjY2", + "avatar_url": "https://avatars.githubusercontent.com/u/54666?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mscdex", + "html_url": "https://github.com/mscdex", + "followers_url": "https://api.github.com/users/mscdex/followers", + "following_url": "https://api.github.com/users/mscdex/following{/other_user}", + "gists_url": "https://api.github.com/users/mscdex/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mscdex/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mscdex/subscriptions", + "organizations_url": "https://api.github.com/users/mscdex/orgs", + "repos_url": "https://api.github.com/users/mscdex/repos", + "events_url": "https://api.github.com/users/mscdex/events{/privacy}", + "received_events_url": "https://api.github.com/users/mscdex/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 374 + } +] \ No newline at end of file diff --git a/github/contributors_nodejs.metadata.json b/github/contributors_nodejs.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9182a090c7799948f999cbc8979766da35d1a0dc --- /dev/null +++ b/github/contributors_nodejs.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_contributors_nodejs", + "source": "github", + "collected_date": "2025-11-05T22:50:53.684757", + "size_bytes": 21515, + "description": "Node.js contributors", + "url": "https://api.github.com/repos/nodejs/node/contributors?per_page=20" +} \ No newline at end of file diff --git a/github/contributors_react.json b/github/contributors_react.json new file mode 100644 index 0000000000000000000000000000000000000000..19a8364b9a9b0dbf79a6697f92b10b6c2faee0f3 --- /dev/null +++ b/github/contributors_react.json @@ -0,0 +1,442 @@ +[ + { + "login": "sebmarkbage", + "id": 63648, + "node_id": "MDQ6VXNlcjYzNjQ4", + "avatar_url": "https://avatars.githubusercontent.com/u/63648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sebmarkbage", + "html_url": "https://github.com/sebmarkbage", + "followers_url": "https://api.github.com/users/sebmarkbage/followers", + "following_url": "https://api.github.com/users/sebmarkbage/following{/other_user}", + "gists_url": "https://api.github.com/users/sebmarkbage/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sebmarkbage/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sebmarkbage/subscriptions", + "organizations_url": "https://api.github.com/users/sebmarkbage/orgs", + "repos_url": "https://api.github.com/users/sebmarkbage/repos", + "events_url": "https://api.github.com/users/sebmarkbage/events{/privacy}", + "received_events_url": "https://api.github.com/users/sebmarkbage/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1913 + }, + { + "login": "zpao", + "id": 8445, + "node_id": "MDQ6VXNlcjg0NDU=", + "avatar_url": "https://avatars.githubusercontent.com/u/8445?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/zpao", + "html_url": "https://github.com/zpao", + "followers_url": "https://api.github.com/users/zpao/followers", + "following_url": "https://api.github.com/users/zpao/following{/other_user}", + "gists_url": "https://api.github.com/users/zpao/gists{/gist_id}", + "starred_url": "https://api.github.com/users/zpao/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/zpao/subscriptions", + "organizations_url": "https://api.github.com/users/zpao/orgs", + "repos_url": "https://api.github.com/users/zpao/repos", + "events_url": "https://api.github.com/users/zpao/events{/privacy}", + "received_events_url": "https://api.github.com/users/zpao/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1778 + }, + { + "login": "gaearon", + "id": 810438, + "node_id": "MDQ6VXNlcjgxMDQzOA==", + "avatar_url": "https://avatars.githubusercontent.com/u/810438?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gaearon", + "html_url": "https://github.com/gaearon", + "followers_url": "https://api.github.com/users/gaearon/followers", + "following_url": "https://api.github.com/users/gaearon/following{/other_user}", + "gists_url": "https://api.github.com/users/gaearon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gaearon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gaearon/subscriptions", + "organizations_url": "https://api.github.com/users/gaearon/orgs", + "repos_url": "https://api.github.com/users/gaearon/repos", + "events_url": "https://api.github.com/users/gaearon/events{/privacy}", + "received_events_url": "https://api.github.com/users/gaearon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1680 + }, + { + "login": "acdlite", + "id": 3624098, + "node_id": "MDQ6VXNlcjM2MjQwOTg=", + "avatar_url": "https://avatars.githubusercontent.com/u/3624098?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/acdlite", + "html_url": "https://github.com/acdlite", + "followers_url": "https://api.github.com/users/acdlite/followers", + "following_url": "https://api.github.com/users/acdlite/following{/other_user}", + "gists_url": "https://api.github.com/users/acdlite/gists{/gist_id}", + "starred_url": "https://api.github.com/users/acdlite/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/acdlite/subscriptions", + "organizations_url": "https://api.github.com/users/acdlite/orgs", + "repos_url": "https://api.github.com/users/acdlite/repos", + "events_url": "https://api.github.com/users/acdlite/events{/privacy}", + "received_events_url": "https://api.github.com/users/acdlite/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1417 + }, + { + "login": "sophiebits", + "id": 6820, + "node_id": "MDQ6VXNlcjY4MjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/6820?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sophiebits", + "html_url": "https://github.com/sophiebits", + "followers_url": "https://api.github.com/users/sophiebits/followers", + "following_url": "https://api.github.com/users/sophiebits/following{/other_user}", + "gists_url": "https://api.github.com/users/sophiebits/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sophiebits/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sophiebits/subscriptions", + "organizations_url": "https://api.github.com/users/sophiebits/orgs", + "repos_url": "https://api.github.com/users/sophiebits/repos", + "events_url": "https://api.github.com/users/sophiebits/events{/privacy}", + "received_events_url": "https://api.github.com/users/sophiebits/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1291 + }, + { + "login": "josephsavona", + "id": 6425824, + "node_id": "MDQ6VXNlcjY0MjU4MjQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/6425824?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/josephsavona", + "html_url": "https://github.com/josephsavona", + "followers_url": "https://api.github.com/users/josephsavona/followers", + "following_url": "https://api.github.com/users/josephsavona/following{/other_user}", + "gists_url": "https://api.github.com/users/josephsavona/gists{/gist_id}", + "starred_url": "https://api.github.com/users/josephsavona/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/josephsavona/subscriptions", + "organizations_url": "https://api.github.com/users/josephsavona/orgs", + "repos_url": "https://api.github.com/users/josephsavona/repos", + "events_url": "https://api.github.com/users/josephsavona/events{/privacy}", + "received_events_url": "https://api.github.com/users/josephsavona/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 1107 + }, + { + "login": "poteto", + "id": 1390709, + "node_id": "MDQ6VXNlcjEzOTA3MDk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1390709?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/poteto", + "html_url": "https://github.com/poteto", + "followers_url": "https://api.github.com/users/poteto/followers", + "following_url": "https://api.github.com/users/poteto/following{/other_user}", + "gists_url": "https://api.github.com/users/poteto/gists{/gist_id}", + "starred_url": "https://api.github.com/users/poteto/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/poteto/subscriptions", + "organizations_url": "https://api.github.com/users/poteto/orgs", + "repos_url": "https://api.github.com/users/poteto/repos", + "events_url": "https://api.github.com/users/poteto/events{/privacy}", + "received_events_url": "https://api.github.com/users/poteto/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 803 + }, + { + "login": "jimfb", + "id": 9595985, + "node_id": "MDQ6VXNlcjk1OTU5ODU=", + "avatar_url": "https://avatars.githubusercontent.com/u/9595985?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jimfb", + "html_url": "https://github.com/jimfb", + "followers_url": "https://api.github.com/users/jimfb/followers", + "following_url": "https://api.github.com/users/jimfb/following{/other_user}", + "gists_url": "https://api.github.com/users/jimfb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jimfb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jimfb/subscriptions", + "organizations_url": "https://api.github.com/users/jimfb/orgs", + "repos_url": "https://api.github.com/users/jimfb/repos", + "events_url": "https://api.github.com/users/jimfb/events{/privacy}", + "received_events_url": "https://api.github.com/users/jimfb/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 456 + }, + { + "login": "trueadm", + "id": 1519870, + "node_id": "MDQ6VXNlcjE1MTk4NzA=", + "avatar_url": "https://avatars.githubusercontent.com/u/1519870?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/trueadm", + "html_url": "https://github.com/trueadm", + "followers_url": "https://api.github.com/users/trueadm/followers", + "following_url": "https://api.github.com/users/trueadm/following{/other_user}", + "gists_url": "https://api.github.com/users/trueadm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/trueadm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/trueadm/subscriptions", + "organizations_url": "https://api.github.com/users/trueadm/orgs", + "repos_url": "https://api.github.com/users/trueadm/repos", + "events_url": "https://api.github.com/users/trueadm/events{/privacy}", + "received_events_url": "https://api.github.com/users/trueadm/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 436 + }, + { + "login": "gsathya", + "id": 565765, + "node_id": "MDQ6VXNlcjU2NTc2NQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/565765?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gsathya", + "html_url": "https://github.com/gsathya", + "followers_url": "https://api.github.com/users/gsathya/followers", + "following_url": "https://api.github.com/users/gsathya/following{/other_user}", + "gists_url": "https://api.github.com/users/gsathya/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gsathya/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gsathya/subscriptions", + "organizations_url": "https://api.github.com/users/gsathya/orgs", + "repos_url": "https://api.github.com/users/gsathya/repos", + "events_url": "https://api.github.com/users/gsathya/events{/privacy}", + "received_events_url": "https://api.github.com/users/gsathya/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 387 + }, + { + "login": "mofeiZ", + "id": 34200447, + "node_id": "MDQ6VXNlcjM0MjAwNDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/34200447?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/mofeiZ", + "html_url": "https://github.com/mofeiZ", + "followers_url": "https://api.github.com/users/mofeiZ/followers", + "following_url": "https://api.github.com/users/mofeiZ/following{/other_user}", + "gists_url": "https://api.github.com/users/mofeiZ/gists{/gist_id}", + "starred_url": "https://api.github.com/users/mofeiZ/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/mofeiZ/subscriptions", + "organizations_url": "https://api.github.com/users/mofeiZ/orgs", + "repos_url": "https://api.github.com/users/mofeiZ/repos", + "events_url": "https://api.github.com/users/mofeiZ/events{/privacy}", + "received_events_url": "https://api.github.com/users/mofeiZ/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 381 + }, + { + "login": "bvaughn", + "id": 29597, + "node_id": "MDQ6VXNlcjI5NTk3", + "avatar_url": "https://avatars.githubusercontent.com/u/29597?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bvaughn", + "html_url": "https://github.com/bvaughn", + "followers_url": "https://api.github.com/users/bvaughn/followers", + "following_url": "https://api.github.com/users/bvaughn/following{/other_user}", + "gists_url": "https://api.github.com/users/bvaughn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bvaughn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bvaughn/subscriptions", + "organizations_url": "https://api.github.com/users/bvaughn/orgs", + "repos_url": "https://api.github.com/users/bvaughn/repos", + "events_url": "https://api.github.com/users/bvaughn/events{/privacy}", + "received_events_url": "https://api.github.com/users/bvaughn/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 366 + }, + { + "login": "eps1lon", + "id": 12292047, + "node_id": "MDQ6VXNlcjEyMjkyMDQ3", + "avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eps1lon", + "html_url": "https://github.com/eps1lon", + "followers_url": "https://api.github.com/users/eps1lon/followers", + "following_url": "https://api.github.com/users/eps1lon/following{/other_user}", + "gists_url": "https://api.github.com/users/eps1lon/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eps1lon/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eps1lon/subscriptions", + "organizations_url": "https://api.github.com/users/eps1lon/orgs", + "repos_url": "https://api.github.com/users/eps1lon/repos", + "events_url": "https://api.github.com/users/eps1lon/events{/privacy}", + "received_events_url": "https://api.github.com/users/eps1lon/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 352 + }, + { + "login": "kassens", + "id": 11849, + "node_id": "MDQ6VXNlcjExODQ5", + "avatar_url": "https://avatars.githubusercontent.com/u/11849?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kassens", + "html_url": "https://github.com/kassens", + "followers_url": "https://api.github.com/users/kassens/followers", + "following_url": "https://api.github.com/users/kassens/following{/other_user}", + "gists_url": "https://api.github.com/users/kassens/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kassens/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kassens/subscriptions", + "organizations_url": "https://api.github.com/users/kassens/orgs", + "repos_url": "https://api.github.com/users/kassens/repos", + "events_url": "https://api.github.com/users/kassens/events{/privacy}", + "received_events_url": "https://api.github.com/users/kassens/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 346 + }, + { + "login": "petehunt", + "id": 239742, + "node_id": "MDQ6VXNlcjIzOTc0Mg==", + "avatar_url": "https://avatars.githubusercontent.com/u/239742?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/petehunt", + "html_url": "https://github.com/petehunt", + "followers_url": "https://api.github.com/users/petehunt/followers", + "following_url": "https://api.github.com/users/petehunt/following{/other_user}", + "gists_url": "https://api.github.com/users/petehunt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/petehunt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/petehunt/subscriptions", + "organizations_url": "https://api.github.com/users/petehunt/orgs", + "repos_url": "https://api.github.com/users/petehunt/repos", + "events_url": "https://api.github.com/users/petehunt/events{/privacy}", + "received_events_url": "https://api.github.com/users/petehunt/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 332 + }, + { + "login": "rickhanlonii", + "id": 2440089, + "node_id": "MDQ6VXNlcjI0NDAwODk=", + "avatar_url": "https://avatars.githubusercontent.com/u/2440089?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rickhanlonii", + "html_url": "https://github.com/rickhanlonii", + "followers_url": "https://api.github.com/users/rickhanlonii/followers", + "following_url": "https://api.github.com/users/rickhanlonii/following{/other_user}", + "gists_url": "https://api.github.com/users/rickhanlonii/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rickhanlonii/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rickhanlonii/subscriptions", + "organizations_url": "https://api.github.com/users/rickhanlonii/orgs", + "repos_url": "https://api.github.com/users/rickhanlonii/repos", + "events_url": "https://api.github.com/users/rickhanlonii/events{/privacy}", + "received_events_url": "https://api.github.com/users/rickhanlonii/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 291 + }, + { + "login": "gnoff", + "id": 2716369, + "node_id": "MDQ6VXNlcjI3MTYzNjk=", + "avatar_url": "https://avatars.githubusercontent.com/u/2716369?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gnoff", + "html_url": "https://github.com/gnoff", + "followers_url": "https://api.github.com/users/gnoff/followers", + "following_url": "https://api.github.com/users/gnoff/following{/other_user}", + "gists_url": "https://api.github.com/users/gnoff/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gnoff/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gnoff/subscriptions", + "organizations_url": "https://api.github.com/users/gnoff/orgs", + "repos_url": "https://api.github.com/users/gnoff/repos", + "events_url": "https://api.github.com/users/gnoff/events{/privacy}", + "received_events_url": "https://api.github.com/users/gnoff/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 234 + }, + { + "login": "hoxyq", + "id": 28902667, + "node_id": "MDQ6VXNlcjI4OTAyNjY3", + "avatar_url": "https://avatars.githubusercontent.com/u/28902667?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hoxyq", + "html_url": "https://github.com/hoxyq", + "followers_url": "https://api.github.com/users/hoxyq/followers", + "following_url": "https://api.github.com/users/hoxyq/following{/other_user}", + "gists_url": "https://api.github.com/users/hoxyq/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hoxyq/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hoxyq/subscriptions", + "organizations_url": "https://api.github.com/users/hoxyq/orgs", + "repos_url": "https://api.github.com/users/hoxyq/repos", + "events_url": "https://api.github.com/users/hoxyq/events{/privacy}", + "received_events_url": "https://api.github.com/users/hoxyq/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 223 + }, + { + "login": "chenglou", + "id": 1909539, + "node_id": "MDQ6VXNlcjE5MDk1Mzk=", + "avatar_url": "https://avatars.githubusercontent.com/u/1909539?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenglou", + "html_url": "https://github.com/chenglou", + "followers_url": "https://api.github.com/users/chenglou/followers", + "following_url": "https://api.github.com/users/chenglou/following{/other_user}", + "gists_url": "https://api.github.com/users/chenglou/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenglou/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenglou/subscriptions", + "organizations_url": "https://api.github.com/users/chenglou/orgs", + "repos_url": "https://api.github.com/users/chenglou/repos", + "events_url": "https://api.github.com/users/chenglou/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenglou/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 222 + }, + { + "login": "vjeux", + "id": 197597, + "node_id": "MDQ6VXNlcjE5NzU5Nw==", + "avatar_url": "https://avatars.githubusercontent.com/u/197597?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vjeux", + "html_url": "https://github.com/vjeux", + "followers_url": "https://api.github.com/users/vjeux/followers", + "following_url": "https://api.github.com/users/vjeux/following{/other_user}", + "gists_url": "https://api.github.com/users/vjeux/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vjeux/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vjeux/subscriptions", + "organizations_url": "https://api.github.com/users/vjeux/orgs", + "repos_url": "https://api.github.com/users/vjeux/repos", + "events_url": "https://api.github.com/users/vjeux/events{/privacy}", + "received_events_url": "https://api.github.com/users/vjeux/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "contributions": 207 + } +] \ No newline at end of file diff --git a/github/contributors_react.metadata.json b/github/contributors_react.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..75df4b3f0cc8c43709ebcc5df9ab62ddaf64a021 --- /dev/null +++ b/github/contributors_react.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_contributors_react", + "source": "github", + "collected_date": "2025-11-05T22:50:51.432957", + "size_bytes": 21354, + "description": "React contributors", + "url": "https://api.github.com/repos/facebook/react/contributors?per_page=20" +} \ No newline at end of file diff --git a/github/issues_react.json b/github/issues_react.json new file mode 100644 index 0000000000000000000000000000000000000000..a4fb8f425ded294963e2cfec3f6714bb3af7321d --- /dev/null +++ b/github/issues_react.json @@ -0,0 +1,842 @@ +[ + { + "url": "https://api.github.com/repos/facebook/react/issues/35053", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35053/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35053/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35053/events", + "html_url": "https://github.com/facebook/react/pull/35053", + "id": 3593109333, + "node_id": "PR_kwDOAJy2Ks6xwpDV", + "number": 35053, + "title": "Store instance handles in an internal map behind flag", + "user": { + "login": "jackpope", + "id": 8965173, + "node_id": "MDQ6VXNlcjg5NjUxNzM=", + "avatar_url": "https://avatars.githubusercontent.com/u/8965173?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jackpope", + "html_url": "https://github.com/jackpope", + "followers_url": "https://api.github.com/users/jackpope/followers", + "following_url": "https://api.github.com/users/jackpope/following{/other_user}", + "gists_url": "https://api.github.com/users/jackpope/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jackpope/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jackpope/subscriptions", + "organizations_url": "https://api.github.com/users/jackpope/orgs", + "repos_url": "https://api.github.com/users/jackpope/repos", + "events_url": "https://api.github.com/users/jackpope/events{/privacy}", + "received_events_url": "https://api.github.com/users/jackpope/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 196858374, + "node_id": "MDU6TGFiZWwxOTY4NTgzNzQ=", + "url": "https://api.github.com/repos/facebook/react/labels/CLA%20Signed", + "name": "CLA Signed", + "color": "e7e7e7", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2025-11-05T22:48:35Z", + "updated_at": "2025-11-05T22:52:47Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/facebook/react/pulls/35053", + "html_url": "https://github.com/facebook/react/pull/35053", + "diff_url": "https://github.com/facebook/react/pull/35053.diff", + "patch_url": "https://github.com/facebook/react/pull/35053.patch", + "merged_at": null + }, + "body": "We already append `randomKey` to each handle name to prevent external libraries from accessing and relying on these internals. But more libraries recently have been getting around this by simply iterating over the element properties and using a `startsWith` check.\r\n\r\nThis flag allows us to experiment with moving these handles to an internal map.\r\n\r\nThis PR starts with the two most common internals, the props object and the fiber. We can consider moving additional properties such as the container root and others depending on perf results.", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35053/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35053/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35052", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35052/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35052/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35052/events", + "html_url": "https://github.com/facebook/react/pull/35052", + "id": 3593093569, + "node_id": "PR_kwDOAJy2Ks6xwmGL", + "number": 35052, + "title": "fix(beforeinput): handle native beforeinput events (Firefox replacement flows) — fixes #24358", + "user": { + "login": "ruidosujeira", + "id": 229324643, + "node_id": "U_kgDODas3Yw", + "avatar_url": "https://avatars.githubusercontent.com/u/229324643?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ruidosujeira", + "html_url": "https://github.com/ruidosujeira", + "followers_url": "https://api.github.com/users/ruidosujeira/followers", + "following_url": "https://api.github.com/users/ruidosujeira/following{/other_user}", + "gists_url": "https://api.github.com/users/ruidosujeira/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ruidosujeira/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ruidosujeira/subscriptions", + "organizations_url": "https://api.github.com/users/ruidosujeira/orgs", + "repos_url": "https://api.github.com/users/ruidosujeira/repos", + "events_url": "https://api.github.com/users/ruidosujeira/events{/privacy}", + "received_events_url": "https://api.github.com/users/ruidosujeira/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 196858374, + "node_id": "MDU6TGFiZWwxOTY4NTgzNzQ=", + "url": "https://api.github.com/repos/facebook/react/labels/CLA%20Signed", + "name": "CLA Signed", + "color": "e7e7e7", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2025-11-05T22:42:53Z", + "updated_at": "2025-11-05T22:52:48Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "draft": true, + "pull_request": { + "url": "https://api.github.com/repos/facebook/react/pulls/35052", + "html_url": "https://github.com/facebook/react/pull/35052", + "diff_url": "https://github.com/facebook/react/pull/35052.diff", + "patch_url": "https://github.com/facebook/react/pull/35052.patch", + "merged_at": null + }, + "body": "Summary\r\n\r\nThis pull request fixes a bug where the `onBeforeInput` event handler would not fire in React applications running on Firefox. This failure occurred during specific text replacement flows, such as selecting a character from the macOS accent popup (e.g., holding 'a' to select 'á') or applying a correction from the native spellcheck context menu.\r\n\r\nThe root cause is that Firefox (unlike other browsers) emits a **native** `beforeinput` event for these actions. The existing `BeforeInputEventPlugin` was not registered to listen for this native event, only for `textInput` or composition events, causing these specific replacement flows to be missed.\r\n\r\nThis fix updates `BeforeInputEventPlugin.js` to:\r\n1. Add `'beforeinput'` as a direct dependency for `onBeforeInput` in `registerEvents()`.\r\n2. Update `getNativeBeforeInputChars()` to correctly extract `nativeEvent.data` when the event is a native `beforeinput`.\r\n\r\nFixes #24358 \r\n\r\nHow did you test this change?\r\n\r\nAdded two new unit tests to `BeforeInputEventPlugin-test.js` to validate this fix.\r\n\r\nThese tests simulate the dispatch of a native `beforeinput` event (mimicking Firefox's behavior for `insertReplacementText`) on both a standard `` and a `contentEditable` element. The tests assert that the `onBeforeInput` handler is correctly invoked and receives the `event.data` from the native event.\r\n\r\nThese new tests pass, confirming the fix, while all existing tests for the plugin also continue to pass.\r\n\r\nCommand Run:\r\n```bash\r\nyarn test packages/react-dom/src/events/plugins/__tests__/BeforeInputEventPlugin-test.js -i\r\n\r\nTest Output:\r\n\r\nRunning tests for default (experimental)...\r\n PASS packages/react-dom/src/events/plugins/__tests__/BeforeInputEventPlugin-test.js\r\n BeforeInputEventPlugin\r\n ✓ should extract onBeforeInput when simulating in Webkit on input[type=text] (733 ms)\r\n ✓ should extract onBeforeInput when simulating in Webkit on contenteditable (62 ms)\r\n ✓ should extract onBeforeInput when simulating in IE11 on input[type=text] (60 ms)\r\n ✓ should extract onBeforeInput when simulating in IE11 on contenteditable (72 ms)\r\n ✓ should extract onBeforeInput when simulating in env with no CompositionEvent on input[type=text] (64 ms)\r\n ✓ should extract onBeforeInput when simulating in env with only CompositionEvent on input[type=text] (73 ms)\r\n ✓ should extract onBeforeInput when simulating in env with only CompositionEvent on contenteditable (72 ms)\r\n ✓ should extract onBeforeInput for native beforeinput on input[type=text] (68 ms)\r\n ✓ should extract onBeforeInput for native beforeinput on contentEditable (76 ms)\r\n\r\nTest Suites: 1 passed, 1 total\r\nTests: 9 passed, 9 total\r\nSnapshots: 0 total\r\nTime: 1.888 s, estimated 2 s\r\nRan all test suites matching /packages\\/react-dom\\/src\\/events\\/plugins\\/__tests__\\/BeforeInputEventPlugin-test.js/i.\r\nDone in 2.79s.", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35052/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35052/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35050", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35050/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35050/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35050/events", + "html_url": "https://github.com/facebook/react/pull/35050", + "id": 3591957747, + "node_id": "PR_kwDOAJy2Ks6xswNf", + "number": 35050, + "title": "Fix: Should not already be working error in Firefox after breakpoint/…", + "user": { + "login": "Mario5T", + "id": 185037556, + "node_id": "U_kgDOCwdy9A", + "avatar_url": "https://avatars.githubusercontent.com/u/185037556?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Mario5T", + "html_url": "https://github.com/Mario5T", + "followers_url": "https://api.github.com/users/Mario5T/followers", + "following_url": "https://api.github.com/users/Mario5T/following{/other_user}", + "gists_url": "https://api.github.com/users/Mario5T/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Mario5T/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Mario5T/subscriptions", + "organizations_url": "https://api.github.com/users/Mario5T/orgs", + "repos_url": "https://api.github.com/users/Mario5T/repos", + "events_url": "https://api.github.com/users/Mario5T/events{/privacy}", + "received_events_url": "https://api.github.com/users/Mario5T/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 196858374, + "node_id": "MDU6TGFiZWwxOTY4NTgzNzQ=", + "url": "https://api.github.com/repos/facebook/react/labels/CLA%20Signed", + "name": "CLA Signed", + "color": "e7e7e7", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2025-11-05T16:50:38Z", + "updated_at": "2025-11-06T03:37:23Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/facebook/react/pulls/35050", + "html_url": "https://github.com/facebook/react/pull/35050", + "diff_url": "https://github.com/facebook/react/pull/35050.diff", + "patch_url": "https://github.com/facebook/react/pull/35050.patch", + "merged_at": null + }, + "body": "\r\n[ISSUE_17355_SUMMARY.md](https://github.com/user-attachments/files/23370921/ISSUE_17355_SUMMARY.md)\r\n…alert (#17355)\r\n\r\n# Fix: \"Should not already be working\" error in Firefox after breakpoint/alert\r\n\r\n## Summary\r\nFixes #17355 - Resolves the \"Should not already be working\" error that occurs in Firefox (and some older browsers) when a breakpoint or `alert()` pauses the JavaScript main thread.\r\n\r\n## Problem Description\r\nWhen developers use breakpoints or `alert()` statements in Firefox, React throws an error:\r\n```\r\nError: Should not already be working.\r\n```\r\n\r\nThis error occurs because:\r\n1. React is performing work with `executionContext` set to `RenderContext` or `CommitContext`\r\n2. A breakpoint or `alert()` pauses the main thread\r\n3. During the pause, `MessageChannel` messages queue up\r\n4. Upon resuming, Firefox immediately fires the queued `MessageChannel` callback\r\n5. This causes `performWorkOnRoot()` or `commitRootImpl()` to be called re-entrantly\r\n6. The re-entrant call sees `executionContext` is still set (hasn't been cleared yet)\r\n7. React throws the error\r\n\r\n## Root Cause Analysis\r\nThe issue is a race condition in Firefox's `MessageChannel` implementation:\r\n- **Normal browsers**: `MessageChannel` callbacks are dispatched asynchronously after the current execution completes\r\n- **Firefox after pause**: Queued `MessageChannel` callbacks fire immediately/synchronously upon resuming from a pause\r\n\r\nThis creates a re-entrance scenario where React's scheduler tries to start new work before the previous work's cleanup (clearing `executionContext`) has completed.\r\n\r\n## Solution\r\nInstead of throwing an error when re-entrance is detected, the fix:\r\n1. Detects the re-entrant call by checking `executionContext`\r\n2. Logs a development warning to inform developers\r\n3. Calls `ensureRootIsScheduled(root)` to properly schedule the work for later\r\n4. Returns early to avoid the error\r\n\r\nThis approach:\r\n- ✅ Handles the Firefox edge case gracefully\r\n- ✅ Maintains React's scheduling semantics\r\n- ✅ Doesn't change timing behavior for normal cases\r\n- ✅ Provides helpful debugging information in development\r\n- ✅ Works across all browsers\r\n\r\n## Changes Made\r\n\r\n### Modified Files\r\n1. **`packages/react-reconciler/src/ReactFiberWorkLoop.js`**\r\n - Modified `performWorkOnRoot()` (line ~1071)\r\n - Modified `commitRootImpl()` (line ~3459)\r\n - Both locations now handle re-entrance gracefully instead of throwing\r\n\r\n### Code Changes\r\n\r\n#### Before:\r\n```javascript\r\nif ((executionContext & (RenderContext | CommitContext)) !== NoContext) {\r\n throw new Error('Should not already be working.');\r\n}\r\n```\r\n\r\n#### After:\r\n```javascript\r\nif ((executionContext & (RenderContext | CommitContext)) !== NoContext) {\r\n // We're being called re-entrantly. This can happen in Firefox (and some\r\n // older browsers) when a breakpoint or alert() pauses the main thread,\r\n // causing MessageChannel callbacks to fire immediately upon resuming.\r\n // Instead of throwing an error, schedule the work to run after the\r\n // current work completes.\r\n // See: https://github.com/facebook/react/issues/17355\r\n if (__DEV__) {\r\n console.error(\r\n 'performWorkOnRoot was called recursively. This is likely due to ' +\r\n 'a browser pause (e.g., breakpoint or alert). The work will be ' +\r\n 'rescheduled.',\r\n );\r\n }\r\n ensureRootIsScheduled(root);\r\n return;\r\n}\r\n```\r\n\r\n## Testing\r\n\r\n### Manual Testing\r\n1. Created `ISSUE_17355_TEST.html` with multiple test scenarios:\r\n - Alert during render\r\n - Alert during effect\r\n - Rapid state updates\r\n - Simulated MessageChannel re-entrance\r\n\r\n2. Tested on:\r\n - Firefox (latest)\r\n - Chrome\r\n - Safari\r\n - Edge\r\n\r\n### Automated Testing\r\nCreated `ReactReentranceGuard-test.js` with test cases for:\r\n- Re-entrant `performWorkOnRoot` calls\r\n- Re-entrant `commitRoot` calls\r\n- Work rescheduling behavior\r\n- Normal operation (no regression)\r\n- Multiple rapid updates\r\n\r\n### Test Results\r\n- ✅ No \"Should not already be working\" errors\r\n- ✅ Work is properly rescheduled\r\n- ✅ Development warnings appear as expected\r\n- ✅ No regression in normal operation\r\n- ✅ All existing tests pass\r\n\r\n## Reproduction Steps (Before Fix)\r\n\r\n1. Create a React component with state updates\r\n2. Add `alert()` in a `useEffect` or render method\r\n3. Run the app in Firefox\r\n4. Click OK on the alert\r\n5. **Error**: \"Should not already be working\" appears in console\r\n\r\n## Verification Steps (After Fix)\r\n\r\n1. Follow the same reproduction steps\r\n2. **Result**: No error is thrown\r\n3. **Result**: In development mode, a warning appears explaining the re-entrance\r\n4. **Result**: The application continues to work correctly\r\n\r\n## Browser Compatibility\r\n- ✅ Firefox (all versions)\r\n- ✅ Chrome\r\n- ✅ Safari\r\n- ✅ Edge\r\n- ✅ Older browsers mentioned in the issue\r\n\r\n## Performance Impact\r\n- **None** - The fix only adds a check that runs when re-entrance is detected (rare edge case)\r\n- Normal operation has zero overhead\r\n- No changes to React's scheduling algorithm\r\n\r\n## Breaking Changes\r\n- **None** - This is a bug fix that makes React more resilient\r\n\r\n## Migration Guide\r\n- **Not needed** - The fix is transparent to users\r\n- Developers using breakpoints/alerts will simply stop seeing the error\r\n\r\n## Related Issues\r\n- Fixes #17355\r\n- Related to scheduler MessageChannel implementation\r\n- May help with similar timing issues in other browsers\r\n\r\n## Documentation\r\n- Added inline comments explaining the fix\r\n- Created comprehensive analysis document (`ISSUE_17355_ANALYSIS.md`)\r\n- Created test file with examples (`ISSUE_17355_TEST.html`)\r\n\r\n## Checklist\r\n- [x] Code follows React's style guidelines\r\n- [x] Added/updated tests\r\n- [x] All tests pass\r\n- [x] Added inline documentation\r\n- [x] Tested on multiple browsers\r\n- [x] No breaking changes\r\n- [x] Issue reference included (#17355)\r\n\r\n## Screenshots/Logs\r\n\r\n### Before Fix:\r\n```\r\nError: Should not already be working.\r\n at performWorkOnRoot (ReactFiberWorkLoop.js:1072)\r\n at performWorkOnRoot (ReactFiberWorkLoop.js:1066)\r\n ...\r\n```\r\n\r\n### After Fix (Development):\r\n```\r\nWarning: performWorkOnRoot was called recursively. This is likely due to \r\na browser pause (e.g., breakpoint or alert). The work will be rescheduled.\r\n```\r\n\r\n### After Fix (Production):\r\n```\r\n(No error, work is silently rescheduled)\r\n```\r\n\r\n## Additional Notes\r\n\r\nThis fix takes a defensive programming approach - instead of assuming the scheduler will never be called re-entrantly, it handles the case gracefully. This makes React more robust against browser quirks and edge cases.\r\n\r\nThe fix is minimal and focused on the specific issue, without changing React's core scheduling logic or introducing new complexity.\r\n\r\n## Reviewers\r\nPlease pay special attention to:\r\n1. The re-entrance detection logic\r\n2. The use of `ensureRootIsScheduled()` for rescheduling\r\n3. The development warning message\r\n4. Test coverage for edge cases\r\n\r\n---\r\n\r\n**Issue Reference**: #17355 \r\n**Type**: Bug Fix \r\n**Priority**: Medium \r\n**Affected Versions**: All versions with MessageChannel-based scheduler \r\n**Target Version**: Next minor release", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35050/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35050/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35049", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35049/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35049/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35049/events", + "html_url": "https://github.com/facebook/react/issues/35049", + "id": 3590668436, + "node_id": "I_kwDOAJy2Ks7WBUCU", + "number": 35049, + "title": "[DevTools Bug] Cannot read properties of undefined (reading 'map')", + "user": { + "login": "Amurmurmur", + "id": 8608333, + "node_id": "MDQ6VXNlcjg2MDgzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/u/8608333?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Amurmurmur", + "html_url": "https://github.com/Amurmurmur", + "followers_url": "https://api.github.com/users/Amurmurmur/followers", + "following_url": "https://api.github.com/users/Amurmurmur/following{/other_user}", + "gists_url": "https://api.github.com/users/Amurmurmur/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Amurmurmur/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Amurmurmur/subscriptions", + "organizations_url": "https://api.github.com/users/Amurmurmur/orgs", + "repos_url": "https://api.github.com/users/Amurmurmur/repos", + "events_url": "https://api.github.com/users/Amurmurmur/events{/privacy}", + "received_events_url": "https://api.github.com/users/Amurmurmur/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 40929151, + "node_id": "MDU6TGFiZWw0MDkyOTE1MQ==", + "url": "https://api.github.com/repos/facebook/react/labels/Type:%20Bug", + "name": "Type: Bug", + "color": "b60205", + "default": false, + "description": null + }, + { + "id": 155984160, + "node_id": "MDU6TGFiZWwxNTU5ODQxNjA=", + "url": "https://api.github.com/repos/facebook/react/labels/Status:%20Unconfirmed", + "name": "Status: Unconfirmed", + "color": "d4c5f9", + "default": false, + "description": "A potential issue that we haven't yet confirmed as a bug" + }, + { + "id": 710573595, + "node_id": "MDU6TGFiZWw3MTA1NzM1OTU=", + "url": "https://api.github.com/repos/facebook/react/labels/Component:%20Developer%20Tools", + "name": "Component: Developer Tools", + "color": "fbca04", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-05T11:55:34Z", + "updated_at": "2025-11-05T11:55:34Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "### Website or app\n\nProfiler crashed\n\n### Repro steps\n\nTried to record in the profiler.\nNavigated to another screen in my react-native app, and profiler crash.\n\n### How often does this bug happen?\n\nSometimes\n\n### DevTools package (automated)\n\nreact-devtools-fusebox\n\n### DevTools version (automated)\n\n6.1.4-9fd4c09d68\n\n### Error message (automated)\n\nCannot read properties of undefined (reading 'map')\n\n### Error call stack (automated)\n\n```text\nat Sl (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:891273)\n at zo (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:56181)\n at xl (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:78611)\n at Xl (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:89137)\n at Wf (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:140488)\n at Vf (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:140416)\n at Bf (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:140258)\n at Mf (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:136684)\n at yd (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:1:157182)\n at MessagePort.C (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:39:1432)\n```\n\n### Error component stack (automated)\n\n```text\nat Sl (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:891063)\n at div ()\n at div ()\n at bv (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:966955)\n at div ()\n at div ()\n at Dv (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:968200)\n at Pv (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:972397)\n at div ()\n at lr (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:775658)\n at div ()\n at Fv (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:971851)\n at div ()\n at div ()\n at div ()\n at jo (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:869288)\n at http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:1089658\n at el (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:884838)\n at http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:887488\n at div ()\n at div ()\n at div ()\n at tl (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:887322)\n at pc (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:898959)\n at Ud (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:959076)\n at Sd (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:951587)\n at jr (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:789938)\n at wt (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:817279)\n at Pf (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:939000)\n at oS (http://127.0.0.1:8081/debugger-frontend/third_party/react-devtools/react-devtools.js:41:1096424)\n```\n\n### GitHub query string (automated)\n\n```text\nhttps://api.github.com/search/issues?q=Cannot read properties of undefined (reading 'map') in:title is:issue is:open is:public label:\"Component: Developer Tools\" repo:facebook/react\n```", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35049/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35049/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35047", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35047/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35047/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35047/events", + "html_url": "https://github.com/facebook/react/pull/35047", + "id": 3588678311, + "node_id": "PR_kwDOAJy2Ks6xh55D", + "number": 35047, + "title": "[healthcheck] correct yargs scriptName and usage", + "user": { + "login": "henryqdineen", + "id": 682132, + "node_id": "MDQ6VXNlcjY4MjEzMg==", + "avatar_url": "https://avatars.githubusercontent.com/u/682132?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/henryqdineen", + "html_url": "https://github.com/henryqdineen", + "followers_url": "https://api.github.com/users/henryqdineen/followers", + "following_url": "https://api.github.com/users/henryqdineen/following{/other_user}", + "gists_url": "https://api.github.com/users/henryqdineen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/henryqdineen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/henryqdineen/subscriptions", + "organizations_url": "https://api.github.com/users/henryqdineen/orgs", + "repos_url": "https://api.github.com/users/henryqdineen/repos", + "events_url": "https://api.github.com/users/henryqdineen/events{/privacy}", + "received_events_url": "https://api.github.com/users/henryqdineen/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 196858374, + "node_id": "MDU6TGFiZWwxOTY4NTgzNzQ=", + "url": "https://api.github.com/repos/facebook/react/labels/CLA%20Signed", + "name": "CLA Signed", + "color": "e7e7e7", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-05T01:22:08Z", + "updated_at": "2025-11-05T01:22:55Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/facebook/react/pulls/35047", + "html_url": "https://github.com/facebook/react/pull/35047", + "diff_url": "https://github.com/facebook/react/pull/35047.diff", + "patch_url": "https://github.com/facebook/react/pull/35047.patch", + "merged_at": null + }, + "body": "## Summary\r\n\r\nThis is something I noticed when looking at #35046. The `healthcheck` script was renamed in 63e533026062450f7e033af1e15545eb4463fce6 but the `yargs` configuration was never updated accordingly.\r\n\r\n## How did you test this change?\r\n\r\nI ran the script with `--help` locally.", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35047/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35047/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35046", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35046/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35046/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35046/events", + "html_url": "https://github.com/facebook/react/pull/35046", + "id": 3588635756, + "node_id": "PR_kwDOAJy2Ks6xhwo4", + "number": 35046, + "title": "[healthcheck] fix error false negatives", + "user": { + "login": "henryqdineen", + "id": 682132, + "node_id": "MDQ6VXNlcjY4MjEzMg==", + "avatar_url": "https://avatars.githubusercontent.com/u/682132?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/henryqdineen", + "html_url": "https://github.com/henryqdineen", + "followers_url": "https://api.github.com/users/henryqdineen/followers", + "following_url": "https://api.github.com/users/henryqdineen/following{/other_user}", + "gists_url": "https://api.github.com/users/henryqdineen/gists{/gist_id}", + "starred_url": "https://api.github.com/users/henryqdineen/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/henryqdineen/subscriptions", + "organizations_url": "https://api.github.com/users/henryqdineen/orgs", + "repos_url": "https://api.github.com/users/henryqdineen/repos", + "events_url": "https://api.github.com/users/henryqdineen/events{/privacy}", + "received_events_url": "https://api.github.com/users/henryqdineen/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 196858374, + "node_id": "MDU6TGFiZWwxOTY4NTgzNzQ=", + "url": "https://api.github.com/repos/facebook/react/labels/CLA%20Signed", + "name": "CLA Signed", + "color": "e7e7e7", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-05T01:05:13Z", + "updated_at": "2025-11-05T01:05:19Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/facebook/react/pulls/35046", + "html_url": "https://github.com/facebook/react/pull/35046", + "diff_url": "https://github.com/facebook/react/pull/35046.diff", + "patch_url": "https://github.com/facebook/react/pull/35046.patch", + "merged_at": null + }, + "body": "## Summary\r\n\r\nI noticed a regression in `react-compiler-healthcheck` where `v1.0.0` will not report any errors.\r\n\r\n```sh\r\n> npx react-compiler-healthcheck@1.0.0\r\nSuccessfully compiled 197 out of 197 components.\r\nStrictMode usage not found.\r\nFound no usage of incompatible libraries.\r\n\r\n> npx react-compiler-healthcheck@19.1.0-rc.3\r\nSuccessfully compiled 190 out of 213 components.\r\nStrictMode usage not found.\r\nFound no usage of incompatible libraries.\r\n```\r\n\r\nWhen investigating the issue I noticed a couple TypeScript errors in the source. I believe `isActionableDiagnostic()` was falling through to the `default` case and throwing an error that was being swallowed. In this PR I fixed the TypeScript issue and updated `isActionableDiagnostic()` implementation. \r\n\r\n## How did you test this change?\r\n\r\nI ran locally in one of our repos.", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35046/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35046/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35045", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35045/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35045/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35045/events", + "html_url": "https://github.com/facebook/react/issues/35045", + "id": 3588447639, + "node_id": "I_kwDOAJy2Ks7V412X", + "number": 35045, + "title": "Bug: `eslint-plugin-react-hooks` - Broken resolution in `7.0.1`", + "user": { + "login": "eidryn", + "id": 241608637, + "node_id": "U_kgDODmanvQ", + "avatar_url": "https://avatars.githubusercontent.com/u/241608637?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eidryn", + "html_url": "https://github.com/eidryn", + "followers_url": "https://api.github.com/users/eidryn/followers", + "following_url": "https://api.github.com/users/eidryn/following{/other_user}", + "gists_url": "https://api.github.com/users/eidryn/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eidryn/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eidryn/subscriptions", + "organizations_url": "https://api.github.com/users/eidryn/orgs", + "repos_url": "https://api.github.com/users/eidryn/repos", + "events_url": "https://api.github.com/users/eidryn/events{/privacy}", + "received_events_url": "https://api.github.com/users/eidryn/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 155984160, + "node_id": "MDU6TGFiZWwxNTU5ODQxNjA=", + "url": "https://api.github.com/repos/facebook/react/labels/Status:%20Unconfirmed", + "name": "Status: Unconfirmed", + "color": "d4c5f9", + "default": false, + "description": "A potential issue that we haven't yet confirmed as a bug" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2025-11-04T23:33:01Z", + "updated_at": "2025-11-05T00:41:02Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "React version: N/A\n\n## Steps To Reproduce\n\n1. Install `eslint-plugin-react-hooks@v7.0.1`\n2. Configure with a `.config.ts` configuration (although an [issue](https://github.com/causaly/zod-validation-error/issues/606) raised in `zod-validation-error` shows `esm/resolve` so may also flag with a `.js` config)\n3. Run `npx eslint .`\n4. Error printed:\n```\nError [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './v4' is not defined by \"exports\" in /node_modules/zod-validation-error/package.json\n at exportsNotFound (node:internal/modules/esm/resolve:313:10)\n at packageExportsResolve (node:internal/modules/esm/resolve:660:9)\n at resolveExports (node:internal/modules/cjs/loader:650:36)\n at Function._findPath (node:internal/modules/cjs/loader:717:31)\n at Function._resolveFilename (node:internal/modules/cjs/loader:1369:27)\n at Function.resolve (node:internal/modules/helpers:157:19)\n at jitiResolve (node_modules/jiti/dist/jiti.cjs:1:148703)\n at jitiRequire (node_modules/jiti/dist/jiti.cjs:1:150290)\n at node_modules/jiti/dist/jiti.cjs:1:157987\n at node_modules/eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js:20:16\n```\n\n## The current behavior\nThere is an error when running eslint - Downgrading to `7.0.0` resolves both the above error, and the typescript issue below.\n\n## The expected behavior\nThere is no error running eslint.\n\n## Type Discrepancy\n\nAdditionally, with `v7.0.1`, typescript complains that the `react-hooks` plugin is not the correct type:\n```\n// Truncated\n Types of property 'configs' are incompatible.\n Type '{ recommended: { plugins: string[]; rules: RulesConfig; }; 'recommended-latest': { plugins: string[]; rules: RulesConfig; }; flat: { recommended: ReactHooksFlatConfig; \"recommended-latest\": ReactHooksFlatConfig; }; }' is not assignable to type 'Record | LegacyConfigObject | ConfigObject[]>'.\n Property 'flat' is incompatible with index signature.\n Type '{ recommended: ReactHooksFlatConfig; \"recommended-latest\": ReactHooksFlatConfig; }' is not assignable to type 'ConfigObject | LegacyConfigObject | ConfigObject[]'\n// Truncated\n```\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35045/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35045/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35044", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35044/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35044/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35044/events", + "html_url": "https://github.com/facebook/react/pull/35044", + "id": 3588173401, + "node_id": "PR_kwDOAJy2Ks6xgQK1", + "number": 35044, + "title": "[compiler] Prevent local state source variables from depending on other state", + "user": { + "login": "jorge-cab", + "id": 57368278, + "node_id": "MDQ6VXNlcjU3MzY4Mjc4", + "avatar_url": "https://avatars.githubusercontent.com/u/57368278?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jorge-cab", + "html_url": "https://github.com/jorge-cab", + "followers_url": "https://api.github.com/users/jorge-cab/followers", + "following_url": "https://api.github.com/users/jorge-cab/following{/other_user}", + "gists_url": "https://api.github.com/users/jorge-cab/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jorge-cab/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jorge-cab/subscriptions", + "organizations_url": "https://api.github.com/users/jorge-cab/orgs", + "repos_url": "https://api.github.com/users/jorge-cab/repos", + "events_url": "https://api.github.com/users/jorge-cab/events{/privacy}", + "received_events_url": "https://api.github.com/users/jorge-cab/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 196858374, + "node_id": "MDU6TGFiZWwxOTY4NTgzNzQ=", + "url": "https://api.github.com/repos/facebook/react/labels/CLA%20Signed", + "name": "CLA Signed", + "color": "e7e7e7", + "default": false, + "description": null + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-04T21:15:33Z", + "updated_at": "2025-11-04T21:23:17Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/facebook/react/pulls/35044", + "html_url": "https://github.com/facebook/react/pull/35044", + "diff_url": "https://github.com/facebook/react/pull/35044.diff", + "patch_url": "https://github.com/facebook/react/pull/35044.patch", + "merged_at": null + }, + "body": "\nSummary:\nWhen a local state is created sometimes it uses a `prop` or even other local state for its initial value.\n\nThis value is only relevant on first render so we shouldn't consider it part of our data flow\n\nTest Plan:\nAdded tests\n\n---\n[//]: # (BEGIN SAPLING FOOTER)\nStack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35044).\n* __->__ #35044\n* #35020\n* #34973\n* #34972\n* #34995\n* #34967", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35044/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35044/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35043", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35043/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35043/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35043/events", + "html_url": "https://github.com/facebook/react/issues/35043", + "id": 3587716376, + "node_id": "I_kwDOAJy2Ks7V2DUY", + "number": 35043, + "title": "Bug:", + "user": { + "login": "b2232206-cmyk", + "id": 240061351, + "node_id": "U_kgDODk8Lpw", + "avatar_url": "https://avatars.githubusercontent.com/u/240061351?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/b2232206-cmyk", + "html_url": "https://github.com/b2232206-cmyk", + "followers_url": "https://api.github.com/users/b2232206-cmyk/followers", + "following_url": "https://api.github.com/users/b2232206-cmyk/following{/other_user}", + "gists_url": "https://api.github.com/users/b2232206-cmyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/b2232206-cmyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/b2232206-cmyk/subscriptions", + "organizations_url": "https://api.github.com/users/b2232206-cmyk/orgs", + "repos_url": "https://api.github.com/users/b2232206-cmyk/repos", + "events_url": "https://api.github.com/users/b2232206-cmyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/b2232206-cmyk/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 155984160, + "node_id": "MDU6TGFiZWwxNTU5ODQxNjA=", + "url": "https://api.github.com/repos/facebook/react/labels/Status:%20Unconfirmed", + "name": "Status: Unconfirmed", + "color": "d4c5f9", + "default": false, + "description": "A potential issue that we haven't yet confirmed as a bug" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-04T18:10:54Z", + "updated_at": "2025-11-04T18:10:54Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "\n\nReact version:\n\n## Steps To Reproduce\n\n1.\n2.\n\n\n\nLink to code example:\n\n\n\n## The current behavior\n\n\n## The expected behavior\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35043/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35043/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/facebook/react/issues/35040", + "repository_url": "https://api.github.com/repos/facebook/react", + "labels_url": "https://api.github.com/repos/facebook/react/issues/35040/labels{/name}", + "comments_url": "https://api.github.com/repos/facebook/react/issues/35040/comments", + "events_url": "https://api.github.com/repos/facebook/react/issues/35040/events", + "html_url": "https://github.com/facebook/react/issues/35040", + "id": 3587589589, + "node_id": "I_kwDOAJy2Ks7V1kXV", + "number": 35040, + "title": "Bug: Getting `Cannot access refs during render` error from event handler.", + "user": { + "login": "siamahnaf", + "id": 78312010, + "node_id": "MDQ6VXNlcjc4MzEyMDEw", + "avatar_url": "https://avatars.githubusercontent.com/u/78312010?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/siamahnaf", + "html_url": "https://github.com/siamahnaf", + "followers_url": "https://api.github.com/users/siamahnaf/followers", + "following_url": "https://api.github.com/users/siamahnaf/following{/other_user}", + "gists_url": "https://api.github.com/users/siamahnaf/gists{/gist_id}", + "starred_url": "https://api.github.com/users/siamahnaf/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/siamahnaf/subscriptions", + "organizations_url": "https://api.github.com/users/siamahnaf/orgs", + "repos_url": "https://api.github.com/users/siamahnaf/repos", + "events_url": "https://api.github.com/users/siamahnaf/events{/privacy}", + "received_events_url": "https://api.github.com/users/siamahnaf/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 155984160, + "node_id": "MDU6TGFiZWwxNTU5ODQxNjA=", + "url": "https://api.github.com/repos/facebook/react/labels/Status:%20Unconfirmed", + "name": "Status: Unconfirmed", + "color": "d4c5f9", + "default": false, + "description": "A potential issue that we haven't yet confirmed as a bug" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2025-11-04T17:36:26Z", + "updated_at": "2025-11-06T02:21:33Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "So on react official documentations, I found, it recommend to avoid direct read or write during render on ref. \n\nHere is the docs link (under pitfall)-\nhttps://react.dev/reference/react/useRef\n\nAnd here I also found that ref is safe to use on event handler or effect.\n\n`You can read or write refs from event handlers or effects instead.`\n\nSo, we can read `ref.current` from a onSubmit handler as it is a event handler. But when I combine it with `react-hook-form` I am getting the lint error with following context-\n\n```\nerror Error: Cannot access refs during render\n\nReact refs are values that are not needed for rendering. Refs should only be accessed outside of re\nnder, such as in event handlers or effects. Accessing a ref value (the `current` property) during r\nender can cause your component not to update as expected (https://react.dev/reference/react/useRef)\n```\n\nSo What I am doing on my code(see code)-\n\n```javascript\nconst onSubmit: SubmitHandler = async (value) => {\n let sigUrl: string;\n if (sig) {\n const { blob } = await upload(ref.current?.toFile());\n sigUrl = blob?.url || \"\"\n } else {\n sigUrl = item.signature\n }\n if (template) {\n mutate({\n ...value,\n templateId: template.templateId,\n previewUrl: template.previewUrl,\n signature: sigUrl,\n id: item.id\n });\n }\n}\n```\n\nthis onSubmit handler is triggering from `form`\n\n```javascript\n
\n...\n
\n```\n\nSo here handleSubmit is coming from `react-hook-form` to disable default behavior.\n\nWe already discussed about this issues from `nextjs` discussion. Following is the link of that discussion\n\nhttps://github.com/vercel/next.js/discussions/85677", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/facebook/react/issues/35040/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/facebook/react/issues/35040/timeline", + "performed_via_github_app": null, + "state_reason": null + } +] \ No newline at end of file diff --git a/github/issues_react.metadata.json b/github/issues_react.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..100844b2cc91e86864e1eeff058f5760db9a528e --- /dev/null +++ b/github/issues_react.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_issues_react", + "source": "github", + "collected_date": "2025-11-05T22:50:44.442446", + "size_bytes": 54493, + "description": "React open issues", + "url": "https://api.github.com/repos/facebook/react/issues?per_page=10&state=open" +} \ No newline at end of file diff --git a/github/issues_rust.json b/github/issues_rust.json new file mode 100644 index 0000000000000000000000000000000000000000..9ec36a61931f3634e22802da519595b4ea4c7e91 --- /dev/null +++ b/github/issues_rust.json @@ -0,0 +1,1280 @@ +[ + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148561", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148561/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148561/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148561/events", + "html_url": "https://github.com/rust-lang/rust/pull/148561", + "id": 3593732264, + "node_id": "PR_kwDOAAsO6M6xytUl", + "number": 148561, + "title": "Fix ICE from async closure variance", + "user": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 583426710, + "node_id": "MDU6TGFiZWw1ODM0MjY3MTA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-review", + "name": "S-waiting-on-review", + "color": "d3dddd", + "default": false, + "description": "Status: Awaiting review from the assignee but also interested parties." + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "fee1-dead", + "id": 43851243, + "node_id": "MDQ6VXNlcjQzODUxMjQz", + "avatar_url": "https://avatars.githubusercontent.com/u/43851243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fee1-dead", + "html_url": "https://github.com/fee1-dead", + "followers_url": "https://api.github.com/users/fee1-dead/followers", + "following_url": "https://api.github.com/users/fee1-dead/following{/other_user}", + "gists_url": "https://api.github.com/users/fee1-dead/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fee1-dead/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fee1-dead/subscriptions", + "organizations_url": "https://api.github.com/users/fee1-dead/orgs", + "repos_url": "https://api.github.com/users/fee1-dead/repos", + "events_url": "https://api.github.com/users/fee1-dead/events{/privacy}", + "received_events_url": "https://api.github.com/users/fee1-dead/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "fee1-dead", + "id": 43851243, + "node_id": "MDQ6VXNlcjQzODUxMjQz", + "avatar_url": "https://avatars.githubusercontent.com/u/43851243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fee1-dead", + "html_url": "https://github.com/fee1-dead", + "followers_url": "https://api.github.com/users/fee1-dead/followers", + "following_url": "https://api.github.com/users/fee1-dead/following{/other_user}", + "gists_url": "https://api.github.com/users/fee1-dead/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fee1-dead/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fee1-dead/subscriptions", + "organizations_url": "https://api.github.com/users/fee1-dead/orgs", + "repos_url": "https://api.github.com/users/fee1-dead/repos", + "events_url": "https://api.github.com/users/fee1-dead/events{/privacy}", + "received_events_url": "https://api.github.com/users/fee1-dead/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T03:20:29Z", + "updated_at": "2025-11-06T03:20:34Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148561", + "html_url": "https://github.com/rust-lang/rust/pull/148561", + "diff_url": "https://github.com/rust-lang/rust/pull/148561.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148561.patch", + "merged_at": null + }, + "body": "Fixes rust-lang/rust#148488\r\n\r\nThe fix is also a change from rust-lang/rust#148556", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148561/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148561/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148560", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148560/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148560/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148560/events", + "html_url": "https://github.com/rust-lang/rust/pull/148560", + "id": 3593694295, + "node_id": "PR_kwDOAAsO6M6xyk5N", + "number": 148560, + "title": "Rollup of 7 pull requests", + "user": { + "login": "Zalathar", + "id": 20290842, + "node_id": "MDQ6VXNlcjIwMjkwODQy", + "avatar_url": "https://avatars.githubusercontent.com/u/20290842?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zalathar", + "html_url": "https://github.com/Zalathar", + "followers_url": "https://api.github.com/users/Zalathar/followers", + "following_url": "https://api.github.com/users/Zalathar/following{/other_user}", + "gists_url": "https://api.github.com/users/Zalathar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zalathar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zalathar/subscriptions", + "organizations_url": "https://api.github.com/users/Zalathar/orgs", + "repos_url": "https://api.github.com/users/Zalathar/repos", + "events_url": "https://api.github.com/users/Zalathar/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zalathar/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 108333, + "node_id": "MDU6TGFiZWwxMDgzMzM=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/A-LLVM", + "name": "A-LLVM", + "color": "f7e101", + "default": false, + "description": "Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues." + }, + { + "id": 203738, + "node_id": "MDU6TGFiZWwyMDM3Mzg=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-rustdoc", + "name": "T-rustdoc", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the rustdoc team, which will review and decide on the PR/issue." + }, + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 583437191, + "node_id": "MDU6TGFiZWw1ODM0MzcxOTE=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-bors", + "name": "S-waiting-on-bors", + "color": "d3dddd", + "default": false, + "description": "Status: Waiting on bors to run and complete tests. Bors will change the label on completion." + }, + { + "id": 1591757102, + "node_id": "MDU6TGFiZWwxNTkxNzU3MTAy", + "url": "https://api.github.com/repos/rust-lang/rust/labels/rollup", + "name": "rollup", + "color": "f1ffa5", + "default": false, + "description": "A PR which is a rollup" + }, + { + "id": 2011781731, + "node_id": "MDU6TGFiZWwyMDExNzgxNzMx", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-libs", + "name": "T-libs", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the library team, which will review and decide on the PR/issue." + }, + { + "id": 7058675150, + "node_id": "LA_kwDOAAsO6M8AAAABpLrVzg", + "url": "https://api.github.com/repos/rust-lang/rust/labels/A-run-make", + "name": "A-run-make", + "color": "f7e101", + "default": false, + "description": "Area: port run-make Makefiles to rmake.rs" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 2, + "created_at": "2025-11-06T03:07:20Z", + "updated_at": "2025-11-06T03:09:40Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148560", + "html_url": "https://github.com/rust-lang/rust/pull/148560", + "diff_url": "https://github.com/rust-lang/rust/pull/148560.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148560.patch", + "merged_at": null + }, + "body": "Successful merges:\n\n - rust-lang/rust#143037 (Make named asm_labels lint not trigger on hexagon register spans)\n - rust-lang/rust#147043 (Add default sanitizers to TargetOptions)\n - rust-lang/rust#147586 (std-detect: improve detect macro docs)\n - rust-lang/rust#147912 ([rustdoc] Gracefully handle error in case we cannot run the compiler in doctests)\n - rust-lang/rust#148540 (Minor fixes to StdNonZeroNumberProvider for gdb)\n - rust-lang/rust#148541 (Add num_children method to some gdb pretty-printers)\n - rust-lang/rust#148549 (Fix broken qemu-cskyv2 link)\n\nFailed merges:\n\n - rust-lang/rust#147935 (Add LLVM realtime sanitizer)\n\nr? @ghost\n@rustbot modify labels: rollup\n\n[Create a similar rollup](https://bors.rust-lang.org/queue/rust?prs=143037,147043,147586,147912,148540,148541,148549)\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148560/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148560/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148559", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148559/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148559/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148559/events", + "html_url": "https://github.com/rust-lang/rust/pull/148559", + "id": 3593650245, + "node_id": "PR_kwDOAAsO6M6xybLW", + "number": 148559, + "title": "Add typo suggestion for a misspelt Cargo environment variable", + "user": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 583426710, + "node_id": "MDU6TGFiZWw1ODM0MjY3MTA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-review", + "name": "S-waiting-on-review", + "color": "d3dddd", + "default": false, + "description": "Status: Awaiting review from the assignee but also interested parties." + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "fee1-dead", + "id": 43851243, + "node_id": "MDQ6VXNlcjQzODUxMjQz", + "avatar_url": "https://avatars.githubusercontent.com/u/43851243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fee1-dead", + "html_url": "https://github.com/fee1-dead", + "followers_url": "https://api.github.com/users/fee1-dead/followers", + "following_url": "https://api.github.com/users/fee1-dead/following{/other_user}", + "gists_url": "https://api.github.com/users/fee1-dead/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fee1-dead/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fee1-dead/subscriptions", + "organizations_url": "https://api.github.com/users/fee1-dead/orgs", + "repos_url": "https://api.github.com/users/fee1-dead/repos", + "events_url": "https://api.github.com/users/fee1-dead/events{/privacy}", + "received_events_url": "https://api.github.com/users/fee1-dead/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "fee1-dead", + "id": 43851243, + "node_id": "MDQ6VXNlcjQzODUxMjQz", + "avatar_url": "https://avatars.githubusercontent.com/u/43851243?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/fee1-dead", + "html_url": "https://github.com/fee1-dead", + "followers_url": "https://api.github.com/users/fee1-dead/followers", + "following_url": "https://api.github.com/users/fee1-dead/following{/other_user}", + "gists_url": "https://api.github.com/users/fee1-dead/gists{/gist_id}", + "starred_url": "https://api.github.com/users/fee1-dead/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/fee1-dead/subscriptions", + "organizations_url": "https://api.github.com/users/fee1-dead/orgs", + "repos_url": "https://api.github.com/users/fee1-dead/repos", + "events_url": "https://api.github.com/users/fee1-dead/events{/privacy}", + "received_events_url": "https://api.github.com/users/fee1-dead/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 2, + "created_at": "2025-11-06T02:49:47Z", + "updated_at": "2025-11-06T03:48:03Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148559", + "html_url": "https://github.com/rust-lang/rust/pull/148559", + "diff_url": "https://github.com/rust-lang/rust/pull/148559.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148559.patch", + "merged_at": null + }, + "body": "Fixes rust-lang/rust#148439", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148559/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148559/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148558", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148558/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148558/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148558/events", + "html_url": "https://github.com/rust-lang/rust/issues/148558", + "id": 3593613080, + "node_id": "I_kwDOAAsO6M7WMi8Y", + "number": 148558, + "title": "E0412 and E0425 are redundant", + "user": { + "login": "theemathas", + "id": 6120103, + "node_id": "MDQ6VXNlcjYxMjAxMDM=", + "avatar_url": "https://avatars.githubusercontent.com/u/6120103?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/theemathas", + "html_url": "https://github.com/theemathas", + "followers_url": "https://api.github.com/users/theemathas/followers", + "following_url": "https://api.github.com/users/theemathas/following{/other_user}", + "gists_url": "https://api.github.com/users/theemathas/gists{/gist_id}", + "starred_url": "https://api.github.com/users/theemathas/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/theemathas/subscriptions", + "organizations_url": "https://api.github.com/users/theemathas/orgs", + "repos_url": "https://api.github.com/users/theemathas/repos", + "events_url": "https://api.github.com/users/theemathas/events{/privacy}", + "received_events_url": "https://api.github.com/users/theemathas/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 36996, + "node_id": "MDU6TGFiZWwzNjk5Ng==", + "url": "https://api.github.com/repos/rust-lang/rust/labels/E-easy", + "name": "E-easy", + "color": "02e10c", + "default": false, + "description": "Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue." + }, + { + "id": 37234, + "node_id": "MDU6TGFiZWwzNzIzNA==", + "url": "https://api.github.com/repos/rust-lang/rust/labels/C-cleanup", + "name": "C-cleanup", + "color": "f5f1fd", + "default": false, + "description": "Category: PRs that clean code up or issues documenting cleanup." + }, + { + "id": 235791, + "node_id": "MDU6TGFiZWwyMzU3OTE=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/A-diagnostics", + "name": "A-diagnostics", + "color": "f7e101", + "default": false, + "description": "Area: Messages for errors, warnings, and lints" + }, + { + "id": 67766349, + "node_id": "MDU6TGFiZWw2Nzc2NjM0OQ==", + "url": "https://api.github.com/repos/rust-lang/rust/labels/E-mentor", + "name": "E-mentor", + "color": "02E10C", + "default": false, + "description": "Call for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion." + }, + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 650731663, + "node_id": "MDU6TGFiZWw2NTA3MzE2NjM=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/C-bug", + "name": "C-bug", + "color": "f5f1fd", + "default": false, + "description": "Category: This is a bug." + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T02:36:29Z", + "updated_at": "2025-11-06T03:01:38Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "The error codes [E0412](https://doc.rust-lang.org/1.90.0/error_codes/E0412.html) and [E0425](https://doc.rust-lang.org/1.90.0/error_codes/E0425.html) are redundant. They basically mean the same thing to users. They should probably be merged into one error code.\n\n### Meta\n\nIssue observed in rust 1.90.0.", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148558/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148558/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148557", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148557/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148557/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148557/events", + "html_url": "https://github.com/rust-lang/rust/issues/148557", + "id": 3593588543, + "node_id": "I_kwDOAAsO6M7WMc8_", + "number": 148557, + "title": "`--open` does not work with error_index_generator", + "user": { + "login": "ehuss", + "id": 43198, + "node_id": "MDQ6VXNlcjQzMTk4", + "avatar_url": "https://avatars.githubusercontent.com/u/43198?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ehuss", + "html_url": "https://github.com/ehuss", + "followers_url": "https://api.github.com/users/ehuss/followers", + "following_url": "https://api.github.com/users/ehuss/following{/other_user}", + "gists_url": "https://api.github.com/users/ehuss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ehuss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ehuss/subscriptions", + "organizations_url": "https://api.github.com/users/ehuss/orgs", + "repos_url": "https://api.github.com/users/ehuss/repos", + "events_url": "https://api.github.com/users/ehuss/events{/privacy}", + "received_events_url": "https://api.github.com/users/ehuss/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 325438536, + "node_id": "MDU6TGFiZWwzMjU0Mzg1MzY=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-bootstrap", + "name": "T-bootstrap", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)" + }, + { + "id": 650731663, + "node_id": "MDU6TGFiZWw2NTA3MzE2NjM=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/C-bug", + "name": "C-bug", + "color": "f5f1fd", + "default": false, + "description": "Category: This is a bug." + }, + { + "id": 5705422536, + "node_id": "LA_kwDOAAsO6M8AAAABVBHWyA", + "url": "https://api.github.com/repos/rust-lang/rust/labels/needs-triage", + "name": "needs-triage", + "color": "f28907", + "default": false, + "description": "This issue may need triage. Remove it if it has been sufficiently triaged." + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T02:26:15Z", + "updated_at": "2025-11-06T02:26:19Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "### Summary\n\nThe `--open` flag does nothing in:\n\n```sh\n./x doc src/tools/error_index_generator --open\n```\n\n### Expected behaviour\n\nOpens a web browser.\n\n### Actual behaviour\n\nDoesn't open a web browser.\n\n### Bootstrap configuration (bootstrap.toml)\n\nDefault\n\n### Operating system\n\nAny\n\n### HEAD\n\n401ae55427522984e4a89c37cff6562a4ddcf6b7\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148557/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148557/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148556", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148556/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148556/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148556/events", + "html_url": "https://github.com/rust-lang/rust/pull/148556", + "id": 3593561838, + "node_id": "PR_kwDOAAsO6M6xyH6F", + "number": 148556, + "title": "Fix suggestion for returning async closures", + "user": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 583426710, + "node_id": "MDU6TGFiZWw1ODM0MjY3MTA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-review", + "name": "S-waiting-on-review", + "color": "d3dddd", + "default": false, + "description": "Status: Awaiting review from the assignee but also interested parties." + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "JonathanBrouwer", + "id": 7071132, + "node_id": "MDQ6VXNlcjcwNzExMzI=", + "avatar_url": "https://avatars.githubusercontent.com/u/7071132?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JonathanBrouwer", + "html_url": "https://github.com/JonathanBrouwer", + "followers_url": "https://api.github.com/users/JonathanBrouwer/followers", + "following_url": "https://api.github.com/users/JonathanBrouwer/following{/other_user}", + "gists_url": "https://api.github.com/users/JonathanBrouwer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JonathanBrouwer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JonathanBrouwer/subscriptions", + "organizations_url": "https://api.github.com/users/JonathanBrouwer/orgs", + "repos_url": "https://api.github.com/users/JonathanBrouwer/repos", + "events_url": "https://api.github.com/users/JonathanBrouwer/events{/privacy}", + "received_events_url": "https://api.github.com/users/JonathanBrouwer/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "JonathanBrouwer", + "id": 7071132, + "node_id": "MDQ6VXNlcjcwNzExMzI=", + "avatar_url": "https://avatars.githubusercontent.com/u/7071132?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JonathanBrouwer", + "html_url": "https://github.com/JonathanBrouwer", + "followers_url": "https://api.github.com/users/JonathanBrouwer/followers", + "following_url": "https://api.github.com/users/JonathanBrouwer/following{/other_user}", + "gists_url": "https://api.github.com/users/JonathanBrouwer/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JonathanBrouwer/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JonathanBrouwer/subscriptions", + "organizations_url": "https://api.github.com/users/JonathanBrouwer/orgs", + "repos_url": "https://api.github.com/users/JonathanBrouwer/repos", + "events_url": "https://api.github.com/users/JonathanBrouwer/events{/privacy}", + "received_events_url": "https://api.github.com/users/JonathanBrouwer/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T02:15:10Z", + "updated_at": "2025-11-06T02:15:15Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148556", + "html_url": "https://github.com/rust-lang/rust/pull/148556", + "diff_url": "https://github.com/rust-lang/rust/pull/148556.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148556.patch", + "merged_at": null + }, + "body": "Fixes rust-lang/rust#148493\r\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148556/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148556/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148555", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148555/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148555/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148555/events", + "html_url": "https://github.com/rust-lang/rust/pull/148555", + "id": 3593554084, + "node_id": "PR_kwDOAAsO6M6xyGMv", + "number": 148555, + "title": "Fix rust-by-example spanish translation", + "user": { + "login": "ehuss", + "id": 43198, + "node_id": "MDQ6VXNlcjQzMTk4", + "avatar_url": "https://avatars.githubusercontent.com/u/43198?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ehuss", + "html_url": "https://github.com/ehuss", + "followers_url": "https://api.github.com/users/ehuss/followers", + "following_url": "https://api.github.com/users/ehuss/following{/other_user}", + "gists_url": "https://api.github.com/users/ehuss/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ehuss/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ehuss/subscriptions", + "organizations_url": "https://api.github.com/users/ehuss/orgs", + "repos_url": "https://api.github.com/users/ehuss/repos", + "events_url": "https://api.github.com/users/ehuss/events{/privacy}", + "received_events_url": "https://api.github.com/users/ehuss/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 325438536, + "node_id": "MDU6TGFiZWwzMjU0Mzg1MzY=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-bootstrap", + "name": "T-bootstrap", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)" + }, + { + "id": 583426710, + "node_id": "MDU6TGFiZWw1ODM0MjY3MTA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-review", + "name": "S-waiting-on-review", + "color": "d3dddd", + "default": false, + "description": "Status: Awaiting review from the assignee but also interested parties." + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "Kobzol", + "id": 4539057, + "node_id": "MDQ6VXNlcjQ1MzkwNTc=", + "avatar_url": "https://avatars.githubusercontent.com/u/4539057?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Kobzol", + "html_url": "https://github.com/Kobzol", + "followers_url": "https://api.github.com/users/Kobzol/followers", + "following_url": "https://api.github.com/users/Kobzol/following{/other_user}", + "gists_url": "https://api.github.com/users/Kobzol/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Kobzol/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Kobzol/subscriptions", + "organizations_url": "https://api.github.com/users/Kobzol/orgs", + "repos_url": "https://api.github.com/users/Kobzol/repos", + "events_url": "https://api.github.com/users/Kobzol/events{/privacy}", + "received_events_url": "https://api.github.com/users/Kobzol/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "Kobzol", + "id": 4539057, + "node_id": "MDQ6VXNlcjQ1MzkwNTc=", + "avatar_url": "https://avatars.githubusercontent.com/u/4539057?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Kobzol", + "html_url": "https://github.com/Kobzol", + "followers_url": "https://api.github.com/users/Kobzol/followers", + "following_url": "https://api.github.com/users/Kobzol/following{/other_user}", + "gists_url": "https://api.github.com/users/Kobzol/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Kobzol/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Kobzol/subscriptions", + "organizations_url": "https://api.github.com/users/Kobzol/orgs", + "repos_url": "https://api.github.com/users/Kobzol/repos", + "events_url": "https://api.github.com/users/Kobzol/events{/privacy}", + "received_events_url": "https://api.github.com/users/Kobzol/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T02:12:05Z", + "updated_at": "2025-11-06T02:12:09Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148555", + "html_url": "https://github.com/rust-lang/rust/pull/148555", + "diff_url": "https://github.com/rust-lang/rust/pull/148555.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148555.patch", + "merged_at": null + }, + "body": "A spanish translation was added in https://github.com/rust-lang/rust-by-example/pull/1910, but the upstream integration was never added.\r\n\r\n@marioidival, I assume you intended for this to go live?\r\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148555/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148555/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148554", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148554/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148554/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148554/events", + "html_url": "https://github.com/rust-lang/rust/pull/148554", + "id": 3593480465, + "node_id": "PR_kwDOAAsO6M6xx2YL", + "number": 148554, + "title": "Add regression test for issue 148542", + "user": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 583426710, + "node_id": "MDU6TGFiZWw1ODM0MjY3MTA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-review", + "name": "S-waiting-on-review", + "color": "d3dddd", + "default": false, + "description": "Status: Awaiting review from the assignee but also interested parties." + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "madsmtm", + "id": 10577181, + "node_id": "MDQ6VXNlcjEwNTc3MTgx", + "avatar_url": "https://avatars.githubusercontent.com/u/10577181?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madsmtm", + "html_url": "https://github.com/madsmtm", + "followers_url": "https://api.github.com/users/madsmtm/followers", + "following_url": "https://api.github.com/users/madsmtm/following{/other_user}", + "gists_url": "https://api.github.com/users/madsmtm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madsmtm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madsmtm/subscriptions", + "organizations_url": "https://api.github.com/users/madsmtm/orgs", + "repos_url": "https://api.github.com/users/madsmtm/repos", + "events_url": "https://api.github.com/users/madsmtm/events{/privacy}", + "received_events_url": "https://api.github.com/users/madsmtm/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "madsmtm", + "id": 10577181, + "node_id": "MDQ6VXNlcjEwNTc3MTgx", + "avatar_url": "https://avatars.githubusercontent.com/u/10577181?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/madsmtm", + "html_url": "https://github.com/madsmtm", + "followers_url": "https://api.github.com/users/madsmtm/followers", + "following_url": "https://api.github.com/users/madsmtm/following{/other_user}", + "gists_url": "https://api.github.com/users/madsmtm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/madsmtm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/madsmtm/subscriptions", + "organizations_url": "https://api.github.com/users/madsmtm/orgs", + "repos_url": "https://api.github.com/users/madsmtm/repos", + "events_url": "https://api.github.com/users/madsmtm/events{/privacy}", + "received_events_url": "https://api.github.com/users/madsmtm/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 2, + "created_at": "2025-11-06T01:40:12Z", + "updated_at": "2025-11-06T01:41:47Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148554", + "html_url": "https://github.com/rust-lang/rust/pull/148554", + "diff_url": "https://github.com/rust-lang/rust/pull/148554.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148554.patch", + "merged_at": null + }, + "body": "Closes rust-lang/rust#148542", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148554/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148554/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148552", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148552/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148552/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148552/events", + "html_url": "https://github.com/rust-lang/rust/pull/148552", + "id": 3593404060, + "node_id": "PR_kwDOAAsO6M6xxoBv", + "number": 148552, + "title": "Provide more general note for borrowing outside of closure", + "user": { + "login": "chenyukang", + "id": 230646, + "node_id": "MDQ6VXNlcjIzMDY0Ng==", + "avatar_url": "https://avatars.githubusercontent.com/u/230646?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chenyukang", + "html_url": "https://github.com/chenyukang", + "followers_url": "https://api.github.com/users/chenyukang/followers", + "following_url": "https://api.github.com/users/chenyukang/following{/other_user}", + "gists_url": "https://api.github.com/users/chenyukang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chenyukang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chenyukang/subscriptions", + "organizations_url": "https://api.github.com/users/chenyukang/orgs", + "repos_url": "https://api.github.com/users/chenyukang/repos", + "events_url": "https://api.github.com/users/chenyukang/events{/privacy}", + "received_events_url": "https://api.github.com/users/chenyukang/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 211668100, + "node_id": "MDU6TGFiZWwyMTE2NjgxMDA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-compiler", + "name": "T-compiler", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the compiler team, which will review and decide on the PR/issue." + }, + { + "id": 583426710, + "node_id": "MDU6TGFiZWw1ODM0MjY3MTA=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/S-waiting-on-review", + "name": "S-waiting-on-review", + "color": "d3dddd", + "default": false, + "description": "Status: Awaiting review from the assignee but also interested parties." + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "petrochenkov", + "id": 5751617, + "node_id": "MDQ6VXNlcjU3NTE2MTc=", + "avatar_url": "https://avatars.githubusercontent.com/u/5751617?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/petrochenkov", + "html_url": "https://github.com/petrochenkov", + "followers_url": "https://api.github.com/users/petrochenkov/followers", + "following_url": "https://api.github.com/users/petrochenkov/following{/other_user}", + "gists_url": "https://api.github.com/users/petrochenkov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/petrochenkov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/petrochenkov/subscriptions", + "organizations_url": "https://api.github.com/users/petrochenkov/orgs", + "repos_url": "https://api.github.com/users/petrochenkov/repos", + "events_url": "https://api.github.com/users/petrochenkov/events{/privacy}", + "received_events_url": "https://api.github.com/users/petrochenkov/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "petrochenkov", + "id": 5751617, + "node_id": "MDQ6VXNlcjU3NTE2MTc=", + "avatar_url": "https://avatars.githubusercontent.com/u/5751617?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/petrochenkov", + "html_url": "https://github.com/petrochenkov", + "followers_url": "https://api.github.com/users/petrochenkov/followers", + "following_url": "https://api.github.com/users/petrochenkov/following{/other_user}", + "gists_url": "https://api.github.com/users/petrochenkov/gists{/gist_id}", + "starred_url": "https://api.github.com/users/petrochenkov/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/petrochenkov/subscriptions", + "organizations_url": "https://api.github.com/users/petrochenkov/orgs", + "repos_url": "https://api.github.com/users/petrochenkov/repos", + "events_url": "https://api.github.com/users/petrochenkov/events{/privacy}", + "received_events_url": "https://api.github.com/users/petrochenkov/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T00:59:49Z", + "updated_at": "2025-11-06T00:59:54Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/rust-lang/rust/pulls/148552", + "html_url": "https://github.com/rust-lang/rust/pull/148552", + "diff_url": "https://github.com/rust-lang/rust/pull/148552.diff", + "patch_url": "https://github.com/rust-lang/rust/pull/148552.patch", + "merged_at": null + }, + "body": "Fixes rust-lang/rust#148392\r\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148552/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148552/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148551", + "repository_url": "https://api.github.com/repos/rust-lang/rust", + "labels_url": "https://api.github.com/repos/rust-lang/rust/issues/148551/labels{/name}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/issues/148551/comments", + "events_url": "https://api.github.com/repos/rust-lang/rust/issues/148551/events", + "html_url": "https://github.com/rust-lang/rust/issues/148551", + "id": 3593123723, + "node_id": "I_kwDOAAsO6M7WKreL", + "number": 148551, + "title": "Consider treating `docsrs` doc cfg as hidden by default", + "user": { + "login": "dtolnay", + "id": 1940490, + "node_id": "MDQ6VXNlcjE5NDA0OTA=", + "avatar_url": "https://avatars.githubusercontent.com/u/1940490?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dtolnay", + "html_url": "https://github.com/dtolnay", + "followers_url": "https://api.github.com/users/dtolnay/followers", + "following_url": "https://api.github.com/users/dtolnay/following{/other_user}", + "gists_url": "https://api.github.com/users/dtolnay/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dtolnay/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dtolnay/subscriptions", + "organizations_url": "https://api.github.com/users/dtolnay/orgs", + "repos_url": "https://api.github.com/users/dtolnay/repos", + "events_url": "https://api.github.com/users/dtolnay/events{/privacy}", + "received_events_url": "https://api.github.com/users/dtolnay/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 203738, + "node_id": "MDU6TGFiZWwyMDM3Mzg=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/T-rustdoc", + "name": "T-rustdoc", + "color": "bfd4f2", + "default": false, + "description": "Relevant to the rustdoc team, which will review and decide on the PR/issue." + }, + { + "id": 630652267, + "node_id": "MDU6TGFiZWw2MzA2NTIyNjc=", + "url": "https://api.github.com/repos/rust-lang/rust/labels/C-feature-request", + "name": "C-feature-request", + "color": "f5f1fd", + "default": false, + "description": "Category: A feature request, i.e: not implemented / a PR." + }, + { + "id": 2524183809, + "node_id": "MDU6TGFiZWwyNTI0MTgzODA5", + "url": "https://api.github.com/repos/rust-lang/rust/labels/F-doc_cfg", + "name": "F-doc_cfg", + "color": "f9c0cc", + "default": false, + "description": "`#![feature(doc_cfg)]`" + }, + { + "id": 3609405544, + "node_id": "LA_kwDOAAsO6M7XIyho", + "url": "https://api.github.com/repos/rust-lang/rust/labels/F-doc_auto_cfg", + "name": "F-doc_auto_cfg", + "color": "f9c0cc", + "default": false, + "description": "`#![feature(doc_auto_cfg)]`" + }, + { + "id": 7583700160, + "node_id": "LA_kwDOAAsO6M8AAAABxAYUwA", + "url": "https://api.github.com/repos/rust-lang/rust/labels/A-cfg", + "name": "A-cfg", + "color": "f7e101", + "default": false, + "description": "Area: `cfg` conditional compilation" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2025-11-05T22:53:45Z", + "updated_at": "2025-11-05T23:09:11Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "As a followup to #138907, consider making a special case for `cfg(docsrs)` as if every crate were written with `#![doc(auto_cfg(hide(docsrs)))]` at the crate root. It pretty much never makes sense for rustdoc to render _\"Available on **docsrs** only\"_.\n\nAn example usage of `cfg(docsrs)` is in the following idiom that works around `impl Trait<'a>` not having a syntax to express that the opaque type either has no Drop or allows the lifetime to dangle during drop (`unsafe impl<#[may_dangle] 'a> Drop for ConcreteType<'a>`).\n\n```rust\n#![cfg_attr(docsrs, feature(doc_cfg))]\n#![allow(mismatched_lifetime_syntaxes)]\n\nmacro_rules! return_impl_trait {\n (\n $(#[$attr:meta])*\n $vis:vis fn $name:ident $args:tt -> $impl_trait:ty [$concrete:ty] $body:block\n ) => {\n #[cfg(not(docsrs))]\n $(#[$attr])*\n $vis fn $name $args -> $concrete $body\n\n #[cfg(docsrs)]\n $(#[$attr])*\n $vis fn $name $args -> $impl_trait $body\n };\n}\n\npub struct Generics;\npub struct LifetimeParam;\n\nimpl Generics {\n return_impl_trait! {\n pub fn lifetimes(&self) -> impl Iterator [iter::Lifetimes] {\n iter::Lifetimes(&[/*...*/])\n }\n }\n}\n\nmod iter {\n use crate::LifetimeParam;\n\n pub struct Lifetimes<'a>(pub(crate) &'a [LifetimeParam]);\n\n impl<'a> Iterator for Lifetimes<'a> {\n type Item = &'a LifetimeParam;\n fn next(&mut self) -> Option {\n let (first, rest) = self.0.split_first()?;\n self.0 = rest;\n Some(first)\n }\n }\n}\n```\n\n\"Image\"", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/issues/148551/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/rust-lang/rust/issues/148551/timeline", + "performed_via_github_app": null, + "state_reason": null + } +] \ No newline at end of file diff --git a/github/issues_rust.metadata.json b/github/issues_rust.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..775f306fe9c63f31a41b4fe64adad6b96b072b6f --- /dev/null +++ b/github/issues_rust.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_issues_rust", + "source": "github", + "collected_date": "2025-11-05T22:50:39.764389", + "size_bytes": 57355, + "description": "Rust open issues", + "url": "https://api.github.com/repos/rust-lang/rust/issues?per_page=10&state=open" +} \ No newline at end of file diff --git a/github/issues_vscode.json b/github/issues_vscode.json new file mode 100644 index 0000000000000000000000000000000000000000..cc4ad95195f4386b528838d221b8b7dc8142fd67 --- /dev/null +++ b/github/issues_vscode.json @@ -0,0 +1,1169 @@ +[ + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275735", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275735/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275735/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275735/events", + "html_url": "https://github.com/microsoft/vscode/issues/275735", + "id": 3593694244, + "node_id": "I_kwDOAn8RLM7WM2wk", + "number": 275735, + "title": "No lowest priority node found (path: zye) (at tsx element Dg)", + "user": { + "login": "songyang-dev", + "id": 10444460, + "node_id": "MDQ6VXNlcjEwNDQ0NDYw", + "avatar_url": "https://avatars.githubusercontent.com/u/10444460?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/songyang-dev", + "html_url": "https://github.com/songyang-dev", + "followers_url": "https://api.github.com/users/songyang-dev/followers", + "following_url": "https://api.github.com/users/songyang-dev/following{/other_user}", + "gists_url": "https://api.github.com/users/songyang-dev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/songyang-dev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/songyang-dev/subscriptions", + "organizations_url": "https://api.github.com/users/songyang-dev/orgs", + "repos_url": "https://api.github.com/users/songyang-dev/repos", + "events_url": "https://api.github.com/users/songyang-dev/events{/privacy}", + "received_events_url": "https://api.github.com/users/songyang-dev/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "roblourens", + "id": 323878, + "node_id": "MDQ6VXNlcjMyMzg3OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/323878?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/roblourens", + "html_url": "https://github.com/roblourens", + "followers_url": "https://api.github.com/users/roblourens/followers", + "following_url": "https://api.github.com/users/roblourens/following{/other_user}", + "gists_url": "https://api.github.com/users/roblourens/gists{/gist_id}", + "starred_url": "https://api.github.com/users/roblourens/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/roblourens/subscriptions", + "organizations_url": "https://api.github.com/users/roblourens/orgs", + "repos_url": "https://api.github.com/users/roblourens/repos", + "events_url": "https://api.github.com/users/roblourens/events{/privacy}", + "received_events_url": "https://api.github.com/users/roblourens/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "roblourens", + "id": 323878, + "node_id": "MDQ6VXNlcjMyMzg3OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/323878?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/roblourens", + "html_url": "https://github.com/roblourens", + "followers_url": "https://api.github.com/users/roblourens/followers", + "following_url": "https://api.github.com/users/roblourens/following{/other_user}", + "gists_url": "https://api.github.com/users/roblourens/gists{/gist_id}", + "starred_url": "https://api.github.com/users/roblourens/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/roblourens/subscriptions", + "organizations_url": "https://api.github.com/users/roblourens/orgs", + "repos_url": "https://api.github.com/users/roblourens/repos", + "events_url": "https://api.github.com/users/roblourens/events{/privacy}", + "received_events_url": "https://api.github.com/users/roblourens/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T03:07:18Z", + "updated_at": "2025-11-06T03:08:09Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "(The author of #272381 closed the issue but I'm still experiencing it.)\n\nI am using my own local Ollama models in Agent mode. This issue does not happen in Edit and Ask modes. What does this error message mean? I think a clearer message would be helpful.\n\n\"Image\"\n\nMy system:\n\nVersion: 1.105.1 (Universal)\nCommit: 7d842fb85a0275a4a8e4d7e040d2625abbf7f084\nDate: 2025-10-14T22:33:36.618Z\nElectron: 37.6.0\nElectronBuildId: 12502201\nChromium: 138.0.7204.251\nNode.js: 22.19.0\nV8: 13.8.258.32-electron.0\nOS: Darwin arm64 24.6.0", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275735/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275735/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275734", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275734/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275734/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275734/events", + "html_url": "https://github.com/microsoft/vscode/pull/275734", + "id": 3593678860, + "node_id": "PR_kwDOAn8RLM6xyheK", + "number": 275734, + "title": "runSubagent2 -> runSubagent", + "user": { + "login": "roblourens", + "id": 323878, + "node_id": "MDQ6VXNlcjMyMzg3OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/323878?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/roblourens", + "html_url": "https://github.com/roblourens", + "followers_url": "https://api.github.com/users/roblourens/followers", + "following_url": "https://api.github.com/users/roblourens/following{/other_user}", + "gists_url": "https://api.github.com/users/roblourens/gists{/gist_id}", + "starred_url": "https://api.github.com/users/roblourens/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/roblourens/subscriptions", + "organizations_url": "https://api.github.com/users/roblourens/orgs", + "repos_url": "https://api.github.com/users/roblourens/repos", + "events_url": "https://api.github.com/users/roblourens/events{/privacy}", + "received_events_url": "https://api.github.com/users/roblourens/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "roblourens", + "id": 323878, + "node_id": "MDQ6VXNlcjMyMzg3OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/323878?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/roblourens", + "html_url": "https://github.com/roblourens", + "followers_url": "https://api.github.com/users/roblourens/followers", + "following_url": "https://api.github.com/users/roblourens/following{/other_user}", + "gists_url": "https://api.github.com/users/roblourens/gists{/gist_id}", + "starred_url": "https://api.github.com/users/roblourens/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/roblourens/subscriptions", + "organizations_url": "https://api.github.com/users/roblourens/orgs", + "repos_url": "https://api.github.com/users/roblourens/repos", + "events_url": "https://api.github.com/users/roblourens/events{/privacy}", + "received_events_url": "https://api.github.com/users/roblourens/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "roblourens", + "id": 323878, + "node_id": "MDQ6VXNlcjMyMzg3OA==", + "avatar_url": "https://avatars.githubusercontent.com/u/323878?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/roblourens", + "html_url": "https://github.com/roblourens", + "followers_url": "https://api.github.com/users/roblourens/followers", + "following_url": "https://api.github.com/users/roblourens/following{/other_user}", + "gists_url": "https://api.github.com/users/roblourens/gists{/gist_id}", + "starred_url": "https://api.github.com/users/roblourens/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/roblourens/subscriptions", + "organizations_url": "https://api.github.com/users/roblourens/orgs", + "repos_url": "https://api.github.com/users/roblourens/repos", + "events_url": "https://api.github.com/users/roblourens/events{/privacy}", + "received_events_url": "https://api.github.com/users/roblourens/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T03:01:25Z", + "updated_at": "2025-11-06T03:11:31Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/microsoft/vscode/pulls/275734", + "html_url": "https://github.com/microsoft/vscode/pull/275734", + "diff_url": "https://github.com/microsoft/vscode/pull/275734.diff", + "patch_url": "https://github.com/microsoft/vscode/pull/275734.patch", + "merged_at": null + }, + "body": "\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275734/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275734/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275733", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275733/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275733/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275733/events", + "html_url": "https://github.com/microsoft/vscode/issues/275733", + "id": 3593662894, + "node_id": "I_kwDOAn8RLM7WMvGu", + "number": 275733, + "title": "freezed", + "user": { + "login": "realtordemchenko-cmyk", + "id": 230877280, + "node_id": "U_kgDODcLoYA", + "avatar_url": "https://avatars.githubusercontent.com/u/230877280?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/realtordemchenko-cmyk", + "html_url": "https://github.com/realtordemchenko-cmyk", + "followers_url": "https://api.github.com/users/realtordemchenko-cmyk/followers", + "following_url": "https://api.github.com/users/realtordemchenko-cmyk/following{/other_user}", + "gists_url": "https://api.github.com/users/realtordemchenko-cmyk/gists{/gist_id}", + "starred_url": "https://api.github.com/users/realtordemchenko-cmyk/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/realtordemchenko-cmyk/subscriptions", + "organizations_url": "https://api.github.com/users/realtordemchenko-cmyk/orgs", + "repos_url": "https://api.github.com/users/realtordemchenko-cmyk/repos", + "events_url": "https://api.github.com/users/realtordemchenko-cmyk/events{/privacy}", + "received_events_url": "https://api.github.com/users/realtordemchenko-cmyk/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 272689423, + "node_id": "MDU6TGFiZWwyNzI2ODk0MjM=", + "url": "https://api.github.com/repos/microsoft/vscode/labels/info-needed", + "name": "info-needed", + "color": "E2A1C2", + "default": false, + "description": "Issue requires more information from poster" + }, + { + "id": 3642736325, + "node_id": "LA_kwDOAn8RLM7ZH77F", + "url": "https://api.github.com/repos/microsoft/vscode/labels/triage-needed", + "name": "triage-needed", + "color": "D4C5F9", + "default": false, + "description": "" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T02:54:49Z", + "updated_at": "2025-11-06T02:56:16Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "\nType: Bug\n\nworking badly. MOst of the conversation about how to fix ai. \n\n\nExtension version: 0.32.4\nVS Code version: Code 1.105.1 (7d842fb85a0275a4a8e4d7e040d2625abbf7f084, 2025-10-14T22:33:36.618Z)\nOS version: Windows_NT x64 10.0.26200\nModes:\n\n
\nSystem Info\n\n|Item|Value|\n|---|---|\n|CPUs|Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz (12 x 2592)|\n|GPU Status|2d_canvas: enabled
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
trees_in_viz: disabled_off
video_decode: enabled
video_encode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled
webgpu: enabled
webnn: disabled_off|\n|Load (avg)|undefined|\n|Memory (System)|15.85GB (2.05GB free)|\n|Process Argv|--crash-reporter-id 94d40fff-df91-4841-a27e-e3d870d07947|\n|Screen Reader|yes|\n|VM|0%|\n
\nA/B Experiments\n\n```\nvsliv368cf:30146710\nbinariesv615:30325510\nnativeloc1:31344060\ndwcopilot:31170013\ndwoutputs:31242946\ncopilot_t_ci:31333650\ne5gg6876:31282496\npythonrdcb7:31342333\naj953862:31281341\nnes-set-on:31351930\n6abeh943:31336334\nenvsactivate1:31353494\nc12345:31413568\ngaj49834:31404438\ncloudbuttont:31379625\ntodos-1:31405332\nv66_all_req:31402695\ntreatment_gpt5applypatchexclusively:31412086\n3efgi100_wstrepl:31403338\ntrigger-command-fix:31379601\nauto_model_enabled:31385282\nuse-responses-api:31390855\napplesignin:31399435\nsonnet_45_3e700918:31414247\nje187915:31401257\ncontrol_gfa0i828:31406506\n2a0ce269:31405347\nff8f5884:31411053\n\n```\n\n
\n\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275733/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275733/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275732", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275732/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275732/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275732/events", + "html_url": "https://github.com/microsoft/vscode/issues/275732", + "id": 3593585943, + "node_id": "I_kwDOAn8RLM7WMcUX", + "number": 275732, + "title": "Error folder code place", + "user": { + "login": "namtanfilm17-hue", + "id": 242321678, + "node_id": "U_kgDODnGJDg", + "avatar_url": "https://avatars.githubusercontent.com/u/242321678?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/namtanfilm17-hue", + "html_url": "https://github.com/namtanfilm17-hue", + "followers_url": "https://api.github.com/users/namtanfilm17-hue/followers", + "following_url": "https://api.github.com/users/namtanfilm17-hue/following{/other_user}", + "gists_url": "https://api.github.com/users/namtanfilm17-hue/gists{/gist_id}", + "starred_url": "https://api.github.com/users/namtanfilm17-hue/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/namtanfilm17-hue/subscriptions", + "organizations_url": "https://api.github.com/users/namtanfilm17-hue/orgs", + "repos_url": "https://api.github.com/users/namtanfilm17-hue/repos", + "events_url": "https://api.github.com/users/namtanfilm17-hue/events{/privacy}", + "received_events_url": "https://api.github.com/users/namtanfilm17-hue/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 3642736325, + "node_id": "LA_kwDOAn8RLM7ZH77F", + "url": "https://api.github.com/repos/microsoft/vscode/labels/triage-needed", + "name": "triage-needed", + "color": "D4C5F9", + "default": false, + "description": "" + }, + { + "id": 8836684221, + "node_id": "LA_kwDOAn8RLM8AAAACDrUZvQ", + "url": "https://api.github.com/repos/microsoft/vscode/labels/ai-translated", + "name": "ai-translated", + "color": "aaaaaa", + "default": false, + "description": "issues translated by the classifier notebook llm" + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "bryanchen-d", + "id": 41454397, + "node_id": "MDQ6VXNlcjQxNDU0Mzk3", + "avatar_url": "https://avatars.githubusercontent.com/u/41454397?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bryanchen-d", + "html_url": "https://github.com/bryanchen-d", + "followers_url": "https://api.github.com/users/bryanchen-d/followers", + "following_url": "https://api.github.com/users/bryanchen-d/following{/other_user}", + "gists_url": "https://api.github.com/users/bryanchen-d/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bryanchen-d/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bryanchen-d/subscriptions", + "organizations_url": "https://api.github.com/users/bryanchen-d/orgs", + "repos_url": "https://api.github.com/users/bryanchen-d/repos", + "events_url": "https://api.github.com/users/bryanchen-d/events{/privacy}", + "received_events_url": "https://api.github.com/users/bryanchen-d/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "bryanchen-d", + "id": 41454397, + "node_id": "MDQ6VXNlcjQxNDU0Mzk3", + "avatar_url": "https://avatars.githubusercontent.com/u/41454397?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bryanchen-d", + "html_url": "https://github.com/bryanchen-d", + "followers_url": "https://api.github.com/users/bryanchen-d/followers", + "following_url": "https://api.github.com/users/bryanchen-d/following{/other_user}", + "gists_url": "https://api.github.com/users/bryanchen-d/gists{/gist_id}", + "starred_url": "https://api.github.com/users/bryanchen-d/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/bryanchen-d/subscriptions", + "organizations_url": "https://api.github.com/users/bryanchen-d/orgs", + "repos_url": "https://api.github.com/users/bryanchen-d/repos", + "events_url": "https://api.github.com/users/bryanchen-d/events{/privacy}", + "received_events_url": "https://api.github.com/users/bryanchen-d/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 2, + "created_at": "2025-11-06T02:25:01Z", + "updated_at": "2025-11-06T02:44:14Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "\nType: Bug\n\nkéo thả thư mục hỏi về nội dung thư mục thì trả lời sai thư mục nằm ở đườngg dẫn khác (thư mục cùng tên nhưng ở đường dẫn khác so với thư mục được kéo thả vào\n\nVS Code version: Code 1.98.1 (2fc07b811f760549dab9be9d2bedd06c51dfcb9a, 2025-03-10T15:38:08.854Z)\nOS version: Windows_NT x64 10.0.26200\nModes: Unsupported\n\n
\nSystem Info\n\n|Item|Value|\n|---|---|\n|CPUs|12th Gen Intel(R) Core(TM) i5-1240P (16 x 2112)|\n|GPU Status|2d_canvas: enabled
canvas_oop_rasterization: enabled_on
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
video_decode: enabled
video_encode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled
webgpu: enabled
webnn: disabled_off|\n|Load (avg)|undefined|\n|Memory (System)|15.69GB (3.89GB free)|\n|Process Argv|--crash-reporter-id 55842eab-4d6a-4c65-9089-0ebe45d07364|\n|Screen Reader|no|\n|VM|50%|\n
Extensions (75)\n\nExtension|Author (truncated)|Version\n---|---|---\nbetter-comments|aar|3.0.2\namazon-q-vscode|ama|1.102.0\nbootstrap5-vscode|Anb|0.4.4\nhtml-class-suggestions|And|1.2.1\nhtml-end-tag-labels|ant|1.0.0\ncolor-info|bie|0.7.2\nvscode-intelephense-client|bme|1.14.4\nhtmltagwrap|bra|1.0.0\nvscode-tailwindcss|bra|0.14.29\nturbo-console-log|Cha|3.9.2\npath-intellisense|chr|2.10.0\nvue-peek|dar|1.0.2\nvscode-eslint|dba|3.0.16\ncomposer-php-vscode|DEV|1.62.18042\nintelli-php-vscode|DEV|0.12.17700\nphptools-vscode|DEV|1.62.18042\nprofiler-php-vscode|DEV|1.62.18042\njquerysnippets|don|0.0.1\nxml|Dot|2.5.1\ngitlens|eam|17.6.2\nvscode-html-css|ecm|2.0.13\nprettier-vscode|esb|11.0.0\nevondev-snippets|evo|0.4.44\ngenerate-css-class|evo|0.0.10\nindent-rainbow-palettes|evo|0.0.20\nauto-close-tag|for|0.5.15\nauto-complete-tag|for|0.1.0\nauto-rename-tag|for|0.1.10\ncode-runner|for|0.12.2\ncopilot|Git|1.372.0\ncopilot-chat|Git|0.25.1\ngeminicodeassist|goo|2.56.0\nvue-snippets|hol|1.0.4\nbeautify|Hoo|1.5.0\nvscode-power-mode|hoo|3.0.2\nbootstrap-intellisense|hos|3.0.4\nstyled-components-snippets|jon|0.10.0\nvscode-language-babel|mgm|0.0.40\ndotenv|mik|1.0.1\nvscode-containers|ms-|2.1.0\ndebugpy|ms-|2025.14.1\npython|ms-|2025.16.0\nvscode-pylance|ms-|2025.4.1\njupyter|ms-|2025.2.0\njupyter-keymap|ms-|1.1.2\njupyter-renderers|ms-|1.3.0\nvscode-jupyter-cell-tags|ms-|0.1.9\nvscode-jupyter-slideshow|ms-|0.1.6\nlive-server|ms-|0.4.16\nlive-server-preview|neg|0.1.4\nindent-rainbow|ode|8.3.1\nmaterial-icon-theme|PKi|5.28.0\nvscode-css-peek|pra|4.4.3\nvscode-thunder-client|ran|2.38.2\nformat-html-in-php|rif|1.7.0\nvscode-fix-checksums-next|Rim|1.4.0\nLiveServer|rit|5.7.9\nsnippets-ranger|rob|1.8.0\nvue-vscode-snippets|sdr|3.2.0\nhtml5-boilerplate|sid|1.1.1\nhtml-to-css-autocompletion|sol|1.1.2\ncss-auto-prefix|spo|0.1.7\nautoimport|ste|1.5.4\nvscode-styled-components|sty|1.7.8\nvscode-stylelint|sty|1.5.3\nes6-string-html|Tob|2.17.0\nhighlight-matching-tag|vin|0.11.0\nintellicode-api-usage-examples|Vis|0.2.9\nvscodeintellicode|Vis|1.3.2\nvolar|Vue|3.1.3\nquokka-vscode|Wal|1.0.742\nvscode-import-cost|wix|3.3.0\nmarkdown-all-in-one|yzh|3.6.3\nhtml-css-class-completion|Zig|1.20.0\nclassnametocss|zit|0.0.7\n\n(1 theme extensions excluded)\n\n
\nA/B Experiments\n\n```\nvsliv368:30146709\nbinariesv615:30325510\nnativeloc1:31344060\ndwcopilot:31170013\ndwoutputs:31242946\ncopilot_t_ci:31333650\nf5992895:31277799\n0339e702:31259951\npythonrdcb7:31342333\naj953862:31281341\ntestaa123cf:31335227\n63221493:31336333\neditstats-enabled:31346257\naa_t:31379598\nt123456:31413567\ncloudbuttont:31379625\nv66_all_req:31402695\n3efgi100_wstrepl:31403338\napplesignin:31399435\n6g47h526:31399759\nd472g771:31401736\nff8f5884:31411053\n\n```\n\n
\n\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275732/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275732/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275731", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275731/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275731/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275731/events", + "html_url": "https://github.com/microsoft/vscode/issues/275731", + "id": 3593582091, + "node_id": "I_kwDOAn8RLM7WMbYL", + "number": 275731, + "title": "Slow response on GitHub Copilot chat even for an easy task", + "user": { + "login": "daffaaprilio", + "id": 181429286, + "node_id": "U_kgDOCtBkJg", + "avatar_url": "https://avatars.githubusercontent.com/u/181429286?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/daffaaprilio", + "html_url": "https://github.com/daffaaprilio", + "followers_url": "https://api.github.com/users/daffaaprilio/followers", + "following_url": "https://api.github.com/users/daffaaprilio/following{/other_user}", + "gists_url": "https://api.github.com/users/daffaaprilio/gists{/gist_id}", + "starred_url": "https://api.github.com/users/daffaaprilio/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/daffaaprilio/subscriptions", + "organizations_url": "https://api.github.com/users/daffaaprilio/orgs", + "repos_url": "https://api.github.com/users/daffaaprilio/repos", + "events_url": "https://api.github.com/users/daffaaprilio/events{/privacy}", + "received_events_url": "https://api.github.com/users/daffaaprilio/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "chrmarti", + "id": 9205389, + "node_id": "MDQ6VXNlcjkyMDUzODk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9205389?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chrmarti", + "html_url": "https://github.com/chrmarti", + "followers_url": "https://api.github.com/users/chrmarti/followers", + "following_url": "https://api.github.com/users/chrmarti/following{/other_user}", + "gists_url": "https://api.github.com/users/chrmarti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chrmarti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chrmarti/subscriptions", + "organizations_url": "https://api.github.com/users/chrmarti/orgs", + "repos_url": "https://api.github.com/users/chrmarti/repos", + "events_url": "https://api.github.com/users/chrmarti/events{/privacy}", + "received_events_url": "https://api.github.com/users/chrmarti/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "chrmarti", + "id": 9205389, + "node_id": "MDQ6VXNlcjkyMDUzODk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9205389?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chrmarti", + "html_url": "https://github.com/chrmarti", + "followers_url": "https://api.github.com/users/chrmarti/followers", + "following_url": "https://api.github.com/users/chrmarti/following{/other_user}", + "gists_url": "https://api.github.com/users/chrmarti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chrmarti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chrmarti/subscriptions", + "organizations_url": "https://api.github.com/users/chrmarti/orgs", + "repos_url": "https://api.github.com/users/chrmarti/repos", + "events_url": "https://api.github.com/users/chrmarti/events{/privacy}", + "received_events_url": "https://api.github.com/users/chrmarti/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T02:23:29Z", + "updated_at": "2025-11-06T02:25:01Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "\nType: Performance Issue\n\nResponse made after around 1-2 minutes. When usually it takes less than 10 seconds to start answering.\n\nThe same prompt was raised in ChatGPT application (in local, not server). answered in less than 5 seconds\n\nExtension version: 0.32.4\nVS Code version: Code 1.105.1 (Universal) (7d842fb85a0275a4a8e4d7e040d2625abbf7f084, 2025-10-14T22:33:36.618Z)\nOS version: Darwin arm64 25.0.0\nModes:\nRemote OS version: Linux x64 5.14.0-427.22.1.el9_4.x86_64\n\n
\nSystem Info\n\n|Item|Value|\n|---|---|\n|CPUs|Apple M1 Max (10 x 2400)|\n|GPU Status|2d_canvas: enabled
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: enabled_on
trees_in_viz: disabled_off
video_decode: enabled
video_encode: enabled
webgl: enabled
webgl2: enabled
webgpu: enabled
webnn: disabled_off|\n|Load (avg)|6, 6, 4|\n|Memory (System)|64.00GB (8.15GB free)|\n|Process Argv|--crash-reporter-id ceef31e8-27e5-4bf2-a0d3-33c0a8ca1f0d|\n|Screen Reader|no|\n|VM|0%|\n\n|Item|Value|\n|---|---|\n|Remote|SSH: cosmo|\n|OS|Linux x64 5.14.0-427.22.1.el9_4.x86_64|\n|CPUs|Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz (48 x 3300)|\n|Memory (System)|754.79GB (587.90GB free)|\n|VM|0%|\n
\nProcess Info\n\n```\nCPU %\tMem MB\t PID\tProcess\n 1\t315251973916\t 1083\tcode\n 1\t90071992547\t 1088\t gpu-process\n 0\t45035996274\t 1089\t utility-network-service\n 0\t225179981369\t 1109\tshared-process\n 0\t 0\t 86189\t /bin/ps -ax -o pid=,ppid=,pcpu=,pmem=,command=\n 0\t90071992547\t 61822\tpty-host\n 1\t4188347653455\t 85210\twindow [15] (x-43-ComBat.RNA-seq.SGI2EGI.R — rnaseq-coexpression-vanilla [SSH: cosmo])\n 0\t225179981369\t 85347\textension-host [15]\n 0\t45035996274\t 85348\tfile-watcher [15]\n\nRemote: SSH: cosmo\nCPU %\tMem MB\t PID\tProcess\n 0\t7435945346712\t431547\tremote-server\n 0\t 0\t431743\t ptyHost\n 0\t 0\t720164\t /bin/bash --init-file /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh\n 0\t 0\t721569\t /usr/lib64/R/bin/exec/R\n 0\t 0\t721578\t sh -c '/usr/lib64/R/bin/pager' < '/tmp/RtmpnldBTU/b02a17dcd15ea'\n 0\t 0\t721579\t /usr/bin/more\n 0\t 0\t720912\t /bin/bash --init-file /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh\n 0\t531138953337\t719870\t extension-host\n 0\t 0\t720380\t /usr/lib64/R/bin/exec/R --silent --no-echo --no-save --no-restore -e base::source(base::commandArgs(TRUE)) --args /home/daffa/.vscode-server/extensions/reditorsupport.r-2.8.6/R/help/helpServer.R\n 0\t 0\t720390\t /usr/lib64/R/bin/exec/R --silent --no-echo --no-save --no-restore -e base::source(base::commandArgs(TRUE)) --args /home/daffa/.vscode-server/extensions/reditorsupport.r-2.8.6/R/languageServer.R\n 0\t 0\t720421\t /usr/lib64/R/bin/exec/R --no-readline --slave --no-save --no-restore\n 0\t 0\t720423\t /usr/lib64/R/bin/exec/R --no-readline --slave --no-save --no-restore\n 0\t 0\t720425\t /usr/lib64/R/bin/exec/R --no-readline --slave --no-save --no-restore\n 0\t 0\t720427\t /usr/lib64/R/bin/exec/R --no-readline --slave --no-save --no-restore\n 0\t 0\t720429\t /usr/lib64/R/bin/exec/R --no-readline --slave --no-save --no-restore\n 0\t 0\t720431\t /usr/lib64/R/bin/exec/R --no-readline --slave --no-save --no-restore\n 0\t 0\t720401\t /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/node /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/extensions/json-language-features/server/dist/node/jsonServerMain --node-ipc --clientProcessId=719870\n 0\t 0\t720594\t /home/daffa/.vscode-server/extensions/ms-python.python-2025.16.0-linux-x64/python-env-tools/bin/pet server\n 0\t 0\t720790\t /home/daffa/.vscode-server/extensions/ms-vscode.cpptools-1.28.3-linux-x64/bin/cpptools\n 0\t 0\t721192\t /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/node /home/daffa/.vscode-server/extensions/ms-python.vscode-pylance-2025.9.1/dist/server.bundle.js --cancellationReceive=file:e0166212092f219c0c9293d00132b2ded23afa1c69 --node-ipc --clientProcessId=719870\n 0\t 0\t721470\t /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/node /home/daffa/.vscode-server/cli/servers/Stable-7d842fb85a0275a4a8e4d7e040d2625abbf7f084/server/extensions/markdown-language-features/dist/serverWorkerMain --node-ipc --clientProcessId=719870\n 0\t 0\t719903\t fileWatcher\n 0\t 0\t721650\t /usr/bin/ps -ax -o pid=,ppid=,pcpu=,pmem=,command=\n```\n\n
\n
\nWorkspace Info\n\n```\n\n| Remote: SSH: cosmo| Folder (rnaseq-coexpression-vanilla): more than 31084 files| File types: txt(107) sh(6) bin(5) probe(5) smp(5) subagging(4) c(4)\n| gc(4) combat(4) ave_1000(4)\n| Conf files:;\n```\n\n
\n
\nA/B Experiments\n\n```\nvsliv368:30146709\nbinariesv615:30325510\nnativeloc1:31344060\ndwcopilot:31170013\ndwoutputs:31242946\ncopilot_t_ci:31333650\ne5gg6876:31282496\npythonrdcb7:31342333\naj953862:31281341\n4f60g487:31327383\nnes-set-on:31351930\n6abeh943:31336334\nt123456:31413567\ngaj49834:31404438\ncloudbuttont:31379625\ntodos-1:31405332\nv66_all_req:31402695\ntreatment_gpt5applypatchexclusively:31412086\n42190218_ostrepl:31403339\ntrigger-command-fix:31379601\nauto_model_enabled:31385282\nuse-responses-api:31390855\napplesignin:31399435\ndcggh915:31405779\n6j29d282:31407606\n2a0ce269:31405347\nff8f5884:31411053\n\n```\n\n
\n\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275731/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275731/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275730", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275730/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275730/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275730/events", + "html_url": "https://github.com/microsoft/vscode/issues/275730", + "id": 3593580691, + "node_id": "I_kwDOAn8RLM7WMbCT", + "number": 275730, + "title": "Grok Code Fast is PROVIDING FALSE INFORMATION WITH CONFIDENCE", + "user": { + "login": "nowshad-hossain-rahat", + "id": 65206853, + "node_id": "MDQ6VXNlcjY1MjA2ODUz", + "avatar_url": "https://avatars.githubusercontent.com/u/65206853?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nowshad-hossain-rahat", + "html_url": "https://github.com/nowshad-hossain-rahat", + "followers_url": "https://api.github.com/users/nowshad-hossain-rahat/followers", + "following_url": "https://api.github.com/users/nowshad-hossain-rahat/following{/other_user}", + "gists_url": "https://api.github.com/users/nowshad-hossain-rahat/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nowshad-hossain-rahat/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nowshad-hossain-rahat/subscriptions", + "organizations_url": "https://api.github.com/users/nowshad-hossain-rahat/orgs", + "repos_url": "https://api.github.com/users/nowshad-hossain-rahat/repos", + "events_url": "https://api.github.com/users/nowshad-hossain-rahat/events{/privacy}", + "received_events_url": "https://api.github.com/users/nowshad-hossain-rahat/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 272689423, + "node_id": "MDU6TGFiZWwyNzI2ODk0MjM=", + "url": "https://api.github.com/repos/microsoft/vscode/labels/info-needed", + "name": "info-needed", + "color": "E2A1C2", + "default": false, + "description": "Issue requires more information from poster" + }, + { + "id": 3642736325, + "node_id": "LA_kwDOAn8RLM7ZH77F", + "url": "https://api.github.com/repos/microsoft/vscode/labels/triage-needed", + "name": "triage-needed", + "color": "D4C5F9", + "default": false, + "description": "" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T02:22:56Z", + "updated_at": "2025-11-06T02:24:37Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "\nType: Bug\n\nit's not talking to the mcp server even after giving instruction to do so, and also giving critical false information with confidence and even page link that actually doesn't have what it's saying it have\n\nExtension version: 0.32.4\nVS Code version: Code 1.105.1 (7d842fb85a0275a4a8e4d7e040d2625abbf7f084, 2025-10-14T22:33:36.618Z)\nOS version: Linux x64 6.16.8-1-MANJARO\nModes:\n\n\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275730/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275730/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275727", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275727/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275727/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275727/events", + "html_url": "https://github.com/microsoft/vscode/issues/275727", + "id": 3593515451, + "node_id": "I_kwDOAn8RLM7WMLG7", + "number": 275727, + "title": "Make it easier for Playwright to write to a Monaco editor", + "user": { + "login": "TylerLeonhardt", + "id": 2644648, + "node_id": "MDQ6VXNlcjI2NDQ2NDg=", + "avatar_url": "https://avatars.githubusercontent.com/u/2644648?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/TylerLeonhardt", + "html_url": "https://github.com/TylerLeonhardt", + "followers_url": "https://api.github.com/users/TylerLeonhardt/followers", + "following_url": "https://api.github.com/users/TylerLeonhardt/following{/other_user}", + "gists_url": "https://api.github.com/users/TylerLeonhardt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/TylerLeonhardt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/TylerLeonhardt/subscriptions", + "organizations_url": "https://api.github.com/users/TylerLeonhardt/orgs", + "repos_url": "https://api.github.com/users/TylerLeonhardt/repos", + "events_url": "https://api.github.com/users/TylerLeonhardt/events{/privacy}", + "received_events_url": "https://api.github.com/users/TylerLeonhardt/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "alexdima", + "id": 5047891, + "node_id": "MDQ6VXNlcjUwNDc4OTE=", + "avatar_url": "https://avatars.githubusercontent.com/u/5047891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alexdima", + "html_url": "https://github.com/alexdima", + "followers_url": "https://api.github.com/users/alexdima/followers", + "following_url": "https://api.github.com/users/alexdima/following{/other_user}", + "gists_url": "https://api.github.com/users/alexdima/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alexdima/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alexdima/subscriptions", + "organizations_url": "https://api.github.com/users/alexdima/orgs", + "repos_url": "https://api.github.com/users/alexdima/repos", + "events_url": "https://api.github.com/users/alexdima/events{/privacy}", + "received_events_url": "https://api.github.com/users/alexdima/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "hediet", + "id": 2931520, + "node_id": "MDQ6VXNlcjI5MzE1MjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/2931520?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/hediet", + "html_url": "https://github.com/hediet", + "followers_url": "https://api.github.com/users/hediet/followers", + "following_url": "https://api.github.com/users/hediet/following{/other_user}", + "gists_url": "https://api.github.com/users/hediet/gists{/gist_id}", + "starred_url": "https://api.github.com/users/hediet/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/hediet/subscriptions", + "organizations_url": "https://api.github.com/users/hediet/orgs", + "repos_url": "https://api.github.com/users/hediet/repos", + "events_url": "https://api.github.com/users/hediet/events{/privacy}", + "received_events_url": "https://api.github.com/users/hediet/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + { + "login": "alexdima", + "id": 5047891, + "node_id": "MDQ6VXNlcjUwNDc4OTE=", + "avatar_url": "https://avatars.githubusercontent.com/u/5047891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/alexdima", + "html_url": "https://github.com/alexdima", + "followers_url": "https://api.github.com/users/alexdima/followers", + "following_url": "https://api.github.com/users/alexdima/following{/other_user}", + "gists_url": "https://api.github.com/users/alexdima/gists{/gist_id}", + "starred_url": "https://api.github.com/users/alexdima/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/alexdima/subscriptions", + "organizations_url": "https://api.github.com/users/alexdima/orgs", + "repos_url": "https://api.github.com/users/alexdima/repos", + "events_url": "https://api.github.com/users/alexdima/events{/privacy}", + "received_events_url": "https://api.github.com/users/alexdima/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T01:55:44Z", + "updated_at": "2025-11-06T01:55:44Z", + "closed_at": null, + "author_association": "MEMBER", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "For the past few months, I have been working on a few different prompts (which became [an agent](https://github.com/microsoft/vscode/blob/bf23ba954584bef3f2f4a74763e96aa7b0b02cfd/.github/agents/demonstrate.md)) & [an MCP Server that can control a local instance of VS Code](https://github.com/microsoft/vscode/blob/bf23ba954584bef3f2f4a74763e96aa7b0b02cfd/test/mcp/README.md).\n\nWhile doing this, I have hit over and over again the difficulty that is getting Playwright automation to write from a Monaco editor... of which we use all over the VS Code from editors to input boxes (in Extension view, Settings search, chat input).\n\nAnd I'm not alone... There are many others before me that struggled to get playwright & Monaco to play nice together:\n* [Monaco and Playwright don't \"play right\" together](https://giacomocerquone.com/notes/monaco-playwright/)\n* [How to enter text into monaco-editor control using Playwright](https://github.com/microsoft/playwright/issues/14126)\n* [How to insert code in monaco editor using Playwright?](https://stackoverflow.com/questions/69375890/how-to-insert-code-in-monaco-editor-using-playwright)\n\nWhile these folks have come up with workarounds that are... clever... my scenario is worse than theirs, because it is non-deterministic. I rely on an LLM to call the MCP Tool to write in the Monaco editor.\n\nI've tried so so hard to prompt this to work nicely. Look at this section in my agent prompt:\nhttps://github.com/microsoft/vscode/blob/bf23ba954584bef3f2f4a74763e96aa7b0b02cfd/.github/agents/demonstrate.md#L68-L96\n\nbut the prompt also suffers greatly from having a LOT of context in an agent session (it queries GitHub MCP a bunch... queries the dom a bunch... context is quickly filled up)\n\nWhen these instructions get forgotten about, I see the model mostly trying to type in the `textarea` inside of the Monaco Editor.... which frankly, I don't blame it! That would be the obvious thing to write to if you didn't know how to interact with Monaco properly.\n\nI continue to workaround this by either:\n* prompting _harder_\n* adding specific mcp tools for different areas of the product\n\n... but sadly that has its limits if context gets filled/or a Monaco editor not covered by specific tools is needing to be written to.\n\nMy ask is... can we help Playwright out here? Can we somehow make it easier to write (and maybe read) to Monaco from Dom manipulation and whatever else playwright does?\n\nTo truly have powerful autonomous control of VS Code, I think we have to solve this at the Monaco layer.", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275727/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275727/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275726", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275726/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275726/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275726/events", + "html_url": "https://github.com/microsoft/vscode/issues/275726", + "id": 3593505914, + "node_id": "I_kwDOAn8RLM7WMIx6", + "number": 275726, + "title": "Sorry, there was a network error. Please try again later. Request id: 29e4be39-8553-4d2f-bc8a-15f1dd440fd3 Reason: Please check your firewall rules and network connection then try again. Error Code: net::ERR_CONNECTION_CLOSED.", + "user": { + "login": "Huiui-np", + "id": 67141774, + "node_id": "MDQ6VXNlcjY3MTQxNzc0", + "avatar_url": "https://avatars.githubusercontent.com/u/67141774?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Huiui-np", + "html_url": "https://github.com/Huiui-np", + "followers_url": "https://api.github.com/users/Huiui-np/followers", + "following_url": "https://api.github.com/users/Huiui-np/following{/other_user}", + "gists_url": "https://api.github.com/users/Huiui-np/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Huiui-np/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Huiui-np/subscriptions", + "organizations_url": "https://api.github.com/users/Huiui-np/orgs", + "repos_url": "https://api.github.com/users/Huiui-np/repos", + "events_url": "https://api.github.com/users/Huiui-np/events{/privacy}", + "received_events_url": "https://api.github.com/users/Huiui-np/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "chrmarti", + "id": 9205389, + "node_id": "MDQ6VXNlcjkyMDUzODk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9205389?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chrmarti", + "html_url": "https://github.com/chrmarti", + "followers_url": "https://api.github.com/users/chrmarti/followers", + "following_url": "https://api.github.com/users/chrmarti/following{/other_user}", + "gists_url": "https://api.github.com/users/chrmarti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chrmarti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chrmarti/subscriptions", + "organizations_url": "https://api.github.com/users/chrmarti/orgs", + "repos_url": "https://api.github.com/users/chrmarti/repos", + "events_url": "https://api.github.com/users/chrmarti/events{/privacy}", + "received_events_url": "https://api.github.com/users/chrmarti/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "chrmarti", + "id": 9205389, + "node_id": "MDQ6VXNlcjkyMDUzODk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9205389?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/chrmarti", + "html_url": "https://github.com/chrmarti", + "followers_url": "https://api.github.com/users/chrmarti/followers", + "following_url": "https://api.github.com/users/chrmarti/following{/other_user}", + "gists_url": "https://api.github.com/users/chrmarti/gists{/gist_id}", + "starred_url": "https://api.github.com/users/chrmarti/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/chrmarti/subscriptions", + "organizations_url": "https://api.github.com/users/chrmarti/orgs", + "repos_url": "https://api.github.com/users/chrmarti/repos", + "events_url": "https://api.github.com/users/chrmarti/events{/privacy}", + "received_events_url": "https://api.github.com/users/chrmarti/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T01:52:02Z", + "updated_at": "2025-11-06T01:53:16Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "\nType: Bug\n\nwhen i use copilot's agent, it happened this problem:\n\"Sorry, there was a network error. Please try again later. Request id: 29e4be39-8553-4d2f-bc8a-15f1dd440fd3\n\nReason: Please check your firewall rules and network connection then try again. Error Code: net::ERR_CONNECTION_CLOSED.\"\n\n\nonly agent has this problem, ask is ok.\n\neverytime it happened, it consumed my advanced request limit.\n\nExtension version: 1.388.0\nVS Code version: Code 1.105.1 (7d842fb85a0275a4a8e4d7e040d2625abbf7f084, 2025-10-14T22:33:36.618Z)\nOS version: Windows_NT x64 10.0.19045\nModes:\n\n
\nSystem Info\n\n|Item|Value|\n|---|---|\n|CPUs|13th Gen Intel(R) Core(TM) i5-13500H (16 x 3187)|\n|GPU Status|2d_canvas: enabled
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
trees_in_viz: disabled_off
video_decode: enabled
video_encode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled
webgpu: enabled
webnn: disabled_off|\n|Load (avg)|undefined|\n|Memory (System)|15.73GB (3.99GB free)|\n|Process Argv|--crash-reporter-id 102033a4-b29f-46e6-a521-100e64a6453c|\n|Screen Reader|no|\n|VM|0%|\n
\nA/B Experiments\n\n```\nvsliv368cf:30146710\nvswsl492:30256859\nbinariesv615:30325510\nnativeloc1:31344060\ndwcopilot:31170013\ndwoutputs:31242946\ncopilot_t_ci:31333650\ne5gg6876:31282496\npythonrdcb7:31342333\naj953862:31281341\nnes-set-on:31340697\n6abeh943:31336334\nenvsactivate1:31353494\naa_c:31379599\nt123456:31413567\n0574c672:31404437\ncloudbuttont:31379625\ntodos-1:31405332\nqwen_all_req:31402696\ncontrol_gpt5applypatchexclusively:31412085\n3efgi100_wstrepl:31403338\ntrigger-command-fix:31379601\nauto_model_enabled:31385282\nuse-responses-api:31390855\napplesignin:31399435\nanonusage:31403420\ndcggh915:31405779\nje187915:31401254\nd5i5i512:31405346\ncontrol_aa407747:31408715\nxtab-281-v2-bs48-ctrl:31413328\nff8f5884:31411053\n\n```\n\n
\n\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275726/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275726/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275725", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275725/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275725/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275725/events", + "html_url": "https://github.com/microsoft/vscode/issues/275725", + "id": 3593484403, + "node_id": "I_kwDOAn8RLM7WMDhz", + "number": 275725, + "title": "Agent always stalls out whenever it runs a terminal command", + "user": { + "login": "jacobcoro", + "id": 52448067, + "node_id": "MDQ6VXNlcjUyNDQ4MDY3", + "avatar_url": "https://avatars.githubusercontent.com/u/52448067?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jacobcoro", + "html_url": "https://github.com/jacobcoro", + "followers_url": "https://api.github.com/users/jacobcoro/followers", + "following_url": "https://api.github.com/users/jacobcoro/following{/other_user}", + "gists_url": "https://api.github.com/users/jacobcoro/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jacobcoro/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jacobcoro/subscriptions", + "organizations_url": "https://api.github.com/users/jacobcoro/orgs", + "repos_url": "https://api.github.com/users/jacobcoro/repos", + "events_url": "https://api.github.com/users/jacobcoro/events{/privacy}", + "received_events_url": "https://api.github.com/users/jacobcoro/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": { + "login": "Tyriar", + "id": 2193314, + "node_id": "MDQ6VXNlcjIxOTMzMTQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/2193314?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Tyriar", + "html_url": "https://github.com/Tyriar", + "followers_url": "https://api.github.com/users/Tyriar/followers", + "following_url": "https://api.github.com/users/Tyriar/following{/other_user}", + "gists_url": "https://api.github.com/users/Tyriar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Tyriar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Tyriar/subscriptions", + "organizations_url": "https://api.github.com/users/Tyriar/orgs", + "repos_url": "https://api.github.com/users/Tyriar/repos", + "events_url": "https://api.github.com/users/Tyriar/events{/privacy}", + "received_events_url": "https://api.github.com/users/Tyriar/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "Tyriar", + "id": 2193314, + "node_id": "MDQ6VXNlcjIxOTMzMTQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/2193314?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Tyriar", + "html_url": "https://github.com/Tyriar", + "followers_url": "https://api.github.com/users/Tyriar/followers", + "following_url": "https://api.github.com/users/Tyriar/following{/other_user}", + "gists_url": "https://api.github.com/users/Tyriar/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Tyriar/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Tyriar/subscriptions", + "organizations_url": "https://api.github.com/users/Tyriar/orgs", + "repos_url": "https://api.github.com/users/Tyriar/repos", + "events_url": "https://api.github.com/users/Tyriar/events{/privacy}", + "received_events_url": "https://api.github.com/users/Tyriar/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 1, + "created_at": "2025-11-06T01:41:49Z", + "updated_at": "2025-11-06T02:15:50Z", + "closed_at": null, + "author_association": "NONE", + "type": null, + "active_lock_reason": null, + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "issue_dependencies_summary": { + "blocked_by": 0, + "total_blocked_by": 0, + "blocking": 0, + "total_blocking": 0 + }, + "body": "Agent always stalls out whenever it runs a terminal command \n\n\"Image\"\n\n\n\n- Copilot Chat Extension Version: Latest\n- Feature (e.g. agent/edit/ask mode): Agent\n- Selected model (e.g. GPT 4.1, Claude 3.7 Sonnet): Claude Sonnet 4\n- VS Code Version: 1.105.1 (user setup)\nCommit: 7d842fb85a0275a4a8e4d7e040d2625abbf7f084\nDate: 2025-10-14T22:33:36.618Z\nElectron: 37.6.0\nElectronBuildId: 12502201\nChromium: 138.0.7204.251\nNode.js: 22.19.0\nV8: 13.8.258.32-electron.0\nOS: Windows_NT x64 10.0.19045\n\nSteps to Reproduce:\n\n1. Ask the agent to do something in the terminal\n2. It hangs\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275725/reactions", + "total_count": 1, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 1 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275725/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275724", + "repository_url": "https://api.github.com/repos/microsoft/vscode", + "labels_url": "https://api.github.com/repos/microsoft/vscode/issues/275724/labels{/name}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/issues/275724/comments", + "events_url": "https://api.github.com/repos/microsoft/vscode/issues/275724/events", + "html_url": "https://github.com/microsoft/vscode/pull/275724", + "id": 3593463938, + "node_id": "PR_kwDOAn8RLM6xxzIq", + "number": 275724, + "title": "updated walkthrough chat panel illustration", + "user": { + "login": "eli-w-king", + "id": 201316543, + "node_id": "U_kgDOC__Yvw", + "avatar_url": "https://avatars.githubusercontent.com/u/201316543?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eli-w-king", + "html_url": "https://github.com/eli-w-king", + "followers_url": "https://api.github.com/users/eli-w-king/followers", + "following_url": "https://api.github.com/users/eli-w-king/following{/other_user}", + "gists_url": "https://api.github.com/users/eli-w-king/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eli-w-king/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eli-w-king/subscriptions", + "organizations_url": "https://api.github.com/users/eli-w-king/orgs", + "repos_url": "https://api.github.com/users/eli-w-king/repos", + "events_url": "https://api.github.com/users/eli-w-king/events{/privacy}", + "received_events_url": "https://api.github.com/users/eli-w-king/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "labels": [ + { + "id": 296838217, + "node_id": "MDU6TGFiZWwyOTY4MzgyMTc=", + "url": "https://api.github.com/repos/microsoft/vscode/labels/ux", + "name": "ux", + "color": "c5def5", + "default": false, + "description": "User experience issues" + }, + { + "id": 752419772, + "node_id": "MDU6TGFiZWw3NTI0MTk3NzI=", + "url": "https://api.github.com/repos/microsoft/vscode/labels/workbench-welcome", + "name": "workbench-welcome", + "color": "c5def5", + "default": false, + "description": "Welcome page issues" + } + ], + "state": "open", + "locked": false, + "assignee": { + "login": "eli-w-king", + "id": 201316543, + "node_id": "U_kgDOC__Yvw", + "avatar_url": "https://avatars.githubusercontent.com/u/201316543?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eli-w-king", + "html_url": "https://github.com/eli-w-king", + "followers_url": "https://api.github.com/users/eli-w-king/followers", + "following_url": "https://api.github.com/users/eli-w-king/following{/other_user}", + "gists_url": "https://api.github.com/users/eli-w-king/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eli-w-king/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eli-w-king/subscriptions", + "organizations_url": "https://api.github.com/users/eli-w-king/orgs", + "repos_url": "https://api.github.com/users/eli-w-king/repos", + "events_url": "https://api.github.com/users/eli-w-king/events{/privacy}", + "received_events_url": "https://api.github.com/users/eli-w-king/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + }, + "assignees": [ + { + "login": "eli-w-king", + "id": 201316543, + "node_id": "U_kgDOC__Yvw", + "avatar_url": "https://avatars.githubusercontent.com/u/201316543?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/eli-w-king", + "html_url": "https://github.com/eli-w-king", + "followers_url": "https://api.github.com/users/eli-w-king/followers", + "following_url": "https://api.github.com/users/eli-w-king/following{/other_user}", + "gists_url": "https://api.github.com/users/eli-w-king/gists{/gist_id}", + "starred_url": "https://api.github.com/users/eli-w-king/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/eli-w-king/subscriptions", + "organizations_url": "https://api.github.com/users/eli-w-king/orgs", + "repos_url": "https://api.github.com/users/eli-w-king/repos", + "events_url": "https://api.github.com/users/eli-w-king/events{/privacy}", + "received_events_url": "https://api.github.com/users/eli-w-king/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": true + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-11-06T01:31:46Z", + "updated_at": "2025-11-06T01:34:50Z", + "closed_at": null, + "author_association": "CONTRIBUTOR", + "type": null, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/microsoft/vscode/pulls/275724", + "html_url": "https://github.com/microsoft/vscode/pull/275724", + "diff_url": "https://github.com/microsoft/vscode/pull/275724.diff", + "patch_url": "https://github.com/microsoft/vscode/pull/275724.patch", + "merged_at": null + }, + "body": "\r\nReplaced outdated chat panel with chat session example on website. Detailed in https://github.com/microsoft/vscode/issues/273900\r\n![multi-file-edits](https://github.com/user-attachments/assets/56eb8fba-e483-4b75-ab26-a921ebaa1110)\r\n\r\n", + "closed_by": null, + "reactions": { + "url": "https://api.github.com/repos/microsoft/vscode/issues/275724/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/microsoft/vscode/issues/275724/timeline", + "performed_via_github_app": null, + "state_reason": null + } +] \ No newline at end of file diff --git a/github/issues_vscode.metadata.json b/github/issues_vscode.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..1339e0b3b22d97faf735ecde97b95fe5cf4eb34f --- /dev/null +++ b/github/issues_vscode.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_issues_vscode", + "source": "github", + "collected_date": "2025-11-05T22:50:42.124332", + "size_bytes": 70166, + "description": "VS Code open issues", + "url": "https://api.github.com/repos/microsoft/vscode/issues?per_page=10&state=open" +} \ No newline at end of file diff --git a/github/org_apache.json b/github/org_apache.json new file mode 100644 index 0000000000000000000000000000000000000000..0720048ebef0ce82d513dce1c247759ed3e12535 --- /dev/null +++ b/github/org_apache.json @@ -0,0 +1,32 @@ +{ + "login": "apache", + "id": 47359, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3MzU5", + "url": "https://api.github.com/orgs/apache", + "repos_url": "https://api.github.com/orgs/apache/repos", + "events_url": "https://api.github.com/orgs/apache/events", + "hooks_url": "https://api.github.com/orgs/apache/hooks", + "issues_url": "https://api.github.com/orgs/apache/issues", + "members_url": "https://api.github.com/orgs/apache/members{/member}", + "public_members_url": "https://api.github.com/orgs/apache/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/47359?v=4", + "description": "", + "name": "The Apache Software Foundation", + "company": null, + "blog": "https://www.apache.org/", + "location": null, + "email": null, + "twitter_username": null, + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2829, + "public_gists": 0, + "followers": 20337, + "following": 0, + "html_url": "https://github.com/apache", + "created_at": "2009-01-17T20:14:40Z", + "updated_at": "2025-10-12T11:25:39Z", + "archived_at": null, + "type": "Organization" +} \ No newline at end of file diff --git a/github/org_apache.metadata.json b/github/org_apache.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9f866bc1382755d61a551fa6582d7ba212d168e5 --- /dev/null +++ b/github/org_apache.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_org_apache", + "source": "github", + "collected_date": "2025-11-05T22:51:11.240851", + "size_bytes": 1135, + "description": "Apache organization", + "url": "https://api.github.com/orgs/apache" +} \ No newline at end of file diff --git a/github/org_facebook.json b/github/org_facebook.json new file mode 100644 index 0000000000000000000000000000000000000000..292a65fa73f3115c0024267f71e81b3065e67527 --- /dev/null +++ b/github/org_facebook.json @@ -0,0 +1,32 @@ +{ + "login": "facebook", + "id": 69631, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY5NjMx", + "url": "https://api.github.com/orgs/facebook", + "repos_url": "https://api.github.com/orgs/facebook/repos", + "events_url": "https://api.github.com/orgs/facebook/events", + "hooks_url": "https://api.github.com/orgs/facebook/hooks", + "issues_url": "https://api.github.com/orgs/facebook/issues", + "members_url": "https://api.github.com/orgs/facebook/members{/member}", + "public_members_url": "https://api.github.com/orgs/facebook/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/69631?v=4", + "description": "We are working to build community through open source technology. NB: members must have two-factor auth.", + "name": "Meta", + "company": null, + "blog": "https://opensource.fb.com", + "location": "Menlo Park, California", + "email": null, + "twitter_username": "MetaOpenSource", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 155, + "public_gists": 12, + "followers": 32898, + "following": 0, + "html_url": "https://github.com/facebook", + "created_at": "2009-04-02T03:35:22Z", + "updated_at": "2024-12-27T21:10:02Z", + "archived_at": null, + "type": "Organization" +} \ No newline at end of file diff --git a/github/org_facebook.metadata.json b/github/org_facebook.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..2e0ebbb1a44e5a025811558ba4f80544ee97346e --- /dev/null +++ b/github/org_facebook.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_org_facebook", + "source": "github", + "collected_date": "2025-11-05T22:51:09.100888", + "size_bytes": 1265, + "description": "Facebook organization", + "url": "https://api.github.com/orgs/facebook" +} \ No newline at end of file diff --git a/github/org_google.json b/github/org_google.json new file mode 100644 index 0000000000000000000000000000000000000000..815cac8a417e510030745b99330ea66053e3e1fb --- /dev/null +++ b/github/org_google.json @@ -0,0 +1,32 @@ +{ + "login": "google", + "id": 1342004, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=", + "url": "https://api.github.com/orgs/google", + "repos_url": "https://api.github.com/orgs/google/repos", + "events_url": "https://api.github.com/orgs/google/events", + "hooks_url": "https://api.github.com/orgs/google/hooks", + "issues_url": "https://api.github.com/orgs/google/issues", + "members_url": "https://api.github.com/orgs/google/members{/member}", + "public_members_url": "https://api.github.com/orgs/google/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/1342004?v=4", + "description": "Google ❤️ Open Source", + "name": "Google", + "company": null, + "blog": "https://opensource.google/", + "location": "United States of America", + "email": "opensource@google.com", + "twitter_username": "GoogleOSS", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 2810, + "public_gists": 0, + "followers": 62198, + "following": 0, + "html_url": "https://github.com/google", + "created_at": "2012-01-18T01:30:18Z", + "updated_at": "2025-06-28T19:58:20Z", + "archived_at": null, + "type": "Organization" +} \ No newline at end of file diff --git a/github/org_google.metadata.json b/github/org_google.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..91c1af5071a8ab0a0d254afb19df28da941f452b --- /dev/null +++ b/github/org_google.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_org_google", + "source": "github", + "collected_date": "2025-11-05T22:51:06.973346", + "size_bytes": 1195, + "description": "Google organization", + "url": "https://api.github.com/orgs/google" +} \ No newline at end of file diff --git a/github/org_microsoft.json b/github/org_microsoft.json new file mode 100644 index 0000000000000000000000000000000000000000..235c2ad6a0458fba99464992a5a0df8f2dc3aede --- /dev/null +++ b/github/org_microsoft.json @@ -0,0 +1,32 @@ +{ + "login": "microsoft", + "id": 6154722, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=", + "url": "https://api.github.com/orgs/microsoft", + "repos_url": "https://api.github.com/orgs/microsoft/repos", + "events_url": "https://api.github.com/orgs/microsoft/events", + "hooks_url": "https://api.github.com/orgs/microsoft/hooks", + "issues_url": "https://api.github.com/orgs/microsoft/issues", + "members_url": "https://api.github.com/orgs/microsoft/members{/member}", + "public_members_url": "https://api.github.com/orgs/microsoft/public_members{/member}", + "avatar_url": "https://avatars.githubusercontent.com/u/6154722?v=4", + "description": "Open source projects and samples from Microsoft", + "name": "Microsoft", + "company": null, + "blog": "https://opensource.microsoft.com", + "location": "Redmond, WA", + "email": "opensource@microsoft.com", + "twitter_username": "OpenAtMicrosoft", + "is_verified": true, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 7309, + "public_gists": 0, + "followers": 106085, + "following": 0, + "html_url": "https://github.com/microsoft", + "created_at": "2013-12-10T19:06:48Z", + "updated_at": "2025-06-06T20:30:56Z", + "archived_at": null, + "type": "Organization" +} \ No newline at end of file diff --git a/github/org_microsoft.metadata.json b/github/org_microsoft.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cc8b0f0104f577fc5cef89e96459598bdfddb7c0 --- /dev/null +++ b/github/org_microsoft.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_org_microsoft", + "source": "github", + "collected_date": "2025-11-05T22:51:04.822665", + "size_bytes": 1250, + "description": "Microsoft organization", + "url": "https://api.github.com/orgs/microsoft" +} \ No newline at end of file diff --git a/github/pulls_kubernetes.json b/github/pulls_kubernetes.json new file mode 100644 index 0000000000000000000000000000000000000000..76031cc12fa35798047ec60f1a2763dd190c3ce8 --- /dev/null +++ b/github/pulls_kubernetes.json @@ -0,0 +1,5044 @@ +[ + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135161", + "id": 2982815764, + "node_id": "PR_kwDOAToIks6xyigU", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135161", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135161.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135161.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135161", + "number": 135161, + "state": "open", + "locked": false, + "title": "Remove deprecated feature gate tests for GA features", + "user": { + "login": "MyoungHaSong", + "id": 28686925, + "node_id": "MDQ6VXNlcjI4Njg2OTI1", + "avatar_url": "https://avatars.githubusercontent.com/u/28686925?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MyoungHaSong", + "html_url": "https://github.com/MyoungHaSong", + "followers_url": "https://api.github.com/users/MyoungHaSong/followers", + "following_url": "https://api.github.com/users/MyoungHaSong/following{/other_user}", + "gists_url": "https://api.github.com/users/MyoungHaSong/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MyoungHaSong/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MyoungHaSong/subscriptions", + "organizations_url": "https://api.github.com/users/MyoungHaSong/orgs", + "repos_url": "https://api.github.com/users/MyoungHaSong/repos", + "events_url": "https://api.github.com/users/MyoungHaSong/events{/privacy}", + "received_events_url": "https://api.github.com/users/MyoungHaSong/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "# PR Description\r\n\r\n\r\n\r\n#### What type of PR is this?\r\n\r\n/kind cleanup\r\n\r\n#### What this PR does / why we need it:\r\n\r\nThis PR removes test cases for feature gates that have graduated to GA and are locked to default in v1.33.\r\n\r\nThe `NodeInclusionPolicyInPodTopologySpread` and `SidecarContainers` feature gates both graduated to GA in v1.33 with `LockToDefault: true`. Once a feature gate is locked, it cannot be disabled, making test cases for the disabled state invalid and unable to execute successfully.\r\n\r\nThis PR cleans up:\r\n- `TestDropNodeInclusionPolicyFields`: Removed 7 test cases that tested the feature disabled state and the `enabled` field\r\n- `TestDropSidecarContainers`: Removed the `enabled` loop (true/false) and simplified the test to only verify behavior with the feature enabled\r\n- Feature gate emulation code that attempted to set locked gates to disabled state\r\n\r\nThe changes reduce test code by 157 lines while maintaining test coverage for the actual behavior (feature enabled).\r\n\r\n#### Which issue(s) this PR is related to:\r\n\r\nN/A\r\n\r\nThis addresses TODO comments in `pkg/api/pod/util_test.go:1521` and `pkg/api/pod/util_test.go:3249` that indicated removal in v1.36:\r\n- `// TODO: this will be removed in 1.36`\r\n- `// TODO: Remove this in v1.36`\r\n\r\n#### Special notes for your reviewer:\r\n\r\nAll tests pass successfully after these changes:\r\n```bash\r\ngo test ./pkg/api/pod -v\r\n# PASS\r\n```\r\n\r\nThe removed test cases were attempting to use `SetFeatureGateEmulationVersionDuringTest` and `SetFeatureGateDuringTest` to test disabled states, but these operations are no longer valid for locked feature gates.\r\n\r\nReference to feature gate GA status:\r\n- `SidecarContainers`: `pkg/features/kube_features.go:1698` - GA in 1.33, locked, remove in 1.36\r\n- `NodeInclusionPolicyInPodTopologySpread`: `pkg/features/kube_features.go:1463` - GA in 1.33, locked\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nNONE\r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n\r\n```docs\r\nN/A\r\n```\r\n\r\n/sig testing\r\n/sig node", + "created_at": "2025-11-06T03:02:55Z", + "updated_at": "2025-11-06T03:06:57Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "c6532a313e52a99a1154ed902ba016aad3fc9205", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "smarterclayton", + "id": 1163175, + "node_id": "MDQ6VXNlcjExNjMxNzU=", + "avatar_url": "https://avatars.githubusercontent.com/u/1163175?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/smarterclayton", + "html_url": "https://github.com/smarterclayton", + "followers_url": "https://api.github.com/users/smarterclayton/followers", + "following_url": "https://api.github.com/users/smarterclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/smarterclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/smarterclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/smarterclayton/subscriptions", + "organizations_url": "https://api.github.com/users/smarterclayton/orgs", + "repos_url": "https://api.github.com/users/smarterclayton/repos", + "events_url": "https://api.github.com/users/smarterclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/smarterclayton/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "thockin", + "id": 5595220, + "node_id": "MDQ6VXNlcjU1OTUyMjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/5595220?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/thockin", + "html_url": "https://github.com/thockin", + "followers_url": "https://api.github.com/users/thockin/followers", + "following_url": "https://api.github.com/users/thockin/following{/other_user}", + "gists_url": "https://api.github.com/users/thockin/gists{/gist_id}", + "starred_url": "https://api.github.com/users/thockin/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/thockin/subscriptions", + "organizations_url": "https://api.github.com/users/thockin/orgs", + "repos_url": "https://api.github.com/users/thockin/repos", + "events_url": "https://api.github.com/users/thockin/events{/privacy}", + "received_events_url": "https://api.github.com/users/thockin/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 122775691, + "node_id": "MDU6TGFiZWwxMjI3NzU2OTE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/cleanup", + "name": "kind/cleanup", + "color": "c7def8", + "default": false, + "description": "Categorizes issue or PR as related to cleaning up code, process, or technical debt." + }, + { + "id": 173493665, + "node_id": "MDU6TGFiZWwxNzM0OTM2NjU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/node", + "name": "sig/node", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Node." + }, + { + "id": 253450978, + "node_id": "MDU6TGFiZWwyNTM0NTA5Nzg=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/L", + "name": "size/L", + "color": "ee9900", + "default": false, + "description": "Denotes a PR that changes 100-499 lines, ignoring generated files." + }, + { + "id": 349530249, + "node_id": "MDU6TGFiZWwzNDk1MzAyNDk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note-none", + "name": "release-note-none", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that doesn't merit a release note." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 483069764, + "node_id": "MDU6TGFiZWw0ODMwNjk3NjQ=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/testing", + "name": "sig/testing", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Testing." + }, + { + "id": 573014062, + "node_id": "MDU6TGFiZWw1NzMwMTQwNjI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-ok-to-test", + "name": "needs-ok-to-test", + "color": "b60205", + "default": false, + "description": "Indicates a PR that requires an org member to verify it is safe to test." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135161/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135161/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135161/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/7a9e0fb997f7e855ed870ece5f6da89e59fe4ea6", + "head": { + "label": "MyoungHaSong:cleanup-ga-feature-gate-tests", + "ref": "cleanup-ga-feature-gate-tests", + "sha": "7a9e0fb997f7e855ed870ece5f6da89e59fe4ea6", + "user": { + "login": "MyoungHaSong", + "id": 28686925, + "node_id": "MDQ6VXNlcjI4Njg2OTI1", + "avatar_url": "https://avatars.githubusercontent.com/u/28686925?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MyoungHaSong", + "html_url": "https://github.com/MyoungHaSong", + "followers_url": "https://api.github.com/users/MyoungHaSong/followers", + "following_url": "https://api.github.com/users/MyoungHaSong/following{/other_user}", + "gists_url": "https://api.github.com/users/MyoungHaSong/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MyoungHaSong/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MyoungHaSong/subscriptions", + "organizations_url": "https://api.github.com/users/MyoungHaSong/orgs", + "repos_url": "https://api.github.com/users/MyoungHaSong/repos", + "events_url": "https://api.github.com/users/MyoungHaSong/events{/privacy}", + "received_events_url": "https://api.github.com/users/MyoungHaSong/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 1090704385, + "node_id": "R_kgDOQQLUAQ", + "name": "kubernetes", + "full_name": "MyoungHaSong/kubernetes", + "private": false, + "owner": { + "login": "MyoungHaSong", + "id": 28686925, + "node_id": "MDQ6VXNlcjI4Njg2OTI1", + "avatar_url": "https://avatars.githubusercontent.com/u/28686925?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MyoungHaSong", + "html_url": "https://github.com/MyoungHaSong", + "followers_url": "https://api.github.com/users/MyoungHaSong/followers", + "following_url": "https://api.github.com/users/MyoungHaSong/following{/other_user}", + "gists_url": "https://api.github.com/users/MyoungHaSong/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MyoungHaSong/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MyoungHaSong/subscriptions", + "organizations_url": "https://api.github.com/users/MyoungHaSong/orgs", + "repos_url": "https://api.github.com/users/MyoungHaSong/repos", + "events_url": "https://api.github.com/users/MyoungHaSong/events{/privacy}", + "received_events_url": "https://api.github.com/users/MyoungHaSong/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/MyoungHaSong/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/MyoungHaSong/kubernetes", + "forks_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/forks", + "keys_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/events", + "assignees_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/merges", + "archive_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/MyoungHaSong/kubernetes/deployments", + "created_at": "2025-11-06T02:56:41Z", + "updated_at": "2025-11-06T02:56:41Z", + "pushed_at": "2025-11-06T02:57:22Z", + "git_url": "git://github.com/MyoungHaSong/kubernetes.git", + "ssh_url": "git@github.com:MyoungHaSong/kubernetes.git", + "clone_url": "https://github.com/MyoungHaSong/kubernetes.git", + "svn_url": "https://github.com/MyoungHaSong/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "4ffafaea9cc040bdfa2dfa5f06df30b489a40ae3", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135161" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135161" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135161" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135161/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135161/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135161/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/7a9e0fb997f7e855ed870ece5f6da89e59fe4ea6" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135160", + "id": 2982763378, + "node_id": "PR_kwDOAToIks6xyVty", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135160", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135160.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135160.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135160", + "number": 135160, + "state": "open", + "locked": false, + "title": "support multi conditions in apicall", + "user": { + "login": "KunWuLuan", + "id": 30817980, + "node_id": "MDQ6VXNlcjMwODE3OTgw", + "avatar_url": "https://avatars.githubusercontent.com/u/30817980?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KunWuLuan", + "html_url": "https://github.com/KunWuLuan", + "followers_url": "https://api.github.com/users/KunWuLuan/followers", + "following_url": "https://api.github.com/users/KunWuLuan/following{/other_user}", + "gists_url": "https://api.github.com/users/KunWuLuan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KunWuLuan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KunWuLuan/subscriptions", + "organizations_url": "https://api.github.com/users/KunWuLuan/orgs", + "repos_url": "https://api.github.com/users/KunWuLuan/repos", + "events_url": "https://api.github.com/users/KunWuLuan/events{/privacy}", + "received_events_url": "https://api.github.com/users/KunWuLuan/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "\r\n\r\n#### What type of PR is this?\r\n\r\n\r\n\r\n#### What this PR does / why we need it:\r\n\r\nAs a kube-scheduler plugin developer, I have to update Pod conditions in my plugin. When multi conditions have to be updated, old api calls will be overwritten by the new api calls, so I want to update multi conditions in one API call.\r\n\r\n#### Which issue(s) this PR is related to:\r\n\r\n#135159\r\n\r\n#### Special notes for your reviewer:\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\n\r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n\r\n\r\n```docs\r\n\r\n```\r\n", + "created_at": "2025-11-06T02:40:45Z", + "updated_at": "2025-11-06T02:41:19Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "064d2688427168b9ec4bb433cf4f9365b36f7dda", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "damemi", + "id": 1839101, + "node_id": "MDQ6VXNlcjE4MzkxMDE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1839101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/damemi", + "html_url": "https://github.com/damemi", + "followers_url": "https://api.github.com/users/damemi/followers", + "following_url": "https://api.github.com/users/damemi/following{/other_user}", + "gists_url": "https://api.github.com/users/damemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/damemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/damemi/subscriptions", + "organizations_url": "https://api.github.com/users/damemi/orgs", + "repos_url": "https://api.github.com/users/damemi/repos", + "events_url": "https://api.github.com/users/damemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/damemi/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "kerthcet", + "id": 18364341, + "node_id": "MDQ6VXNlcjE4MzY0MzQx", + "avatar_url": "https://avatars.githubusercontent.com/u/18364341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kerthcet", + "html_url": "https://github.com/kerthcet", + "followers_url": "https://api.github.com/users/kerthcet/followers", + "following_url": "https://api.github.com/users/kerthcet/following{/other_user}", + "gists_url": "https://api.github.com/users/kerthcet/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kerthcet/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kerthcet/subscriptions", + "organizations_url": "https://api.github.com/users/kerthcet/orgs", + "repos_url": "https://api.github.com/users/kerthcet/repos", + "events_url": "https://api.github.com/users/kerthcet/events{/privacy}", + "received_events_url": "https://api.github.com/users/kerthcet/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 125550211, + "node_id": "MDU6TGFiZWwxMjU1NTAyMTE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/scheduling", + "name": "sig/scheduling", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Scheduling." + }, + { + "id": 253450978, + "node_id": "MDU6TGFiZWwyNTM0NTA5Nzg=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/L", + "name": "size/L", + "color": "ee9900", + "default": false, + "description": "Denotes a PR that changes 100-499 lines, ignoring generated files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 573014062, + "node_id": "MDU6TGFiZWw1NzMwMTQwNjI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-ok-to-test", + "name": "needs-ok-to-test", + "color": "b60205", + "default": false, + "description": "Indicates a PR that requires an org member to verify it is safe to test." + }, + { + "id": 680152113, + "node_id": "MDU6TGFiZWw2ODAxNTIxMTM=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/do-not-merge/release-note-label-needed", + "name": "do-not-merge/release-note-label-needed", + "color": "e11d21", + "default": false, + "description": "Indicates that a PR should not merge because it's missing one of the release note labels." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + }, + { + "id": 2480789134, + "node_id": "MDU6TGFiZWwyNDgwNzg5MTM0", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/do-not-merge/needs-kind", + "name": "do-not-merge/needs-kind", + "color": "e11d21", + "default": false, + "description": "Indicates a PR lacks a `kind/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135160/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135160/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135160/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/178e6c4b85b1abf904bd9361220b762aed40e9d4", + "head": { + "label": "KunWuLuan:feat/multi-cond-apicall", + "ref": "feat/multi-cond-apicall", + "sha": "178e6c4b85b1abf904bd9361220b762aed40e9d4", + "user": { + "login": "KunWuLuan", + "id": 30817980, + "node_id": "MDQ6VXNlcjMwODE3OTgw", + "avatar_url": "https://avatars.githubusercontent.com/u/30817980?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KunWuLuan", + "html_url": "https://github.com/KunWuLuan", + "followers_url": "https://api.github.com/users/KunWuLuan/followers", + "following_url": "https://api.github.com/users/KunWuLuan/following{/other_user}", + "gists_url": "https://api.github.com/users/KunWuLuan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KunWuLuan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KunWuLuan/subscriptions", + "organizations_url": "https://api.github.com/users/KunWuLuan/orgs", + "repos_url": "https://api.github.com/users/KunWuLuan/repos", + "events_url": "https://api.github.com/users/KunWuLuan/events{/privacy}", + "received_events_url": "https://api.github.com/users/KunWuLuan/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 520492967, + "node_id": "R_kgDOHwYXpw", + "name": "kubernetes", + "full_name": "KunWuLuan/kubernetes", + "private": false, + "owner": { + "login": "KunWuLuan", + "id": 30817980, + "node_id": "MDQ6VXNlcjMwODE3OTgw", + "avatar_url": "https://avatars.githubusercontent.com/u/30817980?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/KunWuLuan", + "html_url": "https://github.com/KunWuLuan", + "followers_url": "https://api.github.com/users/KunWuLuan/followers", + "following_url": "https://api.github.com/users/KunWuLuan/following{/other_user}", + "gists_url": "https://api.github.com/users/KunWuLuan/gists{/gist_id}", + "starred_url": "https://api.github.com/users/KunWuLuan/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/KunWuLuan/subscriptions", + "organizations_url": "https://api.github.com/users/KunWuLuan/orgs", + "repos_url": "https://api.github.com/users/KunWuLuan/repos", + "events_url": "https://api.github.com/users/KunWuLuan/events{/privacy}", + "received_events_url": "https://api.github.com/users/KunWuLuan/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/KunWuLuan/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/KunWuLuan/kubernetes", + "forks_url": "https://api.github.com/repos/KunWuLuan/kubernetes/forks", + "keys_url": "https://api.github.com/repos/KunWuLuan/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/KunWuLuan/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/KunWuLuan/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/KunWuLuan/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/KunWuLuan/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/KunWuLuan/kubernetes/events", + "assignees_url": "https://api.github.com/repos/KunWuLuan/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/KunWuLuan/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/KunWuLuan/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/KunWuLuan/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/KunWuLuan/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/KunWuLuan/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/KunWuLuan/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/KunWuLuan/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/KunWuLuan/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/KunWuLuan/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/KunWuLuan/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/KunWuLuan/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/KunWuLuan/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/KunWuLuan/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/KunWuLuan/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/KunWuLuan/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/KunWuLuan/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/KunWuLuan/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/KunWuLuan/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/KunWuLuan/kubernetes/merges", + "archive_url": "https://api.github.com/repos/KunWuLuan/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/KunWuLuan/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/KunWuLuan/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/KunWuLuan/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/KunWuLuan/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/KunWuLuan/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/KunWuLuan/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/KunWuLuan/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/KunWuLuan/kubernetes/deployments", + "created_at": "2022-08-02T12:39:51Z", + "updated_at": "2025-11-06T01:23:34Z", + "pushed_at": "2025-11-06T02:33:29Z", + "git_url": "git://github.com/KunWuLuan/kubernetes.git", + "ssh_url": "git@github.com:KunWuLuan/kubernetes.git", + "clone_url": "https://github.com/KunWuLuan/kubernetes.git", + "svn_url": "https://github.com/KunWuLuan/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1135327, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "9a5193796bff2910dd00efe2539b318936f49ec3", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135160" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135160" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135160" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135160/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135160/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135160/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/178e6c4b85b1abf904bd9361220b762aed40e9d4" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135158", + "id": 2982655795, + "node_id": "PR_kwDOAToIks6xx7cz", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135158", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135158.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135158.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135158", + "number": 135158, + "state": "open", + "locked": false, + "title": "Graduate PodTopologyLabelsAdmission feature gate to Beta and on by default", + "user": { + "login": "andrewsykim", + "id": 12699319, + "node_id": "MDQ6VXNlcjEyNjk5MzE5", + "avatar_url": "https://avatars.githubusercontent.com/u/12699319?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andrewsykim", + "html_url": "https://github.com/andrewsykim", + "followers_url": "https://api.github.com/users/andrewsykim/followers", + "following_url": "https://api.github.com/users/andrewsykim/following{/other_user}", + "gists_url": "https://api.github.com/users/andrewsykim/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andrewsykim/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andrewsykim/subscriptions", + "organizations_url": "https://api.github.com/users/andrewsykim/orgs", + "repos_url": "https://api.github.com/users/andrewsykim/repos", + "events_url": "https://api.github.com/users/andrewsykim/events{/privacy}", + "received_events_url": "https://api.github.com/users/andrewsykim/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "#### What type of PR is this?\r\n\r\n/kind feature\r\n\r\n#### What this PR does / why we need it:\r\n\r\nGraduate PodTopologyLabelsAdmission feature gate to beta\r\n\r\n#### Which issue(s) this PR is related to:\r\n\r\nhttps://github.com/kubernetes/enhancements/issues/4742\r\nhttps://github.com/kubernetes/kubernetes/issues/40610\r\n\r\n#### Special notes for your reviewer:\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nGraduate PodTopologyLabelsAdmission feature gate to Beta and on by default.\r\n\r\nPods will now have labels `topology.kubernetes.io/zone` and `topology.kubernetes.io/region` by default if the assigned Node has these labels. \r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n\r\n\r\n```docs\r\n\r\n```\r\n", + "created_at": "2025-11-06T01:51:22Z", + "updated_at": "2025-11-06T02:39:03Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "801f170039aeb0f73959608d39046aba0d9e75d1", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "liggitt", + "id": 980082, + "node_id": "MDQ6VXNlcjk4MDA4Mg==", + "avatar_url": "https://avatars.githubusercontent.com/u/980082?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liggitt", + "html_url": "https://github.com/liggitt", + "followers_url": "https://api.github.com/users/liggitt/followers", + "following_url": "https://api.github.com/users/liggitt/following{/other_user}", + "gists_url": "https://api.github.com/users/liggitt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liggitt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liggitt/subscriptions", + "organizations_url": "https://api.github.com/users/liggitt/orgs", + "repos_url": "https://api.github.com/users/liggitt/repos", + "events_url": "https://api.github.com/users/liggitt/events{/privacy}", + "received_events_url": "https://api.github.com/users/liggitt/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "dchen1107", + "id": 7740897, + "node_id": "MDQ6VXNlcjc3NDA4OTc=", + "avatar_url": "https://avatars.githubusercontent.com/u/7740897?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dchen1107", + "html_url": "https://github.com/dchen1107", + "followers_url": "https://api.github.com/users/dchen1107/followers", + "following_url": "https://api.github.com/users/dchen1107/following{/other_user}", + "gists_url": "https://api.github.com/users/dchen1107/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dchen1107/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dchen1107/subscriptions", + "organizations_url": "https://api.github.com/users/dchen1107/orgs", + "repos_url": "https://api.github.com/users/dchen1107/repos", + "events_url": "https://api.github.com/users/dchen1107/events{/privacy}", + "received_events_url": "https://api.github.com/users/dchen1107/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 200149833, + "node_id": "MDU6TGFiZWwyMDAxNDk4MzM=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note", + "name": "release-note", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that will be considered when it comes time to generate release notes." + }, + { + "id": 253450793, + "node_id": "MDU6TGFiZWwyNTM0NTA3OTM=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/XS", + "name": "size/XS", + "color": "009900", + "default": false, + "description": "Denotes a PR that changes 0-9 lines, ignoring generated files." + }, + { + "id": 267761362, + "node_id": "MDU6TGFiZWwyNjc3NjEzNjI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/feature", + "name": "kind/feature", + "color": "c7def8", + "default": false, + "description": "Categorizes issue or PR as related to a new feature." + }, + { + "id": 414883982, + "node_id": "MDU6TGFiZWw0MTQ4ODM5ODI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false, + "description": "Indicates a PR has been approved by an approver from all required OWNERS files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + }, + { + "id": 2480789133, + "node_id": "MDU6TGFiZWwyNDgwNzg5MTMz", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/do-not-merge/needs-sig", + "name": "do-not-merge/needs-sig", + "color": "e11d21", + "default": false, + "description": "Indicates an issue or PR lacks a `sig/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135158/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135158/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135158/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/4a2b21f0ca2f312b62bd19cd459bed1dbce0d5d3", + "head": { + "label": "andrewsykim:pod-topology-admission-beta", + "ref": "pod-topology-admission-beta", + "sha": "4a2b21f0ca2f312b62bd19cd459bed1dbce0d5d3", + "user": { + "login": "andrewsykim", + "id": 12699319, + "node_id": "MDQ6VXNlcjEyNjk5MzE5", + "avatar_url": "https://avatars.githubusercontent.com/u/12699319?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andrewsykim", + "html_url": "https://github.com/andrewsykim", + "followers_url": "https://api.github.com/users/andrewsykim/followers", + "following_url": "https://api.github.com/users/andrewsykim/following{/other_user}", + "gists_url": "https://api.github.com/users/andrewsykim/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andrewsykim/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andrewsykim/subscriptions", + "organizations_url": "https://api.github.com/users/andrewsykim/orgs", + "repos_url": "https://api.github.com/users/andrewsykim/repos", + "events_url": "https://api.github.com/users/andrewsykim/events{/privacy}", + "received_events_url": "https://api.github.com/users/andrewsykim/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 73117920, + "node_id": "MDEwOlJlcG9zaXRvcnk3MzExNzkyMA==", + "name": "kubernetes", + "full_name": "andrewsykim/kubernetes", + "private": false, + "owner": { + "login": "andrewsykim", + "id": 12699319, + "node_id": "MDQ6VXNlcjEyNjk5MzE5", + "avatar_url": "https://avatars.githubusercontent.com/u/12699319?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/andrewsykim", + "html_url": "https://github.com/andrewsykim", + "followers_url": "https://api.github.com/users/andrewsykim/followers", + "following_url": "https://api.github.com/users/andrewsykim/following{/other_user}", + "gists_url": "https://api.github.com/users/andrewsykim/gists{/gist_id}", + "starred_url": "https://api.github.com/users/andrewsykim/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/andrewsykim/subscriptions", + "organizations_url": "https://api.github.com/users/andrewsykim/orgs", + "repos_url": "https://api.github.com/users/andrewsykim/repos", + "events_url": "https://api.github.com/users/andrewsykim/events{/privacy}", + "received_events_url": "https://api.github.com/users/andrewsykim/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/andrewsykim/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/andrewsykim/kubernetes", + "forks_url": "https://api.github.com/repos/andrewsykim/kubernetes/forks", + "keys_url": "https://api.github.com/repos/andrewsykim/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/andrewsykim/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/andrewsykim/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/andrewsykim/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/andrewsykim/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/andrewsykim/kubernetes/events", + "assignees_url": "https://api.github.com/repos/andrewsykim/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/andrewsykim/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/andrewsykim/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/andrewsykim/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/andrewsykim/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/andrewsykim/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/andrewsykim/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/andrewsykim/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/andrewsykim/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/andrewsykim/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/andrewsykim/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/andrewsykim/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/andrewsykim/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/andrewsykim/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/andrewsykim/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/andrewsykim/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/andrewsykim/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/andrewsykim/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/andrewsykim/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/andrewsykim/kubernetes/merges", + "archive_url": "https://api.github.com/repos/andrewsykim/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/andrewsykim/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/andrewsykim/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/andrewsykim/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/andrewsykim/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/andrewsykim/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/andrewsykim/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/andrewsykim/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/andrewsykim/kubernetes/deployments", + "created_at": "2016-11-07T20:27:07Z", + "updated_at": "2020-10-15T01:36:54Z", + "pushed_at": "2025-11-06T01:44:44Z", + "git_url": "git://github.com/andrewsykim/kubernetes.git", + "ssh_url": "git@github.com:andrewsykim/kubernetes.git", + "clone_url": "https://github.com/andrewsykim/kubernetes.git", + "svn_url": "https://github.com/andrewsykim/kubernetes", + "homepage": "http://kubernetes.io", + "size": 1170644, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 1, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "9a5193796bff2910dd00efe2539b318936f49ec3", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135158" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135158" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135158" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135158/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135158/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135158/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/4a2b21f0ca2f312b62bd19cd459bed1dbce0d5d3" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135157", + "id": 2982275868, + "node_id": "PR_kwDOAToIks6xwesc", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135157", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135157.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135157.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135157", + "number": 135157, + "state": "open", + "locked": false, + "title": "Cleanup MinimumKubeletVersion test tag for unsupported kubelet versions", + "user": { + "login": "BenTheElder", + "id": 917931, + "node_id": "MDQ6VXNlcjkxNzkzMQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/917931?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BenTheElder", + "html_url": "https://github.com/BenTheElder", + "followers_url": "https://api.github.com/users/BenTheElder/followers", + "following_url": "https://api.github.com/users/BenTheElder/following{/other_user}", + "gists_url": "https://api.github.com/users/BenTheElder/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BenTheElder/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BenTheElder/subscriptions", + "organizations_url": "https://api.github.com/users/BenTheElder/orgs", + "repos_url": "https://api.github.com/users/BenTheElder/repos", + "events_url": "https://api.github.com/users/BenTheElder/events{/privacy}", + "received_events_url": "https://api.github.com/users/BenTheElder/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "\r\n\r\n#### What type of PR is this?\r\n\r\n\r\n/kind cleanup\r\n\r\n\r\n#### What this PR does / why we need it:\r\n\r\nRemoves `MinimumKubeletVersion:1.X` tags from versions that are long out of support.\r\nVersions 1.20, 1.21, 1.22, 1.23, 1.27 are all well out of support. Tags for 1.34 remain.\r\n\r\nWe don't support testing these versions anyhow, so we can clean this up.\r\n\r\n#### Which issue(s) this PR is related to:\r\n\r\n\r\n#### Special notes for your reviewer:\r\n\r\nInterestingly there were only two conformance tests before the 1.34 IPPR tests (https://github.com/kubernetes/kubernetes/pull/135151), the rest are not conformance tests.\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nNONE\r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n\r\n\r\n```docs\r\n\r\n```\r\n", + "created_at": "2025-11-05T22:29:36Z", + "updated_at": "2025-11-06T02:33:44Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "7f66ee73b1ee57b32f859e9ff305cbf5cc49af5b", + "assignee": { + "login": "dims", + "id": 23304, + "node_id": "MDQ6VXNlcjIzMzA0", + "avatar_url": "https://avatars.githubusercontent.com/u/23304?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dims", + "html_url": "https://github.com/dims", + "followers_url": "https://api.github.com/users/dims/followers", + "following_url": "https://api.github.com/users/dims/following{/other_user}", + "gists_url": "https://api.github.com/users/dims/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dims/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dims/subscriptions", + "organizations_url": "https://api.github.com/users/dims/orgs", + "repos_url": "https://api.github.com/users/dims/repos", + "events_url": "https://api.github.com/users/dims/events{/privacy}", + "received_events_url": "https://api.github.com/users/dims/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "dims", + "id": 23304, + "node_id": "MDQ6VXNlcjIzMzA0", + "avatar_url": "https://avatars.githubusercontent.com/u/23304?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dims", + "html_url": "https://github.com/dims", + "followers_url": "https://api.github.com/users/dims/followers", + "following_url": "https://api.github.com/users/dims/following{/other_user}", + "gists_url": "https://api.github.com/users/dims/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dims/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dims/subscriptions", + "organizations_url": "https://api.github.com/users/dims/orgs", + "repos_url": "https://api.github.com/users/dims/repos", + "events_url": "https://api.github.com/users/dims/events{/privacy}", + "received_events_url": "https://api.github.com/users/dims/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "SergeyKanzhelev", + "id": 9950081, + "node_id": "MDQ6VXNlcjk5NTAwODE=", + "avatar_url": "https://avatars.githubusercontent.com/u/9950081?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SergeyKanzhelev", + "html_url": "https://github.com/SergeyKanzhelev", + "followers_url": "https://api.github.com/users/SergeyKanzhelev/followers", + "following_url": "https://api.github.com/users/SergeyKanzhelev/following{/other_user}", + "gists_url": "https://api.github.com/users/SergeyKanzhelev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SergeyKanzhelev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SergeyKanzhelev/subscriptions", + "organizations_url": "https://api.github.com/users/SergeyKanzhelev/orgs", + "repos_url": "https://api.github.com/users/SergeyKanzhelev/repos", + "events_url": "https://api.github.com/users/SergeyKanzhelev/events{/privacy}", + "received_events_url": "https://api.github.com/users/SergeyKanzhelev/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "jayunit100", + "id": 826111, + "node_id": "MDQ6VXNlcjgyNjExMQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/826111?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jayunit100", + "html_url": "https://github.com/jayunit100", + "followers_url": "https://api.github.com/users/jayunit100/followers", + "following_url": "https://api.github.com/users/jayunit100/following{/other_user}", + "gists_url": "https://api.github.com/users/jayunit100/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jayunit100/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jayunit100/subscriptions", + "organizations_url": "https://api.github.com/users/jayunit100/orgs", + "repos_url": "https://api.github.com/users/jayunit100/repos", + "events_url": "https://api.github.com/users/jayunit100/events{/privacy}", + "received_events_url": "https://api.github.com/users/jayunit100/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "saikat-royc", + "id": 63082967, + "node_id": "MDQ6VXNlcjYzMDgyOTY3", + "avatar_url": "https://avatars.githubusercontent.com/u/63082967?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/saikat-royc", + "html_url": "https://github.com/saikat-royc", + "followers_url": "https://api.github.com/users/saikat-royc/followers", + "following_url": "https://api.github.com/users/saikat-royc/following{/other_user}", + "gists_url": "https://api.github.com/users/saikat-royc/gists{/gist_id}", + "starred_url": "https://api.github.com/users/saikat-royc/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/saikat-royc/subscriptions", + "organizations_url": "https://api.github.com/users/saikat-royc/orgs", + "repos_url": "https://api.github.com/users/saikat-royc/repos", + "events_url": "https://api.github.com/users/saikat-royc/events{/privacy}", + "received_events_url": "https://api.github.com/users/saikat-royc/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 105152717, + "node_id": "MDU6TGFiZWwxMDUxNTI3MTc=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/test", + "name": "area/test", + "color": "0052cc", + "default": false, + "description": null + }, + { + "id": 122775691, + "node_id": "MDU6TGFiZWwxMjI3NzU2OTE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/cleanup", + "name": "kind/cleanup", + "color": "c7def8", + "default": false, + "description": "Categorizes issue or PR as related to cleaning up code, process, or technical debt." + }, + { + "id": 148225179, + "node_id": "MDU6TGFiZWwxNDgyMjUxNzk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/lgtm", + "name": "lgtm", + "color": "15dd18", + "default": false, + "description": "\"Looks good to me\", indicates that a PR is ready to be merged." + }, + { + "id": 169428334, + "node_id": "MDU6TGFiZWwxNjk0MjgzMzQ=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/storage", + "name": "sig/storage", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Storage." + }, + { + "id": 173493665, + "node_id": "MDU6TGFiZWwxNzM0OTM2NjU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/node", + "name": "sig/node", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Node." + }, + { + "id": 253450934, + "node_id": "MDU6TGFiZWwyNTM0NTA5MzQ=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/M", + "name": "size/M", + "color": "eebb00", + "default": false, + "description": "Denotes a PR that changes 30-99 lines, ignoring generated files." + }, + { + "id": 349530249, + "node_id": "MDU6TGFiZWwzNDk1MzAyNDk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note-none", + "name": "release-note-none", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that doesn't merit a release note." + }, + { + "id": 414883982, + "node_id": "MDU6TGFiZWw0MTQ4ODM5ODI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false, + "description": "Indicates a PR has been approved by an approver from all required OWNERS files." + }, + { + "id": 422106010, + "node_id": "MDU6TGFiZWw0MjIxMDYwMTA=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/windows", + "name": "sig/windows", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Windows." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 483069764, + "node_id": "MDU6TGFiZWw0ODMwNjk3NjQ=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/testing", + "name": "sig/testing", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Testing." + }, + { + "id": 636152047, + "node_id": "MDU6TGFiZWw2MzYxNTIwNDc=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/architecture", + "name": "sig/architecture", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Architecture." + }, + { + "id": 717986501, + "node_id": "MDU6TGFiZWw3MTc5ODY1MDE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/conformance", + "name": "area/conformance", + "color": "0052cc", + "default": false, + "description": "Issues or PRs related to kubernetes conformance tests" + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135157/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135157/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135157/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/481f30bd6459b2c51dec7eb7bd612807af946c8c", + "head": { + "label": "BenTheElder:cleanup-min", + "ref": "cleanup-min", + "sha": "481f30bd6459b2c51dec7eb7bd612807af946c8c", + "user": { + "login": "BenTheElder", + "id": 917931, + "node_id": "MDQ6VXNlcjkxNzkzMQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/917931?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BenTheElder", + "html_url": "https://github.com/BenTheElder", + "followers_url": "https://api.github.com/users/BenTheElder/followers", + "following_url": "https://api.github.com/users/BenTheElder/following{/other_user}", + "gists_url": "https://api.github.com/users/BenTheElder/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BenTheElder/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BenTheElder/subscriptions", + "organizations_url": "https://api.github.com/users/BenTheElder/orgs", + "repos_url": "https://api.github.com/users/BenTheElder/repos", + "events_url": "https://api.github.com/users/BenTheElder/events{/privacy}", + "received_events_url": "https://api.github.com/users/BenTheElder/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 96918293, + "node_id": "MDEwOlJlcG9zaXRvcnk5NjkxODI5Mw==", + "name": "kubernetes", + "full_name": "BenTheElder/kubernetes", + "private": false, + "owner": { + "login": "BenTheElder", + "id": 917931, + "node_id": "MDQ6VXNlcjkxNzkzMQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/917931?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/BenTheElder", + "html_url": "https://github.com/BenTheElder", + "followers_url": "https://api.github.com/users/BenTheElder/followers", + "following_url": "https://api.github.com/users/BenTheElder/following{/other_user}", + "gists_url": "https://api.github.com/users/BenTheElder/gists{/gist_id}", + "starred_url": "https://api.github.com/users/BenTheElder/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/BenTheElder/subscriptions", + "organizations_url": "https://api.github.com/users/BenTheElder/orgs", + "repos_url": "https://api.github.com/users/BenTheElder/repos", + "events_url": "https://api.github.com/users/BenTheElder/events{/privacy}", + "received_events_url": "https://api.github.com/users/BenTheElder/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/BenTheElder/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/BenTheElder/kubernetes", + "forks_url": "https://api.github.com/repos/BenTheElder/kubernetes/forks", + "keys_url": "https://api.github.com/repos/BenTheElder/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/BenTheElder/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/BenTheElder/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/BenTheElder/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/BenTheElder/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/BenTheElder/kubernetes/events", + "assignees_url": "https://api.github.com/repos/BenTheElder/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/BenTheElder/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/BenTheElder/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/BenTheElder/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/BenTheElder/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/BenTheElder/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/BenTheElder/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/BenTheElder/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/BenTheElder/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/BenTheElder/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/BenTheElder/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/BenTheElder/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/BenTheElder/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/BenTheElder/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/BenTheElder/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/BenTheElder/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/BenTheElder/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/BenTheElder/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/BenTheElder/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/BenTheElder/kubernetes/merges", + "archive_url": "https://api.github.com/repos/BenTheElder/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/BenTheElder/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/BenTheElder/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/BenTheElder/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/BenTheElder/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/BenTheElder/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/BenTheElder/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/BenTheElder/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/BenTheElder/kubernetes/deployments", + "created_at": "2017-07-11T17:17:38Z", + "updated_at": "2025-11-05T22:20:11Z", + "pushed_at": "2025-11-05T22:27:21Z", + "git_url": "git://github.com/BenTheElder/kubernetes.git", + "ssh_url": "git@github.com:BenTheElder/kubernetes.git", + "clone_url": "https://github.com/BenTheElder/kubernetes.git", + "svn_url": "https://github.com/BenTheElder/kubernetes", + "homepage": "http://kubernetes.io", + "size": 1159451, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "11787f5c93353a83db83f243a4c122e7c28b3794", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135157" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135157" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135157" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135157/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135157/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135157/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/481f30bd6459b2c51dec7eb7bd612807af946c8c" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135156", + "id": 2981967498, + "node_id": "PR_kwDOAToIks6xvTaK", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135156", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135156.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135156.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135156", + "number": 135156, + "state": "open", + "locked": false, + "title": "update sig cloud provider owners", + "user": { + "login": "elmiko", + "id": 190649, + "node_id": "MDQ6VXNlcjE5MDY0OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/190649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elmiko", + "html_url": "https://github.com/elmiko", + "followers_url": "https://api.github.com/users/elmiko/followers", + "following_url": "https://api.github.com/users/elmiko/following{/other_user}", + "gists_url": "https://api.github.com/users/elmiko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elmiko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elmiko/subscriptions", + "organizations_url": "https://api.github.com/users/elmiko/orgs", + "repos_url": "https://api.github.com/users/elmiko/repos", + "events_url": "https://api.github.com/users/elmiko/events{/privacy}", + "received_events_url": "https://api.github.com/users/elmiko/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "\r\n\r\n#### What type of PR is this?\r\n\r\n/kind cleanup\r\n\r\n\r\n#### What this PR does / why we need it:\r\n\r\nThis change updates the feature-approvers alias and the staging directory owners for cloud-provider to include the current technical leaders for the sig. Previous approvers who are no longer actively reviewing have been moved to emeritus status.\r\n\r\n\r\n#### Which issue(s) this PR is related to:\r\n\r\nN/A\r\n\r\n#### Special notes for your reviewer:\r\n\r\nthis change was discussed during the [5 november 2025 sig office hours](https://www.youtube.com/watch?v=ruiSbEaAHNc).\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nNONE\r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n\r\n\r\n```docs\r\n\r\n```\r\n", + "created_at": "2025-11-05T20:38:14Z", + "updated_at": "2025-11-05T21:37:51Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "0955b57db117bf0f84a2ad30892d0dcc6f21995e", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "dims", + "id": 23304, + "node_id": "MDQ6VXNlcjIzMzA0", + "avatar_url": "https://avatars.githubusercontent.com/u/23304?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dims", + "html_url": "https://github.com/dims", + "followers_url": "https://api.github.com/users/dims/followers", + "following_url": "https://api.github.com/users/dims/following{/other_user}", + "gists_url": "https://api.github.com/users/dims/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dims/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dims/subscriptions", + "organizations_url": "https://api.github.com/users/dims/orgs", + "repos_url": "https://api.github.com/users/dims/repos", + "events_url": "https://api.github.com/users/dims/events{/privacy}", + "received_events_url": "https://api.github.com/users/dims/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "liggitt", + "id": 980082, + "node_id": "MDQ6VXNlcjk4MDA4Mg==", + "avatar_url": "https://avatars.githubusercontent.com/u/980082?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/liggitt", + "html_url": "https://github.com/liggitt", + "followers_url": "https://api.github.com/users/liggitt/followers", + "following_url": "https://api.github.com/users/liggitt/following{/other_user}", + "gists_url": "https://api.github.com/users/liggitt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/liggitt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/liggitt/subscriptions", + "organizations_url": "https://api.github.com/users/liggitt/orgs", + "repos_url": "https://api.github.com/users/liggitt/repos", + "events_url": "https://api.github.com/users/liggitt/events{/privacy}", + "received_events_url": "https://api.github.com/users/liggitt/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 122775691, + "node_id": "MDU6TGFiZWwxMjI3NzU2OTE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/cleanup", + "name": "kind/cleanup", + "color": "c7def8", + "default": false, + "description": "Categorizes issue or PR as related to cleaning up code, process, or technical debt." + }, + { + "id": 154660912, + "node_id": "MDU6TGFiZWwxNTQ2NjA5MTI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/cloudprovider", + "name": "area/cloudprovider", + "color": "0052cc", + "default": false, + "description": null + }, + { + "id": 253450895, + "node_id": "MDU6TGFiZWwyNTM0NTA4OTU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/S", + "name": "size/S", + "color": "77bb00", + "default": false, + "description": "Denotes a PR that changes 10-29 lines, ignoring generated files." + }, + { + "id": 349530249, + "node_id": "MDU6TGFiZWwzNDk1MzAyNDk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note-none", + "name": "release-note-none", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that doesn't merit a release note." + }, + { + "id": 414883982, + "node_id": "MDU6TGFiZWw0MTQ4ODM5ODI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false, + "description": "Indicates a PR has been approved by an approver from all required OWNERS files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 958178286, + "node_id": "MDU6TGFiZWw5NTgxNzgyODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/cloud-provider", + "name": "sig/cloud-provider", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Cloud Provider." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135156/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135156/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135156/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/74483e73845307fad8c3d448a617f56330c36e27", + "head": { + "label": "elmiko:update-cloud-provider-owners", + "ref": "update-cloud-provider-owners", + "sha": "74483e73845307fad8c3d448a617f56330c36e27", + "user": { + "login": "elmiko", + "id": 190649, + "node_id": "MDQ6VXNlcjE5MDY0OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/190649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elmiko", + "html_url": "https://github.com/elmiko", + "followers_url": "https://api.github.com/users/elmiko/followers", + "following_url": "https://api.github.com/users/elmiko/following{/other_user}", + "gists_url": "https://api.github.com/users/elmiko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elmiko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elmiko/subscriptions", + "organizations_url": "https://api.github.com/users/elmiko/orgs", + "repos_url": "https://api.github.com/users/elmiko/repos", + "events_url": "https://api.github.com/users/elmiko/events{/privacy}", + "received_events_url": "https://api.github.com/users/elmiko/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 267954051, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjc5NTQwNTE=", + "name": "kubernetes", + "full_name": "elmiko/kubernetes", + "private": false, + "owner": { + "login": "elmiko", + "id": 190649, + "node_id": "MDQ6VXNlcjE5MDY0OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/190649?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/elmiko", + "html_url": "https://github.com/elmiko", + "followers_url": "https://api.github.com/users/elmiko/followers", + "following_url": "https://api.github.com/users/elmiko/following{/other_user}", + "gists_url": "https://api.github.com/users/elmiko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/elmiko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/elmiko/subscriptions", + "organizations_url": "https://api.github.com/users/elmiko/orgs", + "repos_url": "https://api.github.com/users/elmiko/repos", + "events_url": "https://api.github.com/users/elmiko/events{/privacy}", + "received_events_url": "https://api.github.com/users/elmiko/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/elmiko/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/elmiko/kubernetes", + "forks_url": "https://api.github.com/repos/elmiko/kubernetes/forks", + "keys_url": "https://api.github.com/repos/elmiko/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/elmiko/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/elmiko/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/elmiko/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/elmiko/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/elmiko/kubernetes/events", + "assignees_url": "https://api.github.com/repos/elmiko/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/elmiko/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/elmiko/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/elmiko/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/elmiko/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/elmiko/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/elmiko/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/elmiko/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/elmiko/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/elmiko/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/elmiko/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/elmiko/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/elmiko/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/elmiko/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/elmiko/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/elmiko/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/elmiko/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/elmiko/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/elmiko/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/elmiko/kubernetes/merges", + "archive_url": "https://api.github.com/repos/elmiko/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/elmiko/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/elmiko/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/elmiko/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/elmiko/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/elmiko/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/elmiko/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/elmiko/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/elmiko/kubernetes/deployments", + "created_at": "2020-05-29T21:00:32Z", + "updated_at": "2025-09-05T18:08:20Z", + "pushed_at": "2025-11-05T20:46:58Z", + "git_url": "git://github.com/elmiko/kubernetes.git", + "ssh_url": "git@github.com:elmiko/kubernetes.git", + "clone_url": "https://github.com/elmiko/kubernetes.git", + "svn_url": "https://github.com/elmiko/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1205122, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "799572b8dbfd6af62e69fd4a3db84aff92155272", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135156" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135156" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135156" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135156/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135156/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135156/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/74483e73845307fad8c3d448a617f56330c36e27" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135155", + "id": 2981886331, + "node_id": "PR_kwDOAToIks6xu_l7", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135155", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135155.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135155.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135155", + "number": 135155, + "state": "open", + "locked": false, + "title": "Fix NPE in CEL schema wrappers of additionalProperties=true objects", + "user": { + "login": "jpbetz", + "id": 523590, + "node_id": "MDQ6VXNlcjUyMzU5MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/523590?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jpbetz", + "html_url": "https://github.com/jpbetz", + "followers_url": "https://api.github.com/users/jpbetz/followers", + "following_url": "https://api.github.com/users/jpbetz/following{/other_user}", + "gists_url": "https://api.github.com/users/jpbetz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jpbetz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jpbetz/subscriptions", + "organizations_url": "https://api.github.com/users/jpbetz/orgs", + "repos_url": "https://api.github.com/users/jpbetz/repos", + "events_url": "https://api.github.com/users/jpbetz/events{/privacy}", + "received_events_url": "https://api.github.com/users/jpbetz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "#### What type of PR is this?\r\n\r\n/kind bug\r\n\r\n#### What this PR does / why we need it:\r\n\r\nThis fixes an kube-controller-manager crash.\r\n\r\n#### Which issue(s) this PR is related to:\r\n\r\nFixes https://github.com/kubernetes/kubernetes/issues/135145\r\n\r\n#### Special notes for your reviewer:\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nFix bug in ValidatingAdmissionPolicy where a object schema with additionalProperties:true would crash the kube-controller-manager with a nil pointer exception.\r\n```\r\n", + "created_at": "2025-11-05T20:11:36Z", + "updated_at": "2025-11-06T03:02:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "8cf8fbdb82d25861f93c9ad1bd362344b74e62c9", + "assignee": { + "login": "lalitc375", + "id": 11797790, + "node_id": "MDQ6VXNlcjExNzk3Nzkw", + "avatar_url": "https://avatars.githubusercontent.com/u/11797790?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lalitc375", + "html_url": "https://github.com/lalitc375", + "followers_url": "https://api.github.com/users/lalitc375/followers", + "following_url": "https://api.github.com/users/lalitc375/following{/other_user}", + "gists_url": "https://api.github.com/users/lalitc375/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lalitc375/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lalitc375/subscriptions", + "organizations_url": "https://api.github.com/users/lalitc375/orgs", + "repos_url": "https://api.github.com/users/lalitc375/repos", + "events_url": "https://api.github.com/users/lalitc375/events{/privacy}", + "received_events_url": "https://api.github.com/users/lalitc375/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "lalitc375", + "id": 11797790, + "node_id": "MDQ6VXNlcjExNzk3Nzkw", + "avatar_url": "https://avatars.githubusercontent.com/u/11797790?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lalitc375", + "html_url": "https://github.com/lalitc375", + "followers_url": "https://api.github.com/users/lalitc375/followers", + "following_url": "https://api.github.com/users/lalitc375/following{/other_user}", + "gists_url": "https://api.github.com/users/lalitc375/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lalitc375/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lalitc375/subscriptions", + "organizations_url": "https://api.github.com/users/lalitc375/orgs", + "repos_url": "https://api.github.com/users/lalitc375/repos", + "events_url": "https://api.github.com/users/lalitc375/events{/privacy}", + "received_events_url": "https://api.github.com/users/lalitc375/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "smarterclayton", + "id": 1163175, + "node_id": "MDQ6VXNlcjExNjMxNzU=", + "avatar_url": "https://avatars.githubusercontent.com/u/1163175?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/smarterclayton", + "html_url": "https://github.com/smarterclayton", + "followers_url": "https://api.github.com/users/smarterclayton/followers", + "following_url": "https://api.github.com/users/smarterclayton/following{/other_user}", + "gists_url": "https://api.github.com/users/smarterclayton/gists{/gist_id}", + "starred_url": "https://api.github.com/users/smarterclayton/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/smarterclayton/subscriptions", + "organizations_url": "https://api.github.com/users/smarterclayton/orgs", + "repos_url": "https://api.github.com/users/smarterclayton/repos", + "events_url": "https://api.github.com/users/smarterclayton/events{/privacy}", + "received_events_url": "https://api.github.com/users/smarterclayton/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "cici37", + "id": 8658046, + "node_id": "MDQ6VXNlcjg2NTgwNDY=", + "avatar_url": "https://avatars.githubusercontent.com/u/8658046?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/cici37", + "html_url": "https://github.com/cici37", + "followers_url": "https://api.github.com/users/cici37/followers", + "following_url": "https://api.github.com/users/cici37/following{/other_user}", + "gists_url": "https://api.github.com/users/cici37/gists{/gist_id}", + "starred_url": "https://api.github.com/users/cici37/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/cici37/subscriptions", + "organizations_url": "https://api.github.com/users/cici37/orgs", + "repos_url": "https://api.github.com/users/cici37/repos", + "events_url": "https://api.github.com/users/cici37/events{/privacy}", + "received_events_url": "https://api.github.com/users/cici37/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 105146071, + "node_id": "MDU6TGFiZWwxMDUxNDYwNzE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/bug", + "name": "kind/bug", + "color": "e11d21", + "default": false, + "description": "Categorizes issue or PR as related to a bug." + }, + { + "id": 136601536, + "node_id": "MDU6TGFiZWwxMzY2MDE1MzY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/apiserver", + "name": "area/apiserver", + "color": "0052cc", + "default": false, + "description": null + }, + { + "id": 148225179, + "node_id": "MDU6TGFiZWwxNDgyMjUxNzk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/lgtm", + "name": "lgtm", + "color": "15dd18", + "default": false, + "description": "\"Looks good to me\", indicates that a PR is ready to be merged." + }, + { + "id": 173493835, + "node_id": "MDU6TGFiZWwxNzM0OTM4MzU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/api-machinery", + "name": "sig/api-machinery", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG API Machinery." + }, + { + "id": 200149833, + "node_id": "MDU6TGFiZWwyMDAxNDk4MzM=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note", + "name": "release-note", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that will be considered when it comes time to generate release notes." + }, + { + "id": 253450934, + "node_id": "MDU6TGFiZWwyNTM0NTA5MzQ=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/M", + "name": "size/M", + "color": "eebb00", + "default": false, + "description": "Denotes a PR that changes 30-99 lines, ignoring generated files." + }, + { + "id": 414883982, + "node_id": "MDU6TGFiZWw0MTQ4ODM5ODI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false, + "description": "Indicates a PR has been approved by an approver from all required OWNERS files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389856656, + "node_id": "MDU6TGFiZWwyMzg5ODU2NjU2", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/triage/accepted", + "name": "triage/accepted", + "color": "8fc951", + "default": false, + "description": "Indicates an issue or PR is ready to be actively worked on." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135155/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135155/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135155/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/da6d15adf6b3ee7c1e226be3e1dafc01e9bdce2e", + "head": { + "label": "jpbetz:fix-additionalproperties-npe", + "ref": "fix-additionalproperties-npe", + "sha": "da6d15adf6b3ee7c1e226be3e1dafc01e9bdce2e", + "user": { + "login": "jpbetz", + "id": 523590, + "node_id": "MDQ6VXNlcjUyMzU5MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/523590?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jpbetz", + "html_url": "https://github.com/jpbetz", + "followers_url": "https://api.github.com/users/jpbetz/followers", + "following_url": "https://api.github.com/users/jpbetz/following{/other_user}", + "gists_url": "https://api.github.com/users/jpbetz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jpbetz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jpbetz/subscriptions", + "organizations_url": "https://api.github.com/users/jpbetz/orgs", + "repos_url": "https://api.github.com/users/jpbetz/repos", + "events_url": "https://api.github.com/users/jpbetz/events{/privacy}", + "received_events_url": "https://api.github.com/users/jpbetz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 103191852, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDMxOTE4NTI=", + "name": "kubernetes", + "full_name": "jpbetz/kubernetes", + "private": false, + "owner": { + "login": "jpbetz", + "id": 523590, + "node_id": "MDQ6VXNlcjUyMzU5MA==", + "avatar_url": "https://avatars.githubusercontent.com/u/523590?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jpbetz", + "html_url": "https://github.com/jpbetz", + "followers_url": "https://api.github.com/users/jpbetz/followers", + "following_url": "https://api.github.com/users/jpbetz/following{/other_user}", + "gists_url": "https://api.github.com/users/jpbetz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jpbetz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jpbetz/subscriptions", + "organizations_url": "https://api.github.com/users/jpbetz/orgs", + "repos_url": "https://api.github.com/users/jpbetz/repos", + "events_url": "https://api.github.com/users/jpbetz/events{/privacy}", + "received_events_url": "https://api.github.com/users/jpbetz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/jpbetz/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/jpbetz/kubernetes", + "forks_url": "https://api.github.com/repos/jpbetz/kubernetes/forks", + "keys_url": "https://api.github.com/repos/jpbetz/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/jpbetz/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/jpbetz/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/jpbetz/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/jpbetz/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/jpbetz/kubernetes/events", + "assignees_url": "https://api.github.com/repos/jpbetz/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/jpbetz/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/jpbetz/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/jpbetz/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/jpbetz/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/jpbetz/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/jpbetz/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/jpbetz/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/jpbetz/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/jpbetz/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/jpbetz/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/jpbetz/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/jpbetz/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/jpbetz/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/jpbetz/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/jpbetz/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/jpbetz/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/jpbetz/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/jpbetz/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/jpbetz/kubernetes/merges", + "archive_url": "https://api.github.com/repos/jpbetz/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/jpbetz/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/jpbetz/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/jpbetz/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/jpbetz/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/jpbetz/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/jpbetz/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/jpbetz/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/jpbetz/kubernetes/deployments", + "created_at": "2017-09-11T21:50:52Z", + "updated_at": "2025-04-28T17:47:50Z", + "pushed_at": "2025-11-05T20:46:40Z", + "git_url": "git://github.com/jpbetz/kubernetes.git", + "ssh_url": "git@github.com:jpbetz/kubernetes.git", + "clone_url": "https://github.com/jpbetz/kubernetes.git", + "svn_url": "https://github.com/jpbetz/kubernetes", + "homepage": "http://kubernetes.io", + "size": 1288491, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "799572b8dbfd6af62e69fd4a3db84aff92155272", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135155" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135155" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135155" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135155/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135155/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135155/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/da6d15adf6b3ee7c1e226be3e1dafc01e9bdce2e" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135154", + "id": 2981873992, + "node_id": "PR_kwDOAToIks6xu8lI", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135154", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135154.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135154.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135154", + "number": 135154, + "state": "open", + "locked": false, + "title": "Revert \"controller: duplicate utility method cleanup\"", + "user": { + "login": "soltysh", + "id": 576341, + "node_id": "MDQ6VXNlcjU3NjM0MQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/576341?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/soltysh", + "html_url": "https://github.com/soltysh", + "followers_url": "https://api.github.com/users/soltysh/followers", + "following_url": "https://api.github.com/users/soltysh/following{/other_user}", + "gists_url": "https://api.github.com/users/soltysh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/soltysh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/soltysh/subscriptions", + "organizations_url": "https://api.github.com/users/soltysh/orgs", + "repos_url": "https://api.github.com/users/soltysh/repos", + "events_url": "https://api.github.com/users/soltysh/events{/privacy}", + "received_events_url": "https://api.github.com/users/soltysh/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "Reverts kubernetes/kubernetes#134840\r\n\r\nThis can potentially fix https://github.com/kubernetes/kubernetes/issues/135150 b/c it seems that the increased failure rates correlate with when this merged. \r\n\r\n/cc @ahmetb ", + "created_at": "2025-11-05T20:07:25Z", + "updated_at": "2025-11-06T03:28:24Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "9220de964c6a475b86c1c66c3dbccfe8b6a1e124", + "assignee": { + "login": "pacoxu", + "id": 2010320, + "node_id": "MDQ6VXNlcjIwMTAzMjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/2010320?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pacoxu", + "html_url": "https://github.com/pacoxu", + "followers_url": "https://api.github.com/users/pacoxu/followers", + "following_url": "https://api.github.com/users/pacoxu/following{/other_user}", + "gists_url": "https://api.github.com/users/pacoxu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pacoxu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pacoxu/subscriptions", + "organizations_url": "https://api.github.com/users/pacoxu/orgs", + "repos_url": "https://api.github.com/users/pacoxu/repos", + "events_url": "https://api.github.com/users/pacoxu/events{/privacy}", + "received_events_url": "https://api.github.com/users/pacoxu/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "pacoxu", + "id": 2010320, + "node_id": "MDQ6VXNlcjIwMTAzMjA=", + "avatar_url": "https://avatars.githubusercontent.com/u/2010320?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/pacoxu", + "html_url": "https://github.com/pacoxu", + "followers_url": "https://api.github.com/users/pacoxu/followers", + "following_url": "https://api.github.com/users/pacoxu/following{/other_user}", + "gists_url": "https://api.github.com/users/pacoxu/gists{/gist_id}", + "starred_url": "https://api.github.com/users/pacoxu/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/pacoxu/subscriptions", + "organizations_url": "https://api.github.com/users/pacoxu/orgs", + "repos_url": "https://api.github.com/users/pacoxu/repos", + "events_url": "https://api.github.com/users/pacoxu/events{/privacy}", + "received_events_url": "https://api.github.com/users/pacoxu/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "ahmetb", + "id": 159209, + "node_id": "MDQ6VXNlcjE1OTIwOQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/159209?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ahmetb", + "html_url": "https://github.com/ahmetb", + "followers_url": "https://api.github.com/users/ahmetb/followers", + "following_url": "https://api.github.com/users/ahmetb/following{/other_user}", + "gists_url": "https://api.github.com/users/ahmetb/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ahmetb/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ahmetb/subscriptions", + "organizations_url": "https://api.github.com/users/ahmetb/orgs", + "repos_url": "https://api.github.com/users/ahmetb/repos", + "events_url": "https://api.github.com/users/ahmetb/events{/privacy}", + "received_events_url": "https://api.github.com/users/ahmetb/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 114528068, + "node_id": "MDU6TGFiZWwxMTQ1MjgwNjg=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/priority/critical-urgent", + "name": "priority/critical-urgent", + "color": "e11d21", + "default": false, + "description": "Highest priority. Must be actively worked on as someone's top priority right now." + }, + { + "id": 148225179, + "node_id": "MDU6TGFiZWwxNDgyMjUxNzk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/lgtm", + "name": "lgtm", + "color": "15dd18", + "default": false, + "description": "\"Looks good to me\", indicates that a PR is ready to be merged." + }, + { + "id": 253450895, + "node_id": "MDU6TGFiZWwyNTM0NTA4OTU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/S", + "name": "size/S", + "color": "77bb00", + "default": false, + "description": "Denotes a PR that changes 10-29 lines, ignoring generated files." + }, + { + "id": 264749912, + "node_id": "MDU6TGFiZWwyNjQ3NDk5MTI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/flake", + "name": "kind/flake", + "color": "f7c6c7", + "default": false, + "description": "Categorizes issue or PR as related to a flaky test." + }, + { + "id": 349530249, + "node_id": "MDU6TGFiZWwzNDk1MzAyNDk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note-none", + "name": "release-note-none", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that doesn't merit a release note." + }, + { + "id": 404091735, + "node_id": "MDU6TGFiZWw0MDQwOTE3MzU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/apps", + "name": "sig/apps", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Apps." + }, + { + "id": 414883982, + "node_id": "MDU6TGFiZWw0MTQ4ODM5ODI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false, + "description": "Indicates a PR has been approved by an approver from all required OWNERS files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 2389856656, + "node_id": "MDU6TGFiZWwyMzg5ODU2NjU2", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/triage/accepted", + "name": "triage/accepted", + "color": "8fc951", + "default": false, + "description": "Indicates an issue or PR is ready to be actively worked on." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135154/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135154/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135154/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/499bff4ca463e7558fe05ab05ce53e9e131850ce", + "head": { + "label": "kubernetes:revert-134840-ahmet/mini-cleanup", + "ref": "revert-134840-ahmet/mini-cleanup", + "sha": "499bff4ca463e7558fe05ab05ce53e9e131850ce", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "189b0052a5f5d6348532fc16271f501b54fe254a", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135154" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135154" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135154" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135154/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135154/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135154/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/499bff4ca463e7558fe05ab05ce53e9e131850ce" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135153", + "id": 2981823674, + "node_id": "PR_kwDOAToIks6xuwS6", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135153", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135153.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135153.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135153", + "number": 135153, + "state": "open", + "locked": false, + "title": "mark device manager as haelthy before it started for the first time", + "user": { + "login": "SergeyKanzhelev", + "id": 9950081, + "node_id": "MDQ6VXNlcjk5NTAwODE=", + "avatar_url": "https://avatars.githubusercontent.com/u/9950081?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SergeyKanzhelev", + "html_url": "https://github.com/SergeyKanzhelev", + "followers_url": "https://api.github.com/users/SergeyKanzhelev/followers", + "following_url": "https://api.github.com/users/SergeyKanzhelev/following{/other_user}", + "gists_url": "https://api.github.com/users/SergeyKanzhelev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SergeyKanzhelev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SergeyKanzhelev/subscriptions", + "organizations_url": "https://api.github.com/users/SergeyKanzhelev/orgs", + "repos_url": "https://api.github.com/users/SergeyKanzhelev/repos", + "events_url": "https://api.github.com/users/SergeyKanzhelev/events{/privacy}", + "received_events_url": "https://api.github.com/users/SergeyKanzhelev/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "#### What type of PR is this?\r\n\r\n/kind bug\r\n\r\n#### What this PR does / why we need it:\r\n\r\nDevice manger health checking should not fail before it fully started.\r\n\r\nRelated to #135113\r\n\r\nThis PR doesn't have tests to discuss the fix. Also it may be simpler to cherry-pick when it is smaller\r\n\r\n#### Does this PR introduce a user-facing change?\r\n```release-note\r\nThe slow initialization of container runtime will not cause System WatchDog to kill kubelet. Device Manager is not considered healthy before it attempted to start listening on the port. \r\n```\r\n", + "created_at": "2025-11-05T19:48:11Z", + "updated_at": "2025-11-05T21:38:25Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "fb7bdeac280811fb0713048e6be9b21b746144e3", + "assignee": { + "login": "ffromani", + "id": 25349329, + "node_id": "MDQ6VXNlcjI1MzQ5MzI5", + "avatar_url": "https://avatars.githubusercontent.com/u/25349329?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ffromani", + "html_url": "https://github.com/ffromani", + "followers_url": "https://api.github.com/users/ffromani/followers", + "following_url": "https://api.github.com/users/ffromani/following{/other_user}", + "gists_url": "https://api.github.com/users/ffromani/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ffromani/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ffromani/subscriptions", + "organizations_url": "https://api.github.com/users/ffromani/orgs", + "repos_url": "https://api.github.com/users/ffromani/repos", + "events_url": "https://api.github.com/users/ffromani/events{/privacy}", + "received_events_url": "https://api.github.com/users/ffromani/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "ffromani", + "id": 25349329, + "node_id": "MDQ6VXNlcjI1MzQ5MzI5", + "avatar_url": "https://avatars.githubusercontent.com/u/25349329?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ffromani", + "html_url": "https://github.com/ffromani", + "followers_url": "https://api.github.com/users/ffromani/followers", + "following_url": "https://api.github.com/users/ffromani/following{/other_user}", + "gists_url": "https://api.github.com/users/ffromani/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ffromani/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ffromani/subscriptions", + "organizations_url": "https://api.github.com/users/ffromani/orgs", + "repos_url": "https://api.github.com/users/ffromani/repos", + "events_url": "https://api.github.com/users/ffromani/events{/privacy}", + "received_events_url": "https://api.github.com/users/ffromani/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_reviewers": [ + { + "login": "klueska", + "id": 96419, + "node_id": "MDQ6VXNlcjk2NDE5", + "avatar_url": "https://avatars.githubusercontent.com/u/96419?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/klueska", + "html_url": "https://github.com/klueska", + "followers_url": "https://api.github.com/users/klueska/followers", + "following_url": "https://api.github.com/users/klueska/following{/other_user}", + "gists_url": "https://api.github.com/users/klueska/gists{/gist_id}", + "starred_url": "https://api.github.com/users/klueska/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/klueska/subscriptions", + "organizations_url": "https://api.github.com/users/klueska/orgs", + "repos_url": "https://api.github.com/users/klueska/repos", + "events_url": "https://api.github.com/users/klueska/events{/privacy}", + "received_events_url": "https://api.github.com/users/klueska/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "odinuge", + "id": 1467188, + "node_id": "MDQ6VXNlcjE0NjcxODg=", + "avatar_url": "https://avatars.githubusercontent.com/u/1467188?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/odinuge", + "html_url": "https://github.com/odinuge", + "followers_url": "https://api.github.com/users/odinuge/followers", + "following_url": "https://api.github.com/users/odinuge/following{/other_user}", + "gists_url": "https://api.github.com/users/odinuge/gists{/gist_id}", + "starred_url": "https://api.github.com/users/odinuge/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/odinuge/subscriptions", + "organizations_url": "https://api.github.com/users/odinuge/orgs", + "repos_url": "https://api.github.com/users/odinuge/repos", + "events_url": "https://api.github.com/users/odinuge/events{/privacy}", + "received_events_url": "https://api.github.com/users/odinuge/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 105146071, + "node_id": "MDU6TGFiZWwxMDUxNDYwNzE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/bug", + "name": "kind/bug", + "color": "e11d21", + "default": false, + "description": "Categorizes issue or PR as related to a bug." + }, + { + "id": 116719829, + "node_id": "MDU6TGFiZWwxMTY3MTk4Mjk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/kubelet", + "name": "area/kubelet", + "color": "0052cc", + "default": false, + "description": null + }, + { + "id": 173493665, + "node_id": "MDU6TGFiZWwxNzM0OTM2NjU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/node", + "name": "sig/node", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Node." + }, + { + "id": 200149833, + "node_id": "MDU6TGFiZWwyMDAxNDk4MzM=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note", + "name": "release-note", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that will be considered when it comes time to generate release notes." + }, + { + "id": 253450895, + "node_id": "MDU6TGFiZWwyNTM0NTA4OTU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/S", + "name": "size/S", + "color": "77bb00", + "default": false, + "description": "Denotes a PR that changes 10-29 lines, ignoring generated files." + }, + { + "id": 414883982, + "node_id": "MDU6TGFiZWw0MTQ4ODM5ODI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/approved", + "name": "approved", + "color": "0ffa16", + "default": false, + "description": "Indicates a PR has been approved by an approver from all required OWNERS files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135153/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135153/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135153/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/d1364abb9ae69146779989feca4d1238ef9cfe69", + "head": { + "label": "SergeyKanzhelev:deviceManagerHealthFix", + "ref": "deviceManagerHealthFix", + "sha": "d1364abb9ae69146779989feca4d1238ef9cfe69", + "user": { + "login": "SergeyKanzhelev", + "id": 9950081, + "node_id": "MDQ6VXNlcjk5NTAwODE=", + "avatar_url": "https://avatars.githubusercontent.com/u/9950081?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SergeyKanzhelev", + "html_url": "https://github.com/SergeyKanzhelev", + "followers_url": "https://api.github.com/users/SergeyKanzhelev/followers", + "following_url": "https://api.github.com/users/SergeyKanzhelev/following{/other_user}", + "gists_url": "https://api.github.com/users/SergeyKanzhelev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SergeyKanzhelev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SergeyKanzhelev/subscriptions", + "organizations_url": "https://api.github.com/users/SergeyKanzhelev/orgs", + "repos_url": "https://api.github.com/users/SergeyKanzhelev/repos", + "events_url": "https://api.github.com/users/SergeyKanzhelev/events{/privacy}", + "received_events_url": "https://api.github.com/users/SergeyKanzhelev/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 265450880, + "node_id": "MDEwOlJlcG9zaXRvcnkyNjU0NTA4ODA=", + "name": "kubernetes", + "full_name": "SergeyKanzhelev/kubernetes", + "private": false, + "owner": { + "login": "SergeyKanzhelev", + "id": 9950081, + "node_id": "MDQ6VXNlcjk5NTAwODE=", + "avatar_url": "https://avatars.githubusercontent.com/u/9950081?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SergeyKanzhelev", + "html_url": "https://github.com/SergeyKanzhelev", + "followers_url": "https://api.github.com/users/SergeyKanzhelev/followers", + "following_url": "https://api.github.com/users/SergeyKanzhelev/following{/other_user}", + "gists_url": "https://api.github.com/users/SergeyKanzhelev/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SergeyKanzhelev/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SergeyKanzhelev/subscriptions", + "organizations_url": "https://api.github.com/users/SergeyKanzhelev/orgs", + "repos_url": "https://api.github.com/users/SergeyKanzhelev/repos", + "events_url": "https://api.github.com/users/SergeyKanzhelev/events{/privacy}", + "received_events_url": "https://api.github.com/users/SergeyKanzhelev/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/SergeyKanzhelev/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes", + "forks_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/forks", + "keys_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/events", + "assignees_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/merges", + "archive_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/SergeyKanzhelev/kubernetes/deployments", + "created_at": "2020-05-20T04:27:11Z", + "updated_at": "2023-03-01T01:29:24Z", + "pushed_at": "2025-11-05T19:45:11Z", + "git_url": "git://github.com/SergeyKanzhelev/kubernetes.git", + "ssh_url": "git@github.com:SergeyKanzhelev/kubernetes.git", + "clone_url": "https://github.com/SergeyKanzhelev/kubernetes.git", + "svn_url": "https://github.com/SergeyKanzhelev/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1173128, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "189b0052a5f5d6348532fc16271f501b54fe254a", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135153" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135153" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135153" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135153/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135153/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135153/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/d1364abb9ae69146779989feca4d1238ef9cfe69" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135152", + "id": 2981801878, + "node_id": "PR_kwDOAToIks6xuq-W", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135152", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135152.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135152.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135152", + "number": 135152, + "state": "open", + "locked": false, + "title": "kubelet: delay looking up pod image pull credentials until necessary", + "user": { + "login": "stlaz", + "id": 718169, + "node_id": "MDQ6VXNlcjcxODE2OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/718169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stlaz", + "html_url": "https://github.com/stlaz", + "followers_url": "https://api.github.com/users/stlaz/followers", + "following_url": "https://api.github.com/users/stlaz/following{/other_user}", + "gists_url": "https://api.github.com/users/stlaz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stlaz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stlaz/subscriptions", + "organizations_url": "https://api.github.com/users/stlaz/orgs", + "repos_url": "https://api.github.com/users/stlaz/repos", + "events_url": "https://api.github.com/users/stlaz/events{/privacy}", + "received_events_url": "https://api.github.com/users/stlaz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "#### What type of PR is this?\r\n/kind bug\r\n\r\n#### What this PR does / why we need it:\r\nThis is a rebase of https://github.com/kubernetes/kubernetes/pull/133114 on current master after metrics were added to `EnsureImageExists()` in https://github.com/kubernetes/kubernetes/pull/132644.\r\n\r\nExamples:\r\nRelated-to PR https://github.com/kubernetes/kubernetes/pull/133114\r\n\r\n#### Special notes for your reviewer:\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nKubelet now performs image pull credentials lookups lazily with the `KubeletEnsureSecretPulledImages` featuregate enabled to prevent unnecessary credential lookups.\r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n", + "created_at": "2025-11-05T19:39:45Z", + "updated_at": "2025-11-05T20:09:48Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "aa2ffc2c901cd941fba27bcd351e85c5aeef3ddf", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "saschagrunert", + "id": 695473, + "node_id": "MDQ6VXNlcjY5NTQ3Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/695473?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/saschagrunert", + "html_url": "https://github.com/saschagrunert", + "followers_url": "https://api.github.com/users/saschagrunert/followers", + "following_url": "https://api.github.com/users/saschagrunert/following{/other_user}", + "gists_url": "https://api.github.com/users/saschagrunert/gists{/gist_id}", + "starred_url": "https://api.github.com/users/saschagrunert/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/saschagrunert/subscriptions", + "organizations_url": "https://api.github.com/users/saschagrunert/orgs", + "repos_url": "https://api.github.com/users/saschagrunert/repos", + "events_url": "https://api.github.com/users/saschagrunert/events{/privacy}", + "received_events_url": "https://api.github.com/users/saschagrunert/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "wzshiming", + "id": 6565744, + "node_id": "MDQ6VXNlcjY1NjU3NDQ=", + "avatar_url": "https://avatars.githubusercontent.com/u/6565744?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/wzshiming", + "html_url": "https://github.com/wzshiming", + "followers_url": "https://api.github.com/users/wzshiming/followers", + "following_url": "https://api.github.com/users/wzshiming/following{/other_user}", + "gists_url": "https://api.github.com/users/wzshiming/gists{/gist_id}", + "starred_url": "https://api.github.com/users/wzshiming/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/wzshiming/subscriptions", + "organizations_url": "https://api.github.com/users/wzshiming/orgs", + "repos_url": "https://api.github.com/users/wzshiming/repos", + "events_url": "https://api.github.com/users/wzshiming/events{/privacy}", + "received_events_url": "https://api.github.com/users/wzshiming/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 105146071, + "node_id": "MDU6TGFiZWwxMDUxNDYwNzE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/bug", + "name": "kind/bug", + "color": "e11d21", + "default": false, + "description": "Categorizes issue or PR as related to a bug." + }, + { + "id": 116719829, + "node_id": "MDU6TGFiZWwxMTY3MTk4Mjk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/kubelet", + "name": "area/kubelet", + "color": "0052cc", + "default": false, + "description": null + }, + { + "id": 173493665, + "node_id": "MDU6TGFiZWwxNzM0OTM2NjU=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/node", + "name": "sig/node", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Node." + }, + { + "id": 200149833, + "node_id": "MDU6TGFiZWwyMDAxNDk4MzM=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note", + "name": "release-note", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that will be considered when it comes time to generate release notes." + }, + { + "id": 253451057, + "node_id": "MDU6TGFiZWwyNTM0NTEwNTc=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/XL", + "name": "size/XL", + "color": "ee5500", + "default": false, + "description": "Denotes a PR that changes 500-999 lines, ignoring generated files." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135152/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135152/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135152/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/33f325c4f2fba12979cc0e6326b915de35a99f07", + "head": { + "label": "stlaz:ensure-secret-bugfix-lazy-lookup2", + "ref": "ensure-secret-bugfix-lazy-lookup2", + "sha": "33f325c4f2fba12979cc0e6326b915de35a99f07", + "user": { + "login": "stlaz", + "id": 718169, + "node_id": "MDQ6VXNlcjcxODE2OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/718169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stlaz", + "html_url": "https://github.com/stlaz", + "followers_url": "https://api.github.com/users/stlaz/followers", + "following_url": "https://api.github.com/users/stlaz/following{/other_user}", + "gists_url": "https://api.github.com/users/stlaz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stlaz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stlaz/subscriptions", + "organizations_url": "https://api.github.com/users/stlaz/orgs", + "repos_url": "https://api.github.com/users/stlaz/repos", + "events_url": "https://api.github.com/users/stlaz/events{/privacy}", + "received_events_url": "https://api.github.com/users/stlaz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 137477456, + "node_id": "MDEwOlJlcG9zaXRvcnkxMzc0Nzc0NTY=", + "name": "kubernetes", + "full_name": "stlaz/kubernetes", + "private": false, + "owner": { + "login": "stlaz", + "id": 718169, + "node_id": "MDQ6VXNlcjcxODE2OQ==", + "avatar_url": "https://avatars.githubusercontent.com/u/718169?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/stlaz", + "html_url": "https://github.com/stlaz", + "followers_url": "https://api.github.com/users/stlaz/followers", + "following_url": "https://api.github.com/users/stlaz/following{/other_user}", + "gists_url": "https://api.github.com/users/stlaz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/stlaz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/stlaz/subscriptions", + "organizations_url": "https://api.github.com/users/stlaz/orgs", + "repos_url": "https://api.github.com/users/stlaz/repos", + "events_url": "https://api.github.com/users/stlaz/events{/privacy}", + "received_events_url": "https://api.github.com/users/stlaz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/stlaz/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/stlaz/kubernetes", + "forks_url": "https://api.github.com/repos/stlaz/kubernetes/forks", + "keys_url": "https://api.github.com/repos/stlaz/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/stlaz/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/stlaz/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/stlaz/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/stlaz/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/stlaz/kubernetes/events", + "assignees_url": "https://api.github.com/repos/stlaz/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/stlaz/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/stlaz/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/stlaz/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/stlaz/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/stlaz/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/stlaz/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/stlaz/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/stlaz/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/stlaz/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/stlaz/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/stlaz/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/stlaz/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/stlaz/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/stlaz/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/stlaz/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/stlaz/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/stlaz/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/stlaz/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/stlaz/kubernetes/merges", + "archive_url": "https://api.github.com/repos/stlaz/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/stlaz/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/stlaz/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/stlaz/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/stlaz/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/stlaz/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/stlaz/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/stlaz/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/stlaz/kubernetes/deployments", + "created_at": "2018-06-15T11:00:52Z", + "updated_at": "2025-11-05T14:34:40Z", + "pushed_at": "2025-11-05T19:38:42Z", + "git_url": "git://github.com/stlaz/kubernetes.git", + "ssh_url": "git@github.com:stlaz/kubernetes.git", + "clone_url": "https://github.com/stlaz/kubernetes.git", + "svn_url": "https://github.com/stlaz/kubernetes", + "homepage": "http://kubernetes.io", + "size": 1203876, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "189b0052a5f5d6348532fc16271f501b54fe254a", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135152" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135152" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135152" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135152/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135152/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135152/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/33f325c4f2fba12979cc0e6326b915de35a99f07" + } + }, + "author_association": "MEMBER", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135149", + "id": 2981515506, + "node_id": "PR_kwDOAToIks6xtlDy", + "html_url": "https://github.com/kubernetes/kubernetes/pull/135149", + "diff_url": "https://github.com/kubernetes/kubernetes/pull/135149.diff", + "patch_url": "https://github.com/kubernetes/kubernetes/pull/135149.patch", + "issue_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135149", + "number": 135149, + "state": "open", + "locked": false, + "title": "KEP-5278 Add integration tests for setting and clearing NominatedNodeName", + "user": { + "login": "ania-borowiec", + "id": 194226633, + "node_id": "U_kgDOC5OpyQ", + "avatar_url": "https://avatars.githubusercontent.com/u/194226633?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ania-borowiec", + "html_url": "https://github.com/ania-borowiec", + "followers_url": "https://api.github.com/users/ania-borowiec/followers", + "following_url": "https://api.github.com/users/ania-borowiec/following{/other_user}", + "gists_url": "https://api.github.com/users/ania-borowiec/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ania-borowiec/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ania-borowiec/subscriptions", + "organizations_url": "https://api.github.com/users/ania-borowiec/orgs", + "repos_url": "https://api.github.com/users/ania-borowiec/repos", + "events_url": "https://api.github.com/users/ania-borowiec/events{/privacy}", + "received_events_url": "https://api.github.com/users/ania-borowiec/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "body": "\r\n\r\n#### What type of PR is this?\r\n\r\n\r\n/kind feature\r\n\r\n#### What this PR does / why we need it:\r\nThis PR fixes and adds integration tests testing all scenarios listed in the KEP https://github.com/kubernetes/enhancements/tree/master/keps/sig-scheduling/5278-nominated-node-name-for-expectation#integration-tests\r\n\r\nTests are partially based on https://github.com/kubernetes/kubernetes/pull/133215 (authored by @utam0k)\r\n\r\n#### Which issue(s) this PR is related to:\r\nFixes https://github.com/kubernetes/kubernetes/issues/132386\r\n\r\n\r\n\r\n#### Special notes for your reviewer:\r\n\r\n\r\n#### Does this PR introduce a user-facing change?\r\n\r\n```release-note\r\nNONE\r\n```\r\n\r\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\r\n\r\n\r\n```docs\r\n- [KEP]: https://github.com/kubernetes/enhancements/tree/master/keps/sig-scheduling/5278-nominated-node-name-for-expectation\r\n\r\n```\r\n", + "created_at": "2025-11-05T17:57:10Z", + "updated_at": "2025-11-05T18:29:35Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "23b9fc2e805703637ceb95c181bb485e1f50e9a6", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "sttts", + "id": 730123, + "node_id": "MDQ6VXNlcjczMDEyMw==", + "avatar_url": "https://avatars.githubusercontent.com/u/730123?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sttts", + "html_url": "https://github.com/sttts", + "followers_url": "https://api.github.com/users/sttts/followers", + "following_url": "https://api.github.com/users/sttts/following{/other_user}", + "gists_url": "https://api.github.com/users/sttts/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sttts/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sttts/subscriptions", + "organizations_url": "https://api.github.com/users/sttts/orgs", + "repos_url": "https://api.github.com/users/sttts/repos", + "events_url": "https://api.github.com/users/sttts/events{/privacy}", + "received_events_url": "https://api.github.com/users/sttts/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "damemi", + "id": 1839101, + "node_id": "MDQ6VXNlcjE4MzkxMDE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1839101?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/damemi", + "html_url": "https://github.com/damemi", + "followers_url": "https://api.github.com/users/damemi/followers", + "following_url": "https://api.github.com/users/damemi/following{/other_user}", + "gists_url": "https://api.github.com/users/damemi/gists{/gist_id}", + "starred_url": "https://api.github.com/users/damemi/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/damemi/subscriptions", + "organizations_url": "https://api.github.com/users/damemi/orgs", + "repos_url": "https://api.github.com/users/damemi/repos", + "events_url": "https://api.github.com/users/damemi/events{/privacy}", + "received_events_url": "https://api.github.com/users/damemi/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "sanposhiho", + "id": 44139130, + "node_id": "MDQ6VXNlcjQ0MTM5MTMw", + "avatar_url": "https://avatars.githubusercontent.com/u/44139130?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sanposhiho", + "html_url": "https://github.com/sanposhiho", + "followers_url": "https://api.github.com/users/sanposhiho/followers", + "following_url": "https://api.github.com/users/sanposhiho/following{/other_user}", + "gists_url": "https://api.github.com/users/sanposhiho/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sanposhiho/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sanposhiho/subscriptions", + "organizations_url": "https://api.github.com/users/sanposhiho/orgs", + "repos_url": "https://api.github.com/users/sanposhiho/repos", + "events_url": "https://api.github.com/users/sanposhiho/events{/privacy}", + "received_events_url": "https://api.github.com/users/sanposhiho/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "macsko", + "id": 87243939, + "node_id": "MDQ6VXNlcjg3MjQzOTM5", + "avatar_url": "https://avatars.githubusercontent.com/u/87243939?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/macsko", + "html_url": "https://github.com/macsko", + "followers_url": "https://api.github.com/users/macsko/followers", + "following_url": "https://api.github.com/users/macsko/following{/other_user}", + "gists_url": "https://api.github.com/users/macsko/gists{/gist_id}", + "starred_url": "https://api.github.com/users/macsko/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/macsko/subscriptions", + "organizations_url": "https://api.github.com/users/macsko/orgs", + "repos_url": "https://api.github.com/users/macsko/repos", + "events_url": "https://api.github.com/users/macsko/events{/privacy}", + "received_events_url": "https://api.github.com/users/macsko/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + { + "login": "dom4ha", + "id": 98281017, + "node_id": "U_kgDOBdumOQ", + "avatar_url": "https://avatars.githubusercontent.com/u/98281017?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dom4ha", + "html_url": "https://github.com/dom4ha", + "followers_url": "https://api.github.com/users/dom4ha/followers", + "following_url": "https://api.github.com/users/dom4ha/following{/other_user}", + "gists_url": "https://api.github.com/users/dom4ha/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dom4ha/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dom4ha/subscriptions", + "organizations_url": "https://api.github.com/users/dom4ha/orgs", + "repos_url": "https://api.github.com/users/dom4ha/repos", + "events_url": "https://api.github.com/users/dom4ha/events{/privacy}", + "received_events_url": "https://api.github.com/users/dom4ha/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [ + { + "id": 105152717, + "node_id": "MDU6TGFiZWwxMDUxNTI3MTc=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/area/test", + "name": "area/test", + "color": "0052cc", + "default": false, + "description": null + }, + { + "id": 125550211, + "node_id": "MDU6TGFiZWwxMjU1NTAyMTE=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/scheduling", + "name": "sig/scheduling", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Scheduling." + }, + { + "id": 253451057, + "node_id": "MDU6TGFiZWwyNTM0NTEwNTc=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/size/XL", + "name": "size/XL", + "color": "ee5500", + "default": false, + "description": "Denotes a PR that changes 500-999 lines, ignoring generated files." + }, + { + "id": 267761362, + "node_id": "MDU6TGFiZWwyNjc3NjEzNjI=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/kind/feature", + "name": "kind/feature", + "color": "c7def8", + "default": false, + "description": "Categorizes issue or PR as related to a new feature." + }, + { + "id": 349530249, + "node_id": "MDU6TGFiZWwzNDk1MzAyNDk=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/release-note-none", + "name": "release-note-none", + "color": "c2e0c6", + "default": false, + "description": "Denotes a PR that doesn't merit a release note." + }, + { + "id": 477397086, + "node_id": "MDU6TGFiZWw0NzczOTcwODY=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/cncf-cla:%20yes", + "name": "cncf-cla: yes", + "color": "bfe5bf", + "default": false, + "description": "Indicates the PR's author has signed the CNCF CLA." + }, + { + "id": 483069764, + "node_id": "MDU6TGFiZWw0ODMwNjk3NjQ=", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/sig/testing", + "name": "sig/testing", + "color": "d2b48c", + "default": false, + "description": "Categorizes an issue or PR as relevant to SIG Testing." + }, + { + "id": 1111992057, + "node_id": "MDU6TGFiZWwxMTExOTkyMDU3", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-priority", + "name": "needs-priority", + "color": "ededed", + "default": false, + "description": "Indicates a PR lacks a `priority/foo` label and requires one." + }, + { + "id": 2389815605, + "node_id": "MDU6TGFiZWwyMzg5ODE1NjA1", + "url": "https://api.github.com/repos/kubernetes/kubernetes/labels/needs-triage", + "name": "needs-triage", + "color": "ededed", + "default": false, + "description": "Indicates an issue or PR lacks a `triage/foo` label and requires one." + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135149/commits", + "review_comments_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135149/comments", + "review_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/135149/comments", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/3ac0bc680e93fb87ba786fa5d8cd33f93810ea7b", + "head": { + "label": "ania-borowiec:nnn_test", + "ref": "nnn_test", + "sha": "3ac0bc680e93fb87ba786fa5d8cd33f93810ea7b", + "user": { + "login": "ania-borowiec", + "id": 194226633, + "node_id": "U_kgDOC5OpyQ", + "avatar_url": "https://avatars.githubusercontent.com/u/194226633?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ania-borowiec", + "html_url": "https://github.com/ania-borowiec", + "followers_url": "https://api.github.com/users/ania-borowiec/followers", + "following_url": "https://api.github.com/users/ania-borowiec/following{/other_user}", + "gists_url": "https://api.github.com/users/ania-borowiec/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ania-borowiec/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ania-borowiec/subscriptions", + "organizations_url": "https://api.github.com/users/ania-borowiec/orgs", + "repos_url": "https://api.github.com/users/ania-borowiec/repos", + "events_url": "https://api.github.com/users/ania-borowiec/events{/privacy}", + "received_events_url": "https://api.github.com/users/ania-borowiec/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 913805761, + "node_id": "R_kgDONneRwQ", + "name": "kubernetes", + "full_name": "ania-borowiec/kubernetes", + "private": false, + "owner": { + "login": "ania-borowiec", + "id": 194226633, + "node_id": "U_kgDOC5OpyQ", + "avatar_url": "https://avatars.githubusercontent.com/u/194226633?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ania-borowiec", + "html_url": "https://github.com/ania-borowiec", + "followers_url": "https://api.github.com/users/ania-borowiec/followers", + "following_url": "https://api.github.com/users/ania-borowiec/following{/other_user}", + "gists_url": "https://api.github.com/users/ania-borowiec/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ania-borowiec/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ania-borowiec/subscriptions", + "organizations_url": "https://api.github.com/users/ania-borowiec/orgs", + "repos_url": "https://api.github.com/users/ania-borowiec/repos", + "events_url": "https://api.github.com/users/ania-borowiec/events{/privacy}", + "received_events_url": "https://api.github.com/users/ania-borowiec/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/ania-borowiec/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": true, + "url": "https://api.github.com/repos/ania-borowiec/kubernetes", + "forks_url": "https://api.github.com/repos/ania-borowiec/kubernetes/forks", + "keys_url": "https://api.github.com/repos/ania-borowiec/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/ania-borowiec/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/ania-borowiec/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/ania-borowiec/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/ania-borowiec/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/ania-borowiec/kubernetes/events", + "assignees_url": "https://api.github.com/repos/ania-borowiec/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/ania-borowiec/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/ania-borowiec/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/ania-borowiec/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/ania-borowiec/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/ania-borowiec/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/ania-borowiec/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/ania-borowiec/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/ania-borowiec/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/ania-borowiec/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/ania-borowiec/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/ania-borowiec/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/ania-borowiec/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/ania-borowiec/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/ania-borowiec/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/ania-borowiec/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/ania-borowiec/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/ania-borowiec/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/ania-borowiec/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/ania-borowiec/kubernetes/merges", + "archive_url": "https://api.github.com/repos/ania-borowiec/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/ania-borowiec/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/ania-borowiec/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/ania-borowiec/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/ania-borowiec/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/ania-borowiec/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/ania-borowiec/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/ania-borowiec/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/ania-borowiec/kubernetes/deployments", + "created_at": "2025-01-08T11:41:36Z", + "updated_at": "2025-11-04T15:41:20Z", + "pushed_at": "2025-11-05T17:50:27Z", + "git_url": "git://github.com/ania-borowiec/kubernetes.git", + "ssh_url": "git@github.com:ania-borowiec/kubernetes.git", + "clone_url": "https://github.com/ania-borowiec/kubernetes.git", + "svn_url": "https://github.com/ania-borowiec/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1137289, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Go", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } + }, + "base": { + "label": "kubernetes:master", + "ref": "master", + "sha": "53df4f9be696180df04fe9a34b3ac13c04695cb0", + "user": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135149" + }, + "html": { + "href": "https://github.com/kubernetes/kubernetes/pull/135149" + }, + "issue": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135149" + }, + "comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/issues/135149/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135149/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/pulls/135149/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/kubernetes/kubernetes/statuses/3ac0bc680e93fb87ba786fa5d8cd33f93810ea7b" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null + } +] \ No newline at end of file diff --git a/github/pulls_kubernetes.metadata.json b/github/pulls_kubernetes.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e072797c7cd4fdeda245525bfea114fa75a5d35a --- /dev/null +++ b/github/pulls_kubernetes.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_pulls_kubernetes", + "source": "github", + "collected_date": "2025-11-05T22:50:46.855413", + "size_bytes": 283446, + "description": "Kubernetes pull requests", + "url": "https://api.github.com/repos/kubernetes/kubernetes/pulls?per_page=10&state=open" +} \ No newline at end of file diff --git a/github/pulls_tensorflow.json b/github/pulls_tensorflow.json new file mode 100644 index 0000000000000000000000000000000000000000..25a362f1e4ca3b6b53db8ce9ae937580056f2011 --- /dev/null +++ b/github/pulls_tensorflow.json @@ -0,0 +1,3652 @@ +[ + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103643", + "id": 2982932727, + "node_id": "PR_kwDOArmXAs6xy_D3", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103643", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103643.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103643.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103643", + "number": 103643, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:49:42Z", + "updated_at": "2025-11-06T03:49:42Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "41eb1f16b784812b3fabaf0524754720906f0e70", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103643/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103643/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103643/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/6edac1afb8ff6c42ca89344ce09198ae4c4f35eb", + "head": { + "label": "tensorflow:exported_pr_828719536", + "ref": "exported_pr_828719536", + "sha": "6edac1afb8ff6c42ca89344ce09198ae4c4f35eb", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103643" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103643" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103643" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103643/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103643/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103643/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/6edac1afb8ff6c42ca89344ce09198ae4c4f35eb" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103642", + "id": 2982931780, + "node_id": "PR_kwDOArmXAs6xy-1E", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103642", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103642.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103642.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103642", + "number": 103642, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:49:23Z", + "updated_at": "2025-11-06T03:49:23Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "37ab5b6edc1aa354902d963f37d780830b3cf147", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103642/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103642/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103642/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/2ece8767f944a8a1b8dcbbe5181cdf123632343b", + "head": { + "label": "tensorflow:exported_pr_828719555", + "ref": "exported_pr_828719555", + "sha": "2ece8767f944a8a1b8dcbbe5181cdf123632343b", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103642" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103642" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103642" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103642/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103642/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103642/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/2ece8767f944a8a1b8dcbbe5181cdf123632343b" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103641", + "id": 2982927799, + "node_id": "PR_kwDOArmXAs6xy923", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103641", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103641.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103641.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103641", + "number": 103641, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:47:38Z", + "updated_at": "2025-11-06T03:47:38Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "1a5bc2b44fc4a200aed4a7cadb1ef3e661af7565", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103641/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103641/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103641/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/16fd5e4ba0ee8c37dec3924d60a63e32d919a421", + "head": { + "label": "tensorflow:exported_pr_828719523", + "ref": "exported_pr_828719523", + "sha": "16fd5e4ba0ee8c37dec3924d60a63e32d919a421", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103641" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103641" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103641" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103641/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103641/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103641/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/16fd5e4ba0ee8c37dec3924d60a63e32d919a421" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103639", + "id": 2982926451, + "node_id": "PR_kwDOArmXAs6xy9hz", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103639", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103639.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103639.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103639", + "number": 103639, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:46:59Z", + "updated_at": "2025-11-06T03:46:59Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "d5bc0423eda7e600271c43b150c768ec91498812", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103639/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103639/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103639/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/adeb8985c96eeba7ac7c63f2eb16c47f45998048", + "head": { + "label": "tensorflow:exported_pr_828720060", + "ref": "exported_pr_828720060", + "sha": "adeb8985c96eeba7ac7c63f2eb16c47f45998048", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103639" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103639" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103639" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103639/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103639/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103639/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/adeb8985c96eeba7ac7c63f2eb16c47f45998048" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103638", + "id": 2982925394, + "node_id": "PR_kwDOArmXAs6xy9RS", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103638", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103638.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103638.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103638", + "number": 103638, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:46:27Z", + "updated_at": "2025-11-06T03:46:27Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "e6734ff540fbea5ffd117c972e617e1236c1e806", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103638/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103638/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103638/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/73344fd47fd890ceb384e19370f5bbc21f5b5f2f", + "head": { + "label": "tensorflow:exported_pr_828719547", + "ref": "exported_pr_828719547", + "sha": "73344fd47fd890ceb384e19370f5bbc21f5b5f2f", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103638" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103638" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103638" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103638/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103638/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103638/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/73344fd47fd890ceb384e19370f5bbc21f5b5f2f" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103637", + "id": 2982922604, + "node_id": "PR_kwDOArmXAs6xy8ls", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103637", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103637.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103637.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103637", + "number": 103637, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:45:08Z", + "updated_at": "2025-11-06T03:45:08Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "aa676e2d898a7a89678a1fa3769bf6a0c2001f1f", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103637/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103637/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103637/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/66e9317a497876354ede27cdea03514e9584c2e5", + "head": { + "label": "tensorflow:exported_pr_828720030", + "ref": "exported_pr_828720030", + "sha": "66e9317a497876354ede27cdea03514e9584c2e5", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103637" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103637" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103637" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103637/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103637/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103637/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/66e9317a497876354ede27cdea03514e9584c2e5" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103636", + "id": 2982920943, + "node_id": "PR_kwDOArmXAs6xy8Lv", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103636", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103636.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103636.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103636", + "number": 103636, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:44:13Z", + "updated_at": "2025-11-06T03:44:13Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "4e717318944be3ac8920b30562d77ae5deb757e9", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103636/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103636/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103636/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/6d63071765a890f3d1766103147c4986167c5ade", + "head": { + "label": "tensorflow:exported_pr_828717199", + "ref": "exported_pr_828717199", + "sha": "6d63071765a890f3d1766103147c4986167c5ade", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103636" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103636" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103636" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103636/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103636/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103636/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/6d63071765a890f3d1766103147c4986167c5ade" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103635", + "id": 2982913813, + "node_id": "PR_kwDOArmXAs6xy6cV", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103635", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103635.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103635.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103635", + "number": 103635, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:40:58Z", + "updated_at": "2025-11-06T03:40:58Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "cd4cb9f051750210425e299987551ec5821cb331", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103635/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103635/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103635/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/c07ed69548565d3966fac87a8a9f19d53ce765fe", + "head": { + "label": "tensorflow:exported_pr_828719526", + "ref": "exported_pr_828719526", + "sha": "c07ed69548565d3966fac87a8a9f19d53ce765fe", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103635" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103635" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103635" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103635/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103635/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103635/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/c07ed69548565d3966fac87a8a9f19d53ce765fe" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103634", + "id": 2982908417, + "node_id": "PR_kwDOArmXAs6xy5IB", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103634", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103634.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103634.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103634", + "number": 103634, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:38:49Z", + "updated_at": "2025-11-06T03:38:49Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "b3ae927ec3dbac937987653cd14e6476a77a0e98", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103634/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103634/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103634/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/37978fc9e92f89965732b535e2d163aa246a715b", + "head": { + "label": "tensorflow:exported_pr_828716634", + "ref": "exported_pr_828716634", + "sha": "37978fc9e92f89965732b535e2d163aa246a715b", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103634" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103634" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103634" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103634/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103634/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103634/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/37978fc9e92f89965732b535e2d163aa246a715b" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + }, + { + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103633", + "id": 2982867107, + "node_id": "PR_kwDOArmXAs6xyvCj", + "html_url": "https://github.com/tensorflow/tensorflow/pull/103633", + "diff_url": "https://github.com/tensorflow/tensorflow/pull/103633.diff", + "patch_url": "https://github.com/tensorflow/tensorflow/pull/103633.patch", + "issue_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103633", + "number": 103633, + "state": "open", + "locked": false, + "title": "Automated Code Change", + "user": { + "login": "copybara-service[bot]", + "id": 56741989, + "node_id": "MDM6Qm90NTY3NDE5ODk=", + "avatar_url": "https://avatars.githubusercontent.com/in/44061?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/copybara-service%5Bbot%5D", + "html_url": "https://github.com/apps/copybara-service", + "followers_url": "https://api.github.com/users/copybara-service%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/copybara-service%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/copybara-service%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/copybara-service%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/copybara-service%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/copybara-service%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/copybara-service%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/copybara-service%5Bbot%5D/received_events", + "type": "Bot", + "user_view_type": "public", + "site_admin": false + }, + "body": "Automated Code Change\n", + "created_at": "2025-11-06T03:23:25Z", + "updated_at": "2025-11-06T03:23:25Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "fcaf21c1bc88308859975109d727b1419eeea001", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": true, + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103633/commits", + "review_comments_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103633/comments", + "review_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/103633/comments", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/29f54d36d3b6ab0b610ef45590a9b40d186ea612", + "head": { + "label": "tensorflow:exported_pr_828708053", + "ref": "exported_pr_828708053", + "sha": "29f54d36d3b6ab0b610ef45590a9b40d186ea612", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "base": { + "label": "tensorflow:master", + "ref": "master", + "sha": "7e6a5445f545192b4050eb6a33fbedb213ea2665", + "user": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "repo": { + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103633" + }, + "html": { + "href": "https://github.com/tensorflow/tensorflow/pull/103633" + }, + "issue": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103633" + }, + "comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/issues/103633/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103633/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/pulls/103633/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/tensorflow/tensorflow/statuses/29f54d36d3b6ab0b610ef45590a9b40d186ea612" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null + } +] \ No newline at end of file diff --git a/github/pulls_tensorflow.metadata.json b/github/pulls_tensorflow.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..029510e81783a5c96c24a4c20ce9bd53eaf73b72 --- /dev/null +++ b/github/pulls_tensorflow.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_pulls_tensorflow", + "source": "github", + "collected_date": "2025-11-05T22:50:49.204695", + "size_bytes": 198542, + "description": "TensorFlow pull requests", + "url": "https://api.github.com/repos/tensorflow/tensorflow/pulls?per_page=10&state=open" +} \ No newline at end of file diff --git a/github/releases_nodejs.json b/github/releases_nodejs.json new file mode 100644 index 0000000000000000000000000000000000000000..4f91efa4873be961bed9644810d3eb8d01066ffe --- /dev/null +++ b/github/releases_nodejs.json @@ -0,0 +1,543 @@ +[ + { + "url": "https://api.github.com/repos/nodejs/node/releases/257943424", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/257943424/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/257943424/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v25.1.0", + "id": 257943424, + "author": { + "login": "aduh95", + "id": 14309773, + "node_id": "MDQ6VXNlcjE0MzA5Nzcz", + "avatar_url": "https://avatars.githubusercontent.com/u/14309773?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aduh95", + "html_url": "https://github.com/aduh95", + "followers_url": "https://api.github.com/users/aduh95/followers", + "following_url": "https://api.github.com/users/aduh95/following{/other_user}", + "gists_url": "https://api.github.com/users/aduh95/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aduh95/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aduh95/subscriptions", + "organizations_url": "https://api.github.com/users/aduh95/orgs", + "repos_url": "https://api.github.com/users/aduh95/repos", + "events_url": "https://api.github.com/users/aduh95/events{/privacy}", + "received_events_url": "https://api.github.com/users/aduh95/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84PX-eA", + "tag_name": "v25.1.0", + "target_commitish": "main", + "name": "2025-10-28, Version 25.1.0 (Current), @aduh95", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-28T19:01:49Z", + "updated_at": "2025-10-28T19:20:08Z", + "published_at": "2025-10-28T19:20:08Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v25.1.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v25.1.0", + "body": "\n\n\n### Notable Changes\n\n* \\[[`4395fe14b9`](https://github.com/nodejs/node/commit/4395fe14b9)] - **(SEMVER-MINOR)** **http**: add optimizeEmptyRequests server option (Rafael Gonzaga) [#59778](https://github.com/nodejs/node/pull/59778)\n* \\[[`2e55c6ad04`](https://github.com/nodejs/node/commit/2e55c6ad04)] - **(SEMVER-MINOR)** **sqlite**: allow setting defensive flag (Bart Louwers) [#60217](https://github.com/nodejs/node/pull/60217)\n* \\[[`f437204491`](https://github.com/nodejs/node/commit/f437204491)] - **(SEMVER-MINOR)** **src**: add watch config namespace (Marco Ippolito) [#60178](https://github.com/nodejs/node/pull/60178)\n\n### Commits\n\n* \\[[`bb27766bd5`](https://github.com/nodejs/node/commit/bb27766bd5)] - **benchmark**: improve cpu.sh for safety and usability (Nam Yooseong) [#60162](https://github.com/nodejs/node/pull/60162)\n* \\[[`e600711c20`](https://github.com/nodejs/node/commit/e600711c20)] - **benchmark**: add benchmark for leaf source text modules (Joyee Cheung) [#60205](https://github.com/nodejs/node/pull/60205)\n* \\[[`1bbcdf9039`](https://github.com/nodejs/node/commit/1bbcdf9039)] - **benchmark**: add vm.SourceTextModule benchmark (Joyee Cheung) [#59396](https://github.com/nodejs/node/pull/59396)\n* \\[[`22fa6bd28b`](https://github.com/nodejs/node/commit/22fa6bd28b)] - **build**: ibmi follow aix visibility (SRAVANI GUNDEPALLI) [#60360](https://github.com/nodejs/node/pull/60360)\n* \\[[`931028400e`](https://github.com/nodejs/node/commit/931028400e)] - **build**: use call command when calling python configure (Jacob Nichols) [#60098](https://github.com/nodejs/node/pull/60098)\n* \\[[`17fde3f3d1`](https://github.com/nodejs/node/commit/17fde3f3d1)] - **build**: build v8 with -fvisibility=hidden -fvisibility-inlines-hidden (Joyee Cheung) [#56290](https://github.com/nodejs/node/pull/56290)\n* \\[[`04cc7aae5e`](https://github.com/nodejs/node/commit/04cc7aae5e)] - **build**: remove V8\\_COMPRESS\\_POINTERS\\_IN\\_ISOLATE\\_CAGE defs (Joyee Cheung) [#60296](https://github.com/nodejs/node/pull/60296)\n* \\[[`8a2053060d`](https://github.com/nodejs/node/commit/8a2053060d)] - **crypto**: update root certificates to NSS 3.116 (Node.js GitHub Bot) [#59956](https://github.com/nodejs/node/pull/59956)\n* \\[[`fe91c0f755`](https://github.com/nodejs/node/commit/fe91c0f755)] - **deps**: update simdjson to 4.0.7 (Node.js GitHub Bot) [#59883](https://github.com/nodejs/node/pull/59883)\n* \\[[`aacfc0d212`](https://github.com/nodejs/node/commit/aacfc0d212)] - **deps**: update corepack to 0.34.1 (Node.js GitHub Bot) [#60314](https://github.com/nodejs/node/pull/60314)\n* \\[[`8596891a71`](https://github.com/nodejs/node/commit/8596891a71)] - **deps**: update inspector\\_protocol to af7f5a8173fdbc29f0835ec94395932e328b (Node.js GitHub Bot) [#60312](https://github.com/nodejs/node/pull/60312)\n* \\[[`21bcd0eb2f`](https://github.com/nodejs/node/commit/21bcd0eb2f)] - **deps**: V8: cherry-pick 3d0f462a17ff (Joyee Cheung) [#59396](https://github.com/nodejs/node/pull/59396)\n* \\[[`673558501c`](https://github.com/nodejs/node/commit/673558501c)] - **deps**: update googletest to 279f847 (Node.js GitHub Bot) [#60219](https://github.com/nodejs/node/pull/60219)\n* \\[[`425a1879b1`](https://github.com/nodejs/node/commit/425a1879b1)] - **doc**: mention more codemods in `deprecations.md` (Augustin Mauroy) [#60243](https://github.com/nodejs/node/pull/60243)\n* \\[[`563e1317f3`](https://github.com/nodejs/node/commit/563e1317f3)] - **doc**: remove unnecessary statement of web storage (Deokjin Kim) [#60363](https://github.com/nodejs/node/pull/60363)\n* \\[[`064c8c5cfd`](https://github.com/nodejs/node/commit/064c8c5cfd)] - **doc**: add missing CAA type to dns.resolveAny() & dnsPromises.resolveAny() (Jimmy Leung) [#58899](https://github.com/nodejs/node/pull/58899)\n* \\[[`99e357af35`](https://github.com/nodejs/node/commit/99e357af35)] - **doc**: use `any` for `worker_threads.Worker` 'error' event argument `err` (Jonas Geiler) [#60300](https://github.com/nodejs/node/pull/60300)\n* \\[[`8ccff0d934`](https://github.com/nodejs/node/commit/8ccff0d934)] - **doc**: update decorator documentation to reflect actual policy (Muhammad Salman Aziz) [#60288](https://github.com/nodejs/node/pull/60288)\n* \\[[`bac70c6ef3`](https://github.com/nodejs/node/commit/bac70c6ef3)] - **doc**: document wildcard supported by tools/test.py (Joyee Cheung) [#60265](https://github.com/nodejs/node/pull/60265)\n* \\[[`8492bc6a88`](https://github.com/nodejs/node/commit/8492bc6a88)] - **doc**: add --heap-snapshot-on-oom to useful v8 flag (jakecastelli) [#60260](https://github.com/nodejs/node/pull/60260)\n* \\[[`0f0d3c0e47`](https://github.com/nodejs/node/commit/0f0d3c0e47)] - **doc**: fix `blob.bytes()` heading level (XTY) [#60252](https://github.com/nodejs/node/pull/60252)\n* \\[[`8c8525cf93`](https://github.com/nodejs/node/commit/8c8525cf93)] - **doc**: fix not working code example in vm docs (Artur Gawlik) [#60224](https://github.com/nodejs/node/pull/60224)\n* \\[[`8a6de3866c`](https://github.com/nodejs/node/commit/8a6de3866c)] - **doc, assert**: correct order of changes entries (Gerhard Stöbich) [#60304](https://github.com/nodejs/node/pull/60304)\n* \\[[`6bacb6555a`](https://github.com/nodejs/node/commit/6bacb6555a)] - **doc, module**: change async customization hooks to experimental (Gerhard Stöbich) [#60302](https://github.com/nodejs/node/pull/60302)\n* \\[[`6f3b16df16`](https://github.com/nodejs/node/commit/6f3b16df16)] - **esm**: use index-based resolution callbacks (Joyee Cheung) [#59396](https://github.com/nodejs/node/pull/59396)\n* \\[[`95644a432c`](https://github.com/nodejs/node/commit/95644a432c)] - **http**: lazy allocate cookies array (Robert Nagy) [#59734](https://github.com/nodejs/node/pull/59734)\n* \\[[`4395fe14b9`](https://github.com/nodejs/node/commit/4395fe14b9)] - **(SEMVER-MINOR)** **http**: add optimizeEmptyRequests server option (Rafael Gonzaga) [#59778](https://github.com/nodejs/node/pull/59778)\n* \\[[`f1aa1eaaf5`](https://github.com/nodejs/node/commit/f1aa1eaaf5)] - **inspector**: add network payload buffer size limits (Chengzhong Wu) [#60236](https://github.com/nodejs/node/pull/60236)\n* \\[[`64fc625bf9`](https://github.com/nodejs/node/commit/64fc625bf9)] - **inspector**: support handshake response for websocket inspection (Shima Ryuhei) [#60225](https://github.com/nodejs/node/pull/60225)\n* \\[[`0ecbb806a8`](https://github.com/nodejs/node/commit/0ecbb806a8)] - **lib**: fix typo in createBlobReaderStream (SeokHun) [#60132](https://github.com/nodejs/node/pull/60132)\n* \\[[`ffec5927fd`](https://github.com/nodejs/node/commit/ffec5927fd)] - **meta**: fix typo in test-shared workflow name (Ronit Sabhaya) [#60321](https://github.com/nodejs/node/pull/60321)\n* \\[[`a02897e157`](https://github.com/nodejs/node/commit/a02897e157)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#60325](https://github.com/nodejs/node/pull/60325)\n* \\[[`59223a7831`](https://github.com/nodejs/node/commit/59223a7831)] - **meta**: loop userland-migrations in deprecations (Chengzhong Wu) [#60299](https://github.com/nodejs/node/pull/60299)\n* \\[[`2d48d17696`](https://github.com/nodejs/node/commit/2d48d17696)] - **module**: refactor and clarify async loader hook customizations (Joyee Cheung) [#60278](https://github.com/nodejs/node/pull/60278)\n* \\[[`be1b84fd93`](https://github.com/nodejs/node/commit/be1b84fd93)] - **module**: handle null source from async loader hooks in sync hooks (Joyee Cheung) [#59929](https://github.com/nodejs/node/pull/59929)\n* \\[[`063fbd87d3`](https://github.com/nodejs/node/commit/063fbd87d3)] - **msi**: fix WiX warnings (Stefan Stojanovic) [#60251](https://github.com/nodejs/node/pull/60251)\n* \\[[`2e55c6ad04`](https://github.com/nodejs/node/commit/2e55c6ad04)] - **(SEMVER-MINOR)** **sqlite**: allow setting defensive flag (Bart Louwers) [#60217](https://github.com/nodejs/node/pull/60217)\n* \\[[`dc93d6988a`](https://github.com/nodejs/node/commit/dc93d6988a)] - **src**: fix timing of snapshot serialize callback (Joyee Cheung) [#60434](https://github.com/nodejs/node/pull/60434)\n* \\[[`267e1b3817`](https://github.com/nodejs/node/commit/267e1b3817)] - **src**: add COUNT\\_GENERIC\\_USAGE utility for tests (Joyee Cheung) [#60434](https://github.com/nodejs/node/pull/60434)\n* \\[[`4a5d7a4c2a`](https://github.com/nodejs/node/commit/4a5d7a4c2a)] - **src**: conditionally disable source phase imports by default (Shelley Vohr) [#60364](https://github.com/nodejs/node/pull/60364)\n* \\[[`f437204491`](https://github.com/nodejs/node/commit/f437204491)] - **(SEMVER-MINOR)** **src**: add watch config namespace (Marco Ippolito) [#60178](https://github.com/nodejs/node/pull/60178)\n* \\[[`36837fa0f9`](https://github.com/nodejs/node/commit/36837fa0f9)] - **src**: use cached primordials\\_string (Sohyeon Kim) [#60255](https://github.com/nodejs/node/pull/60255)\n* \\[[`df8396ad37`](https://github.com/nodejs/node/commit/df8396ad37)] - **src**: replace Environment::GetCurrent with args.GetIsolate (Sohyeon Kim) [#60256](https://github.com/nodejs/node/pull/60256)\n* \\[[`5dd670b2b9`](https://github.com/nodejs/node/commit/5dd670b2b9)] - **src**: initial enablement of IsolateGroups (James M Snell) [#60254](https://github.com/nodejs/node/pull/60254)\n* \\[[`afdb362933`](https://github.com/nodejs/node/commit/afdb362933)] - **src**: use `Utf8Value` and `TwoByteValue` instead of V8 helpers (Anna Henningsen) [#60244](https://github.com/nodejs/node/pull/60244)\n* \\[[`a40e533e72`](https://github.com/nodejs/node/commit/a40e533e72)] - **src**: add a default branch for module phase (Chengzhong Wu) [#60261](https://github.com/nodejs/node/pull/60261)\n* \\[[`42729f07ee`](https://github.com/nodejs/node/commit/42729f07ee)] - **src**: stop using deprecated v8::Context::GetIsolate (Michaël Zasso) [#60223](https://github.com/nodejs/node/pull/60223)\n* \\[[`7a6542c205`](https://github.com/nodejs/node/commit/7a6542c205)] - **test**: skip failing test on macOS 15.7+ (Antoine du Hamel) [#60419](https://github.com/nodejs/node/pull/60419)\n* \\[[`29a5855a4f`](https://github.com/nodejs/node/commit/29a5855a4f)] - **test**: ensure assertions are reachable in `test/addons` (Antoine du Hamel) [#60142](https://github.com/nodejs/node/pull/60142)\n* \\[[`12773d19c4`](https://github.com/nodejs/node/commit/12773d19c4)] - **test**: increase debugger waitFor timeout on macOS (Chengzhong Wu) [#60367](https://github.com/nodejs/node/pull/60367)\n* \\[[`0b38de3e9e`](https://github.com/nodejs/node/commit/0b38de3e9e)] - **test**: put helper in test-runner-output into common (Joyee Cheung) [#60330](https://github.com/nodejs/node/pull/60330)\n* \\[[`6de2407c44`](https://github.com/nodejs/node/commit/6de2407c44)] - **test**: fix small compile warning in test\\_network\\_requests\\_buffer.cc (xiaocainiao633) [#60281](https://github.com/nodejs/node/pull/60281)\n* \\[[`4b23ac8613`](https://github.com/nodejs/node/commit/4b23ac8613)] - **test**: fix status when compiled without inspector (Antoine du Hamel) [#60289](https://github.com/nodejs/node/pull/60289)\n* \\[[`a07f32e326`](https://github.com/nodejs/node/commit/a07f32e326)] - **test**: split test-runner-watch-mode-kill-signal (Joyee Cheung) [#60298](https://github.com/nodejs/node/pull/60298)\n* \\[[`30451d32d7`](https://github.com/nodejs/node/commit/30451d32d7)] - **test**: fix incorrect calculation in test-perf-hooks.js (Joyee Cheung) [#60271](https://github.com/nodejs/node/pull/60271)\n* \\[[`e3c3b48f1c`](https://github.com/nodejs/node/commit/e3c3b48f1c)] - **test**: ignore EPIPE errors in https proxy invalid URL test (Joyee Cheung) [#60269](https://github.com/nodejs/node/pull/60269)\n* \\[[`405a9c4c5f`](https://github.com/nodejs/node/commit/405a9c4c5f)] - **test**: parallelize test-without-async-context-frame correctly (Joyee Cheung) [#60273](https://github.com/nodejs/node/pull/60273)\n* \\[[`ffeebebc71`](https://github.com/nodejs/node/commit/ffeebebc71)] - **test**: make test-worker-prof more tolerant (Joyee Cheung) [#60272](https://github.com/nodejs/node/pull/60272)\n* \\[[`26b01bf170`](https://github.com/nodejs/node/commit/26b01bf170)] - **test**: skip sea tests on x64 macOS (Joyee Cheung) [#60250](https://github.com/nodejs/node/pull/60250)\n* \\[[`8caae1a05b`](https://github.com/nodejs/node/commit/8caae1a05b)] - **test**: move sea tests into test/sea (Joyee Cheung) [#60250](https://github.com/nodejs/node/pull/60250)\n* \\[[`3d183e3e9f`](https://github.com/nodejs/node/commit/3d183e3e9f)] - **test,crypto**: fix conditional SHA3-\\* skip on BoringSSL (Filip Skokan) [#60379](https://github.com/nodejs/node/pull/60379)\n* \\[[`e83dbcba94`](https://github.com/nodejs/node/commit/e83dbcba94)] - **test,crypto**: sha3 algorithms aren't supported with BoringSSL (Shelley Vohr) [#60374](https://github.com/nodejs/node/pull/60374)\n* \\[[`3d89331496`](https://github.com/nodejs/node/commit/3d89331496)] - **test\\_runner**: use module.registerHooks in module mocks (Joyee Cheung) [#60326](https://github.com/nodejs/node/pull/60326)\n* \\[[`377e8ce85a`](https://github.com/nodejs/node/commit/377e8ce85a)] - **tls**: avoid external memory leak on invalid protocol versions (Shelley Vohr) [#60390](https://github.com/nodejs/node/pull/60390)\n* \\[[`ae4858c1f6`](https://github.com/nodejs/node/commit/ae4858c1f6)] - **tools**: add an option to generate lighter archives (Antoine du Hamel) [#60294](https://github.com/nodejs/node/pull/60294)\n* \\[[`cb615b1a2e`](https://github.com/nodejs/node/commit/cb615b1a2e)] - **tools**: skip test-shared workflow for draft PRs (Michaël Zasso) [#60365](https://github.com/nodejs/node/pull/60365)\n* \\[[`03b034731e`](https://github.com/nodejs/node/commit/03b034731e)] - **tools**: disable inspector on macOS-shared to reduce flakiness (Antoine du Hamel) [#60320](https://github.com/nodejs/node/pull/60320)\n* \\[[`f402b4e1d1`](https://github.com/nodejs/node/commit/f402b4e1d1)] - **tools**: show diff alongside the error in Nix linter (Antoine du Hamel) [#60301](https://github.com/nodejs/node/pull/60301)\n* \\[[`5d5c8483fb`](https://github.com/nodejs/node/commit/5d5c8483fb)] - **tools**: run CI with shared libs on GHA (Antoine du Hamel) [#60121](https://github.com/nodejs/node/pull/60121)\n* \\[[`e8fdd8d2e8`](https://github.com/nodejs/node/commit/e8fdd8d2e8)] - **tools**: update gyp-next to 0.20.5 (Node.js GitHub Bot) [#60313](https://github.com/nodejs/node/pull/60313)\n* \\[[`6e8b029a21`](https://github.com/nodejs/node/commit/6e8b029a21)] - **tools**: limit inspector protocol PR title length (Chengzhong Wu) [#60324](https://github.com/nodejs/node/pull/60324)\n* \\[[`a5073086c6`](https://github.com/nodejs/node/commit/a5073086c6)] - **tools**: fix inspector\\_protocol updater (Chengzhong Wu) [#60277](https://github.com/nodejs/node/pull/60277)\n* \\[[`47fa765bff`](https://github.com/nodejs/node/commit/47fa765bff)] - **tools**: optimize wildcard execution in tools/test.py (Joyee Cheung) [#60266](https://github.com/nodejs/node/pull/60266)\n* \\[[`11ebb0447d`](https://github.com/nodejs/node/commit/11ebb0447d)] - **tools**: add C++ lint rule to avoid using `String::Utf8Value` (Anna Henningsen) [#60244](https://github.com/nodejs/node/pull/60244)\n* \\[[`14f3189670`](https://github.com/nodejs/node/commit/14f3189670)] - **tools**: add inspector\\_protocol updater (Chengzhong Wu) [#60245](https://github.com/nodejs/node/pull/60245)\n* \\[[`ef4c596fc6`](https://github.com/nodejs/node/commit/ef4c596fc6)] - **typings**: add missing properties and method in Worker (Woohyun Sung) [#60257](https://github.com/nodejs/node/pull/60257)\n* \\[[`09ae6fc065`](https://github.com/nodejs/node/commit/09ae6fc065)] - **typings**: add missing properties in HTTPParser (Woohyun Sung) [#60257](https://github.com/nodejs/node/pull/60257)\n* \\[[`9ecaf41f8e`](https://github.com/nodejs/node/commit/9ecaf41f8e)] - **typings**: delete undefined property in ConfigBinding (Woohyun Sung) [#60257](https://github.com/nodejs/node/pull/60257)\n* \\[[`4a86016e86`](https://github.com/nodejs/node/commit/4a86016e86)] - **util**: use more defensive code when inspecting error objects (Antoine du Hamel) [#60139](https://github.com/nodejs/node/pull/60139)\n* \\[[`9e6d6cec59`](https://github.com/nodejs/node/commit/9e6d6cec59)] - **util**: mark special properties when inspecting them (Ruben Bridgewater) [#60131](https://github.com/nodejs/node/pull/60131)\n* \\[[`79b2387fd9`](https://github.com/nodejs/node/commit/79b2387fd9)] - **vm**: make vm.Module.evaluate() conditionally synchronous (Joyee Cheung) [#60205](https://github.com/nodejs/node/pull/60205)\n* \\[[`e5559f3be3`](https://github.com/nodejs/node/commit/e5559f3be3)] - **win**: upgrade Visual Studio workload from 2019 to 2022 (Jiawen Geng) [#60318](https://github.com/nodejs/node/pull/60318)\n\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/257943424/reactions", + "total_count": 36, + "+1": 9, + "-1": 0, + "laugh": 0, + "hooray": 11, + "confused": 0, + "heart": 8, + "rocket": 7, + "eyes": 1 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/257914143", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/257914143/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/257914143/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v24.11.0", + "id": 257914143, + "author": { + "login": "richardlau", + "id": 5445507, + "node_id": "MDQ6VXNlcjU0NDU1MDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/5445507?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/richardlau", + "html_url": "https://github.com/richardlau", + "followers_url": "https://api.github.com/users/richardlau/followers", + "following_url": "https://api.github.com/users/richardlau/following{/other_user}", + "gists_url": "https://api.github.com/users/richardlau/gists{/gist_id}", + "starred_url": "https://api.github.com/users/richardlau/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/richardlau/subscriptions", + "organizations_url": "https://api.github.com/users/richardlau/orgs", + "repos_url": "https://api.github.com/users/richardlau/repos", + "events_url": "https://api.github.com/users/richardlau/events{/privacy}", + "received_events_url": "https://api.github.com/users/richardlau/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84PX3Uf", + "tag_name": "v24.11.0", + "target_commitish": "main", + "name": "2025-10-28, Version 24.11.0 'Krypton' (LTS), @richardlau", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-28T16:41:50Z", + "updated_at": "2025-10-30T17:13:34Z", + "published_at": "2025-10-28T17:45:20Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v24.11.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v24.11.0", + "body": "### Notable Changes\r\n\r\nThis release marks the transition of Node.js 24.x into Long Term Support (LTS)\r\nwith the codename 'Krypton'. It will continue to receive updates through to\r\nthe end of April 2028.\r\n\r\nOther than updating metadata, such as the `process.release` object, to reflect\r\nthat the release is LTS, no further changes from Node.js 24.10.0 are included.\r\n\r\n### Known issue\r\n\r\nAn issue has been identified in the Node.js 24.x line with `Buffer.allocUnsafe`\r\nunintentionally returning zero-filled buffers. This API is\r\n[documented to return uninitialized memory](https://nodejs.org/docs/latest-v24.x/api/buffer.html#static-method-bufferallocunsafesize).\r\nThe documented behavior will be restored in the next Node.js 24.x LTS release to bring\r\nit back in line with previous releases. For more information, see\r\n[#60423](https://github.com/nodejs/node/issues/60423).", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/257914143/reactions", + "total_count": 89, + "+1": 25, + "-1": 0, + "laugh": 0, + "hooray": 30, + "confused": 0, + "heart": 13, + "rocket": 20, + "eyes": 1 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/257939269", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/257939269/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/257939269/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v22.21.1", + "id": 257939269, + "author": { + "login": "aduh95", + "id": 14309773, + "node_id": "MDQ6VXNlcjE0MzA5Nzcz", + "avatar_url": "https://avatars.githubusercontent.com/u/14309773?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aduh95", + "html_url": "https://github.com/aduh95", + "followers_url": "https://api.github.com/users/aduh95/followers", + "following_url": "https://api.github.com/users/aduh95/following{/other_user}", + "gists_url": "https://api.github.com/users/aduh95/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aduh95/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aduh95/subscriptions", + "organizations_url": "https://api.github.com/users/aduh95/orgs", + "repos_url": "https://api.github.com/users/aduh95/repos", + "events_url": "https://api.github.com/users/aduh95/events{/privacy}", + "received_events_url": "https://api.github.com/users/aduh95/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84PX9dF", + "tag_name": "v22.21.1", + "target_commitish": "main", + "name": "2025-10-28, Version 22.21.1 'Jod' (LTS), @aduh95", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-28T18:58:27Z", + "updated_at": "2025-10-28T19:09:56Z", + "published_at": "2025-10-28T19:09:56Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v22.21.1", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v22.21.1", + "body": "\n\n\n### Commits\n\n* \\[[`af33e8e668`](https://github.com/nodejs/node/commit/af33e8e668)] - **benchmark**: remove unused variable from util/priority-queue (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872)\n* \\[[`6764ce8756`](https://github.com/nodejs/node/commit/6764ce8756)] - **benchmark**: update count to n in permission startup (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872)\n* \\[[`4e8d99f0dc`](https://github.com/nodejs/node/commit/4e8d99f0dc)] - **benchmark**: update num to n in dgram offset-length (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872)\n* \\[[`af0a8ba7f8`](https://github.com/nodejs/node/commit/af0a8ba7f8)] - **benchmark**: adjust dgram offset-length len values (Bruno Rodrigues) [#59708](https://github.com/nodejs/node/pull/59708)\n* \\[[`78efd1be4a`](https://github.com/nodejs/node/commit/78efd1be4a)] - **benchmark**: update num to n in dgram offset-length (Bruno Rodrigues) [#59708](https://github.com/nodejs/node/pull/59708)\n* \\[[`df72dc96e9`](https://github.com/nodejs/node/commit/df72dc96e9)] - **console,util**: improve array inspection performance (Ruben Bridgewater) [#60037](https://github.com/nodejs/node/pull/60037)\n* \\[[`ef67d09f50`](https://github.com/nodejs/node/commit/ef67d09f50)] - **http**: improve writeEarlyHints by avoiding for-of loop (Haram Jeong) [#59958](https://github.com/nodejs/node/pull/59958)\n* \\[[`23468fd76b`](https://github.com/nodejs/node/commit/23468fd76b)] - **http2**: fix allowHttp1+Upgrade, broken by shouldUpgradeCallback (Tim Perry) [#59924](https://github.com/nodejs/node/pull/59924)\n* \\[[`56abc4ac76`](https://github.com/nodejs/node/commit/56abc4ac76)] - **lib**: optimize priority queue (Gürgün Dayıoğlu) [#60039](https://github.com/nodejs/node/pull/60039)\n* \\[[`ea5cfd98c5`](https://github.com/nodejs/node/commit/ea5cfd98c5)] - **lib**: implement passive listener behavior per spec (BCD1me) [#59995](https://github.com/nodejs/node/pull/59995)\n* \\[[`c2dd6eed2f`](https://github.com/nodejs/node/commit/c2dd6eed2f)] - **process**: fix wrong asyncContext under unhandled-rejections=strict (Shima Ryuhei) [#60103](https://github.com/nodejs/node/pull/60103)\n* \\[[`81a3055710`](https://github.com/nodejs/node/commit/81a3055710)] - **process**: fix default `env` for `process.execve` (Richard Lau) [#60029](https://github.com/nodejs/node/pull/60029)\n* \\[[`fe492c7ace`](https://github.com/nodejs/node/commit/fe492c7ace)] - **process**: fix hrtime fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\n* \\[[`76b4cab8fc`](https://github.com/nodejs/node/commit/76b4cab8fc)] - **src**: bring permissions macros in line with general C/C++ standards (Anna Henningsen) [#60053](https://github.com/nodejs/node/pull/60053)\n* \\[[`21970970c7`](https://github.com/nodejs/node/commit/21970970c7)] - **src**: remove `AnalyzeTemporaryDtors` option from .clang-tidy (iknoom) [#60008](https://github.com/nodejs/node/pull/60008)\n* \\[[`609c063e81`](https://github.com/nodejs/node/commit/609c063e81)] - **src**: remove unused variables from report (Moonki Choi) [#60047](https://github.com/nodejs/node/pull/60047)\n* \\[[`987841a773`](https://github.com/nodejs/node/commit/987841a773)] - **src**: avoid unnecessary string allocations in SPrintF impl (Anna Henningsen) [#60052](https://github.com/nodejs/node/pull/60052)\n* \\[[`6e386c0632`](https://github.com/nodejs/node/commit/6e386c0632)] - **src**: make ToLower/ToUpper input args more flexible (Anna Henningsen) [#60052](https://github.com/nodejs/node/pull/60052)\n* \\[[`c3be1226c7`](https://github.com/nodejs/node/commit/c3be1226c7)] - **src**: allow `std::string_view` arguments to `SPrintF()` and friends (Anna Henningsen) [#60058](https://github.com/nodejs/node/pull/60058)\n* \\[[`764d35647d`](https://github.com/nodejs/node/commit/764d35647d)] - **src**: remove unnecessary `std::string` error messages (Anna Henningsen) [#60057](https://github.com/nodejs/node/pull/60057)\n* \\[[`1289ef89ec`](https://github.com/nodejs/node/commit/1289ef89ec)] - **src**: remove unnecessary shadowed functions on Utf8Value & BufferValue (Anna Henningsen) [#60056](https://github.com/nodejs/node/pull/60056)\n* \\[[`d1fb8a538d`](https://github.com/nodejs/node/commit/d1fb8a538d)] - **src**: avoid unnecessary string -> `char*` -> string round trips (Anna Henningsen) [#60055](https://github.com/nodejs/node/pull/60055)\n* \\[[`54b439fb5a`](https://github.com/nodejs/node/commit/54b439fb5a)] - **src**: fill `options_args`, `options_env` after vectors are finalized (iknoom) [#59945](https://github.com/nodejs/node/pull/59945)\n* \\[[`c7c597e2ca`](https://github.com/nodejs/node/commit/c7c597e2ca)] - **src**: use RAII for uv\\_process\\_options\\_t (iknoom) [#59945](https://github.com/nodejs/node/pull/59945)\n* \\[[`b928ea9716`](https://github.com/nodejs/node/commit/b928ea9716)] - **test**: ensure that the message event is fired (Luigi Pinca) [#59952](https://github.com/nodejs/node/pull/59952)\n* \\[[`e4b95a5158`](https://github.com/nodejs/node/commit/e4b95a5158)] - **test**: replace diagnostics\\_channel stackframe in output snapshots (Chengzhong Wu) [#60024](https://github.com/nodejs/node/pull/60024)\n* \\[[`4206406694`](https://github.com/nodejs/node/commit/4206406694)] - **test**: mark test-web-locks skip on IBM i (SRAVANI GUNDEPALLI) [#59996](https://github.com/nodejs/node/pull/59996)\n* \\[[`26394cd5bf`](https://github.com/nodejs/node/commit/26394cd5bf)] - **test**: expand tls-check-server-identity coverage (Diango Gavidia) [#60002](https://github.com/nodejs/node/pull/60002)\n* \\[[`b58df47995`](https://github.com/nodejs/node/commit/b58df47995)] - **test**: fix typo of test-benchmark-readline.js (Deokjin Kim) [#59993](https://github.com/nodejs/node/pull/59993)\n* \\[[`af3a59dba8`](https://github.com/nodejs/node/commit/af3a59dba8)] - **test**: verify tracing channel doesn't swallow unhandledRejection (Gerhard Stöbich) [#59974](https://github.com/nodejs/node/pull/59974)\n* \\[[`cee362242b`](https://github.com/nodejs/node/commit/cee362242b)] - **timers**: fix binding fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\n* \\[[`40fea57fdd`](https://github.com/nodejs/node/commit/40fea57fdd)] - **tools**: add message on auto-fixing js lint issues in gh workflow (Dario Piotrowicz) [#59128](https://github.com/nodejs/node/pull/59128)\n* \\[[`aac90d351b`](https://github.com/nodejs/node/commit/aac90d351b)] - **tools**: verify signatures when updating nghttp\\* (Antoine du Hamel) [#60113](https://github.com/nodejs/node/pull/60113)\n* \\[[`9fae03c7d9`](https://github.com/nodejs/node/commit/9fae03c7d9)] - **tools**: use dependabot cooldown and move tools/doc (Rafael Gonzaga) [#59978](https://github.com/nodejs/node/pull/59978)\n* \\[[`81548abdf6`](https://github.com/nodejs/node/commit/81548abdf6)] - **wasi**: fix WasiFunction fast call signature (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\n\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/257939269/reactions", + "total_count": 15, + "+1": 3, + "-1": 0, + "laugh": 0, + "hooray": 6, + "confused": 0, + "heart": 4, + "rocket": 1, + "eyes": 1 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/255866921", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/255866921/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/255866921/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v22.21.0", + "id": 255866921, + "author": { + "login": "aduh95", + "id": 14309773, + "node_id": "MDQ6VXNlcjE0MzA5Nzcz", + "avatar_url": "https://avatars.githubusercontent.com/u/14309773?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/aduh95", + "html_url": "https://github.com/aduh95", + "followers_url": "https://api.github.com/users/aduh95/followers", + "following_url": "https://api.github.com/users/aduh95/following{/other_user}", + "gists_url": "https://api.github.com/users/aduh95/gists{/gist_id}", + "starred_url": "https://api.github.com/users/aduh95/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/aduh95/subscriptions", + "organizations_url": "https://api.github.com/users/aduh95/orgs", + "repos_url": "https://api.github.com/users/aduh95/repos", + "events_url": "https://api.github.com/users/aduh95/events{/privacy}", + "received_events_url": "https://api.github.com/users/aduh95/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84PQDgp", + "tag_name": "v22.21.0", + "target_commitish": "main", + "name": "2025-10-20, Version 22.21.0 'Jod' (LTS), @aduh95", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-20T21:21:48Z", + "updated_at": "2025-10-20T23:56:15Z", + "published_at": "2025-10-20T23:56:15Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v22.21.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v22.21.0", + "body": "\n\n\n### Notable Changes\n\n* \\[[`1486fedea1`](https://github.com/nodejs/node/commit/1486fedea1)] - **(SEMVER-MINOR)** **cli**: add `--use-env-proxy` (Joyee Cheung) [#59151](https://github.com/nodejs/node/pull/59151)\n* \\[[`bedaaa11fc`](https://github.com/nodejs/node/commit/bedaaa11fc)] - **(SEMVER-MINOR)** **http**: support http proxy for fetch under `NODE_USE_ENV_PROXY` (Joyee Cheung) [#57165](https://github.com/nodejs/node/pull/57165)\n* \\[[`af8b5fa29d`](https://github.com/nodejs/node/commit/af8b5fa29d)] - **(SEMVER-MINOR)** **http**: add `shouldUpgradeCallback` to let servers control HTTP upgrades (Tim Perry) [#59824](https://github.com/nodejs/node/pull/59824)\n* \\[[`42102594b1`](https://github.com/nodejs/node/commit/42102594b1)] - **(SEMVER-MINOR)** **http,https**: add built-in proxy support in `http`/`https.request` and `Agent` (Joyee Cheung) [#58980](https://github.com/nodejs/node/pull/58980)\n* \\[[`686ac49b82`](https://github.com/nodejs/node/commit/686ac49b82)] - **(SEMVER-MINOR)** **src**: add percentage support to `--max-old-space-size` (Asaf Federman) [#59082](https://github.com/nodejs/node/pull/59082)\n\n### Commits\n\n* \\[[`a71dd592e3`](https://github.com/nodejs/node/commit/a71dd592e3)] - **benchmark**: calibrate config dgram multi-buffer (Bruno Rodrigues) [#59696](https://github.com/nodejs/node/pull/59696)\n* \\[[`16c4b466f4`](https://github.com/nodejs/node/commit/16c4b466f4)] - **benchmark**: calibrate config cluster/echo.js (Nam Yooseong) [#59836](https://github.com/nodejs/node/pull/59836)\n* \\[[`53cb9f3b6c`](https://github.com/nodejs/node/commit/53cb9f3b6c)] - **build**: add the missing macro definitions for OpenHarmony (hqzing) [#59804](https://github.com/nodejs/node/pull/59804)\n* \\[[`ec5290fe01`](https://github.com/nodejs/node/commit/ec5290fe01)] - **build**: do not include custom ESLint rules testing in tarball (Antoine du Hamel) [#59809](https://github.com/nodejs/node/pull/59809)\n* \\[[`1486fedea1`](https://github.com/nodejs/node/commit/1486fedea1)] - **(SEMVER-MINOR)** **cli**: add --use-env-proxy (Joyee Cheung) [#59151](https://github.com/nodejs/node/pull/59151)\n* \\[[`1f93913446`](https://github.com/nodejs/node/commit/1f93913446)] - **crypto**: use `return await` when returning Promises from async functions (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841)\n* \\[[`f488b2ff73`](https://github.com/nodejs/node/commit/f488b2ff73)] - **crypto**: use async functions for non-stub Promise-returning functions (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841)\n* \\[[`aed9fd5ac4`](https://github.com/nodejs/node/commit/aed9fd5ac4)] - **crypto**: avoid calls to `promise.catch()` (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841)\n* \\[[`37c2d186f0`](https://github.com/nodejs/node/commit/37c2d186f0)] - **deps**: update amaro to 1.1.4 (pmarchini) [#60044](https://github.com/nodejs/node/pull/60044)\n* \\[[`28aea13419`](https://github.com/nodejs/node/commit/28aea13419)] - **deps**: update archs files for openssl-3.5.4 (Node.js GitHub Bot) [#60101](https://github.com/nodejs/node/pull/60101)\n* \\[[`ddbc1aa0bb`](https://github.com/nodejs/node/commit/ddbc1aa0bb)] - **deps**: upgrade openssl sources to openssl-3.5.4 (Node.js GitHub Bot) [#60101](https://github.com/nodejs/node/pull/60101)\n* \\[[`badbba2da9`](https://github.com/nodejs/node/commit/badbba2da9)] - **deps**: update googletest to 50b8600 (Node.js GitHub Bot) [#59955](https://github.com/nodejs/node/pull/59955)\n* \\[[`48aaf98a08`](https://github.com/nodejs/node/commit/48aaf98a08)] - **deps**: update archs files for openssl-3.5.3 (Node.js GitHub Bot) [#59901](https://github.com/nodejs/node/pull/59901)\n* \\[[`e02a562ea6`](https://github.com/nodejs/node/commit/e02a562ea6)] - **deps**: upgrade openssl sources to openssl-3.5.3 (Node.js GitHub Bot) [#59901](https://github.com/nodejs/node/pull/59901)\n* \\[[`7e0e86cb92`](https://github.com/nodejs/node/commit/7e0e86cb92)] - **deps**: upgrade npm to 10.9.4 (npm team) [#60074](https://github.com/nodejs/node/pull/60074)\n* \\[[`91dda5facf`](https://github.com/nodejs/node/commit/91dda5facf)] - **deps**: update undici to 6.22.0 (Matteo Collina) [#60112](https://github.com/nodejs/node/pull/60112)\n* \\[[`3a3220a2f0`](https://github.com/nodejs/node/commit/3a3220a2f0)] - **dgram**: restore buffer optimization in fixBufferList (Yoo) [#59934](https://github.com/nodejs/node/pull/59934)\n* \\[[`09bdcce6b8`](https://github.com/nodejs/node/commit/09bdcce6b8)] - **diagnostics\\_channel**: fix race condition with diagnostics\\_channel and GC (Ugaitz Urien) [#59910](https://github.com/nodejs/node/pull/59910)\n* \\[[`b3eeb3bd13`](https://github.com/nodejs/node/commit/b3eeb3bd13)] - **doc**: provide alternative to `url.parse()` using WHATWG URL (Steven) [#59736](https://github.com/nodejs/node/pull/59736)\n* \\[[`1ddaab1904`](https://github.com/nodejs/node/commit/1ddaab1904)] - **doc**: mention reverse proxy and include simple example (Steven) [#59736](https://github.com/nodejs/node/pull/59736)\n* \\[[`3b3b71e99c`](https://github.com/nodejs/node/commit/3b3b71e99c)] - **doc**: mark `.env` files support as stable (Santeri Hiltunen) [#59925](https://github.com/nodejs/node/pull/59925)\n* \\[[`d37f67d1bd`](https://github.com/nodejs/node/commit/d37f67d1bd)] - **doc**: remove optional title prefixes (Aviv Keller) [#60087](https://github.com/nodejs/node/pull/60087)\n* \\[[`ca2dff63f9`](https://github.com/nodejs/node/commit/ca2dff63f9)] - **doc**: fix typo on child\\_process.md (Angelo Gazzola) [#60114](https://github.com/nodejs/node/pull/60114)\n* \\[[`3fca564a05`](https://github.com/nodejs/node/commit/3fca564a05)] - **doc**: add automated migration info to deprecations (Augustin Mauroy) [#60022](https://github.com/nodejs/node/pull/60022)\n* \\[[`4bc366fc16`](https://github.com/nodejs/node/commit/4bc366fc16)] - **doc**: use \"WebAssembly\" instead of \"Web Assembly\" (Tobias Nießen) [#59954](https://github.com/nodejs/node/pull/59954)\n* \\[[`4808dbdd9a`](https://github.com/nodejs/node/commit/4808dbdd9a)] - **doc**: fix typo in section on microtask order (Tobias Nießen) [#59932](https://github.com/nodejs/node/pull/59932)\n* \\[[`d6e303d645`](https://github.com/nodejs/node/commit/d6e303d645)] - **doc**: update V8 fast API guidance (René) [#58999](https://github.com/nodejs/node/pull/58999)\n* \\[[`0a3a3f729e`](https://github.com/nodejs/node/commit/0a3a3f729e)] - **doc**: add security escalation policy (Ulises Gascón) [#59806](https://github.com/nodejs/node/pull/59806)\n* \\[[`8fd669c70d`](https://github.com/nodejs/node/commit/8fd669c70d)] - **doc**: type improvement of file `http.md` (yusheng chen) [#58189](https://github.com/nodejs/node/pull/58189)\n* \\[[`9833dc6060`](https://github.com/nodejs/node/commit/9833dc6060)] - **doc**: rephrase dynamic import() description (Nam Yooseong) [#59224](https://github.com/nodejs/node/pull/59224)\n* \\[[`2870a73681`](https://github.com/nodejs/node/commit/2870a73681)] - **doc,crypto**: update subtle.generateKey and subtle.importKey (Filip Skokan) [#59851](https://github.com/nodejs/node/pull/59851)\n* \\[[`85818db93c`](https://github.com/nodejs/node/commit/85818db93c)] - **fs,win**: do not add a second trailing slash in readdir (Gerhard Stöbich) [#59847](https://github.com/nodejs/node/pull/59847)\n* \\[[`bedaaa11fc`](https://github.com/nodejs/node/commit/bedaaa11fc)] - **(SEMVER-MINOR)** **http**: support http proxy for fetch under NODE\\_USE\\_ENV\\_PROXY (Joyee Cheung) [#57165](https://github.com/nodejs/node/pull/57165)\n* \\[[`af8b5fa29d`](https://github.com/nodejs/node/commit/af8b5fa29d)] - **(SEMVER-MINOR)** **http**: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) [#59824](https://github.com/nodejs/node/pull/59824)\n* \\[[`758271ae66`](https://github.com/nodejs/node/commit/758271ae66)] - **http**: optimize checkIsHttpToken for short strings (방진혁) [#59832](https://github.com/nodejs/node/pull/59832)\n* \\[[`42102594b1`](https://github.com/nodejs/node/commit/42102594b1)] - **(SEMVER-MINOR)** **http,https**: add built-in proxy support in http/https.request and Agent (Joyee Cheung) [#58980](https://github.com/nodejs/node/pull/58980)\n* \\[[`a33ed9bf96`](https://github.com/nodejs/node/commit/a33ed9bf96)] - **inspector**: ensure adequate memory allocation for `Binary::toBase64` (René) [#59870](https://github.com/nodejs/node/pull/59870)\n* \\[[`34c686be2b`](https://github.com/nodejs/node/commit/34c686be2b)] - **lib**: update inspect output format for subclasses (Miguel Marcondes Filho) [#59687](https://github.com/nodejs/node/pull/59687)\n* \\[[`12e553529c`](https://github.com/nodejs/node/commit/12e553529c)] - **lib**: add source map support for assert messages (Chengzhong Wu) [#59751](https://github.com/nodejs/node/pull/59751)\n* \\[[`d2a70571f8`](https://github.com/nodejs/node/commit/d2a70571f8)] - **lib,src**: refactor assert to load error source from memory (Chengzhong Wu) [#59751](https://github.com/nodejs/node/pull/59751)\n* \\[[`20a9e86b5d`](https://github.com/nodejs/node/commit/20a9e86b5d)] - **meta**: move Michael to emeritus (Michael Dawson) [#60070](https://github.com/nodejs/node/pull/60070)\n* \\[[`c591cca15c`](https://github.com/nodejs/node/commit/c591cca15c)] - **meta**: bump github/codeql-action from 3.30.0 to 3.30.5 (dependabot\\[bot]) [#60089](https://github.com/nodejs/node/pull/60089)\n* \\[[`090ba141b1`](https://github.com/nodejs/node/commit/090ba141b1)] - **meta**: bump codecov/codecov-action from 5.5.0 to 5.5.1 (dependabot\\[bot]) [#60091](https://github.com/nodejs/node/pull/60091)\n* \\[[`a0ba6884a5`](https://github.com/nodejs/node/commit/a0ba6884a5)] - **meta**: bump actions/stale from 9.1.0 to 10.0.0 (dependabot\\[bot]) [#60092](https://github.com/nodejs/node/pull/60092)\n* \\[[`0feca0c541`](https://github.com/nodejs/node/commit/0feca0c541)] - **meta**: bump actions/setup-node from 4.4.0 to 5.0.0 (dependabot\\[bot]) [#60093](https://github.com/nodejs/node/pull/60093)\n* \\[[`7cd2b42d18`](https://github.com/nodejs/node/commit/7cd2b42d18)] - **meta**: bump step-security/harden-runner from 2.12.2 to 2.13.1 (dependabot\\[bot]) [#60094](https://github.com/nodejs/node/pull/60094)\n* \\[[`1f3b9d66ac`](https://github.com/nodejs/node/commit/1f3b9d66ac)] - **meta**: bump actions/cache from 4.2.4 to 4.3.0 (dependabot\\[bot]) [#60095](https://github.com/nodejs/node/pull/60095)\n* \\[[`0fedbb3de7`](https://github.com/nodejs/node/commit/0fedbb3de7)] - **meta**: bump ossf/scorecard-action from 2.4.2 to 2.4.3 (dependabot\\[bot]) [#60096](https://github.com/nodejs/node/pull/60096)\n* \\[[`04590b8267`](https://github.com/nodejs/node/commit/04590b8267)] - **meta**: bump actions/setup-python from 5.6.0 to 6.0.0 (dependabot\\[bot]) [#60090](https://github.com/nodejs/node/pull/60090)\n* \\[[`2bf0a9318f`](https://github.com/nodejs/node/commit/2bf0a9318f)] - **meta**: add .npmrc with ignore-scripts=true (Joyee Cheung) [#59914](https://github.com/nodejs/node/pull/59914)\n* \\[[`e10dc7b81c`](https://github.com/nodejs/node/commit/e10dc7b81c)] - **module**: allow overriding linked requests for a ModuleWrap (Chengzhong Wu) [#59527](https://github.com/nodejs/node/pull/59527)\n* \\[[`2237142369`](https://github.com/nodejs/node/commit/2237142369)] - **module**: link module with a module request record (Chengzhong Wu) [#58886](https://github.com/nodejs/node/pull/58886)\n* \\[[`6d24b88fbc`](https://github.com/nodejs/node/commit/6d24b88fbc)] - **node-api**: added SharedArrayBuffer api (Mert Can Altin) [#59071](https://github.com/nodejs/node/pull/59071)\n* \\[[`4cc84c96f4`](https://github.com/nodejs/node/commit/4cc84c96f4)] - **node-api**: make napi\\_delete\\_reference use node\\_api\\_basic\\_env (Jeetu Suthar) [#59684](https://github.com/nodejs/node/pull/59684)\n* \\[[`e790eb6b50`](https://github.com/nodejs/node/commit/e790eb6b50)] - **repl**: fix cpu overhead pasting big strings to the REPL (Ruben Bridgewater) [#59857](https://github.com/nodejs/node/pull/59857)\n* \\[[`99ea08dc43`](https://github.com/nodejs/node/commit/99ea08dc43)] - **repl**: add isValidParentheses check before wrap input (Xuguang Mei) [#59607](https://github.com/nodejs/node/pull/59607)\n* \\[[`e4a4f63019`](https://github.com/nodejs/node/commit/e4a4f63019)] - **sqlite**: fix crash session extension callbacks with workers (Bart Louwers) [#59848](https://github.com/nodejs/node/pull/59848)\n* \\[[`42c5544b97`](https://github.com/nodejs/node/commit/42c5544b97)] - **src**: assert memory calc for max-old-space-size-percentage (Asaf Federman) [#59460](https://github.com/nodejs/node/pull/59460)\n* \\[[`686ac49b82`](https://github.com/nodejs/node/commit/686ac49b82)] - **(SEMVER-MINOR)** **src**: add percentage support to --max-old-space-size (Asaf Federman) [#59082](https://github.com/nodejs/node/pull/59082)\n* \\[[`84701ff668`](https://github.com/nodejs/node/commit/84701ff668)] - **src**: clear all linked module caches once instantiated (Chengzhong Wu) [#59117](https://github.com/nodejs/node/pull/59117)\n* \\[[`8e182e561f`](https://github.com/nodejs/node/commit/8e182e561f)] - **src**: remove unnecessary `Environment::GetCurrent()` calls (Moonki Choi) [#59814](https://github.com/nodejs/node/pull/59814)\n* \\[[`c9cde35c4d`](https://github.com/nodejs/node/commit/c9cde35c4d)] - **src**: simplify is\\_callable by making it a concept (Tobias Nießen) [#58169](https://github.com/nodejs/node/pull/58169)\n* \\[[`892b425ee1`](https://github.com/nodejs/node/commit/892b425ee1)] - **src**: rename private fields to follow naming convention (Moonki Choi) [#59923](https://github.com/nodejs/node/pull/59923)\n* \\[[`36b68db7f5`](https://github.com/nodejs/node/commit/36b68db7f5)] - **src**: reduce the nearest parent package JSON cache size (Michael Smith) [#59888](https://github.com/nodejs/node/pull/59888)\n* \\[[`26b40bad02`](https://github.com/nodejs/node/commit/26b40bad02)] - **src**: replace FIXED\\_ONE\\_BYTE\\_STRING with Environment-cached strings (Moonki Choi) [#59891](https://github.com/nodejs/node/pull/59891)\n* \\[[`34dcb7dc32`](https://github.com/nodejs/node/commit/34dcb7dc32)] - **src**: create strings in `FIXED_ONE_BYTE_STRING` as internalized (Anna Henningsen) [#59826](https://github.com/nodejs/node/pull/59826)\n* \\[[`4d748add05`](https://github.com/nodejs/node/commit/4d748add05)] - **src**: remove `std::array` overload of `FIXED_ONE_BYTE_STRING` (Anna Henningsen) [#59826](https://github.com/nodejs/node/pull/59826)\n* \\[[`bb6fd7c2d1`](https://github.com/nodejs/node/commit/bb6fd7c2d1)] - **src**: ensure `v8::Eternal` is empty before setting it (Anna Henningsen) [#59825](https://github.com/nodejs/node/pull/59825)\n* \\[[`7a91282bf9`](https://github.com/nodejs/node/commit/7a91282bf9)] - **src**: use simdjson::pad (0hm☘️) [#59391](https://github.com/nodejs/node/pull/59391)\n* \\[[`ba00875f01`](https://github.com/nodejs/node/commit/ba00875f01)] - **stream**: use new AsyncResource instead of bind (Matteo Collina) [#59867](https://github.com/nodejs/node/pull/59867)\n* \\[[`ebec3ef68b`](https://github.com/nodejs/node/commit/ebec3ef68b)] - **(SEMVER-MINOR)** **test**: move http proxy tests to test/client-proxy (Joyee Cheung) [#58980](https://github.com/nodejs/node/pull/58980)\n* \\[[`7067d79fb3`](https://github.com/nodejs/node/commit/7067d79fb3)] - **test**: mark sea tests flaky on macOS x64 (Richard Lau) [#60068](https://github.com/nodejs/node/pull/60068)\n* \\[[`ca1942c9d5`](https://github.com/nodejs/node/commit/ca1942c9d5)] - **test**: testcase demonstrating issue 59541 (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801)\n* \\[[`660d57355e`](https://github.com/nodejs/node/commit/660d57355e)] - **test,doc**: skip --max-old-space-size-percentage on 32-bit platforms (Asaf Federman) [#60144](https://github.com/nodejs/node/pull/60144)\n* \\[[`19a7b1ef26`](https://github.com/nodejs/node/commit/19a7b1ef26)] - **tls**: load bundled and extra certificates off-thread (Joyee Cheung) [#59856](https://github.com/nodejs/node/pull/59856)\n* \\[[`095e7a81fc`](https://github.com/nodejs/node/commit/095e7a81fc)] - **tls**: only do off-thread certificate loading on loading tls (Joyee Cheung) [#59856](https://github.com/nodejs/node/pull/59856)\n* \\[[`c42c1204c7`](https://github.com/nodejs/node/commit/c42c1204c7)] - **tools**: fix `tools/make-v8.sh` for clang (Richard Lau) [#59893](https://github.com/nodejs/node/pull/59893)\n* \\[[`b632a1d98d`](https://github.com/nodejs/node/commit/b632a1d98d)] - **tools**: skip test-internet workflow for draft PRs (Michaël Zasso) [#59817](https://github.com/nodejs/node/pull/59817)\n* \\[[`6021c3ac76`](https://github.com/nodejs/node/commit/6021c3ac76)] - **tools**: copyedit `build-tarball.yml` (Antoine du Hamel) [#59808](https://github.com/nodejs/node/pull/59808)\n* \\[[`ef005d0c9b`](https://github.com/nodejs/node/commit/ef005d0c9b)] - **typings**: update 'types' binding (René) [#59692](https://github.com/nodejs/node/pull/59692)\n* \\[[`28ef564ecd`](https://github.com/nodejs/node/commit/28ef564ecd)] - **typings**: remove unused imports (Nam Yooseong) [#59880](https://github.com/nodejs/node/pull/59880)\n* \\[[`f88752ddb6`](https://github.com/nodejs/node/commit/f88752ddb6)] - **url**: replaced slice with at (Mikhail) [#59181](https://github.com/nodejs/node/pull/59181)\n* \\[[`24c224960c`](https://github.com/nodejs/node/commit/24c224960c)] - **url**: add type checking to urlToHttpOptions() (simon-id) [#59753](https://github.com/nodejs/node/pull/59753)\n* \\[[`f2fbcc576d`](https://github.com/nodejs/node/commit/f2fbcc576d)] - **util**: fix debuglog.enabled not being present with callback logger (Ruben Bridgewater) [#59858](https://github.com/nodejs/node/pull/59858)\n* \\[[`6277058e43`](https://github.com/nodejs/node/commit/6277058e43)] - **vm**: sync-ify SourceTextModule linkage (Chengzhong Wu) [#59000](https://github.com/nodejs/node/pull/59000)\n* \\[[`5bf21a4309`](https://github.com/nodejs/node/commit/5bf21a4309)] - **vm**: explain how to share promises between contexts w/ afterEvaluate (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801)\n* \\[[`312b33a083`](https://github.com/nodejs/node/commit/312b33a083)] - **vm**: \"afterEvaluate\", evaluate() return a promise from the outer context (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801)\n* \\[[`1eadab863c`](https://github.com/nodejs/node/commit/1eadab863c)] - **win,tools**: add description to signature (Martin Costello) [#59877](https://github.com/nodejs/node/pull/59877)\n* \\[[`816e1befb1`](https://github.com/nodejs/node/commit/816e1befb1)] - **zlib**: reduce code duplication (jhofstee) [#57810](https://github.com/nodejs/node/pull/57810)\n\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/255866921/reactions", + "total_count": 40, + "+1": 2, + "-1": 0, + "laugh": 2, + "hooray": 21, + "confused": 0, + "heart": 9, + "rocket": 6, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/254773105", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/254773105/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/254773105/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v25.0.0", + "id": 254773105, + "author": { + "login": "RafaelGSS", + "id": 26234614, + "node_id": "MDQ6VXNlcjI2MjM0NjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/26234614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RafaelGSS", + "html_url": "https://github.com/RafaelGSS", + "followers_url": "https://api.github.com/users/RafaelGSS/followers", + "following_url": "https://api.github.com/users/RafaelGSS/following{/other_user}", + "gists_url": "https://api.github.com/users/RafaelGSS/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RafaelGSS/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RafaelGSS/subscriptions", + "organizations_url": "https://api.github.com/users/RafaelGSS/orgs", + "repos_url": "https://api.github.com/users/RafaelGSS/repos", + "events_url": "https://api.github.com/users/RafaelGSS/events{/privacy}", + "received_events_url": "https://api.github.com/users/RafaelGSS/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84PL4dx", + "tag_name": "v25.0.0", + "target_commitish": "main", + "name": "2025-10-15, Version 25.0.0 (Current), @RafaelGSS", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-15T16:21:41Z", + "updated_at": "2025-10-15T17:20:43Z", + "published_at": "2025-10-15T17:20:43Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v25.0.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v25.0.0", + "body": "Node.js 25 is here! We have upgraded V8 to **14.1**, bringing major `JSON.stringify`\r\nperformance improvements, built-in `Uint8Array` base64/hex conversion, and ongoing\r\nWebAssembly and JIT pipeline optimizations.\r\n\r\nThis release doubles down on secure-by-default apps and web-standard APIs: the permission\r\nmodel gains `--allow-net`, Web Storage is enabled by default, and `ErrorEvent` is now a global.\r\n\r\nWe’ve also removed or finalized long-deprecated APIs such as SlowBuffer,\r\nand added quality-of-life improvements like a portable compile cache and JSPI for WebAssembly.\r\n\r\n### Notable Changes\r\n\r\n* \\[[`8bc7dfd16f`](https://github.com/nodejs/node/commit/8bc7dfd16f)] - **build**: test on Python 3.14 release candidate 3 (Christian Clauss) [#59983](https://github.com/nodejs/node/pull/59983)\r\n* \\[[`663554abdf`](https://github.com/nodejs/node/commit/663554abdf)] - **(SEMVER-MAJOR)** **lib**: expose global ErrorEvent (Richie Bendall) [#58920](https://github.com/nodejs/node/pull/58920)\r\n* \\[[`3312e4e946`](https://github.com/nodejs/node/commit/3312e4e946)] - **(SEMVER-MAJOR)** **src**: unflag --experimental-webstorage by default (Daniel M Brasil) [#57666](https://github.com/nodejs/node/pull/57666)\r\n* \\[[`462c74181d`](https://github.com/nodejs/node/commit/462c74181d)] - **(SEMVER-MAJOR)** **src,permission**: add --allow-net permission (Rafael Gonzaga) [#58517](https://github.com/nodejs/node/pull/58517)\r\n\r\n### Deprecations and Removals\r\n\r\n* \\[[`d33f4b539a`](https://github.com/nodejs/node/commit/d33f4b539a)] - **(SEMVER-MAJOR)** **assert**: move assert.fail with multiple arguments to eol (James M Snell) [#58532](https://github.com/nodejs/node/pull/58532)\r\n* \\[[`b21574d63b`](https://github.com/nodejs/node/commit/b21574d63b)] - **(SEMVER-MAJOR)** **assert**: move CallTracker to EOL (James M Snell) [#58006](https://github.com/nodejs/node/pull/58006)\r\n* \\[[`308b6bc6de`](https://github.com/nodejs/node/commit/308b6bc6de)] - **(SEMVER-MAJOR)** **async\\_hooks**: move `asyncResource` property on bound function to EOL (James M Snell) [#58618](https://github.com/nodejs/node/pull/58618)\r\n* \\[[`daced4ab98`](https://github.com/nodejs/node/commit/daced4ab98)] - **(SEMVER-MAJOR)** **buffer**: move SlowBuffer to EOL (Filip Skokan) [#58220](https://github.com/nodejs/node/pull/58220)\r\n* \\[[`df16f0fd8d`](https://github.com/nodejs/node/commit/df16f0fd8d)] - **(SEMVER-MAJOR)** **child\\_process**: move \\_channel to end-of-life (James M Snell) [#58527](https://github.com/nodejs/node/pull/58527)\r\n* \\[[`a472745958`](https://github.com/nodejs/node/commit/a472745958)] - **(SEMVER-MAJOR)** **crypto**: runtime-deprecate default shake128/256 output lengths (Filip Skokan) [#59008](https://github.com/nodejs/node/pull/59008)\r\n* \\[[`c3b986853c`](https://github.com/nodejs/node/commit/c3b986853c)] - **(SEMVER-MAJOR)** **crypto**: move deprecated hash and mgf1Hash options to EOL (James M Snell) [#58706](https://github.com/nodejs/node/pull/58706)\r\n* \\[[`66632648ba`](https://github.com/nodejs/node/commit/66632648ba)] - **(SEMVER-MAJOR)** **crypto**: runtime deprecate ECDH.setPublicKey() (James M Snell) [#58620](https://github.com/nodejs/node/pull/58620)\r\n* \\[[`a5f9ca1f77`](https://github.com/nodejs/node/commit/a5f9ca1f77)] - **(SEMVER-MAJOR)** **dns**: move falsy hostname in lookup to end-of-life (James M Snell) [#58619](https://github.com/nodejs/node/pull/58619)\r\n* \\[[`2bb7667475`](https://github.com/nodejs/node/commit/2bb7667475)] - **(SEMVER-MAJOR)** **fs**: move FileHandle close on GC to EOL (James M Snell) [#58536](https://github.com/nodejs/node/pull/58536)\r\n* \\[[`eec0302088`](https://github.com/nodejs/node/commit/eec0302088)] - **(SEMVER-MAJOR)** **fs**: move rmdir recursive option to end-of-life (James M Snell) [#58616](https://github.com/nodejs/node/pull/58616)\r\n* \\[[`25dd206c29`](https://github.com/nodejs/node/commit/25dd206c29)] - **(SEMVER-MAJOR)** **fs**: remove `fs.F_OK`, `fs.R_OK`, `fs.W_OK`, `fs.X_OK` (Livia Medeiros) [#55862](https://github.com/nodejs/node/pull/55862)\r\n* \\[[`91dadf2897`](https://github.com/nodejs/node/commit/91dadf2897)] - **(SEMVER-MAJOR)** **http**: deprecate writeHeader (Sebastian Beltran) [#59060](https://github.com/nodejs/node/pull/59060)\r\n* \\[[`4e06a648ff`](https://github.com/nodejs/node/commit/4e06a648ff)] - **(SEMVER-MAJOR)** **perf\\_hooks**: move deprecated accessors to EOF (James M Snell) [#58531](https://github.com/nodejs/node/pull/58531)\r\n* \\[[`a3dfca90d1`](https://github.com/nodejs/node/commit/a3dfca90d1)] - **(SEMVER-MAJOR)** **process**: move multipleResolves event to EOL (James M Snell) [#58707](https://github.com/nodejs/node/pull/58707)\r\n* \\[[`790acc8689`](https://github.com/nodejs/node/commit/790acc8689)] - **(SEMVER-MAJOR)** **tls**: move IP-address servername deprecation to eol (James M Snell) [#58533](https://github.com/nodejs/node/pull/58533)\r\n* \\[[`3aaa2ebe19`](https://github.com/nodejs/node/commit/3aaa2ebe19)] - **(SEMVER-MAJOR)** **url**: move bad port deprecation in legacy url to end-of-life (James M Snell) [#58617](https://github.com/nodejs/node/pull/58617)\r\n\r\n### Semver-Major Commits\r\n\r\n* \\[[`7c9fbc15bc`](https://github.com/nodejs/node/commit/7c9fbc15bc)] - **(SEMVER-MAJOR)** **assert,util**: fail promise comparison in deep equal checks (Ruben Bridgewater) [#59448](https://github.com/nodejs/node/pull/59448)\r\n* \\[[`11222f1a27`](https://github.com/nodejs/node/commit/11222f1a27)] - **(SEMVER-MAJOR)** **assert,util**: handle invalid dates as equal in deep comparison (Ruben Bridgewater) [#57627](https://github.com/nodejs/node/pull/57627)\r\n* \\[[`acce2e8f87`](https://github.com/nodejs/node/commit/acce2e8f87)] - **(SEMVER-MAJOR)** **build**: reset embedder string to \"-node.0\" (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`8a87ba031b`](https://github.com/nodejs/node/commit/8a87ba031b)] - **(SEMVER-MAJOR)** **build**: bump minimum Clang version to 19 (Michaël Zasso) [#59048](https://github.com/nodejs/node/pull/59048)\r\n* \\[[`21b131e93a`](https://github.com/nodejs/node/commit/21b131e93a)] - **(SEMVER-MAJOR)** **build**: reset embedder string to \"-node.0\" (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`f31c88021b`](https://github.com/nodejs/node/commit/f31c88021b)] - **(SEMVER-MAJOR)** **build**: stop distributing Corepack (Antoine du Hamel) [#57617](https://github.com/nodejs/node/pull/57617)\r\n* \\[[`b3238442d8`](https://github.com/nodejs/node/commit/b3238442d8)] - **(SEMVER-MAJOR)** **deps**: patch V8 for illumos (Dan McDonald) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`2a1da3260d`](https://github.com/nodejs/node/commit/2a1da3260d)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#54077](https://github.com/nodejs/node/pull/54077)\r\n* \\[[`7772a2df9d`](https://github.com/nodejs/node/commit/7772a2df9d)] - **(SEMVER-MAJOR)** **deps**: update V8 to 14.1.146.11 (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`6d61175db0`](https://github.com/nodejs/node/commit/6d61175db0)] - **(SEMVER-MAJOR)** **deps**: V8: backport 1d3362c55396 (Shu-yu Guo) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`974773572e`](https://github.com/nodejs/node/commit/974773572e)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick 4f38995c8295 (Shu-yu Guo) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`70bfc398e9`](https://github.com/nodejs/node/commit/70bfc398e9)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick 044b9b6f589d (Rezvan Mahdavi Hezaveh) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`6bfc525cf0`](https://github.com/nodejs/node/commit/6bfc525cf0)] - **(SEMVER-MAJOR)** **deps**: V8: cherry-pick d2ad518a0b57 (Joyee Cheung) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`754d28e34f`](https://github.com/nodejs/node/commit/754d28e34f)] - **(SEMVER-MAJOR)** **deps**: V8: revert 6d6c1e680c7b (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`8c508b9399`](https://github.com/nodejs/node/commit/8c508b9399)] - **(SEMVER-MAJOR)** **deps**: V8: revert e3cddbedb205 (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`88ca8287b6`](https://github.com/nodejs/node/commit/88ca8287b6)] - **(SEMVER-MAJOR)** **deps**: use std::map in MSVC STL for EphemeronRememberedSet (Joyee Cheung) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`838e2332a5`](https://github.com/nodejs/node/commit/838e2332a5)] - **(SEMVER-MAJOR)** **deps**: patch V8 for illumos (Dan McDonald) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`3522731d9a`](https://github.com/nodejs/node/commit/3522731d9a)] - **(SEMVER-MAJOR)** **deps**: remove problematic comment from v8-internal (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`d234475a33`](https://github.com/nodejs/node/commit/d234475a33)] - **(SEMVER-MAJOR)** **deps**: define V8\\_PRESERVE\\_MOST as no-op on Windows (Stefan Stojanovic) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`a738eb4a7f`](https://github.com/nodejs/node/commit/a738eb4a7f)] - **(SEMVER-MAJOR)** **deps**: fix FP16 bitcasts.h (Stefan Stojanovic) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`1744c7d991`](https://github.com/nodejs/node/commit/1744c7d991)] - **(SEMVER-MAJOR)** **deps**: patch V8 to avoid duplicated zlib symbol (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`fff0d1554d`](https://github.com/nodejs/node/commit/fff0d1554d)] - **(SEMVER-MAJOR)** **deps**: update V8 to 13.7.152.9 (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`968e2f47c8`](https://github.com/nodejs/node/commit/968e2f47c8)] - **(SEMVER-MAJOR)** **dgram**: move deprecated APIs to EOL (James M Snell) [#58474](https://github.com/nodejs/node/pull/58474)\r\n* \\[[`5623194a6b`](https://github.com/nodejs/node/commit/5623194a6b)] - **(SEMVER-MAJOR)** **doc,src,test**: replace use of deprecated `GetIsolate` (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`823ca6991f`](https://github.com/nodejs/node/commit/823ca6991f)] - **(SEMVER-MAJOR)** **fs**: make `processReadResult()` and `readSyncRecursive()` private (Livia Medeiros) [#58672](https://github.com/nodejs/node/pull/58672)\r\n* \\[[`a273674dee`](https://github.com/nodejs/node/commit/a273674dee)] - **(SEMVER-MAJOR)** **fs**: move fs stream open method to eol (James M Snell) [#58529](https://github.com/nodejs/node/pull/58529)\r\n* \\[[`39d73036e7`](https://github.com/nodejs/node/commit/39d73036e7)] - **(SEMVER-MAJOR)** **lib**: use validators for argument validation (Nam Yooseong) [#59416](https://github.com/nodejs/node/pull/59416)\r\n* \\[[`cd68e35704`](https://github.com/nodejs/node/commit/cd68e35704)] - **(SEMVER-MAJOR)** **lib**: deprecate `_stream_*` modules (Dario Piotrowicz) [#58337](https://github.com/nodejs/node/pull/58337)\r\n* \\[[`a822a1cbe7`](https://github.com/nodejs/node/commit/a822a1cbe7)] - **(SEMVER-MAJOR)** **lib**: deprecate \\_tls\\_common and \\_tls\\_wrap (Dario Piotrowicz) [#57643](https://github.com/nodejs/node/pull/57643)\r\n* \\[[`705bcc2a00`](https://github.com/nodejs/node/commit/705bcc2a00)] - **(SEMVER-MAJOR)** **module**: move Module.\\_debug to end-of-life (James M Snell) [#58473](https://github.com/nodejs/node/pull/58473)\r\n* \\[[`5fe7800683`](https://github.com/nodejs/node/commit/5fe7800683)] - **(SEMVER-MAJOR)** **node-api**: add warning for NAPI\\_EXPERIMENTAL (Miguel Marcondes Filho) [#58280](https://github.com/nodejs/node/pull/58280)\r\n* \\[[`e1d4d6ab49`](https://github.com/nodejs/node/commit/e1d4d6ab49)] - **(SEMVER-MAJOR)** **repl**: eol deprecate instantiating without new (Aviv Keller) [#59495](https://github.com/nodejs/node/pull/59495)\r\n* \\[[`ed94bc48f3`](https://github.com/nodejs/node/commit/ed94bc48f3)] - **(SEMVER-MAJOR)** **src**: update crypto.getCipherInfo() to use DictionaryTemplate (James M Snell) [#60036](https://github.com/nodejs/node/pull/60036)\r\n* \\[[`37a3df3556`](https://github.com/nodejs/node/commit/37a3df3556)] - **(SEMVER-MAJOR)** **src**: fix calls to v8::Object::wrap (Andreas Haas) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`801ae26fa3`](https://github.com/nodejs/node/commit/801ae26fa3)] - **(SEMVER-MAJOR)** **src**: update NODE\\_MODULE\\_VERSION to 141 (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`10df38a38b`](https://github.com/nodejs/node/commit/10df38a38b)] - **(SEMVER-MAJOR)** **src**: improve performance of dotenv ToObject (James M Snell) [#60038](https://github.com/nodejs/node/pull/60038)\r\n* \\[[`075936b413`](https://github.com/nodejs/node/commit/075936b413)] - **(SEMVER-MAJOR)** **src**: use std::string\\_view from node\\_report (iknoom) [#60006](https://github.com/nodejs/node/pull/60006)\r\n* \\[[`234c26cca3`](https://github.com/nodejs/node/commit/234c26cca3)] - **(SEMVER-MAJOR)** **src**: store `Local` for `CallbackScope` on stack (Anna Henningsen) [#59705](https://github.com/nodejs/node/pull/59705)\r\n* \\[[`708fd1945b`](https://github.com/nodejs/node/commit/708fd1945b)] - **(SEMVER-MAJOR)** **src**: remove node.h APIs to make callback without an async context (Chengzhong Wu) [#58471](https://github.com/nodejs/node/pull/58471)\r\n* \\[[`56989d33f5`](https://github.com/nodejs/node/commit/56989d33f5)] - **(SEMVER-MAJOR)** **src**: remove deprecated node::EmitBeforeExit and node::EmitExit (Chengzhong Wu) [#58469](https://github.com/nodejs/node/pull/58469)\r\n* \\[[`d429aa2d17`](https://github.com/nodejs/node/commit/d429aa2d17)] - **(SEMVER-MAJOR)** **src**: remove deprecated node::CreatePlatform and node::FreePlatform (Chengzhong Wu) [#58470](https://github.com/nodejs/node/pull/58470)\r\n* \\[[`e0ae14ce73`](https://github.com/nodejs/node/commit/e0ae14ce73)] - **(SEMVER-MAJOR)** **src**: remove deprecated node::InitializeNodeWithArgs (Chengzhong Wu) [#58470](https://github.com/nodejs/node/pull/58470)\r\n* \\[[`db1700e4b5`](https://github.com/nodejs/node/commit/db1700e4b5)] - **(SEMVER-MAJOR)** **src**: update NODE\\_MODULE\\_VERSION to 138 (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`0a87084150`](https://github.com/nodejs/node/commit/0a87084150)] - **(SEMVER-MAJOR)** **test**: update cppgc-object addon config (StefanStojanovic) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`7dd49d7da4`](https://github.com/nodejs/node/commit/7dd49d7da4)] - **(SEMVER-MAJOR)** **test**: spin longer for sequential/test-worker-prof (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`faba50df96`](https://github.com/nodejs/node/commit/faba50df96)] - **(SEMVER-MAJOR)** **test**: remove `--always-turbofan` flag (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`496f12dec6`](https://github.com/nodejs/node/commit/496f12dec6)] - **(SEMVER-MAJOR)** **test**: update snapshot for V8 14.1 (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`05aa3a1c70`](https://github.com/nodejs/node/commit/05aa3a1c70)] - **(SEMVER-MAJOR)** **test,win**: split addon tests (StefanStojanovic) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`308de27255`](https://github.com/nodejs/node/commit/308de27255)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 14.0 (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`b736370c07`](https://github.com/nodejs/node/commit/b736370c07)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.9 (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`085a94ac9b`](https://github.com/nodejs/node/commit/085a94ac9b)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.8 (Michaël Zasso) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`a71ae18ac8`](https://github.com/nodejs/node/commit/a71ae18ac8)] - **(SEMVER-MAJOR)** **tools**: enable leaptiering for aix/ibmi (Abdirahim Musse) [#59805](https://github.com/nodejs/node/pull/59805)\r\n* \\[[`a8217a9eb8`](https://github.com/nodejs/node/commit/a8217a9eb8)] - **(SEMVER-MAJOR)** **tools**: update V8 gypfiles for 13.7 (Michaël Zasso) [#58064](https://github.com/nodejs/node/pull/58064)\r\n* \\[[`fdef0725de`](https://github.com/nodejs/node/commit/fdef0725de)] - **(SEMVER-MAJOR)** **util,console**: colorize regexp groups, character classes, etc (Ruben Bridgewater) [#59710](https://github.com/nodejs/node/pull/59710)\r\n* \\[[`411cc42d22`](https://github.com/nodejs/node/commit/411cc42d22)] - **(SEMVER-MAJOR)** **worker**: move terminate callback to end-of-life (James M Snell) [#58528](https://github.com/nodejs/node/pull/58528)\r\n\r\n### Semver-Minor Commits\r\n\r\n* \\[[`94422e8a40`](https://github.com/nodejs/node/commit/94422e8a40)] - **(SEMVER-MINOR)** **src**: add an option to make compile cache portable (Aditi) [#58797](https://github.com/nodejs/node/pull/58797)\r\n* \\[[`29738c7b42`](https://github.com/nodejs/node/commit/29738c7b42)] - **(SEMVER-MINOR)** **src,permission**: add --allow-inspector ability (Rafael Gonzaga) [#59711](https://github.com/nodejs/node/pull/59711)\r\n* \\[[`f9fcc746f3`](https://github.com/nodejs/node/commit/f9fcc746f3)] - **(SEMVER-MINOR)** **v8**: add cpu profile (theanarkh) [#59807](https://github.com/nodejs/node/pull/59807)\r\n* \\[[`4396cf2d45`](https://github.com/nodejs/node/commit/4396cf2d45)] - **(SEMVER-MINOR)** **wasm**: enable JSPI (Guy Bedford) [#59941](https://github.com/nodejs/node/pull/59941)\r\n\r\n### Semver-Patch Commits\r\n\r\n* \\[[`91f035e597`](https://github.com/nodejs/node/commit/91f035e597)] - **assert**: resolve TODO and rename function (Antoine du Hamel) [#59451](https://github.com/nodejs/node/pull/59451)\r\n* \\[[`2e675c4fa3`](https://github.com/nodejs/node/commit/2e675c4fa3)] - **benchmark**: use non-deprecated WriteUtf8V2 method (Michaël Zasso) [#60173](https://github.com/nodejs/node/pull/60173)\r\n* \\[[`0fb040603b`](https://github.com/nodejs/node/commit/0fb040603b)] - **build**: upgrade Python linter ruff, add rules ASYNC,PERF (Christian Clauss) [#59984](https://github.com/nodejs/node/pull/59984)\r\n* \\[[`f468b6c72b`](https://github.com/nodejs/node/commit/f468b6c72b)] - **build**: update minimum Xcode version to 16.4 (Michaël Zasso) [#60079](https://github.com/nodejs/node/pull/60079)\r\n* \\[[`0eda17ba20`](https://github.com/nodejs/node/commit/0eda17ba20)] - **build**: fix flags for ngtcp2 on IBM i (SRAVANI GUNDEPALLI) [#60073](https://github.com/nodejs/node/pull/60073)\r\n* \\[[`22a864a275`](https://github.com/nodejs/node/commit/22a864a275)] - **build**: remove corepack from release tarballs (Jordan Harband) [#59835](https://github.com/nodejs/node/pull/59835)\r\n* \\[[`7079041e0a`](https://github.com/nodejs/node/commit/7079041e0a)] - **build**: only mention Apple when on Apple (Michaël Zasso) [#59385](https://github.com/nodejs/node/pull/59385)\r\n* \\[[`954d3f44ef`](https://github.com/nodejs/node/commit/954d3f44ef)] - **build**: check Apple clang version in configure script (Michaël Zasso) [#59358](https://github.com/nodejs/node/pull/59358)\r\n* \\[[`2b4a09ef8b`](https://github.com/nodejs/node/commit/2b4a09ef8b)] - **build**: fix OpenSSL version detection (Richard Lau) [#59353](https://github.com/nodejs/node/pull/59353)\r\n* \\[[`af77e4bf2f`](https://github.com/nodejs/node/commit/af77e4bf2f)] - **build**: update macOS runner and Xcode (Michaël Zasso) [#59238](https://github.com/nodejs/node/pull/59238)\r\n* \\[[`86bfdb5528`](https://github.com/nodejs/node/commit/86bfdb5528)] - **build**: remove `nocorepack` `vcbuild` flag (Antoine du Hamel) [#57772](https://github.com/nodejs/node/pull/57772)\r\n* \\[[`b13f24c2da`](https://github.com/nodejs/node/commit/b13f24c2da)] - **build, src**: fix include paths for vtune files (Rahul) [#59999](https://github.com/nodejs/node/pull/59999)\r\n* \\[[`2216a3b1d5`](https://github.com/nodejs/node/commit/2216a3b1d5)] - **deps**: V8: cherry-pick 1e190bbb0396 (Richard Lau) [#60206](https://github.com/nodejs/node/pull/60206)\r\n* \\[[`1b22f6049a`](https://github.com/nodejs/node/commit/1b22f6049a)] - **deps**: upgrade npm to 11.6.2 (npm team) [#60168](https://github.com/nodejs/node/pull/60168)\r\n* \\[[`a1b73fe430`](https://github.com/nodejs/node/commit/a1b73fe430)] - **deps**: V8: cherry-pick 2abc61361dd4 (Richard Lau) [#60177](https://github.com/nodejs/node/pull/60177)\r\n* \\[[`4eb6e6fd79`](https://github.com/nodejs/node/commit/4eb6e6fd79)] - **deps**: V8: cherry-pick 87356585659b (Joyee Cheung) [#60069](https://github.com/nodejs/node/pull/60069)\r\n* \\[[`c0b8c80164`](https://github.com/nodejs/node/commit/c0b8c80164)] - **deps**: define V8\\_PRESERVE\\_MOST as no-op on Windows (Stefan Stojanovic) [#56238](https://github.com/nodejs/node/pull/56238)\r\n* \\[[`65a32bac18`](https://github.com/nodejs/node/commit/65a32bac18)] - **deps**: add ngtcp2 test binaries (James M Snell) [#59946](https://github.com/nodejs/node/pull/59946)\r\n* \\[[`ebfc28a037`](https://github.com/nodejs/node/commit/ebfc28a037)] - **deps**: update nghttp3 to 1.11.0 (James M Snell) [#59249](https://github.com/nodejs/node/pull/59249)\r\n* \\[[`dceb1fca40`](https://github.com/nodejs/node/commit/dceb1fca40)] - **deps**: update ngtcp2 to 1.14.0 (James M Snell) [#59249](https://github.com/nodejs/node/pull/59249)\r\n* \\[[`ee36b86ba3`](https://github.com/nodejs/node/commit/ee36b86ba3)] - **deps**: patch V8 to 13.7.152.19 (Node.js GitHub Bot) [#58713](https://github.com/nodejs/node/pull/58713)\r\n* \\[[`0b3fc0d7a8`](https://github.com/nodejs/node/commit/0b3fc0d7a8)] - **deps**: patch V8 to 13.7.152.14 (Node.js GitHub Bot) [#58631](https://github.com/nodejs/node/pull/58631)\r\n* \\[[`91b3bd3fe6`](https://github.com/nodejs/node/commit/91b3bd3fe6)] - **deps**: patch V8 to 13.7.152.13 (Node.js GitHub Bot) [#58539](https://github.com/nodejs/node/pull/58539)\r\n* \\[[`f77a96cd76`](https://github.com/nodejs/node/commit/f77a96cd76)] - **deps**: patch V8 to 13.7.152.10 (Node.js GitHub Bot) [#58446](https://github.com/nodejs/node/pull/58446)\r\n* \\[[`1cd16e5355`](https://github.com/nodejs/node/commit/1cd16e5355)] - **doc**: improve code snippet alternative of url.parse() using WHATWG URL (Steven) [#60209](https://github.com/nodejs/node/pull/60209)\r\n* \\[[`d54e6aec9e`](https://github.com/nodejs/node/commit/d54e6aec9e)] - **doc**: `createSQLTagStore` -> `createTagStore` (Aviv Keller) [#60182](https://github.com/nodejs/node/pull/60182)\r\n* \\[[`aef3fc37eb`](https://github.com/nodejs/node/commit/aef3fc37eb)] - **doc**: use markdown when branch-diff major release (Rafael Gonzaga) [#60179](https://github.com/nodejs/node/pull/60179)\r\n* \\[[`a2f088d516`](https://github.com/nodejs/node/commit/a2f088d516)] - **doc**: update teams in collaborator-guide.md and add links (Bart Louwers) [#60065](https://github.com/nodejs/node/pull/60065)\r\n* \\[[`75a6fff6be`](https://github.com/nodejs/node/commit/75a6fff6be)] - **doc**: disambiguate top-level `worker_threads` module exports (René) [#59890](https://github.com/nodejs/node/pull/59890)\r\n* \\[[`51df7b92bc`](https://github.com/nodejs/node/commit/51df7b92bc)] - **doc**: update macOS version used to build releases (Michaël Zasso) [#60080](https://github.com/nodejs/node/pull/60080)\r\n* \\[[`910c8796f9`](https://github.com/nodejs/node/commit/910c8796f9)] - **doc**: update BUILDING to reflect Clang 19 changes (Michaël Zasso) [#59782](https://github.com/nodejs/node/pull/59782)\r\n* \\[[`34f9b7eab9`](https://github.com/nodejs/node/commit/34f9b7eab9)] - **doc**: reserve NMV 140 for Electron 39 (David Sanders) [#59627](https://github.com/nodejs/node/pull/59627)\r\n* \\[[`3f6f6db43f`](https://github.com/nodejs/node/commit/3f6f6db43f)] - **doc**: update minimum Xcode and VS versions (Michaël Zasso) [#59358](https://github.com/nodejs/node/pull/59358)\r\n* \\[[`d9fe28bd6b`](https://github.com/nodejs/node/commit/d9fe28bd6b)] - **doc**: fix `CHANGELOG.md` version listing (Antoine du Hamel) [#59299](https://github.com/nodejs/node/pull/59299)\r\n* \\[[`0ab50c2768`](https://github.com/nodejs/node/commit/0ab50c2768)] - **doc**: reserve NMV 139 for Electron 38 (Calvin) [#58779](https://github.com/nodejs/node/pull/58779)\r\n* \\[[`516b4ebd3c`](https://github.com/nodejs/node/commit/516b4ebd3c)] - **doc**: mark Node.js 23 as End-of-Life (Antoine du Hamel) [#58563](https://github.com/nodejs/node/pull/58563)\r\n* \\[[`59b70e5fe3`](https://github.com/nodejs/node/commit/59b70e5fe3)] - **http**: fix http client leaky with double response (theanarkh) [#60062](https://github.com/nodejs/node/pull/60062)\r\n* \\[[`5cf3c3e24c`](https://github.com/nodejs/node/commit/5cf3c3e24c)] - **http2**: rename variable to additionalPseudoHeaders (Tobias Nießen) [#60208](https://github.com/nodejs/node/pull/60208)\r\n* \\[[`535efea962`](https://github.com/nodejs/node/commit/535efea962)] - **http2**: do not crash on mismatched ping buffer length (René) [#60135](https://github.com/nodejs/node/pull/60135)\r\n* \\[[`4bfa387f6d`](https://github.com/nodejs/node/commit/4bfa387f6d)] - **lib**: fix constructor in \\_errnoException stack tree (SeokHun) [#60156](https://github.com/nodejs/node/pull/60156)\r\n* \\[[`4daeec11b9`](https://github.com/nodejs/node/commit/4daeec11b9)] - **lib**: fix typo in QuicSessionStats (SeokHun) [#60155](https://github.com/nodejs/node/pull/60155)\r\n* \\[[`15278252bb`](https://github.com/nodejs/node/commit/15278252bb)] - **lib**: remove redundant destroyHook checks (Gürgün Dayıoğlu) [#60120](https://github.com/nodejs/node/pull/60120)\r\n* \\[[`83052ff9ad`](https://github.com/nodejs/node/commit/83052ff9ad)] - **lib**: add `node:` prefix in sys module deprecation warning (Dario Piotrowicz) [#58442](https://github.com/nodejs/node/pull/58442)\r\n* \\[[`d5abfbf582`](https://github.com/nodejs/node/commit/d5abfbf582)] - **lib**: add module to use in module deprecation warnings (Dario Piotrowicz) [#58442](https://github.com/nodejs/node/pull/58442)\r\n* \\[[`db0121bedd`](https://github.com/nodejs/node/commit/db0121bedd)] - **module**: fix directory option in the enableCompileCache() API (Joyee Cheung) [#59931](https://github.com/nodejs/node/pull/59931)\r\n* \\[[`822a8c3244`](https://github.com/nodejs/node/commit/822a8c3244)] - **perf\\_hooks**: fix stack overflow error (Antoine du Hamel) [#60084](https://github.com/nodejs/node/pull/60084)\r\n* \\[[`d52cd04591`](https://github.com/nodejs/node/commit/d52cd04591)] - **quic**: continue working on quic api bits (James M Snell) [#60123](https://github.com/nodejs/node/pull/60123)\r\n* \\[[`b4af647920`](https://github.com/nodejs/node/commit/b4af647920)] - **quic**: reduce boilerplate and other minor cleanups (James M Snell) [#59342](https://github.com/nodejs/node/pull/59342)\r\n* \\[[`cd9fd09a27`](https://github.com/nodejs/node/commit/cd9fd09a27)] - **quic**: multiple fixups and updates (James M Snell) [#59342](https://github.com/nodejs/node/pull/59342)\r\n* \\[[`a6c5d27739`](https://github.com/nodejs/node/commit/a6c5d27739)] - **quic**: update more of the quic to the new compile guard (James M Snell) [#59342](https://github.com/nodejs/node/pull/59342)\r\n* \\[[`ee7b8ab29c`](https://github.com/nodejs/node/commit/ee7b8ab29c)] - **quic**: few additional small comment edits in cid.h (James M Snell) [#59342](https://github.com/nodejs/node/pull/59342)\r\n* \\[[`c8b64bd023`](https://github.com/nodejs/node/commit/c8b64bd023)] - **quic**: fixup NO\\_ERROR macro conflict on windows (James M Snell) [#59381](https://github.com/nodejs/node/pull/59381)\r\n* \\[[`e2fefd78e2`](https://github.com/nodejs/node/commit/e2fefd78e2)] - **quic**: fixup windows coverage compile error (James M Snell) [#59381](https://github.com/nodejs/node/pull/59381)\r\n* \\[[`99c80e3a45`](https://github.com/nodejs/node/commit/99c80e3a45)] - **quic**: update the guard to check openssl version (James M Snell) [#59249](https://github.com/nodejs/node/pull/59249)\r\n* \\[[`0e754fa5d1`](https://github.com/nodejs/node/commit/0e754fa5d1)] - **quic**: start re-enabling quic with openssl 3.5 (James M Snell) [#59249](https://github.com/nodejs/node/pull/59249)\r\n* \\[[`200fe9e7f4`](https://github.com/nodejs/node/commit/200fe9e7f4)] - **repl**: move completion logic to internal module (Dario Piotrowicz) [#59889](https://github.com/nodejs/node/pull/59889)\r\n* \\[[`3ac88a7a66`](https://github.com/nodejs/node/commit/3ac88a7a66)] - **src**: use string\\_view in `WriteReport()` (Anna Henningsen) [#60201](https://github.com/nodejs/node/pull/60201)\r\n* \\[[`a1244f04de`](https://github.com/nodejs/node/commit/a1244f04de)] - **src**: make additional cleanups in node locks impl (James M Snell) [#60061](https://github.com/nodejs/node/pull/60061)\r\n* \\[[`fdb6e66227`](https://github.com/nodejs/node/commit/fdb6e66227)] - **src**: update locks to use DictionaryTemplate (James M Snell) [#60061](https://github.com/nodejs/node/pull/60061)\r\n* \\[[`367bcce6a6`](https://github.com/nodejs/node/commit/367bcce6a6)] - **src**: fix usage of deprecated V8 API (Michaël Zasso) [#60174](https://github.com/nodejs/node/pull/60174)\r\n* \\[[`23fa18444f`](https://github.com/nodejs/node/commit/23fa18444f)] - **src**: fix small compile warning in quic/streams.cc (James M Snell) [#60118](https://github.com/nodejs/node/pull/60118)\r\n* \\[[`0ec1d186f4`](https://github.com/nodejs/node/commit/0ec1d186f4)] - **src**: always use strong reference to `napi_async_context` resource (Anna Henningsen) [#59828](https://github.com/nodejs/node/pull/59828)\r\n* \\[[`ce748f6cae`](https://github.com/nodejs/node/commit/ce748f6cae)] - **src**: use `Global` for storing resource in Node-API callback scope (Anna Henningsen) [#59828](https://github.com/nodejs/node/pull/59828)\r\n* \\[[`36256230b4`](https://github.com/nodejs/node/commit/36256230b4)] - **src**: cleanup quic TransportParams class (James M Snell) [#59884](https://github.com/nodejs/node/pull/59884)\r\n* \\[[`985e2fb383`](https://github.com/nodejs/node/commit/985e2fb383)] - _**Revert**_ \"**test**: ensure message event fires in worker message port test\" (Luigi Pinca) [#60126](https://github.com/nodejs/node/pull/60126)\r\n* \\[[`da9cd745c8`](https://github.com/nodejs/node/commit/da9cd745c8)] - **test**: ensure assertions are reachable in `test/client-proxy` (Antoine du Hamel) [#60175](https://github.com/nodejs/node/pull/60175)\r\n* \\[[`e105e821e9`](https://github.com/nodejs/node/commit/e105e821e9)] - **test**: skip quic tests that IBM i does not support (SRAVANI GUNDEPALLI) [#60160](https://github.com/nodejs/node/pull/60160)\r\n* \\[[`bfc81ca228`](https://github.com/nodejs/node/commit/bfc81ca228)] - **test**: ensure assertions are reachable in `test/async-hooks` (Antoine du Hamel) [#60150](https://github.com/nodejs/node/pull/60150)\r\n* \\[[`712cee951c`](https://github.com/nodejs/node/commit/712cee951c)] - **test**: skip tests that cause timeouts on IBM i (SRAVANI GUNDEPALLI) [#60148](https://github.com/nodejs/node/pull/60148)\r\n* \\[[`f8a43f6f34`](https://github.com/nodejs/node/commit/f8a43f6f34)] - **test**: deflake test-fs-promises-watch-iterator (Luigi Pinca) [#60060](https://github.com/nodejs/node/pull/60060)\r\n* \\[[`1f95d39997`](https://github.com/nodejs/node/commit/1f95d39997)] - **test**: prepare junit file attribute normalization (sangwook) [#59432](https://github.com/nodejs/node/pull/59432)\r\n* \\[[`eb159a8cfd`](https://github.com/nodejs/node/commit/eb159a8cfd)] - **test**: remove duplicated allocUnsafeSlow test (Michaël Zasso) [#58524](https://github.com/nodejs/node/pull/58524)\r\n* \\[[`d93cff5af3`](https://github.com/nodejs/node/commit/d93cff5af3)] - _**Revert**_ \"**test**: fix watch tests not including completion messages\" (Joyee Cheung) [#58190](https://github.com/nodejs/node/pull/58190)\r\n* \\[[`6102159fa1`](https://github.com/nodejs/node/commit/6102159fa1)] - **test**: fix watch tests not including completion messages (Dario Piotrowicz) [#58183](https://github.com/nodejs/node/pull/58183)\r\n* \\[[`ad2c1bf62e`](https://github.com/nodejs/node/commit/ad2c1bf62e)] - **test,doc**: skip --max-old-space-size-percentage on 32-bit platforms (Asaf Federman) [#60144](https://github.com/nodejs/node/pull/60144)\r\n* \\[[`6dbf7086bb`](https://github.com/nodejs/node/commit/6dbf7086bb)] - **test\\_runner**: fix suite timeout (Moshe Atlow) [#59853](https://github.com/nodejs/node/pull/59853)\r\n* \\[[`f0aa073907`](https://github.com/nodejs/node/commit/f0aa073907)] - **test\\_runner**: add junit file attribute support (sangwook) [#59432](https://github.com/nodejs/node/pull/59432)\r\n* \\[[`cff138c6b1`](https://github.com/nodejs/node/commit/cff138c6b1)] - **tests**: start adding quic test server utilities (James M Snell) [#59946](https://github.com/nodejs/node/pull/59946)\r\n* \\[[`20dc4b514a`](https://github.com/nodejs/node/commit/20dc4b514a)] - **tools**: use cooldown property correctly (Rafael Gonzaga) [#60134](https://github.com/nodejs/node/pull/60134)\r\n* \\[[`ec26b1c01a`](https://github.com/nodejs/node/commit/ec26b1c01a)] - **tools**: add lint rule to ensure assertions are reached (Antoine du Hamel) [#60125](https://github.com/nodejs/node/pull/60125)\r\n* \\[[`bab752d4db`](https://github.com/nodejs/node/commit/bab752d4db)] - **typings**: add buffer internalBinding typing (방진혁) [#60163](https://github.com/nodejs/node/pull/60163)\r\n* \\[[`1986ee4b65`](https://github.com/nodejs/node/commit/1986ee4b65)] - **vm**: hint module identifier in instantiate errors (Chengzhong Wu) [#60199](https://github.com/nodejs/node/pull/60199)\r\n* \\[[`23b834058c`](https://github.com/nodejs/node/commit/23b834058c)] - **wasm**: revert enable JSPI as already enabled (Guy Bedford) [#60014](https://github.com/nodejs/node/pull/60014)\r\n* \\[[`4bfcad1ac5`](https://github.com/nodejs/node/commit/4bfcad1ac5)] - _**Revert**_ \"**watch**: fix watch args not being properly filtered\" (Joyee Cheung) [#58190](https://github.com/nodejs/node/pull/58190)\r\n* \\[[`4acb854039`](https://github.com/nodejs/node/commit/4acb854039)] - **watch**: fix watch args not being properly filtered (Dario Piotrowicz) [#57936](https://github.com/nodejs/node/pull/57936)\r\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/254773105/reactions", + "total_count": 110, + "+1": 39, + "-1": 0, + "laugh": 0, + "hooray": 34, + "confused": 0, + "heart": 18, + "rocket": 18, + "eyes": 1 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/253836594", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/253836594/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/253836594/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v24.10.0", + "id": 253836594, + "author": { + "login": "RafaelGSS", + "id": 26234614, + "node_id": "MDQ6VXNlcjI2MjM0NjE0", + "avatar_url": "https://avatars.githubusercontent.com/u/26234614?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RafaelGSS", + "html_url": "https://github.com/RafaelGSS", + "followers_url": "https://api.github.com/users/RafaelGSS/followers", + "following_url": "https://api.github.com/users/RafaelGSS/following{/other_user}", + "gists_url": "https://api.github.com/users/RafaelGSS/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RafaelGSS/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RafaelGSS/subscriptions", + "organizations_url": "https://api.github.com/users/RafaelGSS/orgs", + "repos_url": "https://api.github.com/users/RafaelGSS/repos", + "events_url": "https://api.github.com/users/RafaelGSS/events{/privacy}", + "received_events_url": "https://api.github.com/users/RafaelGSS/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84PIT0y", + "tag_name": "v24.10.0", + "target_commitish": "main", + "name": "2025-10-08, Version 24.10.0 (Current), @RafaelGSS", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-08T22:41:46Z", + "updated_at": "2025-10-11T16:18:16Z", + "published_at": "2025-10-11T16:18:16Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v24.10.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v24.10.0", + "body": "### Notable Changes\r\n\r\n* \\[[`31bb476895`](https://github.com/nodejs/node/commit/31bb476895)] - **(SEMVER-MINOR)** **console**: allow per-stream `inspectOptions` option (Anna Henningsen) [#60082](https://github.com/nodejs/node/pull/60082)\r\n* \\[[`3b92be2fb8`](https://github.com/nodejs/node/commit/3b92be2fb8)] - **(SEMVER-MINOR)** **lib**: remove util.getCallSite (Rafael Gonzaga) [#59980](https://github.com/nodejs/node/pull/59980)\r\n* \\[[`18c79d9e1c`](https://github.com/nodejs/node/commit/18c79d9e1c)] - **(SEMVER-MINOR)** **sqlite**: create authorization api (Guilherme Araújo) [#59928](https://github.com/nodejs/node/pull/59928)\r\n\r\n### Commits\r\n\r\n* \\[[`e8cff3d51e`](https://github.com/nodejs/node/commit/e8cff3d51e)] - **benchmark**: remove unused variable from util/priority-queue (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872)\r\n* \\[[`03294252ab`](https://github.com/nodejs/node/commit/03294252ab)] - **benchmark**: update count to n in permission startup (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872)\r\n* \\[[`3c8a609d9b`](https://github.com/nodejs/node/commit/3c8a609d9b)] - **benchmark**: update num to n in dgram offset-length (Bruno Rodrigues) [#59872](https://github.com/nodejs/node/pull/59872)\r\n* \\[[`7b2032b13e`](https://github.com/nodejs/node/commit/7b2032b13e)] - **benchmark**: adjust dgram offset-length len values (Bruno Rodrigues) [#59708](https://github.com/nodejs/node/pull/59708)\r\n* \\[[`552d887aee`](https://github.com/nodejs/node/commit/552d887aee)] - **benchmark**: update num to n in dgram offset-length (Bruno Rodrigues) [#59708](https://github.com/nodejs/node/pull/59708)\r\n* \\[[`31bb476895`](https://github.com/nodejs/node/commit/31bb476895)] - **(SEMVER-MINOR)** **console**: allow per-stream `inspectOptions` option (Anna Henningsen) [#60082](https://github.com/nodejs/node/pull/60082)\r\n* \\[[`0bf022d4c0`](https://github.com/nodejs/node/commit/0bf022d4c0)] - **console,util**: improve array inspection performance (Ruben Bridgewater) [#60037](https://github.com/nodejs/node/pull/60037)\r\n* \\[[`04d568e591`](https://github.com/nodejs/node/commit/04d568e591)] - **deps**: V8: cherry-pick f93055fbd5aa (Olivier Flückiger) [#60105](https://github.com/nodejs/node/pull/60105)\r\n* \\[[`621058b3bf`](https://github.com/nodejs/node/commit/621058b3bf)] - **deps**: update archs files for openssl-3.5.4 (Node.js GitHub Bot) [#60101](https://github.com/nodejs/node/pull/60101)\r\n* \\[[`81b3009fe6`](https://github.com/nodejs/node/commit/81b3009fe6)] - **deps**: upgrade openssl sources to openssl-3.5.4 (Node.js GitHub Bot) [#60101](https://github.com/nodejs/node/pull/60101)\r\n* \\[[`dc44c9f349`](https://github.com/nodejs/node/commit/dc44c9f349)] - **deps**: upgrade npm to 11.6.1 (npm team) [#60012](https://github.com/nodejs/node/pull/60012)\r\n* \\[[`ec0f137198`](https://github.com/nodejs/node/commit/ec0f137198)] - **deps**: update ada to 3.3.0 (Node.js GitHub Bot) [#60045](https://github.com/nodejs/node/pull/60045)\r\n* \\[[`f490f91874`](https://github.com/nodejs/node/commit/f490f91874)] - **deps**: update amaro to 1.1.4 (pmarchini) [#60044](https://github.com/nodejs/node/pull/60044)\r\n* \\[[`de7a7cd0d7`](https://github.com/nodejs/node/commit/de7a7cd0d7)] - **deps**: update ada to 3.2.9 (Node.js GitHub Bot) [#59987](https://github.com/nodejs/node/pull/59987)\r\n* \\[[`a533e5b5db`](https://github.com/nodejs/node/commit/a533e5b5db)] - **doc**: add automated migration info to deprecations (Augustin Mauroy) [#60022](https://github.com/nodejs/node/pull/60022)\r\n* \\[[`7fb8fe4875`](https://github.com/nodejs/node/commit/7fb8fe4875)] - **doc**: fix typo on child\\_process.md (Angelo Gazzola) [#60114](https://github.com/nodejs/node/pull/60114)\r\n* \\[[`24c1ef9846`](https://github.com/nodejs/node/commit/24c1ef9846)] - **doc**: remove optional title prefixes (Aviv Keller) [#60087](https://github.com/nodejs/node/pull/60087)\r\n* \\[[`08b9eb8e19`](https://github.com/nodejs/node/commit/08b9eb8e19)] - **doc**: mark `.env` files support as stable (Santeri Hiltunen) [#59925](https://github.com/nodejs/node/pull/59925)\r\n* \\[[`66d90b8063`](https://github.com/nodejs/node/commit/66d90b8063)] - **doc**: mention reverse proxy and include simple example (Steven) [#59736](https://github.com/nodejs/node/pull/59736)\r\n* \\[[`14aa1119cb`](https://github.com/nodejs/node/commit/14aa1119cb)] - **doc**: provide alternative to `url.parse()` using WHATWG URL (Steven) [#59736](https://github.com/nodejs/node/pull/59736)\r\n* \\[[`f9412324f6`](https://github.com/nodejs/node/commit/f9412324f6)] - **doc**: fix typo of built-in module specifier in worker\\_threads (Deokjin Kim) [#59992](https://github.com/nodejs/node/pull/59992)\r\n* \\[[`64e738a342`](https://github.com/nodejs/node/commit/64e738a342)] - **doc,crypto**: reorder ML-KEM in the asymmetric key types table (Filip Skokan) [#60067](https://github.com/nodejs/node/pull/60067)\r\n* \\[[`1b25008b41`](https://github.com/nodejs/node/commit/1b25008b41)] - **http**: improve writeEarlyHints by avoiding for-of loop (Haram Jeong) [#59958](https://github.com/nodejs/node/pull/59958)\r\n* \\[[`35f9b6b28f`](https://github.com/nodejs/node/commit/35f9b6b28f)] - **inspector**: improve batch diagnostic channel subscriptions (Chengzhong Wu) [#60009](https://github.com/nodejs/node/pull/60009)\r\n* \\[[`3b92be2fb8`](https://github.com/nodejs/node/commit/3b92be2fb8)] - **(SEMVER-MINOR)** **lib**: remove util.getCallSite (Rafael Gonzaga) [#59980](https://github.com/nodejs/node/pull/59980)\r\n* \\[[`c495e1fe57`](https://github.com/nodejs/node/commit/c495e1fe57)] - **lib**: optimize priority queue (Gürgün Dayıoğlu) [#60039](https://github.com/nodejs/node/pull/60039)\r\n* \\[[`6be31fb9f3`](https://github.com/nodejs/node/commit/6be31fb9f3)] - **lib**: implement passive listener behavior per spec (BCD1me) [#59995](https://github.com/nodejs/node/pull/59995)\r\n* \\[[`c5e4aa763b`](https://github.com/nodejs/node/commit/c5e4aa763b)] - **meta**: bump actions/setup-python from 5.6.0 to 6.0.0 (dependabot\\[bot]) [#60090](https://github.com/nodejs/node/pull/60090)\r\n* \\[[`50fa1f4a76`](https://github.com/nodejs/node/commit/50fa1f4a76)] - **meta**: bump ossf/scorecard-action from 2.4.2 to 2.4.3 (dependabot\\[bot]) [#60096](https://github.com/nodejs/node/pull/60096)\r\n* \\[[`def4ce976c`](https://github.com/nodejs/node/commit/def4ce976c)] - **meta**: bump actions/cache from 4.2.4 to 4.3.0 (dependabot\\[bot]) [#60095](https://github.com/nodejs/node/pull/60095)\r\n* \\[[`24b5abc0e9`](https://github.com/nodejs/node/commit/24b5abc0e9)] - **meta**: bump step-security/harden-runner from 2.12.2 to 2.13.1 (dependabot\\[bot]) [#60094](https://github.com/nodejs/node/pull/60094)\r\n* \\[[`8ccf2b0b34`](https://github.com/nodejs/node/commit/8ccf2b0b34)] - **meta**: bump actions/setup-node from 4.4.0 to 5.0.0 (dependabot\\[bot]) [#60093](https://github.com/nodejs/node/pull/60093)\r\n* \\[[`78580147ef`](https://github.com/nodejs/node/commit/78580147ef)] - **meta**: bump actions/stale from 9.1.0 to 10.0.0 (dependabot\\[bot]) [#60092](https://github.com/nodejs/node/pull/60092)\r\n* \\[[`705686b5c4`](https://github.com/nodejs/node/commit/705686b5c4)] - **meta**: bump codecov/codecov-action from 5.5.0 to 5.5.1 (dependabot\\[bot]) [#60091](https://github.com/nodejs/node/pull/60091)\r\n* \\[[`423a6bc744`](https://github.com/nodejs/node/commit/423a6bc744)] - **meta**: bump github/codeql-action from 3.30.0 to 3.30.5 (dependabot\\[bot]) [#60089](https://github.com/nodejs/node/pull/60089)\r\n* \\[[`9d9bd0fb4f`](https://github.com/nodejs/node/commit/9d9bd0fb4f)] - **meta**: move Michael to emeritus (Michael Dawson) [#60070](https://github.com/nodejs/node/pull/60070)\r\n* \\[[`dbeee55824`](https://github.com/nodejs/node/commit/dbeee55824)] - **module**: use sync cjs when importing cts (Marco Ippolito) [#60072](https://github.com/nodejs/node/pull/60072)\r\n* \\[[`a722f677ac`](https://github.com/nodejs/node/commit/a722f677ac)] - **perf\\_hooks**: fix histogram fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\r\n* \\[[`b3295b8353`](https://github.com/nodejs/node/commit/b3295b8353)] - **process**: fix wrong asyncContext under unhandled-rejections=strict (Shima Ryuhei) [#60103](https://github.com/nodejs/node/pull/60103)\r\n* \\[[`cff4a7608a`](https://github.com/nodejs/node/commit/cff4a7608a)] - **process**: fix default `env` for `process.execve` (Richard Lau) [#60029](https://github.com/nodejs/node/pull/60029)\r\n* \\[[`cd034e927f`](https://github.com/nodejs/node/commit/cd034e927f)] - **process**: fix hrtime fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\r\n* \\[[`18c79d9e1c`](https://github.com/nodejs/node/commit/18c79d9e1c)] - **(SEMVER-MINOR)** **sqlite**: create authorization api (Guilherme Araújo) [#59928](https://github.com/nodejs/node/pull/59928)\r\n* \\[[`d949222043`](https://github.com/nodejs/node/commit/d949222043)] - **sqlite**: replace `ToLocalChecked` and improve filter error handling (Edy Silva) [#60028](https://github.com/nodejs/node/pull/60028)\r\n* \\[[`6417dc879e`](https://github.com/nodejs/node/commit/6417dc879e)] - **src**: bring permissions macros in line with general C/C++ standards (Anna Henningsen) [#60053](https://github.com/nodejs/node/pull/60053)\r\n* \\[[`e273c2020c`](https://github.com/nodejs/node/commit/e273c2020c)] - **src**: update contextify to use DictionaryTemplate (James M Snell) [#60059](https://github.com/nodejs/node/pull/60059)\r\n* \\[[`5f9ff60664`](https://github.com/nodejs/node/commit/5f9ff60664)] - **src**: remove `AnalyzeTemporaryDtors` option from .clang-tidy (iknoom) [#60008](https://github.com/nodejs/node/pull/60008)\r\n* \\[[`9db54adccc`](https://github.com/nodejs/node/commit/9db54adccc)] - **src**: update cares\\_wrap to use DictionaryTemplates (James M Snell) [#60033](https://github.com/nodejs/node/pull/60033)\r\n* \\[[`fc0ceb7b82`](https://github.com/nodejs/node/commit/fc0ceb7b82)] - **src**: correct the error handling in StatementExecutionHelper (James M Snell) [#60040](https://github.com/nodejs/node/pull/60040)\r\n* \\[[`3e8fdc1d8d`](https://github.com/nodejs/node/commit/3e8fdc1d8d)] - **src**: remove unused variables from report (Moonki Choi) [#60047](https://github.com/nodejs/node/pull/60047)\r\n* \\[[`d744324d8e`](https://github.com/nodejs/node/commit/d744324d8e)] - **src**: avoid unnecessary string allocations in SPrintF impl (Anna Henningsen) [#60052](https://github.com/nodejs/node/pull/60052)\r\n* \\[[`de65a5c719`](https://github.com/nodejs/node/commit/de65a5c719)] - **src**: make ToLower/ToUpper input args more flexible (Anna Henningsen) [#60052](https://github.com/nodejs/node/pull/60052)\r\n* \\[[`354026df5a`](https://github.com/nodejs/node/commit/354026df5a)] - **src**: allow `std::string_view` arguments to `SPrintF()` and friends (Anna Henningsen) [#60058](https://github.com/nodejs/node/pull/60058)\r\n* \\[[`42f7d7cb20`](https://github.com/nodejs/node/commit/42f7d7cb20)] - **src**: remove unnecessary `std::string` error messages (Anna Henningsen) [#60057](https://github.com/nodejs/node/pull/60057)\r\n* \\[[`30c2c0fedd`](https://github.com/nodejs/node/commit/30c2c0fedd)] - **src**: remove unnecessary shadowed functions on Utf8Value & BufferValue (Anna Henningsen) [#60056](https://github.com/nodejs/node/pull/60056)\r\n* \\[[`eb99eec09b`](https://github.com/nodejs/node/commit/eb99eec09b)] - **src**: avoid unnecessary string -> `char*` -> string round trips (Anna Henningsen) [#60055](https://github.com/nodejs/node/pull/60055)\r\n* \\[[`c1f1dbdce2`](https://github.com/nodejs/node/commit/c1f1dbdce2)] - **src**: remove useless dereferencing in `THROW_...` (Anna Henningsen) [#60054](https://github.com/nodejs/node/pull/60054)\r\n* \\[[`ea0f5e575d`](https://github.com/nodejs/node/commit/ea0f5e575d)] - **src**: fill `options_args`, `options_env` after vectors are finalized (iknoom) [#59945](https://github.com/nodejs/node/pull/59945)\r\n* \\[[`415fff217a`](https://github.com/nodejs/node/commit/415fff217a)] - **src**: use RAII for uv\\_process\\_options\\_t (iknoom) [#59945](https://github.com/nodejs/node/pull/59945)\r\n* \\[[`982b03ecbd`](https://github.com/nodejs/node/commit/982b03ecbd)] - **test**: mark `test-runner-run-watch` flaky on macOS (Richard Lau) [#60115](https://github.com/nodejs/node/pull/60115)\r\n* \\[[`831a0d3d28`](https://github.com/nodejs/node/commit/831a0d3d28)] - **test**: ensure that the message event is fired (Luigi Pinca) [#59952](https://github.com/nodejs/node/pull/59952)\r\n* \\[[`5538cfc1e8`](https://github.com/nodejs/node/commit/5538cfc1e8)] - **test**: replace diagnostics\\_channel stackframe in output snapshots (Chengzhong Wu) [#60024](https://github.com/nodejs/node/pull/60024)\r\n* \\[[`77ec400d90`](https://github.com/nodejs/node/commit/77ec400d90)] - **test**: mark test-web-locks skip on IBM i (SRAVANI GUNDEPALLI) [#59996](https://github.com/nodejs/node/pull/59996)\r\n* \\[[`1aaadb9e31`](https://github.com/nodejs/node/commit/1aaadb9e31)] - **test**: ensure message event fires in worker message port test (Jarred Sumner) [#59885](https://github.com/nodejs/node/pull/59885)\r\n* \\[[`1d5cc5e57a`](https://github.com/nodejs/node/commit/1d5cc5e57a)] - **test**: mark sea tests flaky on macOS x64 (Richard Lau) [#60068](https://github.com/nodejs/node/pull/60068)\r\n* \\[[`c412b1855d`](https://github.com/nodejs/node/commit/c412b1855d)] - **test**: expand tls-check-server-identity coverage (Diango Gavidia) [#60002](https://github.com/nodejs/node/pull/60002)\r\n* \\[[`ad87975029`](https://github.com/nodejs/node/commit/ad87975029)] - **test**: fix typo of test-benchmark-readline.js (Deokjin Kim) [#59993](https://github.com/nodejs/node/pull/59993)\r\n* \\[[`bad4b9b878`](https://github.com/nodejs/node/commit/bad4b9b878)] - **test**: add new `startNewREPLSever` testing utility (Dario Piotrowicz) [#59964](https://github.com/nodejs/node/pull/59964)\r\n* \\[[`ef90b0f456`](https://github.com/nodejs/node/commit/ef90b0f456)] - **test**: verify tracing channel doesn't swallow unhandledRejection (Gerhard Stöbich) [#59974](https://github.com/nodejs/node/pull/59974)\r\n* \\[[`d7285459fe`](https://github.com/nodejs/node/commit/d7285459fe)] - **timers**: fix binding fast call signatures (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\r\n* \\[[`6529ae9b0c`](https://github.com/nodejs/node/commit/6529ae9b0c)] - **tools**: add message on auto-fixing js lint issues in gh workflow (Dario Piotrowicz) [#59128](https://github.com/nodejs/node/pull/59128)\r\n* \\[[`1ca116a6ea`](https://github.com/nodejs/node/commit/1ca116a6ea)] - **tools**: verify signatures when updating nghttp\\* (Antoine du Hamel) [#60113](https://github.com/nodejs/node/pull/60113)\r\n* \\[[`20d10a2398`](https://github.com/nodejs/node/commit/20d10a2398)] - **tools**: use dependabot cooldown and move tools/doc (Rafael Gonzaga) [#59978](https://github.com/nodejs/node/pull/59978)\r\n* \\[[`275c07064c`](https://github.com/nodejs/node/commit/275c07064c)] - **typings**: update 'types' binding (René) [#59692](https://github.com/nodejs/node/pull/59692)\r\n* \\[[`8c21c4b286`](https://github.com/nodejs/node/commit/8c21c4b286)] - **wasi**: fix WasiFunction fast call signature (Renegade334) [#59600](https://github.com/nodejs/node/pull/59600)\r\n* \\[[`b865074641`](https://github.com/nodejs/node/commit/b865074641)] - **win,tools**: add description to signature (Martin Costello) [#59877](https://github.com/nodejs/node/pull/59877)\r\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/253836594/reactions", + "total_count": 74, + "+1": 28, + "-1": 0, + "laugh": 2, + "hooray": 12, + "confused": 0, + "heart": 4, + "rocket": 20, + "eyes": 8 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/250119318", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/250119318/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/250119318/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v24.9.0", + "id": 250119318, + "author": { + "login": "targos", + "id": 2352663, + "node_id": "MDQ6VXNlcjIzNTI2NjM=", + "avatar_url": "https://avatars.githubusercontent.com/u/2352663?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/targos", + "html_url": "https://github.com/targos", + "followers_url": "https://api.github.com/users/targos/followers", + "following_url": "https://api.github.com/users/targos/following{/other_user}", + "gists_url": "https://api.github.com/users/targos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/targos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/targos/subscriptions", + "organizations_url": "https://api.github.com/users/targos/orgs", + "repos_url": "https://api.github.com/users/targos/repos", + "events_url": "https://api.github.com/users/targos/events{/privacy}", + "received_events_url": "https://api.github.com/users/targos/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84O6ISW", + "tag_name": "v24.9.0", + "target_commitish": "main", + "name": "2025-09-25, Version 24.9.0 (Current), @targos", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-09-25T19:36:44Z", + "updated_at": "2025-09-25T19:52:13Z", + "published_at": "2025-09-25T19:52:13Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v24.9.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v24.9.0", + "body": "### Notable Changes\r\n\r\n* \\[[`9b043a9096`](https://github.com/nodejs/node/commit/9b043a9096)] - **(SEMVER-MINOR)** **http**: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) [#59824](https://github.com/nodejs/node/pull/59824)\r\n* \\[[`a6456ab90a`](https://github.com/nodejs/node/commit/a6456ab90a)] - **(SEMVER-MINOR)** **sqlite**: cleanup ERM support and export Session class (James M Snell) [#58378](https://github.com/nodejs/node/pull/58378)\r\n* \\[[`5563361d22`](https://github.com/nodejs/node/commit/5563361d22)] - **(SEMVER-MINOR)** **sqlite**: add tagged template (0hm☘️) [#58748](https://github.com/nodejs/node/pull/58748)\r\n* \\[[`04013ee933`](https://github.com/nodejs/node/commit/04013ee933)] - **(SEMVER-MINOR)** **worker**: add heap profile API (theanarkh) [#59846](https://github.com/nodejs/node/pull/59846)\r\n\r\n### Commits\r\n\r\n* \\[[`cbec4fd6de`](https://github.com/nodejs/node/commit/cbec4fd6de)] - **benchmark**: calibrate config dgram multi-buffer (Bruno Rodrigues) [#59696](https://github.com/nodejs/node/pull/59696)\r\n* \\[[`9a4bbdc3c5`](https://github.com/nodejs/node/commit/9a4bbdc3c5)] - **benchmark**: calibrate config cluster/echo.js (Nam Yooseong) [#59836](https://github.com/nodejs/node/pull/59836)\r\n* \\[[`0b284d86e8`](https://github.com/nodejs/node/commit/0b284d86e8)] - **build**: add the missing macro definitions for OpenHarmony (hqzing) [#59804](https://github.com/nodejs/node/pull/59804)\r\n* \\[[`43e6e54d66`](https://github.com/nodejs/node/commit/43e6e54d66)] - **build**: do not include custom ESLint rules testing in tarball (Antoine du Hamel) [#59809](https://github.com/nodejs/node/pull/59809)\r\n* \\[[`039ac19154`](https://github.com/nodejs/node/commit/039ac19154)] - **crypto**: expose signatureAlgorithm on X509Certificate (Patrick Costa) [#59235](https://github.com/nodejs/node/pull/59235)\r\n* \\[[`647c332704`](https://github.com/nodejs/node/commit/647c332704)] - **crypto**: use `return await` when returning Promises from async functions (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841)\r\n* \\[[`8ed4587cf0`](https://github.com/nodejs/node/commit/8ed4587cf0)] - **crypto**: use async functions for non-stub Promise-returning functions (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841)\r\n* \\[[`bb051c56ef`](https://github.com/nodejs/node/commit/bb051c56ef)] - **crypto**: avoid calls to `promise.catch()` (Renegade334) [#59841](https://github.com/nodejs/node/pull/59841)\r\n* \\[[`05e560dd25`](https://github.com/nodejs/node/commit/05e560dd25)] - **deps**: update googletest to 50b8600 (Node.js GitHub Bot) [#59955](https://github.com/nodejs/node/pull/59955)\r\n* \\[[`fa40d3a785`](https://github.com/nodejs/node/commit/fa40d3a785)] - **deps**: update archs files for openssl-3.5.3 (Node.js GitHub Bot) [#59901](https://github.com/nodejs/node/pull/59901)\r\n* \\[[`8c85570d18`](https://github.com/nodejs/node/commit/8c85570d18)] - **deps**: upgrade openssl sources to openssl-3.5.3 (Node.js GitHub Bot) [#59901](https://github.com/nodejs/node/pull/59901)\r\n* \\[[`b71125664e`](https://github.com/nodejs/node/commit/b71125664e)] - **deps**: update undici to 7.16.0 (Node.js GitHub Bot) [#59830](https://github.com/nodejs/node/pull/59830)\r\n* \\[[`dea5dd7077`](https://github.com/nodejs/node/commit/dea5dd7077)] - **dgram**: restore buffer optimization in fixBufferList (Yoo) [#59934](https://github.com/nodejs/node/pull/59934)\r\n* \\[[`b0c1e67532`](https://github.com/nodejs/node/commit/b0c1e67532)] - **diagnostics\\_channel**: fix race condition with diagnostics\\_channel and GC (Ugaitz Urien) [#59910](https://github.com/nodejs/node/pull/59910)\r\n* \\[[`0b37b594c3`](https://github.com/nodejs/node/commit/0b37b594c3)] - **doc**: use \"WebAssembly\" instead of \"Web Assembly\" (Tobias Nießen) [#59954](https://github.com/nodejs/node/pull/59954)\r\n* \\[[`1e723f9c6b`](https://github.com/nodejs/node/commit/1e723f9c6b)] - **doc**: fix typo in section on microtask order (Tobias Nießen) [#59932](https://github.com/nodejs/node/pull/59932)\r\n* \\[[`a28962a85c`](https://github.com/nodejs/node/commit/a28962a85c)] - **doc**: update V8 fast API guidance (René) [#58999](https://github.com/nodejs/node/pull/58999)\r\n* \\[[`bd767c5d1b`](https://github.com/nodejs/node/commit/bd767c5d1b)] - **doc**: add security escalation policy (Ulises Gascón) [#59806](https://github.com/nodejs/node/pull/59806)\r\n* \\[[`9df91e59e1`](https://github.com/nodejs/node/commit/9df91e59e1)] - **doc**: type improvement of file `http.md` (yusheng chen) [#58189](https://github.com/nodejs/node/pull/58189)\r\n* \\[[`e4f571680b`](https://github.com/nodejs/node/commit/e4f571680b)] - **doc**: deprecate closing `fs.Dir` on garbage collection (Livia Medeiros) [#59839](https://github.com/nodejs/node/pull/59839)\r\n* \\[[`e9cb986fa5`](https://github.com/nodejs/node/commit/e9cb986fa5)] - **doc**: rephrase dynamic import() description (Nam Yooseong) [#59224](https://github.com/nodejs/node/pull/59224)\r\n* \\[[`026d4e33f7`](https://github.com/nodejs/node/commit/026d4e33f7)] - **doc,crypto**: update subtle.generateKey and subtle.importKey (Filip Skokan) [#59851](https://github.com/nodejs/node/pull/59851)\r\n* \\[[`2b2591db52`](https://github.com/nodejs/node/commit/2b2591db52)] - **esm**: make hasAsyncGraph non-enumerable (Joyee Cheung) [#59905](https://github.com/nodejs/node/pull/59905)\r\n* \\[[`993f05d323`](https://github.com/nodejs/node/commit/993f05d323)] - **fs,win**: do not add a second trailing slash in readdir (Gerhard Stöbich) [#59847](https://github.com/nodejs/node/pull/59847)\r\n* \\[[`7aec53b607`](https://github.com/nodejs/node/commit/7aec53b607)] - **(SEMVER-MINOR)** **http**: add shouldUpgradeCallback to let servers control HTTP upgrades (Tim Perry) [#59824](https://github.com/nodejs/node/pull/59824)\r\n* \\[[`83ae6102e7`](https://github.com/nodejs/node/commit/83ae6102e7)] - **http**: optimize checkIsHttpToken for short strings (방진혁) [#59832](https://github.com/nodejs/node/pull/59832)\r\n* \\[[`6695067636`](https://github.com/nodejs/node/commit/6695067636)] - **http,https**: handle IPv6 with proxies (Joyee Cheung) [#59894](https://github.com/nodejs/node/pull/59894)\r\n* \\[[`c5d910a0a9`](https://github.com/nodejs/node/commit/c5d910a0a9)] - **http2**: fix allowHttp1+Upgrade, broken by shouldUpgradeCallback (Tim Perry) [#59924](https://github.com/nodejs/node/pull/59924)\r\n* \\[[`acada1fb82`](https://github.com/nodejs/node/commit/acada1fb82)] - **inspector**: ensure adequate memory allocation for `Binary::toBase64` (René) [#59870](https://github.com/nodejs/node/pull/59870)\r\n* \\[[`396cc8ec65`](https://github.com/nodejs/node/commit/396cc8ec65)] - **lib**: update inspect output format for subclasses (Miguel Marcondes Filho) [#59687](https://github.com/nodejs/node/pull/59687)\r\n* \\[[`fed1dac8de`](https://github.com/nodejs/node/commit/fed1dac8de)] - **lib**: update isDeepStrictEqual to support options (Miguel Marcondes Filho) [#59762](https://github.com/nodejs/node/pull/59762)\r\n* \\[[`d785929fd7`](https://github.com/nodejs/node/commit/d785929fd7)] - **lib**: add source map support for assert messages (Chengzhong Wu) [#59751](https://github.com/nodejs/node/pull/59751)\r\n* \\[[`ff13d1d61e`](https://github.com/nodejs/node/commit/ff13d1d61e)] - **lib,src**: cache ModuleWrap.hasAsyncGraph (Chengzhong Wu) [#59703](https://github.com/nodejs/node/pull/59703)\r\n* \\[[`b200cd8470`](https://github.com/nodejs/node/commit/b200cd8470)] - **lib,src**: refactor assert to load error source from memory (Chengzhong Wu) [#59751](https://github.com/nodejs/node/pull/59751)\r\n* \\[[`e94c57301b`](https://github.com/nodejs/node/commit/e94c57301b)] - **meta**: add .npmrc with ignore-scripts=true (Joyee Cheung) [#59914](https://github.com/nodejs/node/pull/59914)\r\n* \\[[`728472a57b`](https://github.com/nodejs/node/commit/728472a57b)] - **module**: only put directly require-d ESM into require.cache (Joyee Cheung) [#59874](https://github.com/nodejs/node/pull/59874)\r\n* \\[[`be48760b93`](https://github.com/nodejs/node/commit/be48760b93)] - **node-api**: added SharedArrayBuffer api (Mert Can Altin) [#59071](https://github.com/nodejs/node/pull/59071)\r\n* \\[[`f006a14522`](https://github.com/nodejs/node/commit/f006a14522)] - **node-api**: make napi\\_delete\\_reference use node\\_api\\_basic\\_env (Jeetu Suthar) [#59684](https://github.com/nodejs/node/pull/59684)\r\n* \\[[`0f46c1c3b0`](https://github.com/nodejs/node/commit/0f46c1c3b0)] - **repl**: fix cpu overhead pasting big strings to the REPL (Ruben Bridgewater) [#59857](https://github.com/nodejs/node/pull/59857)\r\n* \\[[`3eeb7b47ea`](https://github.com/nodejs/node/commit/3eeb7b47ea)] - **sqlite**: fix crash session extension callbacks with workers (Bart Louwers) [#59848](https://github.com/nodejs/node/pull/59848)\r\n* \\[[`0fe53375ec`](https://github.com/nodejs/node/commit/0fe53375ec)] - **(SEMVER-MINOR)** **sqlite**: cleanup ERM support and export Session class (James M Snell) [#58378](https://github.com/nodejs/node/pull/58378)\r\n* \\[[`9a3e58a007`](https://github.com/nodejs/node/commit/9a3e58a007)] - **(SEMVER-MINOR)** **sqlite**: add tagged template (0hm☘️) [#58748](https://github.com/nodejs/node/pull/58748)\r\n* \\[[`f14ed5ab7b`](https://github.com/nodejs/node/commit/f14ed5ab7b)] - **src**: simplify watchdog instantiations via `std::optional` (Anna Henningsen) [#59960](https://github.com/nodejs/node/pull/59960)\r\n* \\[[`e330f03f84`](https://github.com/nodejs/node/commit/e330f03f84)] - **src**: update crypto objects to use DictionaryTemplate (James M Snell) [#59942](https://github.com/nodejs/node/pull/59942)\r\n* \\[[`69b5607cf4`](https://github.com/nodejs/node/commit/69b5607cf4)] - **src**: simplify is\\_callable by making it a concept (Tobias Nießen) [#58169](https://github.com/nodejs/node/pull/58169)\r\n* \\[[`86150f3401`](https://github.com/nodejs/node/commit/86150f3401)] - **src**: rename private fields to follow naming convention (Moonki Choi) [#59923](https://github.com/nodejs/node/pull/59923)\r\n* \\[[`d17f299539`](https://github.com/nodejs/node/commit/d17f299539)] - **src**: use DictionaryTemplate more in URLPattern (James M Snell) [#59892](https://github.com/nodejs/node/pull/59892)\r\n* \\[[`ac784912ac`](https://github.com/nodejs/node/commit/ac784912ac)] - **src**: reduce the nearest parent package JSON cache size (Michael Smith) [#59888](https://github.com/nodejs/node/pull/59888)\r\n* \\[[`abecdcb536`](https://github.com/nodejs/node/commit/abecdcb536)] - **src**: replace FIXED\\_ONE\\_BYTE\\_STRING with Environment-cached strings (Moonki Choi) [#59891](https://github.com/nodejs/node/pull/59891)\r\n* \\[[`2bb152500b`](https://github.com/nodejs/node/commit/2bb152500b)] - **src**: create strings in `FIXED_ONE_BYTE_STRING` as internalized (Anna Henningsen) [#59826](https://github.com/nodejs/node/pull/59826)\r\n* \\[[`03116a7cd8`](https://github.com/nodejs/node/commit/03116a7cd8)] - **src**: remove `std::array` overload of `FIXED_ONE_BYTE_STRING` (Anna Henningsen) [#59826](https://github.com/nodejs/node/pull/59826)\r\n* \\[[`8a5325d6e3`](https://github.com/nodejs/node/commit/8a5325d6e3)] - **src**: ensure `v8::Eternal` is empty before setting it (Anna Henningsen) [#59825](https://github.com/nodejs/node/pull/59825)\r\n* \\[[`f0c20ccd81`](https://github.com/nodejs/node/commit/f0c20ccd81)] - **src**: remove unnecessary `Environment::GetCurrent()` calls (Moonki Choi) [#59814](https://github.com/nodejs/node/pull/59814)\r\n* \\[[`213188e491`](https://github.com/nodejs/node/commit/213188e491)] - **stream**: use new AsyncResource instead of bind (Matteo Collina) [#59867](https://github.com/nodejs/node/pull/59867)\r\n* \\[[`ce8435b003`](https://github.com/nodejs/node/commit/ce8435b003)] - **test**: testcase demonstrating issue 59541 (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801)\r\n* \\[[`8f32746142`](https://github.com/nodejs/node/commit/8f32746142)] - **test**: guard write to proxy client if proxy connection is ended (Joyee Cheung) [#59742](https://github.com/nodejs/node/pull/59742)\r\n* \\[[`6790093fcb`](https://github.com/nodejs/node/commit/6790093fcb)] - **tls**: load bundled and extra certificates off-thread (Joyee Cheung) [#59856](https://github.com/nodejs/node/pull/59856)\r\n* \\[[`f5d3f919d8`](https://github.com/nodejs/node/commit/f5d3f919d8)] - **tls**: only do off-thread certificate loading on loading tls (Joyee Cheung) [#59856](https://github.com/nodejs/node/pull/59856)\r\n* \\[[`87bbaa23a0`](https://github.com/nodejs/node/commit/87bbaa23a0)] - **tools**: fix `tools/make-v8.sh` for clang (Richard Lau) [#59893](https://github.com/nodejs/node/pull/59893)\r\n* \\[[`0d23fd525b`](https://github.com/nodejs/node/commit/0d23fd525b)] - **tools**: skip test-internet workflow for draft PRs (Michaël Zasso) [#59817](https://github.com/nodejs/node/pull/59817)\r\n* \\[[`e17c73731a`](https://github.com/nodejs/node/commit/e17c73731a)] - **tools**: copyedit `build-tarball.yml` (Antoine du Hamel) [#59808](https://github.com/nodejs/node/pull/59808)\r\n* \\[[`97c4e1bac9`](https://github.com/nodejs/node/commit/97c4e1bac9)] - **typings**: remove unused imports (Nam Yooseong) [#59880](https://github.com/nodejs/node/pull/59880)\r\n* \\[[`8b29bbca76`](https://github.com/nodejs/node/commit/8b29bbca76)] - **url**: replaced slice with at (Mikhail) [#59181](https://github.com/nodejs/node/pull/59181)\r\n* \\[[`6458867a6b`](https://github.com/nodejs/node/commit/6458867a6b)] - **url**: add type checking to urlToHttpOptions() (simon-id) [#59753](https://github.com/nodejs/node/pull/59753)\r\n* \\[[`3c62b3886f`](https://github.com/nodejs/node/commit/3c62b3886f)] - **util**: inspect objects with throwing Symbol.toStringTag (Ruben Bridgewater) [#59860](https://github.com/nodejs/node/pull/59860)\r\n* \\[[`6133a82875`](https://github.com/nodejs/node/commit/6133a82875)] - **util**: fix debuglog.enabled not being present with callback logger (Ruben Bridgewater) [#59858](https://github.com/nodejs/node/pull/59858)\r\n* \\[[`9347ddddf4`](https://github.com/nodejs/node/commit/9347ddddf4)] - **vm**: explain how to share promises between contexts w/ afterEvaluate (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801)\r\n* \\[[`44ce971619`](https://github.com/nodejs/node/commit/44ce971619)] - **vm**: \"afterEvaluate\", evaluate() return a promise from the outer context (Eric Rannaud) [#59801](https://github.com/nodejs/node/pull/59801)\r\n* \\[[`6e586a1409`](https://github.com/nodejs/node/commit/6e586a1409)] - **vm**: expose hasTopLevelAwait on SourceTextModule (Chengzhong Wu) [#59865](https://github.com/nodejs/node/pull/59865)\r\n* \\[[`49747a58a3`](https://github.com/nodejs/node/commit/49747a58a3)] - **(SEMVER-MINOR)** **worker**: add heap profile API (theanarkh) [#59846](https://github.com/nodejs/node/pull/59846)\r\n* \\[[`b970c0bbc2`](https://github.com/nodejs/node/commit/b970c0bbc2)] - **zlib**: reduce code duplication (jhofstee) [#57810](https://github.com/nodejs/node/pull/57810)\r\n* \\[[`9782ca2b1b`](https://github.com/nodejs/node/commit/9782ca2b1b)] - **zlib**: implement fast path for crc32 (Gürgün Dayıoğlu) [#59813](https://github.com/nodejs/node/pull/59813)\r\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/250119318/reactions", + "total_count": 53, + "+1": 27, + "-1": 0, + "laugh": 2, + "hooray": 8, + "confused": 0, + "heart": 0, + "rocket": 12, + "eyes": 4 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/249686807", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/249686807/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/249686807/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v22.20.0", + "id": 249686807, + "author": { + "login": "richardlau", + "id": 5445507, + "node_id": "MDQ6VXNlcjU0NDU1MDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/5445507?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/richardlau", + "html_url": "https://github.com/richardlau", + "followers_url": "https://api.github.com/users/richardlau/followers", + "following_url": "https://api.github.com/users/richardlau/following{/other_user}", + "gists_url": "https://api.github.com/users/richardlau/gists{/gist_id}", + "starred_url": "https://api.github.com/users/richardlau/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/richardlau/subscriptions", + "organizations_url": "https://api.github.com/users/richardlau/orgs", + "repos_url": "https://api.github.com/users/richardlau/repos", + "events_url": "https://api.github.com/users/richardlau/events{/privacy}", + "received_events_url": "https://api.github.com/users/richardlau/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84O4esX", + "tag_name": "v22.20.0", + "target_commitish": "main", + "name": "2025-09-24, Version 22.20.0 'Jod' (LTS), @richardlau", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-09-24T12:45:05Z", + "updated_at": "2025-09-24T14:04:23Z", + "published_at": "2025-09-24T14:04:23Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v22.20.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v22.20.0", + "body": "### Notable Changes\r\n\r\n#### OpenSSL updated to 3.5.2\r\n\r\nFor official Node.js builds, or builds using the default build configuration, Node.js now bundles OpenSSL 3.5.2. This update allows Node.js 22.x to be supported through to the planned End-of-Life date of 2027-04-30 as the previously bundled OpenSSL 3.0.x goes out of support in September 2026.\r\n\r\nThis change does not affect third-party builds of Node.js that link to an external OpenSSL (or OpenSSL-compatible) library.\r\n\r\n#### Other notable changes\r\n\r\n* \\[[`5b83e1e0a2`](https://github.com/nodejs/node/commit/5b83e1e0a2)] - **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot) [#59571](https://github.com/nodejs/node/pull/59571)\r\n* \\[[`34b25fd97b`](https://github.com/nodejs/node/commit/34b25fd97b)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#59707](https://github.com/nodejs/node/pull/59707)\r\n* \\[[`bf41218ed9`](https://github.com/nodejs/node/commit/bf41218ed9)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#59572](https://github.com/nodejs/node/pull/59572)\r\n* \\[[`1dbad2058f`](https://github.com/nodejs/node/commit/1dbad2058f)] - **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) [#59315](https://github.com/nodejs/node/pull/59315)\r\n* \\[[`062e837d5f`](https://github.com/nodejs/node/commit/062e837d5f)] - **(SEMVER-MINOR)** **http2**: add support for raw header arrays in h2Stream.respond() (Tim Perry) [#59455](https://github.com/nodejs/node/pull/59455)\r\n* \\[[`b8066611c3`](https://github.com/nodejs/node/commit/b8066611c3)] - **inspector**: add http2 tracking support (Darshan Sen) [#59611](https://github.com/nodejs/node/pull/59611)\r\n* \\[[`9b7dd40da8`](https://github.com/nodejs/node/commit/9b7dd40da8)] - **(SEMVER-MINOR)** **sea**: implement execArgvExtension (Joyee Cheung) [#59560](https://github.com/nodejs/node/pull/59560)\r\n* \\[[`48bfbd3dca`](https://github.com/nodejs/node/commit/48bfbd3dca)] - **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee Cheung) [#59314](https://github.com/nodejs/node/pull/59314)\r\n* \\[[`cf06e74076`](https://github.com/nodejs/node/commit/cf06e74076)] - **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) [#59464](https://github.com/nodejs/node/pull/59464)\r\n* \\[[`62bb80c17e`](https://github.com/nodejs/node/commit/62bb80c17e)] - **(SEMVER-MINOR)** **test\\_runner**: support object property mocking (Idan Goshen) [#58438](https://github.com/nodejs/node/pull/58438)\r\n* \\[[`9e2aa23be9`](https://github.com/nodejs/node/commit/9e2aa23be9)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428)\r\n\r\n### Commits\r\n\r\n* \\[[`b7b78fd565`](https://github.com/nodejs/node/commit/b7b78fd565)] - **assert**: cap input size in myersDiff to avoid Int32Array overflow (Haram Jeong) [#59578](https://github.com/nodejs/node/pull/59578)\r\n* \\[[`9da50a6c53`](https://github.com/nodejs/node/commit/9da50a6c53)] - **benchmark**: sqlite prevent create both tables on prepare selects (Bruno Rodrigues) [#59709](https://github.com/nodejs/node/pull/59709)\r\n* \\[[`4c1538770e`](https://github.com/nodejs/node/commit/4c1538770e)] - **benchmark**: calibrate config array-vs-concat (Rafael Gonzaga) [#59587](https://github.com/nodejs/node/pull/59587)\r\n* \\[[`fc3f82d683`](https://github.com/nodejs/node/commit/fc3f82d683)] - **benchmark**: calibrate config v8/serialize.js (Rafael Gonzaga) [#59586](https://github.com/nodejs/node/pull/59586)\r\n* \\[[`e95c9b2950`](https://github.com/nodejs/node/commit/e95c9b2950)] - **benchmark**: reduce readfile-permission-enabled config (Rafael Gonzaga) [#59589](https://github.com/nodejs/node/pull/59589)\r\n* \\[[`e4fea38b31`](https://github.com/nodejs/node/commit/e4fea38b31)] - **benchmark**: calibrate length of util.diff (Rafael Gonzaga) [#59588](https://github.com/nodejs/node/pull/59588)\r\n* \\[[`c5d68c4a0f`](https://github.com/nodejs/node/commit/c5d68c4a0f)] - **benchmark, test**: replace CRLF variable with string literal (Lee Jiho) [#59466](https://github.com/nodejs/node/pull/59466)\r\n* \\[[`129a1d673b`](https://github.com/nodejs/node/commit/129a1d673b)] - **build**: fix getting OpenSSL version on Windows (Michaël Zasso) [#59609](https://github.com/nodejs/node/pull/59609)\r\n* \\[[`9f53db7162`](https://github.com/nodejs/node/commit/9f53db7162)] - **build**: fix 'implicit-function-declaration' on OpenHarmony platform (hqzing) [#59547](https://github.com/nodejs/node/pull/59547)\r\n* \\[[`3839593e07`](https://github.com/nodejs/node/commit/3839593e07)] - **build**: use `windows-2025` runner (Michaël Zasso) [#59673](https://github.com/nodejs/node/pull/59673)\r\n* \\[[`e430464669`](https://github.com/nodejs/node/commit/e430464669)] - **build**: compile bundled uvwasi conditionally (Carlo Cabrera) [#59622](https://github.com/nodejs/node/pull/59622)\r\n* \\[[`e2c9cab0cd`](https://github.com/nodejs/node/commit/e2c9cab0cd)] - **build**: do not set `-mminimal-toc` with `clang` (Richard Lau) [#59484](https://github.com/nodejs/node/pull/59484)\r\n* \\[[`208bc810a1`](https://github.com/nodejs/node/commit/208bc810a1)] - **child\\_process**: remove unsafe array iteration (hotpineapple) [#59347](https://github.com/nodejs/node/pull/59347)\r\n* \\[[`d74799d90c`](https://github.com/nodejs/node/commit/d74799d90c)] - **crypto**: load system CA certificates off thread (Joyee Cheung) [#59550](https://github.com/nodejs/node/pull/59550)\r\n* \\[[`5b83e1e0a2`](https://github.com/nodejs/node/commit/5b83e1e0a2)] - **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot) [#59571](https://github.com/nodejs/node/pull/59571)\r\n* \\[[`d289b1d1af`](https://github.com/nodejs/node/commit/d289b1d1af)] - **deps**: V8: cherry-pick e3df60f3f5ab (Chengzhong Wu) [#58691](https://github.com/nodejs/node/pull/58691)\r\n* \\[[`cf5d91e2a6`](https://github.com/nodejs/node/commit/cf5d91e2a6)] - **deps**: update uvwasi to 0.0.23 (Node.js GitHub Bot) [#59791](https://github.com/nodejs/node/pull/59791)\r\n* \\[[`1cf24a0445`](https://github.com/nodejs/node/commit/1cf24a0445)] - **deps**: update histogram to 0.11.9 (Node.js GitHub Bot) [#59689](https://github.com/nodejs/node/pull/59689)\r\n* \\[[`8638bd3f2e`](https://github.com/nodejs/node/commit/8638bd3f2e)] - **deps**: update googletest to eb2d85e (Node.js GitHub Bot) [#59335](https://github.com/nodejs/node/pull/59335)\r\n* \\[[`3ff4eb5b37`](https://github.com/nodejs/node/commit/3ff4eb5b37)] - **deps**: update amaro to 1.1.2 (Node.js GitHub Bot) [#59616](https://github.com/nodejs/node/pull/59616)\r\n* \\[[`4d268ac034`](https://github.com/nodejs/node/commit/4d268ac034)] - **deps**: V8: cherry-pick 7b91e3e2cbaf (Milad Fa) [#59485](https://github.com/nodejs/node/pull/59485)\r\n* \\[[`83410eb0e3`](https://github.com/nodejs/node/commit/83410eb0e3)] - **deps**: V8: cherry-pick 59d52e311bb1 (Milad Fa) [#59485](https://github.com/nodejs/node/pull/59485)\r\n* \\[[`5780af02cb`](https://github.com/nodejs/node/commit/5780af02cb)] - **deps**: update amaro to 1.1.1 (Node.js GitHub Bot) [#59141](https://github.com/nodejs/node/pull/59141)\r\n* \\[[`2986eca821`](https://github.com/nodejs/node/commit/2986eca821)] - **deps**: V8: cherry-pick 6b1b9bca2a8 (zhoumingtao) [#59283](https://github.com/nodejs/node/pull/59283)\r\n* \\[[`98e399b3ea`](https://github.com/nodejs/node/commit/98e399b3ea)] - **deps**: update archs files for openssl-3.5.2 (Node.js GitHub Bot) [#59371](https://github.com/nodejs/node/pull/59371)\r\n* \\[[`2b983a7520`](https://github.com/nodejs/node/commit/2b983a7520)] - **deps**: upgrade openssl sources to openssl-3.5.2 (Node.js GitHub Bot) [#59371](https://github.com/nodejs/node/pull/59371)\r\n* \\[[`7ffbb42454`](https://github.com/nodejs/node/commit/7ffbb42454)] - **deps**: update archs files for openssl-3.5.1 (Node.js GitHub Bot) [#59234](https://github.com/nodejs/node/pull/59234)\r\n* \\[[`bd48a60a75`](https://github.com/nodejs/node/commit/bd48a60a75)] - **deps**: upgrade openssl sources to openssl-3.5.1 (Node.js GitHub Bot) [#59234](https://github.com/nodejs/node/pull/59234)\r\n* \\[[`24762a10ca`](https://github.com/nodejs/node/commit/24762a10ca)] - **deps**: fix OpenSSL security level at 1 (Richard Lau) [#59859](https://github.com/nodejs/node/pull/59859)\r\n* \\[[`1233e92d10`](https://github.com/nodejs/node/commit/1233e92d10)] - **diagnostics\\_channel**: revoke DEP0163 (René) [#59758](https://github.com/nodejs/node/pull/59758)\r\n* \\[[`34b25fd97b`](https://github.com/nodejs/node/commit/34b25fd97b)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#59707](https://github.com/nodejs/node/pull/59707)\r\n* \\[[`d7adf8be64`](https://github.com/nodejs/node/commit/d7adf8be64)] - **doc**: update \"Type stripping in dependencies\" section (Josh Kelley) [#59652](https://github.com/nodejs/node/pull/59652)\r\n* \\[[`a1d7e4fdbf`](https://github.com/nodejs/node/commit/a1d7e4fdbf)] - **doc**: add Miles Guicent as triager (Miles Guicent) [#59562](https://github.com/nodejs/node/pull/59562)\r\n* \\[[`bf41218ed9`](https://github.com/nodejs/node/commit/bf41218ed9)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#59572](https://github.com/nodejs/node/pull/59572)\r\n* \\[[`afaa1ccb74`](https://github.com/nodejs/node/commit/afaa1ccb74)] - **doc**: improve documentation for raw headers in HTTP/2 APIs (Tim Perry) [#59633](https://github.com/nodejs/node/pull/59633)\r\n* \\[[`b95ff56102`](https://github.com/nodejs/node/commit/b95ff56102)] - **doc**: update install\\_tools.bat free disk space (Stefan Stojanovic) [#59579](https://github.com/nodejs/node/pull/59579)\r\n* \\[[`6ff939b8d3`](https://github.com/nodejs/node/commit/6ff939b8d3)] - **doc**: fix filehandle.read typo (Ruy Adorno) [#59635](https://github.com/nodejs/node/pull/59635)\r\n* \\[[`963bfa9d6f`](https://github.com/nodejs/node/commit/963bfa9d6f)] - **doc**: fix missing link to the Error documentation in the `http` page (Alexander Makarenko) [#59080](https://github.com/nodejs/node/pull/59080)\r\n* \\[[`0e10a8ea27`](https://github.com/nodejs/node/commit/0e10a8ea27)] - **doc**: improve `sqlite.backup()` progress/fulfillment documentation (René) [#59598](https://github.com/nodejs/node/pull/59598)\r\n* \\[[`18ceefbabd`](https://github.com/nodejs/node/commit/18ceefbabd)] - **doc**: clarify experimental platform vulnerability policy (Matteo Collina) [#59591](https://github.com/nodejs/node/pull/59591)\r\n* \\[[`66cdd00368`](https://github.com/nodejs/node/commit/66cdd00368)] - **doc**: link to `TypedArray.from()` in signature (Aviv Keller) [#59226](https://github.com/nodejs/node/pull/59226)\r\n* \\[[`9f058ce7c0`](https://github.com/nodejs/node/commit/9f058ce7c0)] - **doc**: fix typos in `environment_variables.md` (PhistucK) [#59536](https://github.com/nodejs/node/pull/59536)\r\n* \\[[`3cfec820e9`](https://github.com/nodejs/node/commit/3cfec820e9)] - **doc**: add security incident reponse plan (Rafael Gonzaga) [#59470](https://github.com/nodejs/node/pull/59470)\r\n* \\[[`46aa3434e6`](https://github.com/nodejs/node/commit/46aa3434e6)] - **doc**: clarify maxRSS unit in `process.resourceUsage()` (Alex Yang) [#59511](https://github.com/nodejs/node/pull/59511)\r\n* \\[[`adf98f600a`](https://github.com/nodejs/node/commit/adf98f600a)] - **doc**: add missing Zstd strategy constants (RANDRIAMANANTENA Narindra Tiana Annaick) [#59312](https://github.com/nodejs/node/pull/59312)\r\n* \\[[`f335989942`](https://github.com/nodejs/node/commit/f335989942)] - **doc**: fix the version tls.DEFAULT\\_CIPHERS was added (Allon Murienik) [#59247](https://github.com/nodejs/node/pull/59247)\r\n* \\[[`7fa14fcf54`](https://github.com/nodejs/node/commit/7fa14fcf54)] - **doc**: clarify glob's exclude option behavior (hotpineapple) [#59245](https://github.com/nodejs/node/pull/59245)\r\n* \\[[`85b8d255c9`](https://github.com/nodejs/node/commit/85b8d255c9)] - **doc**: add RafaelGSS as performance strategic lead (Rafael Gonzaga) [#59445](https://github.com/nodejs/node/pull/59445)\r\n* \\[[`16b1f7a602`](https://github.com/nodejs/node/commit/16b1f7a602)] - **doc**: add new environment variables doc page (Dario Piotrowicz) [#59052](https://github.com/nodejs/node/pull/59052)\r\n* \\[[`b4a43ed83a`](https://github.com/nodejs/node/commit/b4a43ed83a)] - **doc**: add missing environment variables to manpage (amir lavasani) [#58963](https://github.com/nodejs/node/pull/58963)\r\n* \\[[`c923cfe898`](https://github.com/nodejs/node/commit/c923cfe898)] - **doc**: fix links in test.md (Vas Sudanagunta) [#58876](https://github.com/nodejs/node/pull/58876)\r\n* \\[[`a93a8b5eda`](https://github.com/nodejs/node/commit/a93a8b5eda)] - **doc**: mark type stripping as release candidate (Marco Ippolito) [#57705](https://github.com/nodejs/node/pull/57705)\r\n* \\[[`d302cb3bb2`](https://github.com/nodejs/node/commit/d302cb3bb2)] - **esm**: add experimental support for addon modules (Chengzhong Wu) [#55844](https://github.com/nodejs/node/pull/55844)\r\n* \\[[`d55c3e7f0b`](https://github.com/nodejs/node/commit/d55c3e7f0b)] - **esm**: link modules synchronously when no async loader hooks are used (Joyee Cheung) [#59519](https://github.com/nodejs/node/pull/59519)\r\n* \\[[`9e1fbb620f`](https://github.com/nodejs/node/commit/9e1fbb620f)] - **esm**: show race error message for inner module job race (Joyee Cheung) [#59519](https://github.com/nodejs/node/pull/59519)\r\n* \\[[`8c4dcd5199`](https://github.com/nodejs/node/commit/8c4dcd5199)] - **esm**: sync-ify module translation (Joyee Cheung) [#59453](https://github.com/nodejs/node/pull/59453)\r\n* \\[[`71038932d3`](https://github.com/nodejs/node/commit/71038932d3)] - **fs**: fix wrong order of file names in cpSync error message (Nicholas Paun) [#59775](https://github.com/nodejs/node/pull/59775)\r\n* \\[[`5692dec451`](https://github.com/nodejs/node/commit/5692dec451)] - **fs**: fix dereference: false on cpSync (Nicholas Paun) [#59681](https://github.com/nodejs/node/pull/59681)\r\n* \\[[`dafd561d37`](https://github.com/nodejs/node/commit/dafd561d37)] - **fs**: fix return value of fs APIs (theanarkh) [#58996](https://github.com/nodejs/node/pull/58996)\r\n* \\[[`da6e8cb75b`](https://github.com/nodejs/node/commit/da6e8cb75b)] - **http**: unbreak keepAliveTimeoutBuffer (Robert Nagy) [#59784](https://github.com/nodejs/node/pull/59784)\r\n* \\[[`673a48f0a2`](https://github.com/nodejs/node/commit/673a48f0a2)] - **http**: use cached '1.1' http version string (Robert Nagy) [#59717](https://github.com/nodejs/node/pull/59717)\r\n* \\[[`1dbad2058f`](https://github.com/nodejs/node/commit/1dbad2058f)] - **(SEMVER-MINOR)** **http**: add Agent.agentKeepAliveTimeoutBuffer option (Haram Jeong) [#59315](https://github.com/nodejs/node/pull/59315)\r\n* \\[[`062e837d5f`](https://github.com/nodejs/node/commit/062e837d5f)] - **(SEMVER-MINOR)** **http2**: add support for raw header arrays in h2Stream.respond() (Tim Perry) [#59455](https://github.com/nodejs/node/pull/59455)\r\n* \\[[`4d4fb51b89`](https://github.com/nodejs/node/commit/4d4fb51b89)] - **http2**: report sent headers object in client stream dcs (Darshan Sen) [#59419](https://github.com/nodejs/node/pull/59419)\r\n* \\[[`b8066611c3`](https://github.com/nodejs/node/commit/b8066611c3)] - **inspector**: add http2 tracking support (Darshan Sen) [#59611](https://github.com/nodejs/node/pull/59611)\r\n* \\[[`9b2c013032`](https://github.com/nodejs/node/commit/9b2c013032)] - **inspector**: prevent propagation of promise hooks to noPromise hooks (Shima Ryuhei) [#58841](https://github.com/nodejs/node/pull/58841)\r\n* \\[[`a2329895e7`](https://github.com/nodejs/node/commit/a2329895e7)] - **lib**: fix DOMException subclass support (Chengzhong Wu) [#59680](https://github.com/nodejs/node/pull/59680)\r\n* \\[[`edb9248bdd`](https://github.com/nodejs/node/commit/edb9248bdd)] - **lib**: make domexception a native error (Chengzhong Wu) [#58691](https://github.com/nodejs/node/pull/58691)\r\n* \\[[`ccf29cda19`](https://github.com/nodejs/node/commit/ccf29cda19)] - _**Revert**_ \"**lib**: optimize writable stream buffer clearing\" (Yoo) [#59743](https://github.com/nodejs/node/pull/59743)\r\n* \\[[`f291eda277`](https://github.com/nodejs/node/commit/f291eda277)] - **lib**: fix isReadable and isWritable return type value (Gabriel Quaresma) [#59089](https://github.com/nodejs/node/pull/59089)\r\n* \\[[`10ae8684ea`](https://github.com/nodejs/node/commit/10ae8684ea)] - **lib**: revert to using default derived class constructors (René) [#59650](https://github.com/nodejs/node/pull/59650)\r\n* \\[[`5d3b80d62d`](https://github.com/nodejs/node/commit/5d3b80d62d)] - **lib**: do not modify prototype deprecated asyncResource (encore) (Szymon Łągiewka) [#59518](https://github.com/nodejs/node/pull/59518)\r\n* \\[[`3c4541f878`](https://github.com/nodejs/node/commit/3c4541f878)] - **lib**: simplify IPv6 checks in isLoopback() (Krishnadas) [#59375](https://github.com/nodejs/node/pull/59375)\r\n* \\[[`0b631bbffa`](https://github.com/nodejs/node/commit/0b631bbffa)] - **lib**: handle windows reserved device names on UNC (Rafael Gonzaga) [#59286](https://github.com/nodejs/node/pull/59286)\r\n* \\[[`297f62ba1f`](https://github.com/nodejs/node/commit/297f62ba1f)] - **meta**: bump `codecov/codecov-action` (dependabot\\[bot]) [#59726](https://github.com/nodejs/node/pull/59726)\r\n* \\[[`3dcd8446b6`](https://github.com/nodejs/node/commit/3dcd8446b6)] - **meta**: bump actions/download-artifact from 4.3.0 to 5.0.0 (dependabot\\[bot]) [#59729](https://github.com/nodejs/node/pull/59729)\r\n* \\[[`d0d357f683`](https://github.com/nodejs/node/commit/d0d357f683)] - **meta**: bump github/codeql-action from 3.29.2 to 3.30.0 (dependabot\\[bot]) [#59728](https://github.com/nodejs/node/pull/59728)\r\n* \\[[`2a0e264949`](https://github.com/nodejs/node/commit/2a0e264949)] - **meta**: bump actions/cache from 4.2.3 to 4.2.4 (dependabot\\[bot]) [#59727](https://github.com/nodejs/node/pull/59727)\r\n* \\[[`0a013d1da1`](https://github.com/nodejs/node/commit/0a013d1da1)] - **meta**: bump actions/checkout from 4.2.2 to 5.0.0 (dependabot\\[bot]) [#59725](https://github.com/nodejs/node/pull/59725)\r\n* \\[[`c690b53d24`](https://github.com/nodejs/node/commit/c690b53d24)] - **meta**: update devcontainer to the latest schema (Aviv Keller) [#54347](https://github.com/nodejs/node/pull/54347)\r\n* \\[[`61171c7756`](https://github.com/nodejs/node/commit/61171c7756)] - **module**: correctly detect top-level await in ambiguous contexts (Shima Ryuhei) [#58646](https://github.com/nodejs/node/pull/58646)\r\n* \\[[`75bf3f4a87`](https://github.com/nodejs/node/commit/75bf3f4a87)] - **node-api**: link to other programming language bindings (Chengzhong Wu) [#59516](https://github.com/nodejs/node/pull/59516)\r\n* \\[[`9a05107558`](https://github.com/nodejs/node/commit/9a05107558)] - **node-api**: clarify enum value ABI stability (Chengzhong Wu) [#59085](https://github.com/nodejs/node/pull/59085)\r\n* \\[[`658c31d60c`](https://github.com/nodejs/node/commit/658c31d60c)] - **path**: refactor path joining logic for clarity and performance (Lee Jiho) [#59781](https://github.com/nodejs/node/pull/59781)\r\n* \\[[`9cc89f55f7`](https://github.com/nodejs/node/commit/9cc89f55f7)] - **path,win**: fix bug in resolve and normalize (Hüseyin Açacak) [#55623](https://github.com/nodejs/node/pull/55623)\r\n* \\[[`24e825f8f5`](https://github.com/nodejs/node/commit/24e825f8f5)] - **sea**: implement sea.getAssetKeys() (Joyee Cheung) [#59661](https://github.com/nodejs/node/pull/59661)\r\n* \\[[`c66af21e55`](https://github.com/nodejs/node/commit/c66af21e55)] - **sea**: allow using inspector command line flags with SEA (Joyee Cheung) [#59568](https://github.com/nodejs/node/pull/59568)\r\n* \\[[`9b7dd40da8`](https://github.com/nodejs/node/commit/9b7dd40da8)] - **(SEMVER-MINOR)** **sea**: implement execArgvExtension (Joyee Cheung) [#59560](https://github.com/nodejs/node/pull/59560)\r\n* \\[[`48bfbd3dca`](https://github.com/nodejs/node/commit/48bfbd3dca)] - **(SEMVER-MINOR)** **sea**: support execArgv in sea config (Joyee Cheung) [#59314](https://github.com/nodejs/node/pull/59314)\r\n* \\[[`5559456fe4`](https://github.com/nodejs/node/commit/5559456fe4)] - **sqlite**: add sqlite-type symbol for DatabaseSync (Alex Yang) [#59405](https://github.com/nodejs/node/pull/59405)\r\n* \\[[`3478130da3`](https://github.com/nodejs/node/commit/3478130da3)] - **sqlite**: handle ?NNN parameters as positional (Edy Silva) [#59350](https://github.com/nodejs/node/pull/59350)\r\n* \\[[`312bc4e5d1`](https://github.com/nodejs/node/commit/312bc4e5d1)] - **sqlite**: avoid useless call to FromMaybe() (Tobias Nießen) [#59490](https://github.com/nodejs/node/pull/59490)\r\n* \\[[`937e9bb1c6`](https://github.com/nodejs/node/commit/937e9bb1c6)] - **src**: track BaseObjects with an efficient list (Chengzhong Wu) [#55104](https://github.com/nodejs/node/pull/55104)\r\n* \\[[`be2a5e170d`](https://github.com/nodejs/node/commit/be2a5e170d)] - **src**: track async resources via pointers to stack-allocated handles (Anna Henningsen) [#59704](https://github.com/nodejs/node/pull/59704)\r\n* \\[[`f232bf2c11`](https://github.com/nodejs/node/commit/f232bf2c11)] - **src**: fix build on NetBSD (Thomas Klausner) [#59718](https://github.com/nodejs/node/pull/59718)\r\n* \\[[`e9a685bc3d`](https://github.com/nodejs/node/commit/e9a685bc3d)] - **src**: fix race on process exit and off thread CA loading (Chengzhong Wu) [#59632](https://github.com/nodejs/node/pull/59632)\r\n* \\[[`24428fc8fb`](https://github.com/nodejs/node/commit/24428fc8fb)] - **src**: add name for more threads (theanarkh) [#59601](https://github.com/nodejs/node/pull/59601)\r\n* \\[[`fd7559f8c3`](https://github.com/nodejs/node/commit/fd7559f8c3)] - **src**: remove JSONParser (Joyee Cheung) [#59619](https://github.com/nodejs/node/pull/59619)\r\n* \\[[`8c296bac99`](https://github.com/nodejs/node/commit/8c296bac99)] - **src**: enforce assumptions in FIXED\\_ONE\\_BYTE\\_STRING (Tobias Nießen) [#58155](https://github.com/nodejs/node/pull/58155)\r\n* \\[[`1b4885a3f2`](https://github.com/nodejs/node/commit/1b4885a3f2)] - **src**: use simdjson to parse --snapshot-config (Joyee Cheung) [#59473](https://github.com/nodejs/node/pull/59473)\r\n* \\[[`9f798de6b0`](https://github.com/nodejs/node/commit/9f798de6b0)] - **src**: fix order of CHECK\\_NOT\\_NULL/dereference (Tobias Nießen) [#59487](https://github.com/nodejs/node/pull/59487)\r\n* \\[[`f764be27dc`](https://github.com/nodejs/node/commit/f764be27dc)] - **src**: move shared\\_ptr objects in KeyObjectData (Tobias Nießen) [#59472](https://github.com/nodejs/node/pull/59472)\r\n* \\[[`d30287fe12`](https://github.com/nodejs/node/commit/d30287fe12)] - **src**: iterate metadata version entries with std::array (Chengzhong Wu) [#57866](https://github.com/nodejs/node/pull/57866)\r\n* \\[[`b2bf620c7b`](https://github.com/nodejs/node/commit/b2bf620c7b)] - **src**: internalize `v8::ConvertableToTraceFormat` in traces (Chengzhong Wu) [#57866](https://github.com/nodejs/node/pull/57866)\r\n* \\[[`b3c507c8ef`](https://github.com/nodejs/node/commit/b3c507c8ef)] - **src**: remove duplicate assignment of `O_EXCL` in node\\_constants.cc (Daniel Osvaldo R) [#59049](https://github.com/nodejs/node/pull/59049)\r\n* \\[[`20aec239d4`](https://github.com/nodejs/node/commit/20aec239d4)] - **src**: add Intel CET properties to large\\_pages.S (tjuhaszrh) [#59363](https://github.com/nodejs/node/pull/59363)\r\n* \\[[`8e0f9cd061`](https://github.com/nodejs/node/commit/8e0f9cd061)] - **src**: remove unused DSAKeyExportJob (Filip Skokan) [#59291](https://github.com/nodejs/node/pull/59291)\r\n* \\[[`0c2b6df94f`](https://github.com/nodejs/node/commit/0c2b6df94f)] - **src,sqlite**: refactor value conversion (Edy Silva) [#59659](https://github.com/nodejs/node/pull/59659)\r\n* \\[[`b95cfdf0e5`](https://github.com/nodejs/node/commit/b95cfdf0e5)] - **stream**: replace manual function validation with validateFunction (방진혁) [#59529](https://github.com/nodejs/node/pull/59529)\r\n* \\[[`cf06e74076`](https://github.com/nodejs/node/commit/cf06e74076)] - **(SEMVER-MINOR)** **stream**: add brotli support to CompressionStream and DecompressionStream (Matthew Aitken) [#59464](https://github.com/nodejs/node/pull/59464)\r\n* \\[[`903ebd373a`](https://github.com/nodejs/node/commit/903ebd373a)] - **test**: skip more sea tests on Linux ppc64le (Richard Lau) [#59755](https://github.com/nodejs/node/pull/59755)\r\n* \\[[`e961060bb6`](https://github.com/nodejs/node/commit/e961060bb6)] - **test**: fix internet/test-dns (Michaël Zasso) [#59660](https://github.com/nodejs/node/pull/59660)\r\n* \\[[`c2b22f50a8`](https://github.com/nodejs/node/commit/c2b22f50a8)] - **test**: mark test-inspector-network-fetch as flaky again (Joyee Cheung) [#59640](https://github.com/nodejs/node/pull/59640)\r\n* \\[[`4ae958e59b`](https://github.com/nodejs/node/commit/4ae958e59b)] - **test**: skip test-fs-cp\\* tests that are constantly failing on Windows (Joyee Cheung) [#59637](https://github.com/nodejs/node/pull/59637)\r\n* \\[[`d5b0a64598`](https://github.com/nodejs/node/commit/d5b0a64598)] - **test**: deflake test-http-keep-alive-empty-line (Luigi Pinca) [#59595](https://github.com/nodejs/node/pull/59595)\r\n* \\[[`eb311f1754`](https://github.com/nodejs/node/commit/eb311f1754)] - **test**: use mustSucceed in test-repl-tab-complete-import (Sohyeon Kim) [#59368](https://github.com/nodejs/node/pull/59368)\r\n* \\[[`8e047e32be`](https://github.com/nodejs/node/commit/8e047e32be)] - **test**: skip sea tests on Linux ppc64le (Richard Lau) [#59563](https://github.com/nodejs/node/pull/59563)\r\n* \\[[`4a250479d8`](https://github.com/nodejs/node/commit/4a250479d8)] - **test**: rename test-net-server-drop-connections-in-cluster.js to -http- (Meghan Denny) [#59532](https://github.com/nodejs/node/pull/59532)\r\n* \\[[`d22f113aaf`](https://github.com/nodejs/node/commit/d22f113aaf)] - **test**: lazy-load internalTTy (Pietro Marchini) [#59517](https://github.com/nodejs/node/pull/59517)\r\n* \\[[`36dd856897`](https://github.com/nodejs/node/commit/36dd856897)] - **test**: fix `test-setproctitle` status when `ps` is not available (Antoine du Hamel) [#59523](https://github.com/nodejs/node/pull/59523)\r\n* \\[[`fd02295da6`](https://github.com/nodejs/node/commit/fd02295da6)] - **test**: update WPT for WebCryptoAPI to ff26d9b307 (Node.js GitHub Bot) [#59497](https://github.com/nodejs/node/pull/59497)\r\n* \\[[`cce938c5f9`](https://github.com/nodejs/node/commit/cce938c5f9)] - **test**: make test-debug-process locale-independent (BCD1me) [#59254](https://github.com/nodejs/node/pull/59254)\r\n* \\[[`5a8f03df9e`](https://github.com/nodejs/node/commit/5a8f03df9e)] - **test**: mark test-wasi-pthread as flaky (Joyee Cheung) [#59488](https://github.com/nodejs/node/pull/59488)\r\n* \\[[`94f6d6b969`](https://github.com/nodejs/node/commit/94f6d6b969)] - **test**: split test-wasi.js (Joyee Cheung) [#59488](https://github.com/nodejs/node/pull/59488)\r\n* \\[[`162ac9393c`](https://github.com/nodejs/node/commit/162ac9393c)] - **test**: use case-insensitive path checking on Windows in fs.cpSync tests (Joyee Cheung) [#59475](https://github.com/nodejs/node/pull/59475)\r\n* \\[[`ce9d6776c9`](https://github.com/nodejs/node/commit/ce9d6776c9)] - **test**: add missing hasPostData in test-inspector-emit-protocol-event (Shima Ryuhei) [#59412](https://github.com/nodejs/node/pull/59412)\r\n* \\[[`717ea2866d`](https://github.com/nodejs/node/commit/717ea2866d)] - **test**: refactor error checks to use assert.ifError/mustSucceed (Sohyeon Kim) [#59424](https://github.com/nodejs/node/pull/59424)\r\n* \\[[`b1c3e4a17c`](https://github.com/nodejs/node/commit/b1c3e4a17c)] - **test**: fix typos (Lee Jiho) [#59330](https://github.com/nodejs/node/pull/59330)\r\n* \\[[`3f4bd94b1f`](https://github.com/nodejs/node/commit/3f4bd94b1f)] - **test**: skip test-watch-mode inspect when no inspector (James M Snell) [#59440](https://github.com/nodejs/node/pull/59440)\r\n* \\[[`8b7a8efe96`](https://github.com/nodejs/node/commit/8b7a8efe96)] - **test**: exclude mock from coverage (Shima Ryuhei) [#59348](https://github.com/nodejs/node/pull/59348)\r\n* \\[[`f39352b55c`](https://github.com/nodejs/node/commit/f39352b55c)] - **test**: split test-fs-cp.js (Joyee Cheung) [#59408](https://github.com/nodejs/node/pull/59408)\r\n* \\[[`fb4180e9f6`](https://github.com/nodejs/node/commit/fb4180e9f6)] - **test\\_runner**: fix todo inheritance (Moshe Atlow) [#59721](https://github.com/nodejs/node/pull/59721)\r\n* \\[[`76bf6b908d`](https://github.com/nodejs/node/commit/76bf6b908d)] - **test\\_runner**: set mock timer's interval undefined (hotpineapple) [#59479](https://github.com/nodejs/node/pull/59479)\r\n* \\[[`0a05d06fcc`](https://github.com/nodejs/node/commit/0a05d06fcc)] - **test\\_runner**: do not error when getting `fullName` of root context (René) [#59377](https://github.com/nodejs/node/pull/59377)\r\n* \\[[`3fdfb187d6`](https://github.com/nodejs/node/commit/3fdfb187d6)] - **test\\_runner**: fix isSkipped check in junit (Sungwon) [#59414](https://github.com/nodejs/node/pull/59414)\r\n* \\[[`37c6f7d7d8`](https://github.com/nodejs/node/commit/37c6f7d7d8)] - **test\\_runner**: remove unused callee convertion (Alex Yang) [#59221](https://github.com/nodejs/node/pull/59221)\r\n* \\[[`57c30093e3`](https://github.com/nodejs/node/commit/57c30093e3)] - **test\\_runner**: clean up promisified interval generation (René) [#58824](https://github.com/nodejs/node/pull/58824)\r\n* \\[[`88bf1bab91`](https://github.com/nodejs/node/commit/88bf1bab91)] - **test\\_runner**: correct \"already mocked\" error punctuation placement (Jacob Smith) [#58840](https://github.com/nodejs/node/pull/58840)\r\n* \\[[`d3259d660a`](https://github.com/nodejs/node/commit/d3259d660a)] - **test\\_runner**: prefer `Atomics` primordials (Renegade334) [#58716](https://github.com/nodejs/node/pull/58716)\r\n* \\[[`62bb80c17e`](https://github.com/nodejs/node/commit/62bb80c17e)] - **(SEMVER-MINOR)** **test\\_runner**: support object property mocking (Idan Goshen) [#58438](https://github.com/nodejs/node/pull/58438)\r\n* \\[[`4b19439dea`](https://github.com/nodejs/node/commit/4b19439dea)] - **tools**: print appropriate output when test aborted (hotpineapple) [#59794](https://github.com/nodejs/node/pull/59794)\r\n* \\[[`847963bbba`](https://github.com/nodejs/node/commit/847963bbba)] - **tools**: use sparse checkout in `build-tarball.yml` (Antoine du Hamel) [#59788](https://github.com/nodejs/node/pull/59788)\r\n* \\[[`ef11d118a4`](https://github.com/nodejs/node/commit/ef11d118a4)] - **tools**: remove unused actions from `build-tarball.yml` (Antoine du Hamel) [#59787](https://github.com/nodejs/node/pull/59787)\r\n* \\[[`daa0615967`](https://github.com/nodejs/node/commit/daa0615967)] - **tools**: do not attempt to compress tgz archive (Antoine du Hamel) [#59785](https://github.com/nodejs/node/pull/59785)\r\n* \\[[`fdc85e5045`](https://github.com/nodejs/node/commit/fdc85e5045)] - **tools**: add v8windbg target (Chengzhong Wu) [#59767](https://github.com/nodejs/node/pull/59767)\r\n* \\[[`25801b9009`](https://github.com/nodejs/node/commit/25801b9009)] - **tools**: improve error handling in node\\_mksnapshot (James M Snell) [#59437](https://github.com/nodejs/node/pull/59437)\r\n* \\[[`92100a813f`](https://github.com/nodejs/node/commit/92100a813f)] - **tools**: add sccache to `test-internet` workflow (Antoine du Hamel) [#59720](https://github.com/nodejs/node/pull/59720)\r\n* \\[[`5f0090af53`](https://github.com/nodejs/node/commit/5f0090af53)] - **tools**: update gyp-next to 0.20.4 (Node.js GitHub Bot) [#59690](https://github.com/nodejs/node/pull/59690)\r\n* \\[[`31ee7fc3e9`](https://github.com/nodejs/node/commit/31ee7fc3e9)] - **tools**: add script to make reviewing backport PRs easier (Antoine du Hamel) [#59161](https://github.com/nodejs/node/pull/59161)\r\n* \\[[`45906b0d5c`](https://github.com/nodejs/node/commit/45906b0d5c)] - **tools**: update gyp-next to 0.20.3 (Node.js GitHub Bot) [#59603](https://github.com/nodejs/node/pull/59603)\r\n* \\[[`6197eeee9b`](https://github.com/nodejs/node/commit/6197eeee9b)] - **tools**: avoid parsing test files twice (Pietro Marchini) [#59526](https://github.com/nodejs/node/pull/59526)\r\n* \\[[`027ae4f67e`](https://github.com/nodejs/node/commit/027ae4f67e)] - **tools**: fix return value of try\\_check\\_compiler (theanarkh) [#59434](https://github.com/nodejs/node/pull/59434)\r\n* \\[[`77682b52a1`](https://github.com/nodejs/node/commit/77682b52a1)] - **tools**: bump @eslint/plugin-kit from 0.3.3 to 0.3.4 in /tools/eslint (dependabot\\[bot]) [#59271](https://github.com/nodejs/node/pull/59271)\r\n* \\[[`91fa83fffd`](https://github.com/nodejs/node/commit/91fa83fffd)] - **tools**: disable nullability-completeness warnings (Michaël Zasso) [#59392](https://github.com/nodejs/node/pull/59392)\r\n* \\[[`079a68d392`](https://github.com/nodejs/node/commit/079a68d392)] - **typings**: add typing for 'uv' (방진혁) [#59606](https://github.com/nodejs/node/pull/59606)\r\n* \\[[`b8927967d9`](https://github.com/nodejs/node/commit/b8927967d9)] - **typings**: add missing properties in ConfigBinding (Lee Jiho) [#59585](https://github.com/nodejs/node/pull/59585)\r\n* \\[[`9b66ce5ef7`](https://github.com/nodejs/node/commit/9b66ce5ef7)] - **typings**: add missing URLBinding methods (성우현 | Woohyun Sung) [#59468](https://github.com/nodejs/node/pull/59468)\r\n* \\[[`ba5b6597aa`](https://github.com/nodejs/node/commit/ba5b6597aa)] - **url**: add err.input to ERR\\_INVALID\\_FILE\\_URL\\_PATH (Joyee Cheung) [#59730](https://github.com/nodejs/node/pull/59730)\r\n* \\[[`f660943471`](https://github.com/nodejs/node/commit/f660943471)] - **util**: fix numericSeparator with negative fractional numbers (sangwook) [#59379](https://github.com/nodejs/node/pull/59379)\r\n* \\[[`aed1b883f1`](https://github.com/nodejs/node/commit/aed1b883f1)] - **util**: remove unnecessary template strings (btea) [#59201](https://github.com/nodejs/node/pull/59201)\r\n* \\[[`91e9b8d135`](https://github.com/nodejs/node/commit/91e9b8d135)] - **util**: remove outdated TODO comment (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760)\r\n* \\[[`421ab3c294`](https://github.com/nodejs/node/commit/421ab3c294)] - **util**: use getOptionValue('--no-deprecation') in deprecated() (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760)\r\n* \\[[`7864ad13bb`](https://github.com/nodejs/node/commit/7864ad13bb)] - **util**: hide duplicated stack frames when using util.inspect (Ruben Bridgewater) [#59447](https://github.com/nodejs/node/pull/59447)\r\n* \\[[`a2d2003daa`](https://github.com/nodejs/node/commit/a2d2003daa)] - **util**: fix error's namespaced node\\_modules highlighting using inspect (Ruben Bridgewater) [#59446](https://github.com/nodejs/node/pull/59446)\r\n* \\[[`f64d0def94`](https://github.com/nodejs/node/commit/f64d0def94)] - **util**: add some additional error classes to `wellKnownPrototypes` (Mark S. Miller) [#59456](https://github.com/nodejs/node/pull/59456)\r\n* \\[[`9807ffd6a0`](https://github.com/nodejs/node/commit/9807ffd6a0)] - **vm**: expose import attributes on SourceTextModule.moduleRequests (Chengzhong Wu) [#58829](https://github.com/nodejs/node/pull/58829)\r\n* \\[[`f334e2d539`](https://github.com/nodejs/node/commit/f334e2d539)] - **wasi**: fix `clean` target in `test/wasi/Makefile` (Antoine du Hamel) [#59576](https://github.com/nodejs/node/pull/59576)\r\n* \\[[`9e2aa23be9`](https://github.com/nodejs/node/commit/9e2aa23be9)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428)\r\n* \\[[`c5a93a3355`](https://github.com/nodejs/node/commit/c5a93a3355)] - **worker**: fix worker name with \\0 (theanarkh) [#59214](https://github.com/nodejs/node/pull/59214)\r\n* \\[[`a5ed96bb97`](https://github.com/nodejs/node/commit/a5ed96bb97)] - **worker**: add worker name to report (theanarkh) [#58935](https://github.com/nodejs/node/pull/58935)\r\n* \\[[`98cd7e27d4`](https://github.com/nodejs/node/commit/98cd7e27d4)] - **worker**: add name for worker (theanarkh) [#59213](https://github.com/nodejs/node/pull/59213)\r\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/249686807/reactions", + "total_count": 48, + "+1": 15, + "-1": 0, + "laugh": 0, + "hooray": 15, + "confused": 0, + "heart": 6, + "rocket": 10, + "eyes": 2 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/246286434", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/246286434/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/246286434/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v24.8.0", + "id": 246286434, + "author": { + "login": "targos", + "id": 2352663, + "node_id": "MDQ6VXNlcjIzNTI2NjM=", + "avatar_url": "https://avatars.githubusercontent.com/u/2352663?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/targos", + "html_url": "https://github.com/targos", + "followers_url": "https://api.github.com/users/targos/followers", + "following_url": "https://api.github.com/users/targos/following{/other_user}", + "gists_url": "https://api.github.com/users/targos/gists{/gist_id}", + "starred_url": "https://api.github.com/users/targos/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/targos/subscriptions", + "organizations_url": "https://api.github.com/users/targos/orgs", + "repos_url": "https://api.github.com/users/targos/repos", + "events_url": "https://api.github.com/users/targos/events{/privacy}", + "received_events_url": "https://api.github.com/users/targos/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84Orghi", + "tag_name": "v24.8.0", + "target_commitish": "main", + "name": "2025-09-10, Version 24.8.0 (Current), @targos", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-09-10T19:32:12Z", + "updated_at": "2025-09-10T19:46:04Z", + "published_at": "2025-09-10T19:46:04Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v24.8.0", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v24.8.0", + "body": "### Notable Changes\r\n\r\n#### HTTP/2 Network Inspection Support in Node.js\r\n\r\nNode.js now supports inspection of HTTP/2 network calls in Chrome DevTools for Node.js.\r\n\r\n##### Usage\r\n\r\nWrite a `test.js` script that makes HTTP/2 requests.\r\n\r\n```js\r\nconst http2 = require('node:http2');\r\n\r\nconst client = http2.connect('https://nghttp2.org');\r\n\r\nconst req = client.request([\r\n ':path', '/',\r\n ':method', 'GET',\r\n]);\r\n```\r\n\r\nRun it with these options:\r\n\r\n```bash\r\nnode --inspect-wait --experimental-network-inspection test.js\r\n```\r\n\r\nOpen `about:inspect` on Google Chrome and click on `Open dedicated DevTools for Node`.\r\nThe `Network` tab will let you track your HTTP/2 calls.\r\n\r\nContributed by Darshan Sen in [#59611](https://github.com/nodejs/node/pull/59611).\r\n\r\n#### Other Notable Changes\r\n\r\n* \\[[`7a8e2c251d`](https://github.com/nodejs/node/commit/7a8e2c251d)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)\r\n* \\[[`4b631be0b0`](https://github.com/nodejs/node/commit/4b631be0b0)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)\r\n* \\[[`3e4b1e732c`](https://github.com/nodejs/node/commit/3e4b1e732c)] - **(SEMVER-MINOR)** **crypto**: add KMAC Web Cryptography algorithms (Filip Skokan) [#59647](https://github.com/nodejs/node/pull/59647)\r\n* \\[[`b1d28785b2`](https://github.com/nodejs/node/commit/b1d28785b2)] - **(SEMVER-MINOR)** **crypto**: add Argon2 Web Cryptography algorithms (Filip Skokan) [#59544](https://github.com/nodejs/node/pull/59544)\r\n* \\[[`430691d1af`](https://github.com/nodejs/node/commit/430691d1af)] - **(SEMVER-MINOR)** **crypto**: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) [#59537](https://github.com/nodejs/node/pull/59537)\r\n* \\[[`d6d05ba397`](https://github.com/nodejs/node/commit/d6d05ba397)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428)\r\n\r\n### Commits\r\n\r\n* \\[[`d913872369`](https://github.com/nodejs/node/commit/d913872369)] - **assert**: cap input size in myersDiff to avoid Int32Array overflow (Haram Jeong) [#59578](https://github.com/nodejs/node/pull/59578)\r\n* \\[[`7bbbcf6666`](https://github.com/nodejs/node/commit/7bbbcf6666)] - **benchmark**: sqlite prevent create both tables on prepare selects (Bruno Rodrigues) [#59709](https://github.com/nodejs/node/pull/59709)\r\n* \\[[`44d7b92271`](https://github.com/nodejs/node/commit/44d7b92271)] - **benchmark**: calibrate config array-vs-concat (Rafael Gonzaga) [#59587](https://github.com/nodejs/node/pull/59587)\r\n* \\[[`7f347fc551`](https://github.com/nodejs/node/commit/7f347fc551)] - **build**: fix getting OpenSSL version on Windows (Michaël Zasso) [#59609](https://github.com/nodejs/node/pull/59609)\r\n* \\[[`4a317150d5`](https://github.com/nodejs/node/commit/4a317150d5)] - **build**: fix 'implicit-function-declaration' on OpenHarmony platform (hqzing) [#59547](https://github.com/nodejs/node/pull/59547)\r\n* \\[[`bda32af587`](https://github.com/nodejs/node/commit/bda32af587)] - **build**: use `windows-2025` runner (Michaël Zasso) [#59673](https://github.com/nodejs/node/pull/59673)\r\n* \\[[`a4a8ed8f6e`](https://github.com/nodejs/node/commit/a4a8ed8f6e)] - **build**: compile bundled uvwasi conditionally (Carlo Cabrera) [#59622](https://github.com/nodejs/node/pull/59622)\r\n* \\[[`d944a87761`](https://github.com/nodejs/node/commit/d944a87761)] - **crypto**: refactor subtle methods to use synchronous import (Filip Skokan) [#59771](https://github.com/nodejs/node/pull/59771)\r\n* \\[[`7a8e2c251d`](https://github.com/nodejs/node/commit/7a8e2c251d)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in node:crypto (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)\r\n* \\[[`4b631be0b0`](https://github.com/nodejs/node/commit/4b631be0b0)] - **(SEMVER-MINOR)** **crypto**: support Ed448 and ML-DSA context parameter in Web Cryptography (Filip Skokan) [#59570](https://github.com/nodejs/node/pull/59570)\r\n* \\[[`3e4b1e732c`](https://github.com/nodejs/node/commit/3e4b1e732c)] - **(SEMVER-MINOR)** **crypto**: add KMAC Web Cryptography algorithms (Filip Skokan) [#59647](https://github.com/nodejs/node/pull/59647)\r\n* \\[[`b1d28785b2`](https://github.com/nodejs/node/commit/b1d28785b2)] - **(SEMVER-MINOR)** **crypto**: add Argon2 Web Cryptography algorithms (Filip Skokan) [#59544](https://github.com/nodejs/node/pull/59544)\r\n* \\[[`430691d1af`](https://github.com/nodejs/node/commit/430691d1af)] - **(SEMVER-MINOR)** **crypto**: support SLH-DSA KeyObject, sign, and verify (Filip Skokan) [#59537](https://github.com/nodejs/node/pull/59537)\r\n* \\[[`0d1e53d935`](https://github.com/nodejs/node/commit/0d1e53d935)] - **deps**: update uvwasi to 0.0.23 (Node.js GitHub Bot) [#59791](https://github.com/nodejs/node/pull/59791)\r\n* \\[[`68732cf426`](https://github.com/nodejs/node/commit/68732cf426)] - **deps**: update histogram to 0.11.9 (Node.js GitHub Bot) [#59689](https://github.com/nodejs/node/pull/59689)\r\n* \\[[`f12c1ad961`](https://github.com/nodejs/node/commit/f12c1ad961)] - **deps**: update googletest to eb2d85e (Node.js GitHub Bot) [#59335](https://github.com/nodejs/node/pull/59335)\r\n* \\[[`45af6966ae`](https://github.com/nodejs/node/commit/45af6966ae)] - **deps**: upgrade npm to 11.6.0 (npm team) [#59750](https://github.com/nodejs/node/pull/59750)\r\n* \\[[`57617244a4`](https://github.com/nodejs/node/commit/57617244a4)] - **deps**: V8: cherry-pick 6b1b9bca2a8 (Xiao-Tao) [#59283](https://github.com/nodejs/node/pull/59283)\r\n* \\[[`2e6225a747`](https://github.com/nodejs/node/commit/2e6225a747)] - **deps**: update amaro to 1.1.2 (Node.js GitHub Bot) [#59616](https://github.com/nodejs/node/pull/59616)\r\n* \\[[`1f7f6dfae6`](https://github.com/nodejs/node/commit/1f7f6dfae6)] - **diagnostics\\_channel**: revoke DEP0163 (René) [#59758](https://github.com/nodejs/node/pull/59758)\r\n* \\[[`8671a6cdb3`](https://github.com/nodejs/node/commit/8671a6cdb3)] - **doc**: stabilize --disable-sigusr1 (Rafael Gonzaga) [#59707](https://github.com/nodejs/node/pull/59707)\r\n* \\[[`583b1b255d`](https://github.com/nodejs/node/commit/583b1b255d)] - **doc**: update OpenSSL default security level to 2 (Jeetu Suthar) [#59723](https://github.com/nodejs/node/pull/59723)\r\n* \\[[`9b5eb6eb50`](https://github.com/nodejs/node/commit/9b5eb6eb50)] - **doc**: fix missing links in the `errors` page (Nam Yooseong) [#59427](https://github.com/nodejs/node/pull/59427)\r\n* \\[[`e7bf712c57`](https://github.com/nodejs/node/commit/e7bf712c57)] - **doc**: update \"Type stripping in dependencies\" section (Josh Kelley) [#59652](https://github.com/nodejs/node/pull/59652)\r\n* \\[[`96db47f91e`](https://github.com/nodejs/node/commit/96db47f91e)] - **doc**: add Miles Guicent as triager (Miles Guicent) [#59562](https://github.com/nodejs/node/pull/59562)\r\n* \\[[`87f829bd0c`](https://github.com/nodejs/node/commit/87f829bd0c)] - **doc**: mark `path.matchesGlob` as stable (Aviv Keller) [#59572](https://github.com/nodejs/node/pull/59572)\r\n* \\[[`062b2f705e`](https://github.com/nodejs/node/commit/062b2f705e)] - **doc**: improve documentation for raw headers in HTTP/2 APIs (Tim Perry) [#59633](https://github.com/nodejs/node/pull/59633)\r\n* \\[[`6ab9306370`](https://github.com/nodejs/node/commit/6ab9306370)] - **doc**: update install\\_tools.bat free disk space (Stefan Stojanovic) [#59579](https://github.com/nodejs/node/pull/59579)\r\n* \\[[`c8d6b60da6`](https://github.com/nodejs/node/commit/c8d6b60da6)] - **doc**: fix quic session instance typo (jakecastelli) [#59642](https://github.com/nodejs/node/pull/59642)\r\n* \\[[`61d0a2d1ba`](https://github.com/nodejs/node/commit/61d0a2d1ba)] - **doc**: fix filehandle.read typo (Ruy Adorno) [#59635](https://github.com/nodejs/node/pull/59635)\r\n* \\[[`3276bfa0d0`](https://github.com/nodejs/node/commit/3276bfa0d0)] - **doc**: update migration recomendations for `util.is**()` deprecations (Augustin Mauroy) [#59269](https://github.com/nodejs/node/pull/59269)\r\n* \\[[`11de6c7ebb`](https://github.com/nodejs/node/commit/11de6c7ebb)] - **doc**: fix missing link to the Error documentation in the `http` page (Alexander Makarenko) [#59080](https://github.com/nodejs/node/pull/59080)\r\n* \\[[`f5b6829bba`](https://github.com/nodejs/node/commit/f5b6829bba)] - **doc,crypto**: add description to the KEM and supports() methods (Filip Skokan) [#59644](https://github.com/nodejs/node/pull/59644)\r\n* \\[[`5bfdc7ee74`](https://github.com/nodejs/node/commit/5bfdc7ee74)] - **doc,crypto**: cleanup unlinked and self method references webcrypto.md (Filip Skokan) [#59608](https://github.com/nodejs/node/pull/59608)\r\n* \\[[`010458d061`](https://github.com/nodejs/node/commit/010458d061)] - **esm**: populate separate cache for require(esm) in imported CJS (Joyee Cheung) [#59679](https://github.com/nodejs/node/pull/59679)\r\n* \\[[`dbe6e63baf`](https://github.com/nodejs/node/commit/dbe6e63baf)] - **esm**: fix missed renaming in ModuleJob.runSync (Joyee Cheung) [#59724](https://github.com/nodejs/node/pull/59724)\r\n* \\[[`8eb0d9d834`](https://github.com/nodejs/node/commit/8eb0d9d834)] - **fs**: fix wrong order of file names in cpSync error message (Nicholas Paun) [#59775](https://github.com/nodejs/node/pull/59775)\r\n* \\[[`e69be5611f`](https://github.com/nodejs/node/commit/e69be5611f)] - **fs**: fix dereference: false on cpSync (Nicholas Paun) [#59681](https://github.com/nodejs/node/pull/59681)\r\n* \\[[`2865d2ac20`](https://github.com/nodejs/node/commit/2865d2ac20)] - **http**: unbreak keepAliveTimeoutBuffer (Robert Nagy) [#59784](https://github.com/nodejs/node/pull/59784)\r\n* \\[[`ade1175475`](https://github.com/nodejs/node/commit/ade1175475)] - **http**: use cached '1.1' http version string (Robert Nagy) [#59717](https://github.com/nodejs/node/pull/59717)\r\n* \\[[`74a09482de`](https://github.com/nodejs/node/commit/74a09482de)] - **inspector**: undici as shared-library should pass tests (Aras Abbasi) [#59837](https://github.com/nodejs/node/pull/59837)\r\n* \\[[`772f8f415a`](https://github.com/nodejs/node/commit/772f8f415a)] - **inspector**: add http2 tracking support (Darshan Sen) [#59611](https://github.com/nodejs/node/pull/59611)\r\n* \\[[`3d225572d7`](https://github.com/nodejs/node/commit/3d225572d7)] - _**Revert**_ \"**lib**: optimize writable stream buffer clearing\" (Yoo) [#59743](https://github.com/nodejs/node/pull/59743)\r\n* \\[[`4fd213ce73`](https://github.com/nodejs/node/commit/4fd213ce73)] - **lib**: fix isReadable and isWritable return type value (Gabriel Quaresma) [#59089](https://github.com/nodejs/node/pull/59089)\r\n* \\[[`39befddb87`](https://github.com/nodejs/node/commit/39befddb87)] - **lib**: prefer TypedArrayPrototype primordials (Filip Skokan) [#59766](https://github.com/nodejs/node/pull/59766)\r\n* \\[[`0748160d2e`](https://github.com/nodejs/node/commit/0748160d2e)] - **lib**: fix DOMException subclass support (Chengzhong Wu) [#59680](https://github.com/nodejs/node/pull/59680)\r\n* \\[[`1a93df808c`](https://github.com/nodejs/node/commit/1a93df808c)] - **lib**: revert to using default derived class constructors (René) [#59650](https://github.com/nodejs/node/pull/59650)\r\n* \\[[`bb0755df37`](https://github.com/nodejs/node/commit/bb0755df37)] - **meta**: bump `codecov/codecov-action` (dependabot\\[bot]) [#59726](https://github.com/nodejs/node/pull/59726)\r\n* \\[[`45d148d9be`](https://github.com/nodejs/node/commit/45d148d9be)] - **meta**: bump actions/download-artifact from 4.3.0 to 5.0.0 (dependabot\\[bot]) [#59729](https://github.com/nodejs/node/pull/59729)\r\n* \\[[`01b66b122e`](https://github.com/nodejs/node/commit/01b66b122e)] - **meta**: bump github/codeql-action from 3.29.2 to 3.30.0 (dependabot\\[bot]) [#59728](https://github.com/nodejs/node/pull/59728)\r\n* \\[[`34f7ab5502`](https://github.com/nodejs/node/commit/34f7ab5502)] - **meta**: bump actions/cache from 4.2.3 to 4.2.4 (dependabot\\[bot]) [#59727](https://github.com/nodejs/node/pull/59727)\r\n* \\[[`5806ea02af`](https://github.com/nodejs/node/commit/5806ea02af)] - **meta**: bump actions/checkout from 4.2.2 to 5.0.0 (dependabot\\[bot]) [#59725](https://github.com/nodejs/node/pull/59725)\r\n* \\[[`f667215583`](https://github.com/nodejs/node/commit/f667215583)] - **path**: refactor path joining logic for clarity and performance (Lee Jiho) [#59781](https://github.com/nodejs/node/pull/59781)\r\n* \\[[`0340fe92a6`](https://github.com/nodejs/node/commit/0340fe92a6)] - **repl**: do not cause side effects in tab completion (Anna Henningsen) [#59774](https://github.com/nodejs/node/pull/59774)\r\n* \\[[`a414c1eb51`](https://github.com/nodejs/node/commit/a414c1eb51)] - **repl**: fix REPL completion under unary expressions (Kingsword) [#59744](https://github.com/nodejs/node/pull/59744)\r\n* \\[[`c206f8dd87`](https://github.com/nodejs/node/commit/c206f8dd87)] - **repl**: add isValidParentheses check before wrap input (Xuguang Mei) [#59607](https://github.com/nodejs/node/pull/59607)\r\n* \\[[`0bf9775ee2`](https://github.com/nodejs/node/commit/0bf9775ee2)] - **sea**: implement sea.getAssetKeys() (Joyee Cheung) [#59661](https://github.com/nodejs/node/pull/59661)\r\n* \\[[`bf26b478d8`](https://github.com/nodejs/node/commit/bf26b478d8)] - **sea**: allow using inspector command line flags with SEA (Joyee Cheung) [#59568](https://github.com/nodejs/node/pull/59568)\r\n* \\[[`92128a8fe2`](https://github.com/nodejs/node/commit/92128a8fe2)] - **src**: use DictionaryTemplate for node\\_url\\_pattern (James M Snell) [#59802](https://github.com/nodejs/node/pull/59802)\r\n* \\[[`bcb29fb84f`](https://github.com/nodejs/node/commit/bcb29fb84f)] - **src**: correctly report memory changes to V8 (Yaksh Bariya) [#59623](https://github.com/nodejs/node/pull/59623)\r\n* \\[[`44c24657d3`](https://github.com/nodejs/node/commit/44c24657d3)] - **src**: fixup node\\_messaging error handling (James M Snell) [#59792](https://github.com/nodejs/node/pull/59792)\r\n* \\[[`2cd6a3b7ec`](https://github.com/nodejs/node/commit/2cd6a3b7ec)] - **src**: track async resources via pointers to stack-allocated handles (Anna Henningsen) [#59704](https://github.com/nodejs/node/pull/59704)\r\n* \\[[`34d752586f`](https://github.com/nodejs/node/commit/34d752586f)] - **src**: fix build on NetBSD (Thomas Klausner) [#59718](https://github.com/nodejs/node/pull/59718)\r\n* \\[[`15fa779ac5`](https://github.com/nodejs/node/commit/15fa779ac5)] - **src**: fix race on process exit and off thread CA loading (Chengzhong Wu) [#59632](https://github.com/nodejs/node/pull/59632)\r\n* \\[[`15cbd3966a`](https://github.com/nodejs/node/commit/15cbd3966a)] - **src**: separate module.hasAsyncGraph and module.hasTopLevelAwait (Joyee Cheung) [#59675](https://github.com/nodejs/node/pull/59675)\r\n* \\[[`88d1ca8990`](https://github.com/nodejs/node/commit/88d1ca8990)] - **src**: use non-deprecated Get/SetPrototype methods (Michaël Zasso) [#59671](https://github.com/nodejs/node/pull/59671)\r\n* \\[[`56ac9a2d46`](https://github.com/nodejs/node/commit/56ac9a2d46)] - **src**: migrate WriteOneByte to WriteOneByteV2 (Chengzhong Wu) [#59634](https://github.com/nodejs/node/pull/59634)\r\n* \\[[`3d88aa9f2f`](https://github.com/nodejs/node/commit/3d88aa9f2f)] - **src**: remove duplicate code (theanarkh) [#59649](https://github.com/nodejs/node/pull/59649)\r\n* \\[[`0718a70b2a`](https://github.com/nodejs/node/commit/0718a70b2a)] - **src**: add name for more threads (theanarkh) [#59601](https://github.com/nodejs/node/pull/59601)\r\n* \\[[`0379a8b254`](https://github.com/nodejs/node/commit/0379a8b254)] - **src**: remove JSONParser (Joyee Cheung) [#59619](https://github.com/nodejs/node/pull/59619)\r\n* \\[[`90d0a1b2e9`](https://github.com/nodejs/node/commit/90d0a1b2e9)] - **src,sqlite**: refactor value conversion (Edy Silva) [#59659](https://github.com/nodejs/node/pull/59659)\r\n* \\[[`5e025c7ca7`](https://github.com/nodejs/node/commit/5e025c7ca7)] - **stream**: replace manual function validation with validateFunction (방진혁) [#59529](https://github.com/nodejs/node/pull/59529)\r\n* \\[[`155a999bed`](https://github.com/nodejs/node/commit/155a999bed)] - **test**: skip tests failing when run under root (Livia Medeiros) [#59779](https://github.com/nodejs/node/pull/59779)\r\n* \\[[`6313706c69`](https://github.com/nodejs/node/commit/6313706c69)] - **test**: update WPT for urlpattern to cff1ac1123 (Node.js GitHub Bot) [#59602](https://github.com/nodejs/node/pull/59602)\r\n* \\[[`41245ad4c7`](https://github.com/nodejs/node/commit/41245ad4c7)] - **test**: skip more sea tests on Linux ppc64le (Richard Lau) [#59755](https://github.com/nodejs/node/pull/59755)\r\n* \\[[`df63d37ec4`](https://github.com/nodejs/node/commit/df63d37ec4)] - **test**: fix internet/test-dns (Michaël Zasso) [#59660](https://github.com/nodejs/node/pull/59660)\r\n* \\[[`1f6c335e82`](https://github.com/nodejs/node/commit/1f6c335e82)] - **test**: mark test-inspector-network-fetch as flaky again (Joyee Cheung) [#59640](https://github.com/nodejs/node/pull/59640)\r\n* \\[[`1798683df1`](https://github.com/nodejs/node/commit/1798683df1)] - **test**: skip test-fs-cp\\* tests that are constantly failing on Windows (Joyee Cheung) [#59637](https://github.com/nodejs/node/pull/59637)\r\n* \\[[`4c48ec09e5`](https://github.com/nodejs/node/commit/4c48ec09e5)] - **test**: deflake test-http-keep-alive-empty-line (Luigi Pinca) [#59595](https://github.com/nodejs/node/pull/59595)\r\n* \\[[`dcdb259e85`](https://github.com/nodejs/node/commit/dcdb259e85)] - **test\\_runner**: fix todo inheritance (Moshe Atlow) [#59721](https://github.com/nodejs/node/pull/59721)\r\n* \\[[`24177973a2`](https://github.com/nodejs/node/commit/24177973a2)] - **test\\_runner**: set mock timer's interval undefined (hotpineapple) [#59479](https://github.com/nodejs/node/pull/59479)\r\n* \\[[`83d11f8a7a`](https://github.com/nodejs/node/commit/83d11f8a7a)] - **tools**: print appropriate output when test aborted (hotpineapple) [#59794](https://github.com/nodejs/node/pull/59794)\r\n* \\[[`1eca2cc548`](https://github.com/nodejs/node/commit/1eca2cc548)] - **tools**: use sparse checkout in `build-tarball.yml` (Antoine du Hamel) [#59788](https://github.com/nodejs/node/pull/59788)\r\n* \\[[`89fa1a929d`](https://github.com/nodejs/node/commit/89fa1a929d)] - **tools**: remove unused actions from `build-tarball.yml` (Antoine du Hamel) [#59787](https://github.com/nodejs/node/pull/59787)\r\n* \\[[`794ca3511d`](https://github.com/nodejs/node/commit/794ca3511d)] - **tools**: do not attempt to compress tgz archive (Antoine du Hamel) [#59785](https://github.com/nodejs/node/pull/59785)\r\n* \\[[`377bdb9b7e`](https://github.com/nodejs/node/commit/377bdb9b7e)] - **tools**: add v8windbg target (Chengzhong Wu) [#59767](https://github.com/nodejs/node/pull/59767)\r\n* \\[[`6696d1d6c9`](https://github.com/nodejs/node/commit/6696d1d6c9)] - **tools**: improve error handling in node\\_mksnapshot (James M Snell) [#59437](https://github.com/nodejs/node/pull/59437)\r\n* \\[[`8dbd0f13e8`](https://github.com/nodejs/node/commit/8dbd0f13e8)] - **tools**: add sccache to `test-internet` workflow (Antoine du Hamel) [#59720](https://github.com/nodejs/node/pull/59720)\r\n* \\[[`6523c2d7d9`](https://github.com/nodejs/node/commit/6523c2d7d9)] - **tools**: update gyp-next to 0.20.4 (Node.js GitHub Bot) [#59690](https://github.com/nodejs/node/pull/59690)\r\n* \\[[`19d633f40c`](https://github.com/nodejs/node/commit/19d633f40c)] - **tools**: add script to make reviewing backport PRs easier (Antoine du Hamel) [#59161](https://github.com/nodejs/node/pull/59161)\r\n* \\[[`15e547b3a4`](https://github.com/nodejs/node/commit/15e547b3a4)] - **typings**: add typing for 'uv' (방진혁) [#59606](https://github.com/nodejs/node/pull/59606)\r\n* \\[[`ad5cfcc901`](https://github.com/nodejs/node/commit/ad5cfcc901)] - **typings**: add missing properties in ConfigBinding (Lee Jiho) [#59585](https://github.com/nodejs/node/pull/59585)\r\n* \\[[`70d2d6d479`](https://github.com/nodejs/node/commit/70d2d6d479)] - **url**: add err.input to ERR\\_INVALID\\_FILE\\_URL\\_PATH (Joyee Cheung) [#59730](https://github.com/nodejs/node/pull/59730)\r\n* \\[[`e476e43c17`](https://github.com/nodejs/node/commit/e476e43c17)] - **util**: fix numericSeparator with negative fractional numbers (sangwook) [#59379](https://github.com/nodejs/node/pull/59379)\r\n* \\[[`b2e8f40d15`](https://github.com/nodejs/node/commit/b2e8f40d15)] - **util**: remove unnecessary template strings (btea) [#59201](https://github.com/nodejs/node/pull/59201)\r\n* \\[[`6f79450ea2`](https://github.com/nodejs/node/commit/6f79450ea2)] - **util**: remove outdated TODO comment (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760)\r\n* \\[[`32731432ef`](https://github.com/nodejs/node/commit/32731432ef)] - **util**: use getOptionValue('--no-deprecation') in deprecated() (haramjeong) [#59760](https://github.com/nodejs/node/pull/59760)\r\n* \\[[`65e4e68c90`](https://github.com/nodejs/node/commit/65e4e68c90)] - **util**: hide duplicated stack frames when using util.inspect (Ruben Bridgewater) [#59447](https://github.com/nodejs/node/pull/59447)\r\n* \\[[`2086f3365f`](https://github.com/nodejs/node/commit/2086f3365f)] - **vm**: sync-ify SourceTextModule linkage (Chengzhong Wu) [#59000](https://github.com/nodejs/node/pull/59000)\r\n* \\[[`c16163511d`](https://github.com/nodejs/node/commit/c16163511d)] - **wasi**: fix `clean` target in `test/wasi/Makefile` (Antoine du Hamel) [#59576](https://github.com/nodejs/node/pull/59576)\r\n* \\[[`2e54411cb6`](https://github.com/nodejs/node/commit/2e54411cb6)] - **worker**: optimize cpu profile implement (theanarkh) [#59683](https://github.com/nodejs/node/pull/59683)\r\n* \\[[`d6d05ba397`](https://github.com/nodejs/node/commit/d6d05ba397)] - **(SEMVER-MINOR)** **worker**: add cpu profile APIs for worker (theanarkh) [#59428](https://github.com/nodejs/node/pull/59428)\r\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/246286434/reactions", + "total_count": 58, + "+1": 18, + "-1": 0, + "laugh": 1, + "hooray": 8, + "confused": 0, + "heart": 10, + "rocket": 16, + "eyes": 5 + } + }, + { + "url": "https://api.github.com/repos/nodejs/node/releases/244537240", + "assets_url": "https://api.github.com/repos/nodejs/node/releases/244537240/assets", + "upload_url": "https://uploads.github.com/repos/nodejs/node/releases/244537240/assets{?name,label}", + "html_url": "https://github.com/nodejs/node/releases/tag/v20.19.5", + "id": 244537240, + "author": { + "login": "marco-ippolito", + "id": 36735501, + "node_id": "MDQ6VXNlcjM2NzM1NTAx", + "avatar_url": "https://avatars.githubusercontent.com/u/36735501?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/marco-ippolito", + "html_url": "https://github.com/marco-ippolito", + "followers_url": "https://api.github.com/users/marco-ippolito/followers", + "following_url": "https://api.github.com/users/marco-ippolito/following{/other_user}", + "gists_url": "https://api.github.com/users/marco-ippolito/gists{/gist_id}", + "starred_url": "https://api.github.com/users/marco-ippolito/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/marco-ippolito/subscriptions", + "organizations_url": "https://api.github.com/users/marco-ippolito/orgs", + "repos_url": "https://api.github.com/users/marco-ippolito/repos", + "events_url": "https://api.github.com/users/marco-ippolito/events{/privacy}", + "received_events_url": "https://api.github.com/users/marco-ippolito/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAZ7xs84Ok1eY", + "tag_name": "v20.19.5", + "target_commitish": "main", + "name": "2025-09-03, Version 20.19.5 'Iron' (LTS), @marco-ippolito", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-09-03T18:11:12Z", + "updated_at": "2025-09-03T18:22:10Z", + "published_at": "2025-09-03T18:22:10Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/nodejs/node/tarball/v20.19.5", + "zipball_url": "https://api.github.com/repos/nodejs/node/zipball/v20.19.5", + "body": "### Notable Changes\r\n\r\n* \\[[`f5b293ad48`](https://github.com/nodejs/node/commit/f5b293ad48)] - **doc**: add JonasBa to collaborators (Jonas Badalic) [#58355](https://github.com/nodejs/node/pull/58355)\r\n* \\[[`4e6ae787c6`](https://github.com/nodejs/node/commit/4e6ae787c6)] - **doc**: add puskin to collaborators (Giovanni Bucci) [#58308](https://github.com/nodejs/node/pull/58308)\r\n* \\[[`d06db658fc`](https://github.com/nodejs/node/commit/d06db658fc)] - **doc**: add Filip Skokan to TSC (Rafael Gonzaga) [#58499](https://github.com/nodejs/node/pull/58499)\r\n* \\[[`3c6206cac9`](https://github.com/nodejs/node/commit/3c6206cac9)] - **doc**: add @geeksilva97 to collaborators (Edy Silva) [#57241](https://github.com/nodejs/node/pull/57241)\r\n\r\n### Commits\r\n\r\n* \\[[`ea20403467`](https://github.com/nodejs/node/commit/ea20403467)] - **build**: fix uvwasi pkgname (Antoine du Hamel) [#58270](https://github.com/nodejs/node/pull/58270)\r\n* \\[[`c647aa4b30`](https://github.com/nodejs/node/commit/c647aa4b30)] - **build**: fix pointer compression builds (Joyee Cheung) [#58171](https://github.com/nodejs/node/pull/58171)\r\n* \\[[`d2c5e609ae`](https://github.com/nodejs/node/commit/d2c5e609ae)] - **build**: disable v8\\_enable\\_pointer\\_compression\\_shared\\_cage on non-64bit (Shelley Vohr) [#58867](https://github.com/nodejs/node/pull/58867)\r\n* \\[[`84d5c4d244`](https://github.com/nodejs/node/commit/84d5c4d244)] - **build**: search for libnode.so in multiple places (Jan Staněk) [#58213](https://github.com/nodejs/node/pull/58213)\r\n* \\[[`068c439552`](https://github.com/nodejs/node/commit/068c439552)] - **crypto**: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 (Filip Skokan) [#58942](https://github.com/nodejs/node/pull/58942)\r\n* \\[[`edff105c34`](https://github.com/nodejs/node/commit/edff105c34)] - **debugger**: fix behavior of plain object exec in debugger repl (Dario Piotrowicz) [#57498](https://github.com/nodejs/node/pull/57498)\r\n* \\[[`0473e35b7f`](https://github.com/nodejs/node/commit/0473e35b7f)] - **deps**: update zlib to 1.3.1-470d3a2 (Node.js GitHub Bot) [#58628](https://github.com/nodejs/node/pull/58628)\r\n* \\[[`1218dbbea5`](https://github.com/nodejs/node/commit/1218dbbea5)] - **deps**: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot) [#57768](https://github.com/nodejs/node/pull/57768)\r\n* \\[[`0e3cd9ec00`](https://github.com/nodejs/node/commit/0e3cd9ec00)] - **deps**: update zlib to 1.3.0.1-motley-788cb3c (Node.js GitHub Bot) [#56655](https://github.com/nodejs/node/pull/56655)\r\n* \\[[`a194dd9bd4`](https://github.com/nodejs/node/commit/a194dd9bd4)] - **deps**: update archs files for openssl-3.0.16 (Node.js GitHub Bot) [#57335](https://github.com/nodejs/node/pull/57335)\r\n* \\[[`cc9b79ca70`](https://github.com/nodejs/node/commit/cc9b79ca70)] - **deps**: upgrade openssl sources to quictls/openssl-3.0.16 (Node.js GitHub Bot) [#57335](https://github.com/nodejs/node/pull/57335)\r\n* \\[[`82c46d5358`](https://github.com/nodejs/node/commit/82c46d5358)] - **deps**: update cjs-module-lexer to 2.1.0 (Node.js GitHub Bot) [#57180](https://github.com/nodejs/node/pull/57180)\r\n* \\[[`43e3f9b26b`](https://github.com/nodejs/node/commit/43e3f9b26b)] - **deps**: update cjs-module-lexer to 2.0.0 (Michael Dawson) [#56855](https://github.com/nodejs/node/pull/56855)\r\n* \\[[`91282ff16b`](https://github.com/nodejs/node/commit/91282ff16b)] - **deps**: update corepack to 0.33.0 (Node.js GitHub Bot) [#58566](https://github.com/nodejs/node/pull/58566)\r\n* \\[[`b76bca6f38`](https://github.com/nodejs/node/commit/b76bca6f38)] - **deps**: update acorn to 8.15.0 (Node.js GitHub Bot) [#58711](https://github.com/nodejs/node/pull/58711)\r\n* \\[[`ae11481011`](https://github.com/nodejs/node/commit/ae11481011)] - **deps**: update acorn to 8.14.1 (Node.js GitHub Bot) [#57382](https://github.com/nodejs/node/pull/57382)\r\n* \\[[`142d701201`](https://github.com/nodejs/node/commit/142d701201)] - **deps**: update minimatch to 10.0.3 (Node.js GitHub Bot) [#58712](https://github.com/nodejs/node/pull/58712)\r\n* \\[[`fee082d684`](https://github.com/nodejs/node/commit/fee082d684)] - **deps**: update llhttp to 9.3.0 (Fedor Indutny) [#58144](https://github.com/nodejs/node/pull/58144)\r\n* \\[[`c06f6f3f05`](https://github.com/nodejs/node/commit/c06f6f3f05)] - **dns**: remove redundant code using common variable (Deokjin Kim) [#57386](https://github.com/nodejs/node/pull/57386)\r\n* \\[[`cded8e7e77`](https://github.com/nodejs/node/commit/cded8e7e77)] - **dns**: fix parse memory leaky (theanarkh) [#58973](https://github.com/nodejs/node/pull/58973)\r\n* \\[[`182ae67233`](https://github.com/nodejs/node/commit/182ae67233)] - **dns**: fix dns query cache implementation (Ethan Arrowood) [#58404](https://github.com/nodejs/node/pull/58404)\r\n* \\[[`621b66a297`](https://github.com/nodejs/node/commit/621b66a297)] - **doc**: add review guidelines for collaborator nominations (Antoine du Hamel) [#57449](https://github.com/nodejs/node/pull/57449)\r\n* \\[[`b1009b5b72`](https://github.com/nodejs/node/commit/b1009b5b72)] - **doc**: explicit mention arbitrary code execution as a vuln (Rafael Gonzaga) [#57426](https://github.com/nodejs/node/pull/57426)\r\n* \\[[`f5b293ad48`](https://github.com/nodejs/node/commit/f5b293ad48)] - **doc**: add JonasBa to collaborators (Jonas Badalic) [#58355](https://github.com/nodejs/node/pull/58355)\r\n* \\[[`4e6ae787c6`](https://github.com/nodejs/node/commit/4e6ae787c6)] - **doc**: add puskin to collaborators (Giovanni Bucci) [#58308](https://github.com/nodejs/node/pull/58308)\r\n* \\[[`530473f479`](https://github.com/nodejs/node/commit/530473f479)] - **doc**: add ovflowd back to core collaborators (Claudio W.) [#58911](https://github.com/nodejs/node/pull/58911)\r\n* \\[[`38e8bbc131`](https://github.com/nodejs/node/commit/38e8bbc131)] - **doc**: add info on how project manages social media (Michael Dawson) [#57318](https://github.com/nodejs/node/pull/57318)\r\n* \\[[`d06bb4dcc2`](https://github.com/nodejs/node/commit/d06bb4dcc2)] - **doc**: ping nodejs/tsc for each security pull request (Rafael Gonzaga) [#57309](https://github.com/nodejs/node/pull/57309)\r\n* \\[[`d06db658fc`](https://github.com/nodejs/node/commit/d06db658fc)] - **doc**: add Filip Skokan to TSC (Rafael Gonzaga) [#58499](https://github.com/nodejs/node/pull/58499)\r\n* \\[[`8c3bc156ed`](https://github.com/nodejs/node/commit/8c3bc156ed)] - **doc**: clarify `path.isAbsolute` is not path traversal mitigation (Eric Fortis) [#57073](https://github.com/nodejs/node/pull/57073)\r\n* \\[[`e688410bda`](https://github.com/nodejs/node/commit/e688410bda)] - **doc**: fix rendering of DEP0174 description (David Sanders) [#56835](https://github.com/nodejs/node/pull/56835)\r\n* \\[[`e6a0c6a0fa`](https://github.com/nodejs/node/commit/e6a0c6a0fa)] - **doc**: add missing assert return types (Colin Ihrig) [#57219](https://github.com/nodejs/node/pull/57219)\r\n* \\[[`026b3cab6a`](https://github.com/nodejs/node/commit/026b3cab6a)] - **doc**: add 1ilsang to triage team (1ilsang) [#57183](https://github.com/nodejs/node/pull/57183)\r\n* \\[[`3c6206cac9`](https://github.com/nodejs/node/commit/3c6206cac9)] - **doc**: add @geeksilva97 to collaborators (Edy Silva) [#57241](https://github.com/nodejs/node/pull/57241)\r\n* \\[[`ef3a4675c7`](https://github.com/nodejs/node/commit/ef3a4675c7)] - **doc**: fix web.libera.chat link in pull-requests.md (Samuel Bronson) [#57076](https://github.com/nodejs/node/pull/57076)\r\n* \\[[`1db42b76f7`](https://github.com/nodejs/node/commit/1db42b76f7)] - **doc**: remove buffered flag from performance hooks examples (Pavel Romanov) [#52607](https://github.com/nodejs/node/pull/52607)\r\n* \\[[`b73a1356ce`](https://github.com/nodejs/node/commit/b73a1356ce)] - **doc**: add `module namespace object` links (Dario Piotrowicz) [#57093](https://github.com/nodejs/node/pull/57093)\r\n* \\[[`09368db20f`](https://github.com/nodejs/node/commit/09368db20f)] - **doc**: disambiguate pseudo-code statement (Dario Piotrowicz) [#57092](https://github.com/nodejs/node/pull/57092)\r\n* \\[[`2c3dc569a1`](https://github.com/nodejs/node/commit/2c3dc569a1)] - **doc**: fix wrong articles used to address modules (Dario Piotrowicz) [#57090](https://github.com/nodejs/node/pull/57090)\r\n* \\[[`cd8259cb4e`](https://github.com/nodejs/node/commit/cd8259cb4e)] - **doc**: `modules.md`: fix `distance` definition (Alexander “weej” Jones) [#57046](https://github.com/nodejs/node/pull/57046)\r\n* \\[[`7b0ea9ab2d`](https://github.com/nodejs/node/commit/7b0ea9ab2d)] - **doc**: fix wrong verb form (Dario Piotrowicz) [#57091](https://github.com/nodejs/node/pull/57091)\r\n* \\[[`14fcfc242b`](https://github.com/nodejs/node/commit/14fcfc242b)] - **doc**: add a note about `require('../common')` in testing documentation (Aditi) [#56953](https://github.com/nodejs/node/pull/56953)\r\n* \\[[`bc7d18b6ea`](https://github.com/nodejs/node/commit/bc7d18b6ea)] - **doc**: recommend writing tests in new files and including comments (Joyee Cheung) [#57028](https://github.com/nodejs/node/pull/57028)\r\n* \\[[`acd4d7f269`](https://github.com/nodejs/node/commit/acd4d7f269)] - **doc**: improve documentation on argument validation (Aditi) [#56954](https://github.com/nodejs/node/pull/56954)\r\n* \\[[`4cd6b3ca73`](https://github.com/nodejs/node/commit/4cd6b3ca73)] - **doc**: buffer: fix typo on `Buffer.copyBytesFrom(` `offset` option (tpoisseau) [#57015](https://github.com/nodejs/node/pull/57015)\r\n* \\[[`01220607f2`](https://github.com/nodejs/node/commit/01220607f2)] - **doc**: update cleanup to trust on vuln db automation (Rafael Gonzaga) [#57004](https://github.com/nodejs/node/pull/57004)\r\n* \\[[`77a0505a32`](https://github.com/nodejs/node/commit/77a0505a32)] - **doc**: update post sec release process (Rafael Gonzaga) [#56907](https://github.com/nodejs/node/pull/56907)\r\n* \\[[`77dbcfce5f`](https://github.com/nodejs/node/commit/77dbcfce5f)] - **doc**: add section about using npx with permission model (Rafael Gonzaga) [#56539](https://github.com/nodejs/node/pull/56539)\r\n* \\[[`73e51407b7`](https://github.com/nodejs/node/commit/73e51407b7)] - **doc**: remove RedYetiDev from triagers team (Aviv Keller) [#55947](https://github.com/nodejs/node/pull/55947)\r\n* \\[[`9a36cbb792`](https://github.com/nodejs/node/commit/9a36cbb792)] - **doc**: fix relative path mention in --allow-fs (Rafael Gonzaga) [#55791](https://github.com/nodejs/node/pull/55791)\r\n* \\[[`04d9c5baeb`](https://github.com/nodejs/node/commit/04d9c5baeb)] - **doc**: add scroll margin to links (Roman Reiss) [#58982](https://github.com/nodejs/node/pull/58982)\r\n* \\[[`959a67f6ff`](https://github.com/nodejs/node/commit/959a67f6ff)] - **doc**: make Stability labels not sticky in Stability index (Livia Medeiros) [#58291](https://github.com/nodejs/node/pull/58291)\r\n* \\[[`8757a5532f`](https://github.com/nodejs/node/commit/8757a5532f)] - **doc**: update release key for aduh95 (Antoine du Hamel) [#58877](https://github.com/nodejs/node/pull/58877)\r\n* \\[[`6fa0626327`](https://github.com/nodejs/node/commit/6fa0626327)] - **doc,src,test**: fix typos (Noritaka Kobayashi) [#58477](https://github.com/nodejs/node/pull/58477)\r\n* \\[[`9991788e4a`](https://github.com/nodejs/node/commit/9991788e4a)] - **http**: coerce content-length to number (Marco Ippolito) [#57458](https://github.com/nodejs/node/pull/57458)\r\n* \\[[`ff5cf8a428`](https://github.com/nodejs/node/commit/ff5cf8a428)] - **http2**: fix check for `frame->hd.type` (hanguanqiang) [#57644](https://github.com/nodejs/node/pull/57644)\r\n* \\[[`2f333b6c51`](https://github.com/nodejs/node/commit/2f333b6c51)] - **lib**: optimize `prepareStackTrace` on builtin frames (Chengzhong Wu) [#56299](https://github.com/nodejs/node/pull/56299)\r\n* \\[[`cdf985071f`](https://github.com/nodejs/node/commit/cdf985071f)] - **lib**: suppress source map lookup exceptions (Chengzhong Wu) [#56299](https://github.com/nodejs/node/pull/56299)\r\n* \\[[`faa08b14ed`](https://github.com/nodejs/node/commit/faa08b14ed)] - **lib**: fixup incorrect argument order in assertEncoding (James M Snell) [#57177](https://github.com/nodejs/node/pull/57177)\r\n* \\[[`a683cd1232`](https://github.com/nodejs/node/commit/a683cd1232)] - **meta**: add IlyasShabi to collaborators (Ilyas Shabi) [#58916](https://github.com/nodejs/node/pull/58916)\r\n* \\[[`b145bb28aa`](https://github.com/nodejs/node/commit/b145bb28aa)] - **meta**: bump codecov/codecov-action from 5.4.2 to 5.4.3 (dependabot\\[bot]) [#58551](https://github.com/nodejs/node/pull/58551)\r\n* \\[[`2c59789001`](https://github.com/nodejs/node/commit/2c59789001)] - **meta**: bump ossf/scorecard-action from 2.4.1 to 2.4.2 (dependabot\\[bot]) [#58550](https://github.com/nodejs/node/pull/58550)\r\n* \\[[`4095337e96`](https://github.com/nodejs/node/commit/4095337e96)] - **meta**: bump rtCamp/action-slack-notify from 2.3.2 to 2.3.3 (dependabot\\[bot]) [#58108](https://github.com/nodejs/node/pull/58108)\r\n* \\[[`631fed8e39`](https://github.com/nodejs/node/commit/631fed8e39)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#58456](https://github.com/nodejs/node/pull/58456)\r\n* \\[[`7d2f7180b6`](https://github.com/nodejs/node/commit/7d2f7180b6)] - **meta**: bump codecov/codecov-action from 5.4.0 to 5.4.2 (dependabot\\[bot]) [#58110](https://github.com/nodejs/node/pull/58110)\r\n* \\[[`1558551ea5`](https://github.com/nodejs/node/commit/1558551ea5)] - **meta**: bump actions/download-artifact from 4.2.1 to 4.3.0 (dependabot\\[bot]) [#58106](https://github.com/nodejs/node/pull/58106)\r\n* \\[[`e1f12fe737`](https://github.com/nodejs/node/commit/e1f12fe737)] - **meta**: ignore mailmap changes in linux ci (Jonas Badalic) [#58356](https://github.com/nodejs/node/pull/58356)\r\n* \\[[`1b78eb1313`](https://github.com/nodejs/node/commit/1b78eb1313)] - **meta**: bump actions/setup-node from 4.3.0 to 4.4.0 (dependabot\\[bot]) [#58111](https://github.com/nodejs/node/pull/58111)\r\n* \\[[`2b8449c39a`](https://github.com/nodejs/node/commit/2b8449c39a)] - **meta**: bump actions/setup-python from 5.5.0 to 5.6.0 (dependabot\\[bot]) [#58107](https://github.com/nodejs/node/pull/58107)\r\n* \\[[`833b70bbc5`](https://github.com/nodejs/node/commit/833b70bbc5)] - **meta**: allow penetration testing on live system with prior authorization (Matteo Collina) [#57966](https://github.com/nodejs/node/pull/57966)\r\n* \\[[`c6a88561f5`](https://github.com/nodejs/node/commit/c6a88561f5)] - **meta**: bump actions/setup-python from 5.4.0 to 5.5.0 (dependabot\\[bot]) [#57718](https://github.com/nodejs/node/pull/57718)\r\n* \\[[`9046ef4fb3`](https://github.com/nodejs/node/commit/9046ef4fb3)] - **meta**: bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (dependabot\\[bot]) [#57717](https://github.com/nodejs/node/pull/57717)\r\n* \\[[`46388a4e2a`](https://github.com/nodejs/node/commit/46388a4e2a)] - **meta**: bump actions/cache from 4.2.2 to 4.2.3 (dependabot\\[bot]) [#57715](https://github.com/nodejs/node/pull/57715)\r\n* \\[[`d3970685bd`](https://github.com/nodejs/node/commit/d3970685bd)] - **meta**: bump actions/setup-node from 4.2.0 to 4.3.0 (dependabot\\[bot]) [#57714](https://github.com/nodejs/node/pull/57714)\r\n* \\[[`47004ef37f`](https://github.com/nodejs/node/commit/47004ef37f)] - **meta**: bump actions/upload-artifact from 4.6.1 to 4.6.2 (dependabot\\[bot]) [#57713](https://github.com/nodejs/node/pull/57713)\r\n* \\[[`4abe83ec03`](https://github.com/nodejs/node/commit/4abe83ec03)] - **meta**: add some clarification to the nomination process (James M Snell) [#57503](https://github.com/nodejs/node/pull/57503)\r\n* \\[[`45e9b88363`](https://github.com/nodejs/node/commit/45e9b88363)] - **meta**: remove collaborator self-nomination (Rich Trott) [#57537](https://github.com/nodejs/node/pull/57537)\r\n* \\[[`d10949b7d8`](https://github.com/nodejs/node/commit/d10949b7d8)] - **meta**: edit collaborator nomination process (Antoine du Hamel) [#57483](https://github.com/nodejs/node/pull/57483)\r\n* \\[[`704562fb7a`](https://github.com/nodejs/node/commit/704562fb7a)] - **meta**: move ovflowd to emeritus (Claudio W.) [#57443](https://github.com/nodejs/node/pull/57443)\r\n* \\[[`3f981b8537`](https://github.com/nodejs/node/commit/3f981b8537)] - **meta**: bump codecov/codecov-action from 5.3.1 to 5.4.0 (dependabot\\[bot]) [#57257](https://github.com/nodejs/node/pull/57257)\r\n* \\[[`7e1ff7b332`](https://github.com/nodejs/node/commit/7e1ff7b332)] - **meta**: bump ossf/scorecard-action from 2.4.0 to 2.4.1 (dependabot\\[bot]) [#57253](https://github.com/nodejs/node/pull/57253)\r\n* \\[[`8d4ec412b9`](https://github.com/nodejs/node/commit/8d4ec412b9)] - **meta**: move RaisinTen back to collaborators, triagers and SEA champion (Darshan Sen) [#57292](https://github.com/nodejs/node/pull/57292)\r\n* \\[[`cc2abb5d17`](https://github.com/nodejs/node/commit/cc2abb5d17)] - **meta**: bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (dependabot\\[bot]) [#57259](https://github.com/nodejs/node/pull/57259)\r\n* \\[[`4fad2b8758`](https://github.com/nodejs/node/commit/4fad2b8758)] - **meta**: bump actions/cache from 4.2.0 to 4.2.2 (dependabot\\[bot]) [#57256](https://github.com/nodejs/node/pull/57256)\r\n* \\[[`5f5bb8b986`](https://github.com/nodejs/node/commit/5f5bb8b986)] - **meta**: bump actions/upload-artifact from 4.6.0 to 4.6.1 (dependabot\\[bot]) [#57255](https://github.com/nodejs/node/pull/57255)\r\n* \\[[`e949359a56`](https://github.com/nodejs/node/commit/e949359a56)] - **meta**: bump `actions/setup-python` from 5.3.0 to 5.4.0 (dependabot\\[bot]) [#56867](https://github.com/nodejs/node/pull/56867)\r\n* \\[[`d3c5ad7510`](https://github.com/nodejs/node/commit/d3c5ad7510)] - **meta**: bump `peter-evans/create-pull-request` from 7.0.5 to 7.0.6 (dependabot\\[bot]) [#56866](https://github.com/nodejs/node/pull/56866)\r\n* \\[[`56decfe2d1`](https://github.com/nodejs/node/commit/56decfe2d1)] - **meta**: bump `codecov/codecov-action` from 5.0.7 to 5.3.1 (dependabot\\[bot]) [#56864](https://github.com/nodejs/node/pull/56864)\r\n* \\[[`52e518444d`](https://github.com/nodejs/node/commit/52e518444d)] - **meta**: bump `actions/cache` from 4.1.2 to 4.2.0 (dependabot\\[bot]) [#56862](https://github.com/nodejs/node/pull/56862)\r\n* \\[[`9cac93d9c3`](https://github.com/nodejs/node/commit/9cac93d9c3)] - **meta**: bump `actions/stale` from 9.0.0 to 9.1.0 (dependabot\\[bot]) [#56860](https://github.com/nodejs/node/pull/56860)\r\n* \\[[`ecf4252f7c`](https://github.com/nodejs/node/commit/ecf4252f7c)] - **meta**: update last name for jkrems (Jan Martin) [#57006](https://github.com/nodejs/node/pull/57006)\r\n* \\[[`e8beaaaedf`](https://github.com/nodejs/node/commit/e8beaaaedf)] - **meta**: bump `actions/upload-artifact` from 4.4.3 to 4.6.0 (dependabot\\[bot]) [#56861](https://github.com/nodejs/node/pull/56861)\r\n* \\[[`5462c257f8`](https://github.com/nodejs/node/commit/5462c257f8)] - **meta**: bump `actions/setup-node` from 4.1.0 to 4.2.0 (dependabot\\[bot]) [#56868](https://github.com/nodejs/node/pull/56868)\r\n* \\[[`89c37891a0`](https://github.com/nodejs/node/commit/89c37891a0)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#56889](https://github.com/nodejs/node/pull/56889)\r\n* \\[[`2a0175c291`](https://github.com/nodejs/node/commit/2a0175c291)] - **meta**: add @nodejs/url as codeowner (Chengzhong Wu) [#56783](https://github.com/nodejs/node/pull/56783)\r\n* \\[[`c12aae1e78`](https://github.com/nodejs/node/commit/c12aae1e78)] - **meta**: bump github/codeql-action from 3.28.18 to 3.29.2 (dependabot\\[bot]) [#58922](https://github.com/nodejs/node/pull/58922)\r\n* \\[[`4ef09990f1`](https://github.com/nodejs/node/commit/4ef09990f1)] - **meta**: bump github/codeql-action from 3.28.16 to 3.28.18 (dependabot\\[bot]) [#58552](https://github.com/nodejs/node/pull/58552)\r\n* \\[[`889654eb2c`](https://github.com/nodejs/node/commit/889654eb2c)] - **meta**: bump github/codeql-action from 3.28.11 to 3.28.16 (dependabot\\[bot]) [#58112](https://github.com/nodejs/node/pull/58112)\r\n* \\[[`091e5c1bb9`](https://github.com/nodejs/node/commit/091e5c1bb9)] - **meta**: bump github/codeql-action from 3.28.10 to 3.28.13 (dependabot\\[bot]) [#57716](https://github.com/nodejs/node/pull/57716)\r\n* \\[[`01415153de`](https://github.com/nodejs/node/commit/01415153de)] - **meta**: bump github/codeql-action from 3.28.8 to 3.28.10 (dependabot\\[bot]) [#57254](https://github.com/nodejs/node/pull/57254)\r\n* \\[[`72ea8aac34`](https://github.com/nodejs/node/commit/72ea8aac34)] - **meta**: bump `github/codeql-action` from 3.27.5 to 3.28.8 (dependabot\\[bot]) [#56859](https://github.com/nodejs/node/pull/56859)\r\n* \\[[`99a271e588`](https://github.com/nodejs/node/commit/99a271e588)] - **meta**: bump step-security/harden-runner from 2.12.0 to 2.12.2 (dependabot\\[bot]) [#58923](https://github.com/nodejs/node/pull/58923)\r\n* \\[[`b4c4c02490`](https://github.com/nodejs/node/commit/b4c4c02490)] - **meta**: bump step-security/harden-runner from 2.11.0 to 2.12.0 (dependabot\\[bot]) [#58109](https://github.com/nodejs/node/pull/58109)\r\n* \\[[`5361bb9157`](https://github.com/nodejs/node/commit/5361bb9157)] - **meta**: bump step-security/harden-runner from 2.10.4 to 2.11.0 (dependabot\\[bot]) [#57258](https://github.com/nodejs/node/pull/57258)\r\n* \\[[`28e33acf30`](https://github.com/nodejs/node/commit/28e33acf30)] - **meta**: bump `step-security/harden-runner` from 2.10.2 to 2.10.4 (dependabot\\[bot]) [#56863](https://github.com/nodejs/node/pull/56863)\r\n* \\[[`fad773cede`](https://github.com/nodejs/node/commit/fad773cede)] - **module**: throw error when re-runing errored module jobs (Joyee Cheung) [#58957](https://github.com/nodejs/node/pull/58957)\r\n* \\[[`2531185423`](https://github.com/nodejs/node/commit/2531185423)] - **module**: allow cycles in require() in the CJS handling in ESM loader (Joyee Cheung) [#58598](https://github.com/nodejs/node/pull/58598)\r\n* \\[[`ed43b69689`](https://github.com/nodejs/node/commit/ed43b69689)] - **module**: clarify cjs global-like error on ModuleJobSync (Carlos Espa) [#56491](https://github.com/nodejs/node/pull/56491)\r\n* \\[[`6e02db1b12`](https://github.com/nodejs/node/commit/6e02db1b12)] - **module**: handle instantiated async module jobs in require(esm) (Joyee Cheung) [#58067](https://github.com/nodejs/node/pull/58067)\r\n* \\[[`badba50d30`](https://github.com/nodejs/node/commit/badba50d30)] - **module**: fix incorrect formatting in require(esm) cycle error message (haykam821) [#57453](https://github.com/nodejs/node/pull/57453)\r\n* \\[[`939ecf8906`](https://github.com/nodejs/node/commit/939ecf8906)] - **module**: handle cached linked async jobs in require(esm) (Joyee Cheung) [#57187](https://github.com/nodejs/node/pull/57187)\r\n* \\[[`ba7f8a0353`](https://github.com/nodejs/node/commit/ba7f8a0353)] - **module**: improve error message from asynchronicity in require(esm) (Joyee Cheung) [#57126](https://github.com/nodejs/node/pull/57126)\r\n* \\[[`c1e7fa2586`](https://github.com/nodejs/node/commit/c1e7fa2586)] - **module**: handle .mjs in .js handler in CommonJS (Joyee Cheung) [#55590](https://github.com/nodejs/node/pull/55590)\r\n* \\[[`41f3dfd21b`](https://github.com/nodejs/node/commit/41f3dfd21b)] - **module**: fix require.resolve() crash on non-string paths (Aditi) [#56942](https://github.com/nodejs/node/pull/56942)\r\n* \\[[`043dcdd628`](https://github.com/nodejs/node/commit/043dcdd628)] - **os**: fix GetInterfaceAddresses memory lieaky (theanarkh) [#58940](https://github.com/nodejs/node/pull/58940)\r\n* \\[[`9b74e9bfd9`](https://github.com/nodejs/node/commit/9b74e9bfd9)] - **permission**: ignore internalModuleStat on module loading (Rafael Gonzaga) [#55797](https://github.com/nodejs/node/pull/55797)\r\n* \\[[`611a147b45`](https://github.com/nodejs/node/commit/611a147b45)] - **readline**: fix unresolved promise on abortion (Daniel Venable) [#54030](https://github.com/nodejs/node/pull/54030)\r\n* \\[[`f891ae3421`](https://github.com/nodejs/node/commit/f891ae3421)] - **repl**: avoid deprecated `require.extensions` in tab completion (baki gul) [#58653](https://github.com/nodejs/node/pull/58653)\r\n* \\[[`7ba44290bf`](https://github.com/nodejs/node/commit/7ba44290bf)] - **repl**: fix tab completion not working with computer string properties (Dario Piotrowicz) [#58709](https://github.com/nodejs/node/pull/58709)\r\n* \\[[`eb842048b2`](https://github.com/nodejs/node/commit/eb842048b2)] - **src**: do not format single string argument for THROW\\_ERR\\_\\* (Joyee Cheung) [#57126](https://github.com/nodejs/node/pull/57126)\r\n* \\[[`4f004937ec`](https://github.com/nodejs/node/commit/4f004937ec)] - **src**: fixup errorhandling more in various places (James M Snell) [#57852](https://github.com/nodejs/node/pull/57852)\r\n* \\[[`5daa7fe2e2`](https://github.com/nodejs/node/commit/5daa7fe2e2)] - **src**: fix module buffer allocation (X-BW) [#57738](https://github.com/nodejs/node/pull/57738)\r\n* \\[[`586b1be11b`](https://github.com/nodejs/node/commit/586b1be11b)] - **src**: fix build when using shared simdutf (Antoine du Hamel) [#58407](https://github.com/nodejs/node/pull/58407)\r\n* \\[[`563e61f012`](https://github.com/nodejs/node/commit/563e61f012)] - **src**: fix possible dereference of null pointer (Eusgor) [#58459](https://github.com/nodejs/node/pull/58459)\r\n* \\[[`cbec07ea0b`](https://github.com/nodejs/node/commit/cbec07ea0b)] - **src**: fix FIPS init error handling (Tobias Nießen) [#58379](https://github.com/nodejs/node/pull/58379)\r\n* \\[[`80fb80e71b`](https://github.com/nodejs/node/commit/80fb80e71b)] - **src**: fix -Wunreachable-code in src/node\\_api.cc (Shelley Vohr) [#58901](https://github.com/nodejs/node/pull/58901)\r\n* \\[[`5e97719860`](https://github.com/nodejs/node/commit/5e97719860)] - **test**: skip test-http-imports on macos (Marco Ippolito) [#59745](https://github.com/nodejs/node/pull/59745)\r\n* \\[[`69c43bdfcc`](https://github.com/nodejs/node/commit/69c43bdfcc)] - **test**: fix internet/test-dns (Michaël Zasso) [#59660](https://github.com/nodejs/node/pull/59660)\r\n* \\[[`6fd58e0338`](https://github.com/nodejs/node/commit/6fd58e0338)] - **tools**: update coverage GitHub Actions to fixed version (Rich Trott) [#59512](https://github.com/nodejs/node/pull/59512)\r\n* \\[[`eb7bbce73e`](https://github.com/nodejs/node/commit/eb7bbce73e)] - **tools**: disable failing coverage jobs (Antoine du Hamel) [#58770](https://github.com/nodejs/node/pull/58770)\r\n* \\[[`65b1669936`](https://github.com/nodejs/node/commit/65b1669936)] - **util**: fix formatting of objects with built-in Symbol.toPrimitive (Shima Ryuhei) [#57832](https://github.com/nodejs/node/pull/57832)\r\n* \\[[`8a29f13bec`](https://github.com/nodejs/node/commit/8a29f13bec)] - **util**: fix parseEnv incorrectly splitting multiple ‘=‘ in value (HEESEUNG) [#57421](https://github.com/nodejs/node/pull/57421)\r\n* \\[[`077d5020c4`](https://github.com/nodejs/node/commit/077d5020c4)] - **v8**: fix missing callback in heap utils destroy (Ruben Bridgewater) [#58846](https://github.com/nodejs/node/pull/58846)\r\n* \\[[`34ae9f8b18`](https://github.com/nodejs/node/commit/34ae9f8b18)] - **vm**: import call should return a promise in the current context (Chengzhong Wu) [#58309](https://github.com/nodejs/node/pull/58309)\r\n* \\[[`0dd3a8d6d1`](https://github.com/nodejs/node/commit/0dd3a8d6d1)] - **win,build**: fix MSVS v17.14 compilation issue (StefanStojanovic) [#58902](https://github.com/nodejs/node/pull/58902)\r\n* \\[[`1b83a2bd2d`](https://github.com/nodejs/node/commit/1b83a2bd2d)] - **zlib**: remove mentions of unexposed Z\\_TREES constant (Jimmy Leung) [#58371](https://github.com/nodejs/node/pull/58371)\r\n* \\[[`9dc9604502`](https://github.com/nodejs/node/commit/9dc9604502)] - **zlib**: fix pointer alignment (jhofstee) [#57727](https://github.com/nodejs/node/pull/57727)\r\n", + "reactions": { + "url": "https://api.github.com/repos/nodejs/node/releases/244537240/reactions", + "total_count": 46, + "+1": 21, + "-1": 0, + "laugh": 3, + "hooray": 7, + "confused": 0, + "heart": 3, + "rocket": 9, + "eyes": 3 + }, + "mentions_count": 1 + } +] \ No newline at end of file diff --git a/github/releases_nodejs.metadata.json b/github/releases_nodejs.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..31c543db184843a512578f565fac51098f61ccf4 --- /dev/null +++ b/github/releases_nodejs.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_releases_nodejs", + "source": "github", + "collected_date": "2025-11-05T22:51:02.664124", + "size_bytes": 217781, + "description": "Node.js releases", + "url": "https://api.github.com/repos/nodejs/node/releases?per_page=10" +} \ No newline at end of file diff --git a/github/releases_rust.json b/github/releases_rust.json new file mode 100644 index 0000000000000000000000000000000000000000..4ba74172a3952b0e1b037ae181beaff625b4cb6f --- /dev/null +++ b/github/releases_rust.json @@ -0,0 +1,542 @@ +[ + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/258584176", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/258584176/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/258584176/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.91.0", + "id": 258584176, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4Paa5w", + "tag_name": "1.91.0", + "target_commitish": "master", + "name": "Rust 1.91.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-10-30T18:29:34Z", + "updated_at": "2025-10-30T18:29:40Z", + "published_at": "2025-10-30T18:29:40Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.91.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.91.0", + "body": "\n\n## Language\n\n- [Lower pattern bindings in the order they're written and base drop order on primary bindings' order](https://github.com/rust-lang/rust/pull/143764)\n- [Stabilize declaration of C-style variadic functions for `sysv64`, `win64`, `efiapi`, and `aapcs` ABIs](https://github.com/rust-lang/rust/pull/144066). This brings these ABIs in line with the C ABI: variadic functions can be declared in extern blocks but not defined.\n- [Add `dangling_pointers_from_locals` lint to warn against dangling pointers from local variables](https://github.com/rust-lang/rust/pull/144322)\n- [Upgrade `semicolon_in_expressions_from_macros` from warn to deny](https://github.com/rust-lang/rust/pull/144369)\n- [Stabilize LoongArch32 inline assembly](https://github.com/rust-lang/rust/pull/144402)\n- [Add warn-by-default `integer_to_ptr_transmutes` lint against integer-to-pointer transmutes](https://github.com/rust-lang/rust/pull/144531)\n- [Stabilize `sse4a` and `tbm` target features](https://github.com/rust-lang/rust/pull/144542)\n- [Add `target_env = \"macabi\"` and `target_env = \"sim\"` cfgs](https://github.com/rust-lang/rust/pull/139451) as replacements for the `target_abi` cfgs with the same values.\n\n\n\n## Compiler\n\n- [Don't warn on never-to-any `as` casts as unreachable](https://github.com/rust-lang/rust/pull/144804)\n\n\n\n## Platform Support\n\n- [Promote `aarch64-pc-windows-gnullvm` and `x86_64-pc-windows-gnullvm` to Tier 2 with host tools.](https://github.com/rust-lang/rust/pull/143031) Note: llvm-tools and MSI installers are missing but will be added in future releases.\n- [Promote `aarch64-pc-windows-msvc` to Tier 1](https://github.com/rust-lang/rust/pull/145682)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- [Print thread ID in panic message](https://github.com/rust-lang/rust/pull/115746)\n- [Fix overly restrictive lifetime in `core::panic::Location::file` return type](https://github.com/rust-lang/rust/pull/132087)\n- [Guarantee parameter order for `_by()` variants of `min` / `max`/ `minmax` in `std::cmp`](https://github.com/rust-lang/rust/pull/139357)\n- [Document assumptions about `Clone` and `Eq` traits](https://github.com/rust-lang/rust/pull/144330/)\n- [`std::thread`: Return error if setting thread stack size fails](https://github.com/rust-lang/rust/pull/144210) This used to panic within the standard library.\n\n\n\n## Stabilized APIs\n\n- [`Path::file_prefix`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.file_prefix)\n- [`AtomicPtr::fetch_ptr_add`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_ptr_add)\n- [`AtomicPtr::fetch_ptr_sub`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_ptr_sub)\n- [`AtomicPtr::fetch_byte_add`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_byte_add)\n- [`AtomicPtr::fetch_byte_sub`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_byte_sub)\n- [`AtomicPtr::fetch_or`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_or)\n- [`AtomicPtr::fetch_and`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_and)\n- [`AtomicPtr::fetch_xor`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_xor)\n- [`{integer}::strict_add`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_add)\n- [`{integer}::strict_sub`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_sub)\n- [`{integer}::strict_mul`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_mul)\n- [`{integer}::strict_div`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_div)\n- [`{integer}::strict_div_euclid`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_div_euclid)\n- [`{integer}::strict_rem`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_rem)\n- [`{integer}::strict_rem_euclid`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_rem_euclid)\n- [`{integer}::strict_neg`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_neg)\n- [`{integer}::strict_shl`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_shl)\n- [`{integer}::strict_shr`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_shr)\n- [`{integer}::strict_pow`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_pow)\n- [`i{N}::strict_add_unsigned`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_add_unsigned)\n- [`i{N}::strict_sub_unsigned`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_sub_unsigned)\n- [`i{N}::strict_abs`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_abs)\n- [`u{N}::strict_add_signed`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_add_signed)\n- [`u{N}::strict_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_sub_signed)\n- [`PanicHookInfo::payload_as_str`](https://doc.rust-lang.org/stable/std/panic/struct.PanicHookInfo.html#method.payload_as_str)\n- [`core::iter::chain`](https://doc.rust-lang.org/stable/core/iter/fn.chain.html)\n- [`u{N}::checked_signed_diff`](https://doc.rust-lang.org/stable/std/primitive.u16.html#method.checked_signed_diff)\n- [`core::array::repeat`](https://doc.rust-lang.org/stable/core/array/fn.repeat.html)\n- [`PathBuf::add_extension`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.add_extension)\n- [`PathBuf::with_added_extension`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.with_added_extension)\n- [`Duration::from_mins`](https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.from_mins)\n- [`Duration::from_hours`](https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.from_hours)\n- [`impl PartialEq for PathBuf`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#impl-PartialEq%3Cstr%3E-for-PathBuf)\n- [`impl PartialEq for PathBuf`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#impl-PartialEq%3CString%3E-for-PathBuf)\n- [`impl PartialEq for Path`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#impl-PartialEq%3Cstr%3E-for-Path)\n- [`impl PartialEq for Path`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#impl-PartialEq%3CString%3E-for-Path)\n- [`impl PartialEq for String`](https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-PartialEq%3CPathBuf%3E-for-String)\n- [`impl PartialEq for String`](https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-PartialEq%3CPath%3E-for-String)\n- [`impl PartialEq for str`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-PartialEq%3CPathBuf%3E-for-str)\n- [`impl PartialEq for str`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-PartialEq%3CPath%3E-for-str)\n- [`Ipv4Addr::from_octets`](https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.from_octets)\n- [`Ipv6Addr::from_octets`](https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.from_octets)\n- [`Ipv6Addr::from_segments`](https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.from_segments)\n- [`impl Default for Pin> where Box: Default, T: ?Sized`](https://doc.rust-lang.org/stable/std/default/trait.Default.html#impl-Default-for-Pin%3CBox%3CT%3E%3E)\n- [`impl Default for Pin> where Rc: Default, T: ?Sized`](https://doc.rust-lang.org/stable/std/default/trait.Default.html#impl-Default-for-Pin%3CRc%3CT%3E%3E)\n- [`impl Default for Pin> where Arc: Default, T: ?Sized`](https://doc.rust-lang.org/stable/std/default/trait.Default.html#impl-Default-for-Pin%3CArc%3CT%3E%3E)\n- [`Cell::as_array_of_cells`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.as_array_of_cells)\n- [`u{N}::carrying_add`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.carrying_add)\n- [`u{N}::borrowing_sub`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.borrowing_sub)\n- [`u{N}::carrying_mul`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.carrying_mul)\n- [`u{N}::carrying_mul_add`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.carrying_mul_add)\n- [`BTreeMap::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.BTreeMap.html#method.extract_if)\n- [`BTreeSet::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.BTreeSet.html#method.extract_if)\n- [`impl Debug for windows::ffi::EncodeWide<'_>`](https://doc.rust-lang.org/stable/std/os/windows/ffi/struct.EncodeWide.html#impl-Debug-for-EncodeWide%3C'_%3E)\n- [`str::ceil_char_boundary`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.ceil_char_boundary)\n- [`str::floor_char_boundary`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.floor_char_boundary)\n- [`impl Sum for Saturating`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Sum-for-Saturating%3Cu32%3E)\n- [`impl Sum<&Self> for Saturating`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Sum%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E)\n- [`impl Product for Saturating`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Product-for-Saturating%3Cu32%3E)\n- [`impl Product<&Self> for Saturating`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Product%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`<[T; N]>::each_ref`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.each_ref)\n- [`<[T; N]>::each_mut`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.each_mut)\n- [`OsString::new`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.new)\n- [`PathBuf::new`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.new)\n- [`TypeId::of`](https://doc.rust-lang.org/stable/std/any/struct.TypeId.html#method.of)\n- [`ptr::with_exposed_provenance`](https://doc.rust-lang.org/stable/std/ptr/fn.with_exposed_provenance.html)\n- [`ptr::with_exposed_provenance_mut`](https://doc.rust-lang.org/stable/std/ptr/fn.with_exposed_provenance_mut.html)\n\n\n\n## Cargo\n\n- 🎉 Stabilize `build.build-dir`. This config sets the directory where intermediate build artifacts are stored. These artifacts are produced by Cargo and rustc during the build process. End users usually won't need to interact with them, and the layout inside `build-dir` is an implementation detail that may change without notice. ([config doc](https://doc.rust-lang.org/stable/cargo/reference/config.html#buildbuild-dir)) ([build cache doc](https://doc.rust-lang.org/stable/cargo/reference/build-cache.html)) [\\#15833](https://github.com/rust-lang/cargo/pull/15833) [\\#15840](https://github.com/rust-lang/cargo/pull/15840)\n- The `--target` flag and the `build.target` configuration can now take literal `\"host-tuple\"` string, which will internally be substituted by the host machine's target triple. [\\#15838](https://github.com/rust-lang/cargo/pull/15838) [\\#16003](https://github.com/rust-lang/cargo/pull/16003) [\\#16032](https://github.com/rust-lang/cargo/pull/16032)\n\n\n\n## Rustdoc\n\n- [In search results, rank doc aliases lower than non-alias items with the same name](https://github.com/rust-lang/rust/pull/145100)\n- [Raw pointers now work in type-based search like references](https://github.com/rust-lang/rust/pull/145731). This means you can now search for things like `*const u8 ->`, and additionally functions that take or return raw pointers will now display their signature properly in search results.\n\n\n\n## Compatibility Notes\n\n- [Always require coroutine captures to be drop-live](https://github.com/rust-lang/rust/pull/144156)\n- [Apple: Always pass SDK root when linking with `cc`, and pass it via `SDKROOT` env var](https://github.com/rust-lang/rust/pull/131477). This should fix linking issues with `rustc` running inside Xcode. Libraries in `/usr/local/lib` may no longer be linked automatically, if you develop or use a crate that relies on this, you should explicitly set `cargo::rustc-link-search=/usr/local/lib` in a `build.rs` script.\n- [Relaxed bounds in associated type bound position like in `TraitRef` are now correctly forbidden](https://github.com/rust-lang/rust/pull/135331)\n- [Add unstable `#[sanitize(xyz = \"on|off\")]` built-in attribute that shadows procedural macros with the same name](https://github.com/rust-lang/rust/pull/142681)\n- [Fix the drop checker being more permissive for bindings declared with let-else](https://github.com/rust-lang/rust/pull/143028)\n- [Be more strict when parsing attributes, erroring on many invalid attributes](https://github.com/rust-lang/rust/pull/144689)\n - [Error on invalid `#[should_panic]` attributes](https://github.com/rust-lang/rust/pull/143808)\n - [Error on invalid `#[link]` attributes](https://github.com/rust-lang/rust/pull/143193)\n- [Mark all deprecation lints in name resolution as deny-by-default and also report in dependencies](https://github.com/rust-lang/rust/pull/143929)\n- The lint `semicolon_in_expressions_from_macros`, for `macro_rules!` macros in expression position that expand to end in a semicolon (`;`), is now deny-by-default. It was already warn-by-default, and a future compatibility warning (FCW) that warned even in dependencies. This lint will become a hard error in the future.\n- [Trait impl modifiers (e.g., `unsafe`, `!`, `default`) in inherent impls are no longer syntactically valid](https://github.com/rust-lang/rust/pull/144386)\n- [Start reporting future breakage for `ill_formed_attribute_input` in dependencies](https://github.com/rust-lang/rust/pull/144544)\n- [Restrict the scope of temporaries created by the macros `pin!`, `format_args!`, `write!`, and `writeln!` in `if let` scrutinees in Rust Edition 2024.](https://github.com/rust-lang/rust/pull/145342) This applies [Rust Edition 2024's `if let` temporary scope rules](https://doc.rust-lang.org/edition-guide/rust-2024/temporary-if-let-scope.html) to these temporaries, which previously could live past the `if` expression regardless of Edition.\n- [Invalid numeric literal suffixes in tuple indexing, tuple struct indexing, and struct field name positions are now correctly rejected](https://github.com/rust-lang/rust/pull/145463)\n- [Closures marked with the keyword `static` are now syntactically invalid](https://github.com/rust-lang/rust/pull/145604)\n- [Shebangs inside `--cfg` and `--check-cfg` arguments are no longer allowed](https://github.com/rust-lang/rust/pull/146211)\n- [Add future incompatibility lint for temporary lifetime shortening in Rust 1.92](https://github.com/rust-lang/rust/pull/147056)\n\nCargo compatibility notes:\n\n- `cargo publish` no longer keeps `.crate` tarballs as final build artifacts when `build.build-dir` is set. These tarballs were previously included due to an oversight and are now treated as intermediate artifacts. To get `.crate` tarballs as final artifacts, use `cargo package`. In a future version, this change will apply regardless of `build.build-dir`. [\\#15910](https://github.com/rust-lang/cargo/pull/15910)\n- Adjust Cargo messages to match rustc diagnostic style. This changes some of the terminal colors used by Cargo messages. [\\#15928](https://github.com/rust-lang/cargo/pull/15928)\n- Tools and projects relying on the [internal details of Cargo's `build-dir`](https://doc.rust-lang.org/cargo/reference/build-cache.html) may not work for users changing their `build-dir` layout. For those doing so, we'd recommend proactively testing these cases particularly as we are considering changing the default location of the `build-dir` in the future ([cargo\\#16147](https://github.com/rust-lang/cargo/issues/16147)). If you can't migrate off of Cargo's internal details, we'd like to learn more about your use case as we prepare to change the layout of the `build-dir` ([cargo\\#15010](https://github.com/rust-lang/cargo/issues/15010)).\n\n\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Update to LLVM 21](https://github.com/rust-lang/rust/pull/143684)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/258584176/reactions", + "total_count": 228, + "+1": 88, + "-1": 0, + "laugh": 13, + "hooray": 66, + "confused": 0, + "heart": 28, + "rocket": 26, + "eyes": 7 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/248418092", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/248418092/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/248418092/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.90.0", + "id": 248418092, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4Ozo8s", + "tag_name": "1.90.0", + "target_commitish": "master", + "name": "Rust 1.90.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-09-18T13:31:21Z", + "updated_at": "2025-09-18T20:02:56Z", + "published_at": "2025-09-18T20:02:56Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.90.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.90.0", + "body": "\n\n## Language\n\n- [Split up the `unknown_or_malformed_diagnostic_attributes` lint](https://github.com/rust-lang/rust/pull/140717). This lint has been split up into four finer-grained lints, with `unknown_or_malformed_diagnostic_attributes` now being the lint group that contains these lints:\n 1. `unknown_diagnostic_attributes`: unknown to the current compiler\n 2. `misplaced_diagnostic_attributes`: placed on the wrong item\n 3. `malformed_diagnostic_attributes`: malformed attribute syntax or options\n 4. `malformed_diagnostic_format_literals`: malformed format string literal\n- [Allow constants whose final value has references to mutable/external memory, but reject such constants as patterns](https://github.com/rust-lang/rust/pull/140942)\n- [Allow volatile access to non-Rust memory, including address 0](https://github.com/rust-lang/rust/pull/141260)\n\n\n\n## Compiler\n\n- [Use `lld` by default on `x86_64-unknown-linux-gnu`](https://github.com/rust-lang/rust/pull/140525).\n- [Tier 3 `musl` targets now link dynamically by default](https://github.com/rust-lang/rust/pull/144410). Affected targets:\n - `mips64-unknown-linux-muslabi64`\n - `powerpc64-unknown-linux-musl`\n - `powerpc-unknown-linux-musl`\n - `powerpc-unknown-linux-muslspe`\n - `riscv32gc-unknown-linux-musl`\n - `s390x-unknown-linux-musl`\n - `thumbv7neon-unknown-linux-musleabihf`\n\n\n\n## Platform Support\n\n- [Demote `x86_64-apple-darwin` to Tier 2 with host tools](https://github.com/rust-lang/rust/pull/145252)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- [Stabilize `u*::{checked,overflowing,saturating,wrapping}_sub_signed`](https://github.com/rust-lang/rust/issues/126043)\n- [Allow comparisons between `CStr`, `CString`, and `Cow`](https://github.com/rust-lang/rust/pull/137268)\n- [Remove some unsized tuple impls since unsized tuples can't be constructed](https://github.com/rust-lang/rust/pull/138340)\n- [Set `MSG_NOSIGNAL` for `UnixStream`](https://github.com/rust-lang/rust/pull/140005)\n- [`proc_macro::Ident::new` now supports `$crate`.](https://github.com/rust-lang/rust/pull/141996)\n- [Guarantee the pointer returned from `Thread::into_raw` has at least 8 bytes of alignment](https://github.com/rust-lang/rust/pull/143859)\n\n\n\n## Stabilized APIs\n\n- [`u{n}::checked_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.checked_sub_signed)\n- [`u{n}::overflowing_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.overflowing_sub_signed)\n- [`u{n}::saturating_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.saturating_sub_signed)\n- [`u{n}::wrapping_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.wrapping_sub_signed)\n- [`impl Copy for IntErrorKind`](https://doc.rust-lang.org/stable/std/num/enum.IntErrorKind.html#impl-Copy-for-IntErrorKind)\n- [`impl Hash for IntErrorKind`](https://doc.rust-lang.org/stable/std/num/enum.IntErrorKind.html#impl-Hash-for-IntErrorKind)\n- [`impl PartialEq<&CStr> for CStr`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3C%26CStr%3E-for-CStr)\n- [`impl PartialEq for CStr`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3CCString%3E-for-CStr)\n- [`impl PartialEq> for CStr`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3CCow%3C'_,+CStr%3E%3E-for-CStr)\n- [`impl PartialEq<&CStr> for CString`](https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3C%26CStr%3E-for-CString)\n- [`impl PartialEq for CString`](https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3CCStr%3E-for-CString)\n- [`impl PartialEq> for CString`](https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3CCow%3C'_,+CStr%3E%3E-for-CString)\n- [`impl PartialEq<&CStr> for Cow`](https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3C%26CStr%3E-for-Cow%3C'_,+CStr%3E)\n- [`impl PartialEq for Cow`](https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3CCStr%3E-for-Cow%3C'_,+CStr%3E)\n- [`impl PartialEq for Cow`](https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3CCString%3E-for-Cow%3C'_,+CStr%3E)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`<[T]>::reverse`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.reverse)\n- [`f32::floor`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.floor)\n- [`f32::ceil`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.ceil)\n- [`f32::trunc`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.trunc)\n- [`f32::fract`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.fract)\n- [`f32::round`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round)\n- [`f32::round_ties_even`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round_ties_even)\n- [`f64::floor`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.floor)\n- [`f64::ceil`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.ceil)\n- [`f64::trunc`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.trunc)\n- [`f64::fract`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.fract)\n- [`f64::round`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round)\n- [`f64::round_ties_even`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round_ties_even)\n\n\n\n## Cargo\n\n- [Add `http.proxy-cainfo` config for proxy certs](https://github.com/rust-lang/cargo/pull/15374/)\n- [Use `gix` for `cargo package`](https://github.com/rust-lang/cargo/pull/15534/)\n- [feat(publish): Stabilize multi-package publishing](https://github.com/rust-lang/cargo/pull/15636/)\n\n\n\n## Rustdoc\n\n- [Add ways to collapse all impl blocks](https://github.com/rust-lang/rust/pull/141663). Previously the \"Summary\" button and \"-\" keyboard shortcut would never collapse `impl` blocks, now they do when shift is held\n- [Display unsafe attributes with `unsafe()` wrappers](https://github.com/rust-lang/rust/pull/143662)\n\n\n\n## Compatibility Notes\n\n- [Use `lld` by default on `x86_64-unknown-linux-gnu`](https://github.com/rust-lang/rust/pull/140525). See also .\n- [Make `core::iter::Fuse`'s `Default` impl construct `I::default()` internally as promised in the docs instead of always being empty](https://github.com/rust-lang/rust/pull/140985)\n- [Set `MSG_NOSIGNAL` for `UnixStream`](https://github.com/rust-lang/rust/pull/140005) This may change program behavior but results in the same behavior as other primitives (e.g., stdout, network sockets). Programs relying on signals to terminate them should update handling of sockets to handle errors on write by exiting.\n- [On Unix `std::env::home_dir` will use the fallback if the `HOME` environment variable is empty](https://github.com/rust-lang/rust/pull/141840)\n- We now [reject unsupported `extern \"{abi}\"`s consistently in all positions](https://github.com/rust-lang/rust/pull/142134). This primarily affects the use of implementing traits on an `extern \"{abi}\"` function pointer, like `extern \"stdcall\" fn()`, on a platform that doesn't support that, like aarch64-unknown-linux-gnu. Direct usage of these unsupported ABI strings by declaring or defining functions was already rejected, so this is only a change for consistency.\n- [const-eval: error when initializing a static writes to that static](https://github.com/rust-lang/rust/pull/143084)\n- [Check that the `proc_macro_derive` macro has correct arguments when applied to the crate root](https://github.com/rust-lang/rust/pull/143607)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/248418092/reactions", + "total_count": 319, + "+1": 143, + "-1": 0, + "laugh": 18, + "hooray": 54, + "confused": 0, + "heart": 52, + "rocket": 42, + "eyes": 10 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/238254672", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/238254672/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/238254672/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.89.0", + "id": 238254672, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4OM3pQ", + "tag_name": "1.89.0", + "target_commitish": "master", + "name": "Rust 1.89.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-08-07T10:55:02Z", + "updated_at": "2025-08-07T10:55:11Z", + "published_at": "2025-08-07T10:55:11Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.89.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.89.0", + "body": "\n\n## Language\n\n- [Stabilize explicitly inferred const arguments (`feature(generic_arg_infer)`)](https://github.com/rust-lang/rust/pull/141610)\n- [Add a warn-by-default `mismatched_lifetime_syntaxes` lint.](https://github.com/rust-lang/rust/pull/138677) This lint detects when the same lifetime is referred to by different syntax categories between function arguments and return values, which can be confusing to read, especially in unsafe code. This lint supersedes the warn-by-default `elided_named_lifetimes` lint.\n- [Expand `unpredictable_function_pointer_comparisons` to also lint on function pointer comparisons in external macros](https://github.com/rust-lang/rust/pull/134536)\n- [Make the `dangerous_implicit_autorefs` lint deny-by-default](https://github.com/rust-lang/rust/pull/141661)\n- [Stabilize the avx512 target features](https://github.com/rust-lang/rust/pull/138940)\n- [Stabilize `kl` and `widekl` target features for x86](https://github.com/rust-lang/rust/pull/140766)\n- [Stabilize `sha512`, `sm3` and `sm4` target features for x86](https://github.com/rust-lang/rust/pull/140767)\n- [Stabilize LoongArch target features `f`, `d`, `frecipe`, `lasx`, `lbt`, `lsx`, and `lvz`](https://github.com/rust-lang/rust/pull/135015)\n- [Remove `i128` and `u128` from `improper_ctypes_definitions`](https://github.com/rust-lang/rust/pull/137306)\n- [Stabilize `repr128` (`#[repr(u128)]`, `#[repr(i128)]`)](https://github.com/rust-lang/rust/pull/138285)\n- [Allow `#![doc(test(attr(..)))]` everywhere](https://github.com/rust-lang/rust/pull/140560)\n- [Extend temporary lifetime extension to also go through tuple struct and tuple variant constructors](https://github.com/rust-lang/rust/pull/140593)\n- [`extern \"C\"` functions on the `wasm32-unknown-unknown` target now have a standards compliant ABI](https://blog.rust-lang.org/2025/04/04/c-abi-changes-for-wasm32-unknown-unknown/)\n\n\n\n## Compiler\n\n- [Default to non-leaf frame pointers on aarch64-linux](https://github.com/rust-lang/rust/pull/140832)\n- [Enable non-leaf frame pointers for Arm64EC Windows](https://github.com/rust-lang/rust/pull/140862)\n- [Set Apple frame pointers by architecture](https://github.com/rust-lang/rust/pull/141797)\n\n\n\n## Platform Support\n\n- [Add new Tier-3 targets `loongarch32-unknown-none` and `loongarch32-unknown-none-softfloat`](https://github.com/rust-lang/rust/pull/142053)\n- [`x86_64-apple-darwin` is in the process of being demoted to Tier 2 with host tools](https://github.com/rust-lang/rfcs/pull/3841)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- [Specify the base path for `file!`](https://github.com/rust-lang/rust/pull/134442)\n- [Allow storing `format_args!()` in a variable](https://github.com/rust-lang/rust/pull/140748)\n- [Add `#[must_use]` to `[T; N]::map`](https://github.com/rust-lang/rust/pull/140957)\n- [Implement `DerefMut` for `Lazy{Cell,Lock}`](https://github.com/rust-lang/rust/pull/129334)\n- [Implement `Default` for `array::IntoIter`](https://github.com/rust-lang/rust/pull/141574)\n- [Implement `Clone` for `slice::ChunkBy`](https://github.com/rust-lang/rust/pull/138016)\n- [Implement `io::Seek` for `io::Take`](https://github.com/rust-lang/rust/pull/138023)\n\n\n\n## Stabilized APIs\n\n- [`NonZero`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html)\n- Many intrinsics for x86, not enumerated here\n - [AVX512 intrinsics](https://github.com/rust-lang/rust/issues/111137)\n - [`SHA512`, `SM3` and `SM4` intrinsics](https://github.com/rust-lang/rust/issues/126624)\n- [`File::lock`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.lock)\n- [`File::lock_shared`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.lock_shared)\n- [`File::try_lock`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.try_lock)\n- [`File::try_lock_shared`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.try_lock_shared)\n- [`File::unlock`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.unlock)\n- [`NonNull::from_ref`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.from_ref)\n- [`NonNull::from_mut`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.from_mut)\n- [`NonNull::without_provenance`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.without_provenance)\n- [`NonNull::with_exposed_provenance`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.with_exposed_provenance)\n- [`NonNull::expose_provenance`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.expose_provenance)\n- [`OsString::leak`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.leak)\n- [`PathBuf::leak`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.leak)\n- [`Result::flatten`](https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.flatten)\n- [`std::os::linux::net::TcpStreamExt::quickack`](https://doc.rust-lang.org/stable/std/os/linux/net/trait.TcpStreamExt.html#tymethod.quickack)\n- [`std::os::linux::net::TcpStreamExt::set_quickack`](https://doc.rust-lang.org/stable/std/os/linux/net/trait.TcpStreamExt.html#tymethod.set_quickack)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`<[T; N]>::as_mut_slice`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.as_mut_slice)\n- [`<[u8]>::eq_ignore_ascii_case`](https://doc.rust-lang.org/stable/std/primitive.slice.html#impl-%5Bu8%5D/method.eq_ignore_ascii_case)\n- [`str::eq_ignore_ascii_case`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-str/method.eq_ignore_ascii_case)\n\n\n\n## Cargo\n\n- [`cargo fix` and `cargo clippy --fix` now default to the same Cargo target selection as other build commands.](https://github.com/rust-lang/cargo/pull/15192/) Previously it would apply to all targets (like binaries, examples, tests, etc.). The `--edition` flag still applies to all targets.\n- [Stabilize doctest-xcompile.](https://github.com/rust-lang/cargo/pull/15462/) Doctests are now tested when cross-compiling. Just like other tests, it will use the [`runner` setting](https://doc.rust-lang.org/cargo/reference/config.html#targettriplerunner) to run the tests. If you need to disable tests for a target, you can use the [ignore doctest attribute](https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html#ignoring-targets) to specify the targets to ignore.\n\n\n\n## Rustdoc\n\n- [On mobile, make the sidebar full width and linewrap](https://github.com/rust-lang/rust/pull/139831). This makes long section and item names much easier to deal with on mobile.\n\n\n\n## Compatibility Notes\n\n- [Make `missing_fragment_specifier` an unconditional error](https://github.com/rust-lang/rust/pull/128425)\n- [Enabling the `neon` target feature on `aarch64-unknown-none-softfloat` causes a warning](https://github.com/rust-lang/rust/pull/135160) because mixing code with and without that target feature is not properly supported by LLVM\n- [Sized Hierarchy: Part I](https://github.com/rust-lang/rust/pull/137944)\n - Introduces a small breaking change affecting `?Sized` bounds on impls on recursive types which contain associated type projections. It is not expected to affect any existing published crates. Can be fixed by refactoring the involved types or opting into the `sized_hierarchy` unstable feature. See the [FCP report](https://github.com/rust-lang/rust/pull/137944#issuecomment-2912207485) for a code example.\n- The warn-by-default `elided_named_lifetimes` lint is [superseded by the warn-by-default `mismatched_lifetime_syntaxes` lint.](https://github.com/rust-lang/rust/pull/138677)\n- [Error on recursive opaque types earlier in the type checker](https://github.com/rust-lang/rust/pull/139419)\n- [Type inference side effects from requiring element types of array repeat expressions are `Copy` are now only available at the end of type checking](https://github.com/rust-lang/rust/pull/139635)\n- [The deprecated accidentally-stable `std::intrinsics::{copy,copy_nonoverlapping,write_bytes}` are now proper intrinsics](https://github.com/rust-lang/rust/pull/139916). There are no debug assertions guarding against UB, and they cannot be coerced to function pointers.\n- [Remove long-deprecated `std::intrinsics::drop_in_place`](https://github.com/rust-lang/rust/pull/140151)\n- [Make well-formedness predicates no longer coinductive](https://github.com/rust-lang/rust/pull/140208)\n- [Remove hack when checking impl method compatibility](https://github.com/rust-lang/rust/pull/140557)\n- [Remove unnecessary type inference due to built-in trait object impls](https://github.com/rust-lang/rust/pull/141352)\n- [Lint against \"stdcall\", \"fastcall\", and \"cdecl\" on non-x86-32 targets](https://github.com/rust-lang/rust/pull/141435)\n- [Future incompatibility warnings relating to the never type (`!`) are now reported in dependencies](https://github.com/rust-lang/rust/pull/141937)\n- [Ensure `std::ptr::copy_*` intrinsics also perform the static self-init checks](https://github.com/rust-lang/rust/pull/142575)\n- [`extern \"C\"` functions on the `wasm32-unknown-unknown` target now have a standards compliant ABI](https://blog.rust-lang.org/2025/04/04/c-abi-changes-for-wasm32-unknown-unknown/)\n\n\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Correctly un-remap compiler sources paths with the `rustc-dev` component](https://github.com/rust-lang/rust/pull/142377)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/238254672/reactions", + "total_count": 272, + "+1": 120, + "-1": 0, + "laugh": 9, + "hooray": 53, + "confused": 0, + "heart": 41, + "rocket": 38, + "eyes": 11 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/228093646", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/228093646/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/228093646/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.88.0", + "id": 228093646, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4NmG7O", + "tag_name": "1.88.0", + "target_commitish": "master", + "name": "Rust 1.88.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-06-26T18:10:13Z", + "updated_at": "2025-06-27T03:56:49Z", + "published_at": "2025-06-26T18:10:22Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.88.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.88.0", + "body": "\n\n## Language\n\n- [Stabilize `#![feature(let_chains)]` in the 2024 edition.](https://github.com/rust-lang/rust/pull/132833) This feature allows `&&`-chaining `let` statements inside `if` and `while`, allowing intermixture with boolean expressions. The patterns inside the `let` sub-expressions can be irrefutable or refutable.\n- [Stabilize `#![feature(naked_functions)]`.](https://github.com/rust-lang/rust/pull/134213) Naked functions allow writing functions with no compiler-generated epilogue and prologue, allowing full control over the generated assembly for a particular function.\n- [Stabilize `#![feature(cfg_boolean_literals)]`.](https://github.com/rust-lang/rust/pull/138632) This allows using boolean literals as `cfg` predicates, e.g. `#[cfg(true)]` and `#[cfg(false)]`.\n- [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.\n- [Add warn-by-default `dangerous_implicit_autorefs` lint against implicit autoref of raw pointer dereference.](https://github.com/rust-lang/rust/pull/123239) The lint [will be bumped to deny-by-default](https://github.com/rust-lang/rust/pull/141661) in the next version of Rust.\n- [Add `invalid_null_arguments` lint to prevent invalid usage of null pointers.](https://github.com/rust-lang/rust/pull/119220) This lint is uplifted from `clippy::invalid_null_ptr_usage`.\n- [Change trait impl candidate preference for builtin impls and trivial where-clauses.](https://github.com/rust-lang/rust/pull/138176)\n- [Check types of generic const parameter defaults](https://github.com/rust-lang/rust/pull/139646)\n\n\n\n## Compiler\n\n- [Stabilize `-Cdwarf-version` for selecting the version of DWARF debug information to generate.](https://github.com/rust-lang/rust/pull/136926)\n\n\n\n## Platform Support\n\n- [Demote `i686-pc-windows-gnu` to Tier 2.](https://blog.rust-lang.org/2025/05/26/demoting-i686-pc-windows-gnu/)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- [Remove backticks from `#[should_panic]` test failure message.](https://github.com/rust-lang/rust/pull/136160)\n- [Guarantee that `[T; N]::from_fn` is generated in order of increasing indices.](https://github.com/rust-lang/rust/pull/139099), for those passing it a stateful closure.\n- [The libtest flag `--nocapture` is deprecated in favor of the more consistent `--no-capture` flag.](https://github.com/rust-lang/rust/pull/139224)\n- [Guarantee that `{float}::NAN` is a quiet NaN.](https://github.com/rust-lang/rust/pull/139483)\n\n\n\n## Stabilized APIs\n\n- [`Cell::update`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.update)\n- [`impl Default for *const T`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#impl-Default-for-*const+T)\n- [`impl Default for *mut T`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#impl-Default-for-*mut+T)\n- [`HashMap::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.HashMap.html#method.extract_if)\n- [`HashSet::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.HashSet.html#method.extract_if)\n- [`hint::select_unpredictable`](https://doc.rust-lang.org/stable/std/hint/fn.select_unpredictable.html)\n- [`proc_macro::Span::line`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.line)\n- [`proc_macro::Span::column`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.column)\n- [`proc_macro::Span::start`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.start)\n- [`proc_macro::Span::end`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.end)\n- [`proc_macro::Span::file`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.file)\n- [`proc_macro::Span::local_file`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.local_file)\n- [`<[T]>::as_chunks`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks)\n- [`<[T]>::as_chunks_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks_mut)\n- [`<[T]>::as_chunks_unchecked`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks_unchecked)\n- [`<[T]>::as_chunks_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks_unchecked_mut)\n- [`<[T]>::as_rchunks`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_rchunks)\n- [`<[T]>::as_rchunks_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_rchunks_mut)\n- [`mod ffi::c_str`](https://doc.rust-lang.org/stable/std/ffi/c_str/index.html)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`NonNull::replace`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.replace)\n- [`<*mut T>::replace`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.replace)\n- [`std::ptr::swap_nonoverlapping`](https://doc.rust-lang.org/stable/std/ptr/fn.swap_nonoverlapping.html)\n- [`Cell::replace`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.replace)\n- [`Cell::get`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.get)\n- [`Cell::get_mut`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.get_mut)\n- [`Cell::from_mut`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.from_mut)\n- [`Cell::as_slice_of_cells`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.as_slice_of_cells)\n\n\n\n## Cargo\n\n- [Stabilize automatic garbage collection.](https://github.com/rust-lang/cargo/pull/14287/)\n- [use `zlib-rs` for gzip compression in rust code](https://github.com/rust-lang/cargo/pull/15417/)\n\n\n\n## Rustdoc\n\n- [Doctests can be ignored based on target names using `ignore-*` attributes.](https://github.com/rust-lang/rust/pull/137096)\n- [Stabilize the `--test-runtool` and `--test-runtool-arg` CLI options to specify a program (like qemu) and its arguments to run a doctest.](https://github.com/rust-lang/rust/pull/137096)\n\n\n\n## Compatibility Notes\n\n- [Finish changing the internal representation of pasted tokens](https://github.com/rust-lang/rust/pull/124141). Certain invalid declarative macros that were previously accepted in obscure circumstances are now correctly rejected by the compiler. Use of a `tt` fragment specifier can often fix these macros.\n- [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.\n- [Fix borrow checking some always-true patterns.](https://github.com/rust-lang/rust/pull/139042) The borrow checker was overly permissive in some cases, allowing programs that shouldn't have compiled.\n- [Update the minimum external LLVM to 19.](https://github.com/rust-lang/rust/pull/139275)\n- [Make it a hard error to use a vector type with a non-Rust ABI without enabling the required target feature.](https://github.com/rust-lang/rust/pull/139309)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/228093646/reactions", + "total_count": 318, + "+1": 131, + "-1": 0, + "laugh": 18, + "hooray": 95, + "confused": 0, + "heart": 33, + "rocket": 29, + "eyes": 12 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/218914056", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/218914056/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/218914056/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.87.0", + "id": 218914056, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4NDF0I", + "tag_name": "1.87.0", + "target_commitish": "master", + "name": "Rust 1.87.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-05-15T17:28:13Z", + "updated_at": "2025-05-15T17:28:21Z", + "published_at": "2025-05-15T17:28:21Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.87.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.87.0", + "body": "\n\n## Language\n\n- [Stabilize `asm_goto` feature](https://github.com/rust-lang/rust/pull/133870)\n- [Allow parsing open beginning ranges (`..EXPR`) after unary operators `!`, `-`, and `*`](https://github.com/rust-lang/rust/pull/134900).\n- [Don't require method impls for methods with `Self: Sized` bounds in `impl`s for unsized types](https://github.com/rust-lang/rust/pull/135480)\n- [Stabilize `feature(precise_capturing_in_traits)` allowing `use<...>` bounds on return position `impl Trait` in `trait`s](https://github.com/rust-lang/rust/pull/138128)\n\n\n\n## Compiler\n\n- [x86: make SSE2 required for i686 targets and use it to pass SIMD types](https://github.com/rust-lang/rust/pull/135408)\n\n\n\n## Platform Support\n\n- [Remove `i586-pc-windows-msvc` target](https://github.com/rust-lang/rust/pull/137957)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- [Stabilize the anonymous pipe API](https://github.com/rust-lang/rust/issues/127154)\n- [Add support for unbounded left/right shift operations](https://github.com/rust-lang/rust/issues/129375)\n- [Print pointer metadata in `Debug` impl of raw pointers](https://github.com/rust-lang/rust/pull/135080)\n- [`Vec::with_capacity` guarantees it allocates with the amount requested, even if `Vec::capacity` returns a different number.](https://github.com/rust-lang/rust/pull/135933)\n- Most `std::arch` intrinsics which don't take pointer arguments can now be called from safe code if the caller has the appropriate target features already enabled (https://github.com/rust-lang/stdarch/pull/1714, https://github.com/rust-lang/stdarch/pull/1716, https://github.com/rust-lang/stdarch/pull/1717)\n- [Undeprecate `env::home_dir`](https://github.com/rust-lang/rust/pull/137327)\n- [Denote `ControlFlow` as `#[must_use]`](https://github.com/rust-lang/rust/pull/137449)\n- [Macros such as `assert_eq!` and `vec!` now support `const {...}` expressions](https://github.com/rust-lang/rust/pull/138162)\n\n\n\n## Stabilized APIs\n\n- [`Vec::extract_if`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.extract_if)\n- [`vec::ExtractIf`](https://doc.rust-lang.org/stable/std/vec/struct.ExtractIf.html)\n- [`LinkedList::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.LinkedList.html#method.extract_if)\n- [`linked_list::ExtractIf`](https://doc.rust-lang.org/stable/std/collections/linked_list/struct.ExtractIf.html)\n- [`<[T]>::split_off`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off)\n- [`<[T]>::split_off_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_mut)\n- [`<[T]>::split_off_first`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_first)\n- [`<[T]>::split_off_first_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_first_mut)\n- [`<[T]>::split_off_last`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_last)\n- [`<[T]>::split_off_last_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_last_mut)\n- [`String::extend_from_within`](https://doc.rust-lang.org/stable/alloc/string/struct.String.html#method.extend_from_within)\n- [`os_str::Display`](https://doc.rust-lang.org/stable/std/ffi/os_str/struct.Display.html)\n- [`OsString::display`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.display)\n- [`OsStr::display`](https://doc.rust-lang.org/stable/std/ffi/struct.OsStr.html#method.display)\n- [`io::pipe`](https://doc.rust-lang.org/stable/std/io/fn.pipe.html)\n- [`io::PipeReader`](https://doc.rust-lang.org/stable/std/io/struct.PipeReader.html)\n- [`io::PipeWriter`](https://doc.rust-lang.org/stable/std/io/struct.PipeWriter.html)\n- [`impl From for OwnedHandle`](https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedHandle.html#impl-From%3CPipeReader%3E-for-OwnedHandle)\n- [`impl From for OwnedHandle`](https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedHandle.html#impl-From%3CPipeWriter%3E-for-OwnedHandle)\n- [`impl From for Stdio`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html)\n- [`impl From for Stdio`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html#impl-From%3CPipeWriter%3E-for-Stdio)\n- [`impl From for OwnedFd`](https://doc.rust-lang.org/stable/std/os/fd/struct.OwnedFd.html#impl-From%3CPipeReader%3E-for-OwnedFd)\n- [`impl From for OwnedFd`](https://doc.rust-lang.org/stable/std/os/fd/struct.OwnedFd.html#impl-From%3CPipeWriter%3E-for-OwnedFd)\n- [`Box>::write`](https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#method.write)\n- [`impl TryFrom> for String`](https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-TryFrom%3CVec%3Cu8%3E%3E-for-String)\n- [`<*const T>::offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from_unsigned)\n- [`<*const T>::byte_offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.byte_offset_from_unsigned)\n- [`<*mut T>::offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from_unsigned-1)\n- [`<*mut T>::byte_offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.byte_offset_from_unsigned-1)\n- [`NonNull::offset_from_unsigned`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.offset_from_unsigned)\n- [`NonNull::byte_offset_from_unsigned`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.byte_offset_from_unsigned)\n- [`::cast_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.cast_signed)\n- [`NonZero::::cast_signed`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.cast_signed-5).\n- [`::cast_unsigned`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.cast_unsigned).\n- [`NonZero::::cast_unsigned`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.cast_unsigned-5).\n- [`::is_multiple_of`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.is_multiple_of)\n- [`::unbounded_shl`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.unbounded_shl)\n- [`::unbounded_shr`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.unbounded_shr)\n- [`::unbounded_shl`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.unbounded_shl)\n- [`::unbounded_shr`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.unbounded_shr)\n- [`::midpoint`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.midpoint)\n- [`::from_utf8`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8)\n- [`::from_utf8_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_mut)\n- [`::from_utf8_unchecked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_unchecked)\n- [`::from_utf8_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_unchecked_mut)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`core::str::from_utf8_mut`](https://doc.rust-lang.org/stable/std/str/fn.from_utf8_mut.html)\n- [`<[T]>::copy_from_slice`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.copy_from_slice)\n- [`SocketAddr::set_ip`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.set_ip)\n- [`SocketAddr::set_port`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.set_port),\n- [`SocketAddrV4::set_ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.set_ip)\n- [`SocketAddrV4::set_port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.set_port),\n- [`SocketAddrV6::set_ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_ip)\n- [`SocketAddrV6::set_port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_port)\n- [`SocketAddrV6::set_flowinfo`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_flowinfo)\n- [`SocketAddrV6::set_scope_id`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_scope_id)\n- [`char::is_digit`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.is_digit)\n- [`char::is_whitespace`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.is_whitespace)\n- [`<[[T; N]]>::as_flattened`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_flattened)\n- [`<[[T; N]]>::as_flattened_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_flattened_mut)\n- [`String::into_bytes`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.into_bytes)\n- [`String::as_str`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_str)\n- [`String::capacity`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.capacity)\n- [`String::as_bytes`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_bytes)\n- [`String::len`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.len)\n- [`String::is_empty`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.is_empty)\n- [`String::as_mut_str`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_mut_str)\n- [`String::as_mut_vec`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_mut_vec)\n- [`Vec::as_ptr`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_ptr)\n- [`Vec::as_slice`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_slice)\n- [`Vec::capacity`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.capacity)\n- [`Vec::len`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.len)\n- [`Vec::is_empty`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.is_empty)\n- [`Vec::as_mut_slice`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_mut_slice)\n- [`Vec::as_mut_ptr`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_mut_ptr)\n\n\n\n## Cargo\n\n- [Add terminal integration via ANSI OSC 9;4 sequences](https://github.com/rust-lang/cargo/pull/14615/)\n- [chore: bump openssl to v3](https://github.com/rust-lang/cargo/pull/15232/)\n- [feat(package): add --exclude-lockfile flag](https://github.com/rust-lang/cargo/pull/15234/)\n\n\n\n## Compatibility Notes\n\n- [Rust now raises an error for macro invocations inside the `#![crate_name]` attribute](https://github.com/rust-lang/rust/pull/127581)\n- [Unstable fields are now always considered to be inhabited](https://github.com/rust-lang/rust/pull/133889)\n- [Macro arguments of unary operators followed by open beginning ranges may now be matched differently](https://github.com/rust-lang/rust/pull/134900)\n- [Make `Debug` impl of raw pointers print metadata if present](https://github.com/rust-lang/rust/pull/135080)\n- [Warn against function pointers using unsupported ABI strings in dependencies](https://github.com/rust-lang/rust/pull/135767)\n- [Associated types on `dyn` types are no longer deduplicated](https://github.com/rust-lang/rust/pull/136458)\n- [Forbid attributes on `..` inside of struct patterns (`let Struct { #[attribute] .. }) =`](https://github.com/rust-lang/rust/pull/136490)\n- [Make `ptr_cast_add_auto_to_object` lint into hard error](https://github.com/rust-lang/rust/pull/136764)\n- Many `std::arch` intrinsics are now safe to call in some contexts, there may now be new `unused_unsafe` warnings in existing codebases.\n- [Limit `width` and `precision` formatting options to 16 bits on all targets](https://github.com/rust-lang/rust/pull/136932)\n- [Turn order dependent trait objects future incompat warning into a hard error](https://github.com/rust-lang/rust/pull/136968)\n- [Denote `ControlFlow` as `#[must_use]`](https://github.com/rust-lang/rust/pull/137449)\n- [Windows: The standard library no longer links `advapi32`, except on win7.](https://github.com/rust-lang/rust/pull/138233) Code such as C libraries that were relying on this assumption may need to explicitly link advapi32.\n- [Proc macros can no longer observe expanded `cfg(true)` attributes.](https://github.com/rust-lang/rust/pull/138844)\n- [Start changing the internal representation of pasted tokens](https://github.com/rust-lang/rust/pull/124141). Certain invalid declarative macros that were previously accepted in obscure circumstances are now correctly rejected by the compiler. Use of a `tt` fragment specifier can often fix these macros.\n- [Don't allow flattened format\\_args in const.](https://github.com/rust-lang/rust/pull/139624)\n\n\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Update to LLVM 20](https://github.com/rust-lang/rust/pull/135763)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/218914056/reactions", + "total_count": 329, + "+1": 130, + "-1": 0, + "laugh": 19, + "hooray": 64, + "confused": 0, + "heart": 52, + "rocket": 46, + "eyes": 18 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/210050334", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/210050334/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/210050334/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.86.0", + "id": 210050334, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4MhR0e", + "tag_name": "1.86.0", + "target_commitish": "master", + "name": "Rust 1.86.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-04-03T09:42:32Z", + "updated_at": "2025-05-09T00:42:29Z", + "published_at": "2025-04-03T09:42:40Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.86.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.86.0", + "body": "\n\n## Language\n\n- [Stabilize upcasting trait objects to supertraits.](https://github.com/rust-lang/rust/pull/134367)\n- [Allow safe functions to be marked with the `#[target_feature]` attribute.](https://github.com/rust-lang/rust/pull/134090)\n- [The `missing_abi` lint now warns-by-default.](https://github.com/rust-lang/rust/pull/132397)\n- Rust now lints about double negations, to catch cases that might have intended to be a prefix decrement operator (`--x`) as written in other languages. This was previously a clippy lint, `clippy::double_neg`, and is [now available directly in Rust as `double_negations`.](https://github.com/rust-lang/rust/pull/126604)\n- [More pointers are now detected as definitely not-null based on their alignment in const eval.](https://github.com/rust-lang/rust/pull/133700)\n- [Empty `repr()` attribute applied to invalid items are now correctly rejected.](https://github.com/rust-lang/rust/pull/133925)\n- [Inner attributes `#![test]` and `#![rustfmt::skip]` are no longer accepted in more places than intended.](https://github.com/rust-lang/rust/pull/134276)\n\n\n\n## Compiler\n\n- [Debug-assert that raw pointers are non-null on access.](https://github.com/rust-lang/rust/pull/134424)\n- [Change `-O` to mean `-C opt-level=3` instead of `-C opt-level=2` to match Cargo's defaults.](https://github.com/rust-lang/rust/pull/135439)\n- [Fix emission of `overflowing_literals` under certain macro environments.](https://github.com/rust-lang/rust/pull/136393)\n\n\n\n## Platform Support\n\n- [Replace `i686-unknown-redox` target with `i586-unknown-redox`.](https://github.com/rust-lang/rust/pull/136698)\n- [Increase baseline CPU of `i686-unknown-hurd-gnu` to Pentium 4.](https://github.com/rust-lang/rust/pull/136700)\n- New tier 3 targets:\n - [`{aarch64-unknown,x86_64-pc}-nto-qnx710_iosock`](https://github.com/rust-lang/rust/pull/133631). For supporting Neutrino QNX 7.1 with `io-socket` network stack.\n - [`{aarch64-unknown,x86_64-pc}-nto-qnx800`](https://github.com/rust-lang/rust/pull/133631). For supporting Neutrino QNX 8.0 (`no_std`-only).\n - [`{x86_64,i686}-win7-windows-gnu`](https://github.com/rust-lang/rust/pull/134609). Intended for backwards compatibility with Windows 7. `{x86_64,i686}-win7-windows-msvc` are the Windows MSVC counterparts that already exist as Tier 3 targets.\n - [`amdgcn-amd-amdhsa`](https://github.com/rust-lang/rust/pull/134740).\n - [`x86_64-pc-cygwin`](https://github.com/rust-lang/rust/pull/134999).\n - [`{mips,mipsel}-mti-none-elf`](https://github.com/rust-lang/rust/pull/135074). Initial bare-metal support.\n - [`m68k-unknown-none-elf`](https://github.com/rust-lang/rust/pull/135085).\n - [`armv7a-nuttx-{eabi,eabihf}`, `aarch64-unknown-nuttx`, and `thumbv7a-nuttx-{eabi,eabihf}`](https://github.com/rust-lang/rust/pull/135757).\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- The type of `FromBytesWithNulError` in `CStr::from_bytes_with_nul(bytes: &[u8]) -> Result<&Self, FromBytesWithNulError>` was [changed from an opaque struct to an enum](https://github.com/rust-lang/rust/pull/134143), allowing users to examine why the conversion failed.\n- [Remove `RustcDecodable` and `RustcEncodable`.](https://github.com/rust-lang/rust/pull/134272)\n- [Deprecate libtest's `--logfile` option.](https://github.com/rust-lang/rust/pull/134283)\n- [On recent versions of Windows, `std::fs::remove_file` will now remove read-only files.](https://github.com/rust-lang/rust/pull/134679)\n\n\n\n## Stabilized APIs\n\n- [`{float}::next_down`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.next_down)\n- [`{float}::next_up`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.next_up)\n- [`<[_]>::get_disjoint_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.get_disjoint_mut)\n- [`<[_]>::get_disjoint_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.get_disjoint_unchecked_mut)\n- [`slice::GetDisjointMutError`](https://doc.rust-lang.org/stable/std/slice/enum.GetDisjointMutError.html)\n- [`HashMap::get_disjoint_mut`](https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html#method.get_disjoint_mut)\n- [`HashMap::get_disjoint_unchecked_mut`](https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html#method.get_disjoint_unchecked_mut)\n- [`NonZero::count_ones`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.count_ones)\n- [`Vec::pop_if`](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.pop_if)\n- [`sync::Once::wait`](https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.wait)\n- [`sync::Once::wait_force`](https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.wait_force)\n- [`sync::OnceLock::wait`](https://doc.rust-lang.org/stable/std/sync/struct.OnceLock.html#method.wait)\n\nThese APIs are now stable in const contexts:\n\n- [`hint::black_box`](https://doc.rust-lang.org/stable/std/hint/fn.black_box.html)\n- [`io::Cursor::get_mut`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.get_mut)\n- [`io::Cursor::set_position`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.set_position)\n- [`str::is_char_boundary`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.is_char_boundary)\n- [`str::split_at`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at)\n- [`str::split_at_checked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at_checked)\n- [`str::split_at_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at_mut)\n- [`str::split_at_mut_checked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at_mut_checked)\n\n\n\n## Cargo\n\n- [When merging, replace rather than combine configuration keys that refer to a program path and its arguments.](https://github.com/rust-lang/cargo/pull/15066/)\n- [Error if both `--package` and `--workspace` are passed but the requested package is missing.](https://github.com/rust-lang/cargo/pull/15071/) This was previously silently ignored, which was considered a bug since missing packages should be reported.\n- [Deprecate the token argument in `cargo login` to avoid shell history leaks.](https://github.com/rust-lang/cargo/pull/15057/)\n- [Simplify the implementation of `SourceID` comparisons.](https://github.com/rust-lang/cargo/pull/14980/) This may potentially change behavior if the canonicalized URL compares differently in alternative registries.\n\n\n\n## Rustdoc\n\n- [Add a sans-serif font setting.](https://github.com/rust-lang/rust/pull/133636)\n\n\n\n## Compatibility Notes\n\n- [The `wasm_c_abi` future compatibility warning is now a hard error.](https://github.com/rust-lang/rust/pull/133951) Users of `wasm-bindgen` should upgrade to at least version 0.2.89, otherwise compilation will fail.\n- [Remove long-deprecated no-op attributes `#![no_start]` and `#![crate_id]`.](https://github.com/rust-lang/rust/pull/134300)\n- [The future incompatibility lint `cenum_impl_drop_cast` has been made into a hard error.](https://github.com/rust-lang/rust/pull/135964) This means it is now an error to cast a field-less enum to an integer if the enum implements `Drop`.\n- [SSE2 is now required for \"i686\" 32-bit x86 hard-float targets; disabling it causes a warning that will become a hard error eventually.](https://github.com/rust-lang/rust/pull/137037) To compile for pre-SSE2 32-bit x86, use a \"i586\" target instead.\n\n\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Build the rustc on AArch64 Linux with ThinLTO + PGO.](https://github.com/rust-lang/rust/pull/133807) The ARM 64-bit compiler (AArch64) on Linux is now optimized with ThinLTO and PGO, similar to the optimizations we have already performed for the x86-64 compiler on Linux. This should make it up to 30% faster.\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/210050334/reactions", + "total_count": 233, + "+1": 96, + "-1": 0, + "laugh": 12, + "hooray": 49, + "confused": 0, + "heart": 31, + "rocket": 33, + "eyes": 12 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/207656382", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/207656382/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/207656382/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.85.1", + "id": 207656382, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4MYJW-", + "tag_name": "1.85.1", + "target_commitish": "master", + "name": "Rust 1.85.1", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-03-18T17:41:29Z", + "updated_at": "2025-03-23T03:09:05Z", + "published_at": "2025-03-23T03:09:05Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.85.1", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.85.1", + "body": "\n\n- [Fix the doctest-merging feature of the 2024 Edition.](https://github.com/rust-lang/rust/pull/137899/)\n- [Relax some `target_feature` checks when generating docs.](https://github.com/rust-lang/rust/pull/137632/)\n- [Fix errors in `std::fs::rename` on Windows 10, version 1607.](https://github.com/rust-lang/rust/pull/137528/)\n- [Downgrade bootstrap `cc` to fix custom targets.](https://github.com/rust-lang/rust/pull/137460/)\n- [Skip submodule updates when building Rust from a source tarball.](https://github.com/rust-lang/rust/pull/137338/)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/207656382/reactions", + "total_count": 165, + "+1": 75, + "-1": 0, + "laugh": 14, + "hooray": 23, + "confused": 0, + "heart": 23, + "rocket": 18, + "eyes": 12 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/201487521", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/201487521/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/201487521/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.85.0", + "id": 201487521, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4MAnSh", + "tag_name": "1.85.0", + "target_commitish": "master", + "name": "Rust 1.85.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-02-20T17:09:25Z", + "updated_at": "2025-05-09T15:27:49Z", + "published_at": "2025-02-20T17:09:32Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.85.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.85.0", + "body": "\n\n## Language\n\n- [The 2024 Edition is now stable.](https://github.com/rust-lang/rust/pull/133349) See [the edition guide](https://doc.rust-lang.org/nightly/edition-guide/rust-2024/index.html) for more details.\n- [Stabilize async closures](https://github.com/rust-lang/rust/pull/132706) See [RFC 3668](https://rust-lang.github.io/rfcs/3668-async-closures.html) for more details.\n- [Stabilize `#[diagnostic::do_not_recommend]`](https://github.com/rust-lang/rust/pull/132056)\n- [Add `unpredictable_function_pointer_comparisons` lint to warn against function pointer comparisons](https://github.com/rust-lang/rust/pull/118833)\n- [Lint on combining `#[no_mangle]` and `#[export_name]` attributes.](https://github.com/rust-lang/rust/pull/131558)\n\n\n\n## Compiler\n\n- [The unstable flag `-Zpolymorphize` has been removed](https://github.com/rust-lang/rust/pull/133883), see https://github.com/rust-lang/compiler-team/issues/810 for some background.\n\n\n\n## Platform Support\n\n- [Promote `powerpc64le-unknown-linux-musl` to tier 2 with host tools](https://github.com/rust-lang/rust/pull/133801)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n\n\n## Libraries\n\n- [Panics in the standard library now have a leading `library/` in their path](https://github.com/rust-lang/rust/pull/132390)\n\n- [`std::env::home_dir()` on Windows now ignores the non-standard `$HOME` environment variable](https://github.com/rust-lang/rust/pull/132515)\n \n It will be un-deprecated in a subsequent release.\n\n- [Add `AsyncFn*` to the prelude in all editions.](https://github.com/rust-lang/rust/pull/132611)\n\n\n\n## Stabilized APIs\n\n- [`BuildHasherDefault::new`](https://doc.rust-lang.org/stable/std/hash/struct.BuildHasherDefault.html#method.new)\n- [`ptr::fn_addr_eq`](https://doc.rust-lang.org/std/ptr/fn.fn_addr_eq.html)\n- [`io::ErrorKind::QuotaExceeded`](https://doc.rust-lang.org/stable/std/io/enum.ErrorKind.html#variant.QuotaExceeded)\n- [`io::ErrorKind::CrossesDevices`](https://doc.rust-lang.org/stable/std/io/enum.ErrorKind.html#variant.CrossesDevices)\n- [`{float}::midpoint`](https://doc.rust-lang.org/core/primitive.f32.html#method.midpoint)\n- [Unsigned `{integer}::midpoint`](https://doc.rust-lang.org/std/primitive.u64.html#method.midpoint)\n- [`NonZeroU*::midpoint`](https://doc.rust-lang.org/std/num/type.NonZeroU32.html#method.midpoint)\n- [impl `std::iter::Extend` for tuples with arity 1 through 12](https://doc.rust-lang.org/stable/std/iter/trait.Extend.html#impl-Extend%3C\\(A,\\)%3E-for-\\(EA,\\))\n- [`FromIterator<(A, ...)>` for tuples with arity 1 through 12](https://doc.rust-lang.org/stable/std/iter/trait.FromIterator.html#impl-FromIterator%3C\\(EA,\\)%3E-for-\\(A,\\))\n- [`std::task::Waker::noop`](https://doc.rust-lang.org/stable/std/task/struct.Waker.html#method.noop)\n\nThese APIs are now stable in const contexts:\n\n- [`mem::size_of_val`](https://doc.rust-lang.org/stable/std/mem/fn.size_of_val.html)\n- [`mem::align_of_val`](https://doc.rust-lang.org/stable/std/mem/fn.align_of_val.html)\n- [`Layout::for_value`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.for_value)\n- [`Layout::align_to`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.align_to)\n- [`Layout::pad_to_align`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.pad_to_align)\n- [`Layout::extend`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.extend)\n- [`Layout::array`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.array)\n- [`std::mem::swap`](https://doc.rust-lang.org/stable/std/mem/fn.swap.html)\n- [`std::ptr::swap`](https://doc.rust-lang.org/stable/std/ptr/fn.swap.html)\n- [`NonNull::new`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.new)\n- [`HashMap::with_hasher`](https://doc.rust-lang.org/stable/std/collections/struct.HashMap.html#method.with_hasher)\n- [`HashSet::with_hasher`](https://doc.rust-lang.org/stable/std/collections/struct.HashSet.html#method.with_hasher)\n- [`BuildHasherDefault::new`](https://doc.rust-lang.org/stable/std/hash/struct.BuildHasherDefault.html#method.new)\n- [`::recip`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.recip)\n- [`::to_degrees`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.to_degrees)\n- [`::to_radians`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.to_radians)\n- [`::max`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.max)\n- [`::min`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.min)\n- [`::clamp`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.clamp)\n- [`::abs`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.abs)\n- [`::signum`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.signum)\n- [`::copysign`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.copysign)\n- [`MaybeUninit::write`](https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.write)\n\n\n\n## Cargo\n\n- [Add future-incompatibility warning against keywords in cfgs and add raw-idents](https://github.com/rust-lang/cargo/pull/14671/)\n- [Stabilize higher precedence trailing flags](https://github.com/rust-lang/cargo/pull/14900/)\n- [Pass `CARGO_CFG_FEATURE` to build scripts](https://github.com/rust-lang/cargo/pull/14902/)\n\n\n\n## Rustdoc\n\n- [Doc comment on impl blocks shows the first line, even when the impl block is collapsed](https://github.com/rust-lang/rust/pull/132155)\n\n\n\n## Compatibility Notes\n\n- [`rustc` no longer treats the `test` cfg as a well known check-cfg](https://github.com/rust-lang/rust/pull/131729), instead it is up to the build systems and users of `--check-cfg`\\[^check-cfg\\] to set it as a well known cfg using `--check-cfg=cfg(test)`.\n \n This is done to enable build systems like Cargo to set it conditionally, as not all source files are suitable for unit tests. [Cargo (for now) unconditionally sets the `test` cfg as a well known cfg](https://github.com/rust-lang/cargo/pull/14963). \\[^check-cfg\\]: https://doc.rust-lang.org/nightly/rustc/check-cfg.html\n\n- [Disable potentially incorrect type inference if there are trivial and non-trivial where-clauses](https://github.com/rust-lang/rust/pull/132325)\n\n- `std::env::home_dir()` has been deprecated for years, because it can give surprising results in some Windows configurations if the `HOME` environment variable is set (which is not the normal configuration on Windows). We had previously avoided changing its behavior, out of concern for compatibility with code depending on this non-standard configuration. Given how long this function has been deprecated, we're now fixing its behavior as a bugfix. A subsequent release will remove the deprecation for this function.\n\n- [Make `core::ffi::c_char` signedness more closely match that of the platform-default `char`](https://github.com/rust-lang/rust/pull/132975)\n \n This changed `c_char` from an `i8` to `u8` or vice versa on many Tier 2 and 3 targets (mostly Arm and RISC-V embedded targets). The new definition may result in compilation failures but fixes compatibility issues with C.\n \n The `libc` crate matches this change as of its 0.2.169 release.\n\n- [When compiling a nested `macro_rules` macro from an external crate, the content of the inner `macro_rules` is now built with the edition of the external crate, not the local crate.](https://github.com/rust-lang/rust/pull/133274)\n\n- [Increase `sparcv9-sun-solaris` and `x86_64-pc-solaris` Solaris baseline to 11.4.](https://github.com/rust-lang/rust/pull/133293)\n\n- [Show `abi_unsupported_vector_types` lint in future breakage reports](https://github.com/rust-lang/rust/pull/133374)\n\n- [Error if multiple super-trait instantiations of `dyn Trait` need associated types to be specified but only one is provided](https://github.com/rust-lang/rust/pull/133392)\n\n- [Change `powerpc64-ibm-aix` default `codemodel` to large](https://github.com/rust-lang/rust/pull/133811)\n\n\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Build `x86_64-unknown-linux-gnu` with LTO for C/C++ code (e.g., `jemalloc`)](https://github.com/rust-lang/rust/pull/134690)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/201487521/reactions", + "total_count": 436, + "+1": 162, + "-1": 0, + "laugh": 26, + "hooray": 110, + "confused": 0, + "heart": 59, + "rocket": 58, + "eyes": 21 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/197695939", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/197695939/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/197695939/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.84.1", + "id": 197695939, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4LyJnD", + "tag_name": "1.84.1", + "target_commitish": "master", + "name": "Rust 1.84.1", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-01-30T18:45:59Z", + "updated_at": "2025-01-31T01:59:23Z", + "published_at": "2025-01-31T01:59:23Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.84.1", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.84.1", + "body": "\n\n- [Fix ICE 132920 in duplicate-crate diagnostics.](https://github.com/rust-lang/rust/pull/133304/)\n- [Fix errors for overlapping impls in incremental rebuilds.](https://github.com/rust-lang/rust/pull/133828/)\n- [Fix slow compilation related to the next-generation trait solver.](https://github.com/rust-lang/rust/pull/135618/)\n- [Fix debuginfo when LLVM's location discriminator value limit is exceeded.](https://github.com/rust-lang/rust/pull/135643/)\n- Fixes for building Rust from source:\n - [Only try to distribute `llvm-objcopy` if llvm tools are enabled.](https://github.com/rust-lang/rust/pull/134240/)\n - [Add Profile Override for Non-Git Sources.](https://github.com/rust-lang/rust/pull/135433/)\n - [Resolve symlinks of LLVM tool binaries before copying them.](https://github.com/rust-lang/rust/pull/135585/)\n - [Make it possible to use ci-rustc on tarball sources.](https://github.com/rust-lang/rust/pull/135722/)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/197695939/reactions", + "total_count": 176, + "+1": 96, + "-1": 0, + "laugh": 6, + "hooray": 23, + "confused": 0, + "heart": 17, + "rocket": 22, + "eyes": 12 + } + }, + { + "url": "https://api.github.com/repos/rust-lang/rust/releases/193938042", + "assets_url": "https://api.github.com/repos/rust-lang/rust/releases/193938042/assets", + "upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/193938042/assets{?name,label}", + "html_url": "https://github.com/rust-lang/rust/releases/tag/1.84.0", + "id": 193938042, + "author": { + "login": "rustbot", + "id": 47979223, + "node_id": "MDQ6VXNlcjQ3OTc5MjIz", + "avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rustbot", + "html_url": "https://github.com/rustbot", + "followers_url": "https://api.github.com/users/rustbot/followers", + "following_url": "https://api.github.com/users/rustbot/following{/other_user}", + "gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rustbot/subscriptions", + "organizations_url": "https://api.github.com/users/rustbot/orgs", + "repos_url": "https://api.github.com/users/rustbot/repos", + "events_url": "https://api.github.com/users/rustbot/events{/privacy}", + "received_events_url": "https://api.github.com/users/rustbot/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOAAsO6M4Lj0J6", + "tag_name": "1.84.0", + "target_commitish": "master", + "name": "Rust 1.84.0", + "draft": false, + "immutable": false, + "prerelease": false, + "created_at": "2025-01-09T15:41:49Z", + "updated_at": "2025-02-01T06:03:50Z", + "published_at": "2025-01-09T15:41:56Z", + "assets": [], + "tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.84.0", + "zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.84.0", + "body": "\n\n## Language\n\n- [Allow `#[deny]` inside `#[forbid]` as a no-op](https://github.com/rust-lang/rust/pull/121560/)\n- [Show a warning when `-Ctarget-feature` is used to toggle features that can lead to unsoundness due to ABI mismatches](https://github.com/rust-lang/rust/pull/129884)\n- [Use the next-generation trait solver in coherence](https://github.com/rust-lang/rust/pull/130654)\n- [Allow coercions to drop the principal of trait objects](https://github.com/rust-lang/rust/pull/131857)\n- [Support `/` as the path separator for `include!()` in all cases on Windows](https://github.com/rust-lang/rust/pull/125205)\n- [Taking a raw ref (`raw (const|mut)`) of a deref of a pointer (`*ptr`) is now safe](https://github.com/rust-lang/rust/pull/129248)\n- [Stabilize s390x inline assembly](https://github.com/rust-lang/rust/pull/131258)\n- [Stabilize Arm64EC inline assembly](https://github.com/rust-lang/rust/pull/131781)\n- [Lint against creating pointers to immediately dropped temporaries](https://github.com/rust-lang/rust/pull/128985)\n- [Execute drop glue when unwinding in an `extern \"C\"` function](https://github.com/rust-lang/rust/pull/129582)\n\n\n\n## Compiler\n\n- [Add `--print host-tuple` flag to print the host target tuple and affirm the \"target tuple\" terminology over \"target triple\"](https://github.com/rust-lang/rust/pull/125579)\n- [Declaring functions with a calling convention not supported on the current target now triggers a hard error](https://github.com/rust-lang/rust/pull/129935)\n- [Set up indirect access to external data for `loongarch64-unknown-linux-{musl,ohos}`](https://github.com/rust-lang/rust/pull/131583)\n- [Enable XRay instrumentation for LoongArch Linux targets](https://github.com/rust-lang/rust/pull/131818)\n- [Extend the `unexpected_cfgs` lint to also warn in external macros](https://github.com/rust-lang/rust/pull/132577)\n- [Stabilize WebAssembly `multivalue`, `reference-types`, and `tail-call` target features](https://github.com/rust-lang/rust/pull/131080)\n- [Added Tier 2 support for the `wasm32v1-none` target](https://github.com/rust-lang/rust/pull/131487)\n\n\n\n## Libraries\n\n- [Implement `From<&mut {slice}>` for `Box/Rc/Arc<{slice}>`](https://github.com/rust-lang/rust/pull/129329)\n- [Move `::copysign`, `::abs`, `::signum` to `core`](https://github.com/rust-lang/rust/pull/131304)\n- [Add `LowerExp` and `UpperExp` implementations to `NonZero`](https://github.com/rust-lang/rust/pull/131377)\n- [Implement `FromStr` for `CString` and `TryFrom` for `String`](https://github.com/rust-lang/rust/pull/130608)\n- [`std::os::darwin` has been made public](https://github.com/rust-lang/rust/pull/123723)\n\n\n\n## Stabilized APIs\n\n- [`Ipv6Addr::is_unique_local`](https://doc.rust-lang.org/stable/core/net/struct.Ipv6Addr.html#method.is_unique_local)\n- [`Ipv6Addr::is_unicast_link_local`](https://doc.rust-lang.org/stable/core/net/struct.Ipv6Addr.html#method.is_unicast_link_local)\n- [`core::ptr::with_exposed_provenance`](https://doc.rust-lang.org/stable/core/ptr/fn.with_exposed_provenance.html)\n- [`core::ptr::with_exposed_provenance_mut`](https://doc.rust-lang.org/stable/core/ptr/fn.with_exposed_provenance_mut.html)\n- [`::addr`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.addr)\n- [`::expose_provenance`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.expose_provenance)\n- [`::with_addr`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.with_addr)\n- [`::map_addr`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.map_addr)\n- [`::isqrt`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.isqrt)\n- [`::checked_isqrt`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.checked_isqrt)\n- [`::isqrt`](https://doc.rust-lang.org/stable/core/primitive.u32.html#method.isqrt)\n- [`NonZero::isqrt`](https://doc.rust-lang.org/stable/core/num/struct.NonZero.html#impl-NonZero%3Cu128%3E/method.isqrt)\n- [`core::ptr::without_provenance`](https://doc.rust-lang.org/stable/core/ptr/fn.without_provenance.html)\n- [`core::ptr::without_provenance_mut`](https://doc.rust-lang.org/stable/core/ptr/fn.without_provenance_mut.html)\n- [`core::ptr::dangling`](https://doc.rust-lang.org/stable/core/ptr/fn.dangling.html)\n- [`core::ptr::dangling_mut`](https://doc.rust-lang.org/stable/core/ptr/fn.dangling_mut.html)\n- [`Pin::as_deref_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.as_deref_mut)\n\nThese APIs are now stable in const contexts\n\n- [`AtomicBool::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicBool.html#method.from_ptr)\n- [`AtomicPtr::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicPtr.html#method.from_ptr)\n- [`AtomicU8::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU8.html#method.from_ptr)\n- [`AtomicU16::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU16.html#method.from_ptr)\n- [`AtomicU32::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU32.html#method.from_ptr)\n- [`AtomicU64::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU64.html#method.from_ptr)\n- [`AtomicUsize::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicUsize.html#method.from_ptr)\n- [`AtomicI8::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI8.html#method.from_ptr)\n- [`AtomicI16::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI16.html#method.from_ptr)\n- [`AtomicI32::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI32.html#method.from_ptr)\n- [`AtomicI64::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI64.html#method.from_ptr)\n- [`AtomicIsize::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicIsize.html#method.from_ptr)\n- [`::is_null`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.is_null-1)\n- [`::as_ref`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.as_ref-1)\n- [`::as_mut`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.as_mut)\n- [`Pin::new`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.new)\n- [`Pin::new_unchecked`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.new_unchecked)\n- [`Pin::get_ref`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.get_ref)\n- [`Pin::into_ref`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.into_ref)\n- [`Pin::get_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.get_mut)\n- [`Pin::get_unchecked_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.get_unchecked_mut)\n- [`Pin::static_ref`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.static_ref)\n- [`Pin::static_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.static_mut)\n\n\n\n## Cargo\n\n- [Stabilize MSRV-aware resolver config](https://github.com/rust-lang/cargo/pull/14639/)\n- [Stabilize resolver v3](https://github.com/rust-lang/cargo/pull/14754/)\n\n\n\n## Rustdoc\n\n- [rustdoc-search: improve type-driven search](https://github.com/rust-lang/rust/pull/127589)\n\n\n\n## Compatibility Notes\n\n- [Enable by default the `LSX` target feature for LoongArch Linux targets](https://github.com/rust-lang/rust/pull/132140)\n- [The unstable `-Zprofile` flag (“gcov-style” coverage instrumentation) has been removed.](https://github.com/rust-lang/rust/pull/131829) This does not affect the stable flags for coverage instrumentation (`-Cinstrument-coverage`) and profile-guided optimization (`-Cprofile-generate`, `-Cprofile-use`), which are unrelated and remain available.\n- Support for the target named `wasm32-wasi` has been removed as the target is now named `wasm32-wasip1`. This completes the [transition](https://github.com/rust-lang/compiler-team/issues/607) [plan](https://github.com/rust-lang/compiler-team/issues/695) for this target following [the introduction of `wasm32-wasip1`](https://github.com/rust-lang/rust/pull/120468) in Rust 1.78. Compiler warnings on [use of `wasm32-wasi`](https://github.com/rust-lang/rust/pull/126662) introduced in Rust 1.81 are now gone as well as the target is removed.\n- [The syntax `&pin (mut|const) T` is now parsed as a type which in theory could affect macro expansion results in some edge cases](https://github.com/rust-lang/rust/pull/130635#issuecomment-2375462821)\n- [Legacy syntax for calling `std::arch` functions is no longer permitted to declare items or bodies (such as closures, inline consts, or async blocks).](https://github.com/rust-lang/rust/pull/130443#issuecomment-2445678945)\n- [Declaring functions with a calling convention not supported on the current target now triggers a hard error](https://github.com/rust-lang/rust/pull/129935)\n- [The next-generation trait solver is now enabled for coherence, fixing multiple soundness issues](https://github.com/rust-lang/rust/pull/130654)\n", + "reactions": { + "url": "https://api.github.com/repos/rust-lang/rust/releases/193938042/reactions", + "total_count": 320, + "+1": 125, + "-1": 0, + "laugh": 16, + "hooray": 70, + "confused": 0, + "heart": 47, + "rocket": 45, + "eyes": 17 + } + } +] \ No newline at end of file diff --git a/github/releases_rust.metadata.json b/github/releases_rust.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9c36d7a85af2a87abeeec62a8fad660f27a5755c --- /dev/null +++ b/github/releases_rust.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_releases_rust", + "source": "github", + "collected_date": "2025-11-05T22:51:00.350090", + "size_bytes": 107359, + "description": "Rust releases", + "url": "https://api.github.com/repos/rust-lang/rust/releases?per_page=10" +} \ No newline at end of file diff --git a/github/repos_django.json b/github/repos_django.json new file mode 100644 index 0000000000000000000000000000000000000000..035b93a7afea21470588eb3503a10e4cfb91c804 --- /dev/null +++ b/github/repos_django.json @@ -0,0 +1,142 @@ +{ + "id": 4164482, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTY0NDgy", + "name": "django", + "full_name": "django/django", + "private": false, + "owner": { + "login": "django", + "id": 27804, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI3ODA0", + "avatar_url": "https://avatars.githubusercontent.com/u/27804?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/django", + "html_url": "https://github.com/django", + "followers_url": "https://api.github.com/users/django/followers", + "following_url": "https://api.github.com/users/django/following{/other_user}", + "gists_url": "https://api.github.com/users/django/gists{/gist_id}", + "starred_url": "https://api.github.com/users/django/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/django/subscriptions", + "organizations_url": "https://api.github.com/users/django/orgs", + "repos_url": "https://api.github.com/users/django/repos", + "events_url": "https://api.github.com/users/django/events{/privacy}", + "received_events_url": "https://api.github.com/users/django/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/django/django", + "description": "The Web framework for perfectionists with deadlines.", + "fork": false, + "url": "https://api.github.com/repos/django/django", + "forks_url": "https://api.github.com/repos/django/django/forks", + "keys_url": "https://api.github.com/repos/django/django/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/django/django/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/django/django/teams", + "hooks_url": "https://api.github.com/repos/django/django/hooks", + "issue_events_url": "https://api.github.com/repos/django/django/issues/events{/number}", + "events_url": "https://api.github.com/repos/django/django/events", + "assignees_url": "https://api.github.com/repos/django/django/assignees{/user}", + "branches_url": "https://api.github.com/repos/django/django/branches{/branch}", + "tags_url": "https://api.github.com/repos/django/django/tags", + "blobs_url": "https://api.github.com/repos/django/django/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/django/django/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/django/django/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/django/django/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/django/django/statuses/{sha}", + "languages_url": "https://api.github.com/repos/django/django/languages", + "stargazers_url": "https://api.github.com/repos/django/django/stargazers", + "contributors_url": "https://api.github.com/repos/django/django/contributors", + "subscribers_url": "https://api.github.com/repos/django/django/subscribers", + "subscription_url": "https://api.github.com/repos/django/django/subscription", + "commits_url": "https://api.github.com/repos/django/django/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/django/django/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/django/django/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/django/django/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/django/django/contents/{+path}", + "compare_url": "https://api.github.com/repos/django/django/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/django/django/merges", + "archive_url": "https://api.github.com/repos/django/django/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/django/django/downloads", + "issues_url": "https://api.github.com/repos/django/django/issues{/number}", + "pulls_url": "https://api.github.com/repos/django/django/pulls{/number}", + "milestones_url": "https://api.github.com/repos/django/django/milestones{/number}", + "notifications_url": "https://api.github.com/repos/django/django/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/django/django/labels{/name}", + "releases_url": "https://api.github.com/repos/django/django/releases{/id}", + "deployments_url": "https://api.github.com/repos/django/django/deployments", + "created_at": "2012-04-28T02:47:18Z", + "updated_at": "2025-11-06T01:22:06Z", + "pushed_at": "2025-11-05T22:06:51Z", + "git_url": "git://github.com/django/django.git", + "ssh_url": "git@github.com:django/django.git", + "clone_url": "https://github.com/django/django.git", + "svn_url": "https://github.com/django/django", + "homepage": "https://www.djangoproject.com/", + "size": 274548, + "stargazers_count": 85664, + "watchers_count": 85664, + "language": "Python", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 33194, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 356, + "license": { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "apps", + "django", + "framework", + "models", + "orm", + "python", + "templates", + "views", + "web" + ], + "visibility": "public", + "forks": 33194, + "open_issues": 356, + "watchers": 85664, + "default_branch": "main", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "django", + "id": 27804, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjI3ODA0", + "avatar_url": "https://avatars.githubusercontent.com/u/27804?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/django", + "html_url": "https://github.com/django", + "followers_url": "https://api.github.com/users/django/followers", + "following_url": "https://api.github.com/users/django/following{/other_user}", + "gists_url": "https://api.github.com/users/django/gists{/gist_id}", + "starred_url": "https://api.github.com/users/django/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/django/subscriptions", + "organizations_url": "https://api.github.com/users/django/orgs", + "repos_url": "https://api.github.com/users/django/repos", + "events_url": "https://api.github.com/users/django/events{/privacy}", + "received_events_url": "https://api.github.com/users/django/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 33194, + "subscribers_count": 2265 +} \ No newline at end of file diff --git a/github/repos_django.metadata.json b/github/repos_django.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..c8c1f836ca2cb741678b734c857ab90cf9111465 --- /dev/null +++ b/github/repos_django.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_django", + "source": "github", + "collected_date": "2025-11-05T22:50:24.545279", + "size_bytes": 6714, + "description": "Django repository info", + "url": "https://api.github.com/repos/django/django" +} \ No newline at end of file diff --git a/github/repos_golang.json b/github/repos_golang.json new file mode 100644 index 0000000000000000000000000000000000000000..648200e754edeaaa2496314d2a44e8e19251de50 --- /dev/null +++ b/github/repos_golang.json @@ -0,0 +1,140 @@ +{ + "id": 23096959, + "node_id": "MDEwOlJlcG9zaXRvcnkyMzA5Njk1OQ==", + "name": "go", + "full_name": "golang/go", + "private": false, + "owner": { + "login": "golang", + "id": 4314092, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQzMTQwOTI=", + "avatar_url": "https://avatars.githubusercontent.com/u/4314092?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/golang", + "html_url": "https://github.com/golang", + "followers_url": "https://api.github.com/users/golang/followers", + "following_url": "https://api.github.com/users/golang/following{/other_user}", + "gists_url": "https://api.github.com/users/golang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/golang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/golang/subscriptions", + "organizations_url": "https://api.github.com/users/golang/orgs", + "repos_url": "https://api.github.com/users/golang/repos", + "events_url": "https://api.github.com/users/golang/events{/privacy}", + "received_events_url": "https://api.github.com/users/golang/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/golang/go", + "description": "The Go programming language", + "fork": false, + "url": "https://api.github.com/repos/golang/go", + "forks_url": "https://api.github.com/repos/golang/go/forks", + "keys_url": "https://api.github.com/repos/golang/go/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/golang/go/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/golang/go/teams", + "hooks_url": "https://api.github.com/repos/golang/go/hooks", + "issue_events_url": "https://api.github.com/repos/golang/go/issues/events{/number}", + "events_url": "https://api.github.com/repos/golang/go/events", + "assignees_url": "https://api.github.com/repos/golang/go/assignees{/user}", + "branches_url": "https://api.github.com/repos/golang/go/branches{/branch}", + "tags_url": "https://api.github.com/repos/golang/go/tags", + "blobs_url": "https://api.github.com/repos/golang/go/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/golang/go/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/golang/go/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/golang/go/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/golang/go/statuses/{sha}", + "languages_url": "https://api.github.com/repos/golang/go/languages", + "stargazers_url": "https://api.github.com/repos/golang/go/stargazers", + "contributors_url": "https://api.github.com/repos/golang/go/contributors", + "subscribers_url": "https://api.github.com/repos/golang/go/subscribers", + "subscription_url": "https://api.github.com/repos/golang/go/subscription", + "commits_url": "https://api.github.com/repos/golang/go/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/golang/go/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/golang/go/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/golang/go/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/golang/go/contents/{+path}", + "compare_url": "https://api.github.com/repos/golang/go/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/golang/go/merges", + "archive_url": "https://api.github.com/repos/golang/go/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/golang/go/downloads", + "issues_url": "https://api.github.com/repos/golang/go/issues{/number}", + "pulls_url": "https://api.github.com/repos/golang/go/pulls{/number}", + "milestones_url": "https://api.github.com/repos/golang/go/milestones{/number}", + "notifications_url": "https://api.github.com/repos/golang/go/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/golang/go/labels{/name}", + "releases_url": "https://api.github.com/repos/golang/go/releases{/id}", + "deployments_url": "https://api.github.com/repos/golang/go/deployments", + "created_at": "2014-08-19T04:33:40Z", + "updated_at": "2025-11-06T02:20:34Z", + "pushed_at": "2025-11-06T00:43:44Z", + "git_url": "git://github.com/golang/go.git", + "ssh_url": "git@github.com:golang/go.git", + "clone_url": "https://github.com/golang/go.git", + "svn_url": "https://github.com/golang/go", + "homepage": "https://go.dev", + "size": 417045, + "stargazers_count": 130694, + "watchers_count": 130694, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 18434, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9612, + "license": { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "go", + "golang", + "language", + "programming-language" + ], + "visibility": "public", + "forks": 18434, + "open_issues": 9612, + "watchers": 130694, + "default_branch": "master", + "temp_clone_token": null, + "custom_properties": { + "requires_action_scanning": "false", + "requires_two_party_review": "false" + }, + "organization": { + "login": "golang", + "id": 4314092, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjQzMTQwOTI=", + "avatar_url": "https://avatars.githubusercontent.com/u/4314092?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/golang", + "html_url": "https://github.com/golang", + "followers_url": "https://api.github.com/users/golang/followers", + "following_url": "https://api.github.com/users/golang/following{/other_user}", + "gists_url": "https://api.github.com/users/golang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/golang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/golang/subscriptions", + "organizations_url": "https://api.github.com/users/golang/orgs", + "repos_url": "https://api.github.com/users/golang/repos", + "events_url": "https://api.github.com/users/golang/events{/privacy}", + "received_events_url": "https://api.github.com/users/golang/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 18434, + "subscribers_count": 3341 +} \ No newline at end of file diff --git a/github/repos_golang.metadata.json b/github/repos_golang.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ceabefacef1faed85f60aade321197b9166b4f59 --- /dev/null +++ b/github/repos_golang.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_golang", + "source": "github", + "collected_date": "2025-11-05T22:50:20.149620", + "size_bytes": 6547, + "description": "Go repository info", + "url": "https://api.github.com/repos/golang/go" +} \ No newline at end of file diff --git a/github/repos_kubernetes.json b/github/repos_kubernetes.json new file mode 100644 index 0000000000000000000000000000000000000000..9be18b7b6ceb640b9d0b25675a744267bdc1a1c0 --- /dev/null +++ b/github/repos_kubernetes.json @@ -0,0 +1,137 @@ +{ + "id": 20580498, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDU4MDQ5OA==", + "name": "kubernetes", + "full_name": "kubernetes/kubernetes", + "private": false, + "owner": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/kubernetes/kubernetes", + "description": "Production-Grade Container Scheduling and Management", + "fork": false, + "url": "https://api.github.com/repos/kubernetes/kubernetes", + "forks_url": "https://api.github.com/repos/kubernetes/kubernetes/forks", + "keys_url": "https://api.github.com/repos/kubernetes/kubernetes/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/kubernetes/kubernetes/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/kubernetes/kubernetes/teams", + "hooks_url": "https://api.github.com/repos/kubernetes/kubernetes/hooks", + "issue_events_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/events{/number}", + "events_url": "https://api.github.com/repos/kubernetes/kubernetes/events", + "assignees_url": "https://api.github.com/repos/kubernetes/kubernetes/assignees{/user}", + "branches_url": "https://api.github.com/repos/kubernetes/kubernetes/branches{/branch}", + "tags_url": "https://api.github.com/repos/kubernetes/kubernetes/tags", + "blobs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/kubernetes/kubernetes/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/kubernetes/kubernetes/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/kubernetes/kubernetes/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/kubernetes/kubernetes/statuses/{sha}", + "languages_url": "https://api.github.com/repos/kubernetes/kubernetes/languages", + "stargazers_url": "https://api.github.com/repos/kubernetes/kubernetes/stargazers", + "contributors_url": "https://api.github.com/repos/kubernetes/kubernetes/contributors", + "subscribers_url": "https://api.github.com/repos/kubernetes/kubernetes/subscribers", + "subscription_url": "https://api.github.com/repos/kubernetes/kubernetes/subscription", + "commits_url": "https://api.github.com/repos/kubernetes/kubernetes/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/kubernetes/kubernetes/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/kubernetes/kubernetes/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/kubernetes/kubernetes/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/kubernetes/kubernetes/contents/{+path}", + "compare_url": "https://api.github.com/repos/kubernetes/kubernetes/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/kubernetes/kubernetes/merges", + "archive_url": "https://api.github.com/repos/kubernetes/kubernetes/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/kubernetes/kubernetes/downloads", + "issues_url": "https://api.github.com/repos/kubernetes/kubernetes/issues{/number}", + "pulls_url": "https://api.github.com/repos/kubernetes/kubernetes/pulls{/number}", + "milestones_url": "https://api.github.com/repos/kubernetes/kubernetes/milestones{/number}", + "notifications_url": "https://api.github.com/repos/kubernetes/kubernetes/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/kubernetes/kubernetes/labels{/name}", + "releases_url": "https://api.github.com/repos/kubernetes/kubernetes/releases{/id}", + "deployments_url": "https://api.github.com/repos/kubernetes/kubernetes/deployments", + "created_at": "2014-06-06T22:56:04Z", + "updated_at": "2025-11-06T02:53:21Z", + "pushed_at": "2025-11-06T02:53:12Z", + "git_url": "git://github.com/kubernetes/kubernetes.git", + "ssh_url": "git@github.com:kubernetes/kubernetes.git", + "clone_url": "https://github.com/kubernetes/kubernetes.git", + "svn_url": "https://github.com/kubernetes/kubernetes", + "homepage": "https://kubernetes.io", + "size": 1425263, + "stargazers_count": 118414, + "watchers_count": 118414, + "language": "Go", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 41643, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2528, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "cncf", + "containers", + "go", + "kubernetes" + ], + "visibility": "public", + "forks": 41643, + "open_issues": 2528, + "watchers": 118414, + "default_branch": "master", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "kubernetes", + "id": 13629408, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNjI5NDA4", + "avatar_url": "https://avatars.githubusercontent.com/u/13629408?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kubernetes", + "html_url": "https://github.com/kubernetes", + "followers_url": "https://api.github.com/users/kubernetes/followers", + "following_url": "https://api.github.com/users/kubernetes/following{/other_user}", + "gists_url": "https://api.github.com/users/kubernetes/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kubernetes/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kubernetes/subscriptions", + "organizations_url": "https://api.github.com/users/kubernetes/orgs", + "repos_url": "https://api.github.com/users/kubernetes/repos", + "events_url": "https://api.github.com/users/kubernetes/events{/privacy}", + "received_events_url": "https://api.github.com/users/kubernetes/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 41643, + "subscribers_count": 3189 +} \ No newline at end of file diff --git a/github/repos_kubernetes.metadata.json b/github/repos_kubernetes.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..35b96f415a2888565e19855376b31cc4b7281677 --- /dev/null +++ b/github/repos_kubernetes.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_kubernetes", + "source": "github", + "collected_date": "2025-11-05T22:50:06.864068", + "size_bytes": 7080, + "description": "Kubernetes repository info", + "url": "https://api.github.com/repos/kubernetes/kubernetes" +} \ No newline at end of file diff --git a/github/repos_nodejs.json b/github/repos_nodejs.json new file mode 100644 index 0000000000000000000000000000000000000000..098bb690463ea87948696b394c997011347b67ed --- /dev/null +++ b/github/repos_nodejs.json @@ -0,0 +1,142 @@ +{ + "id": 27193779, + "node_id": "MDEwOlJlcG9zaXRvcnkyNzE5Mzc3OQ==", + "name": "node", + "full_name": "nodejs/node", + "private": false, + "owner": { + "login": "nodejs", + "id": 9950313, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5NTAzMTM=", + "avatar_url": "https://avatars.githubusercontent.com/u/9950313?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nodejs", + "html_url": "https://github.com/nodejs", + "followers_url": "https://api.github.com/users/nodejs/followers", + "following_url": "https://api.github.com/users/nodejs/following{/other_user}", + "gists_url": "https://api.github.com/users/nodejs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nodejs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nodejs/subscriptions", + "organizations_url": "https://api.github.com/users/nodejs/orgs", + "repos_url": "https://api.github.com/users/nodejs/repos", + "events_url": "https://api.github.com/users/nodejs/events{/privacy}", + "received_events_url": "https://api.github.com/users/nodejs/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/nodejs/node", + "description": "Node.js JavaScript runtime ✨🐢🚀✨", + "fork": false, + "url": "https://api.github.com/repos/nodejs/node", + "forks_url": "https://api.github.com/repos/nodejs/node/forks", + "keys_url": "https://api.github.com/repos/nodejs/node/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/nodejs/node/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/nodejs/node/teams", + "hooks_url": "https://api.github.com/repos/nodejs/node/hooks", + "issue_events_url": "https://api.github.com/repos/nodejs/node/issues/events{/number}", + "events_url": "https://api.github.com/repos/nodejs/node/events", + "assignees_url": "https://api.github.com/repos/nodejs/node/assignees{/user}", + "branches_url": "https://api.github.com/repos/nodejs/node/branches{/branch}", + "tags_url": "https://api.github.com/repos/nodejs/node/tags", + "blobs_url": "https://api.github.com/repos/nodejs/node/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/nodejs/node/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/nodejs/node/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/nodejs/node/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/nodejs/node/statuses/{sha}", + "languages_url": "https://api.github.com/repos/nodejs/node/languages", + "stargazers_url": "https://api.github.com/repos/nodejs/node/stargazers", + "contributors_url": "https://api.github.com/repos/nodejs/node/contributors", + "subscribers_url": "https://api.github.com/repos/nodejs/node/subscribers", + "subscription_url": "https://api.github.com/repos/nodejs/node/subscription", + "commits_url": "https://api.github.com/repos/nodejs/node/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/nodejs/node/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/nodejs/node/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/nodejs/node/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/nodejs/node/contents/{+path}", + "compare_url": "https://api.github.com/repos/nodejs/node/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/nodejs/node/merges", + "archive_url": "https://api.github.com/repos/nodejs/node/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/nodejs/node/downloads", + "issues_url": "https://api.github.com/repos/nodejs/node/issues{/number}", + "pulls_url": "https://api.github.com/repos/nodejs/node/pulls{/number}", + "milestones_url": "https://api.github.com/repos/nodejs/node/milestones{/number}", + "notifications_url": "https://api.github.com/repos/nodejs/node/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/nodejs/node/labels{/name}", + "releases_url": "https://api.github.com/repos/nodejs/node/releases{/id}", + "deployments_url": "https://api.github.com/repos/nodejs/node/deployments", + "created_at": "2014-11-26T19:57:11Z", + "updated_at": "2025-11-05T22:54:56Z", + "pushed_at": "2025-11-05T22:45:09Z", + "git_url": "git://github.com/nodejs/node.git", + "ssh_url": "git@github.com:nodejs/node.git", + "clone_url": "https://github.com/nodejs/node.git", + "svn_url": "https://github.com/nodejs/node", + "homepage": "https://nodejs.org", + "size": 1364456, + "stargazers_count": 114160, + "watchers_count": 114160, + "language": "JavaScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 33685, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2384, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "javascript", + "js", + "linux", + "macos", + "mit", + "node", + "nodejs", + "runtime", + "windows" + ], + "visibility": "public", + "forks": 33685, + "open_issues": 2384, + "watchers": 114160, + "default_branch": "main", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "nodejs", + "id": 9950313, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5NTAzMTM=", + "avatar_url": "https://avatars.githubusercontent.com/u/9950313?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nodejs", + "html_url": "https://github.com/nodejs", + "followers_url": "https://api.github.com/users/nodejs/followers", + "following_url": "https://api.github.com/users/nodejs/following{/other_user}", + "gists_url": "https://api.github.com/users/nodejs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nodejs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nodejs/subscriptions", + "organizations_url": "https://api.github.com/users/nodejs/orgs", + "repos_url": "https://api.github.com/users/nodejs/repos", + "events_url": "https://api.github.com/users/nodejs/events{/privacy}", + "received_events_url": "https://api.github.com/users/nodejs/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 33685, + "subscribers_count": 2968 +} \ No newline at end of file diff --git a/github/repos_nodejs.metadata.json b/github/repos_nodejs.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..69469ecc69e1e9a8de3383c4f7d6479402dd0fc8 --- /dev/null +++ b/github/repos_nodejs.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_nodejs", + "source": "github", + "collected_date": "2025-11-05T22:50:22.355977", + "size_bytes": 6542, + "description": "Node.js repository info", + "url": "https://api.github.com/repos/nodejs/node" +} \ No newline at end of file diff --git a/github/repos_python.json b/github/repos_python.json new file mode 100644 index 0000000000000000000000000000000000000000..72d741049220f06b430fe3bce87fd278aca8cc12 --- /dev/null +++ b/github/repos_python.json @@ -0,0 +1,132 @@ +{ + "id": 81598961, + "node_id": "MDEwOlJlcG9zaXRvcnk4MTU5ODk2MQ==", + "name": "cpython", + "full_name": "python/cpython", + "private": false, + "owner": { + "login": "python", + "id": 1525981, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MjU5ODE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1525981?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/python", + "html_url": "https://github.com/python", + "followers_url": "https://api.github.com/users/python/followers", + "following_url": "https://api.github.com/users/python/following{/other_user}", + "gists_url": "https://api.github.com/users/python/gists{/gist_id}", + "starred_url": "https://api.github.com/users/python/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/python/subscriptions", + "organizations_url": "https://api.github.com/users/python/orgs", + "repos_url": "https://api.github.com/users/python/repos", + "events_url": "https://api.github.com/users/python/events{/privacy}", + "received_events_url": "https://api.github.com/users/python/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/python/cpython", + "description": "The Python programming language", + "fork": false, + "url": "https://api.github.com/repos/python/cpython", + "forks_url": "https://api.github.com/repos/python/cpython/forks", + "keys_url": "https://api.github.com/repos/python/cpython/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/python/cpython/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/python/cpython/teams", + "hooks_url": "https://api.github.com/repos/python/cpython/hooks", + "issue_events_url": "https://api.github.com/repos/python/cpython/issues/events{/number}", + "events_url": "https://api.github.com/repos/python/cpython/events", + "assignees_url": "https://api.github.com/repos/python/cpython/assignees{/user}", + "branches_url": "https://api.github.com/repos/python/cpython/branches{/branch}", + "tags_url": "https://api.github.com/repos/python/cpython/tags", + "blobs_url": "https://api.github.com/repos/python/cpython/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/python/cpython/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/python/cpython/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/python/cpython/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/python/cpython/statuses/{sha}", + "languages_url": "https://api.github.com/repos/python/cpython/languages", + "stargazers_url": "https://api.github.com/repos/python/cpython/stargazers", + "contributors_url": "https://api.github.com/repos/python/cpython/contributors", + "subscribers_url": "https://api.github.com/repos/python/cpython/subscribers", + "subscription_url": "https://api.github.com/repos/python/cpython/subscription", + "commits_url": "https://api.github.com/repos/python/cpython/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/python/cpython/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/python/cpython/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/python/cpython/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/python/cpython/contents/{+path}", + "compare_url": "https://api.github.com/repos/python/cpython/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/python/cpython/merges", + "archive_url": "https://api.github.com/repos/python/cpython/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/python/cpython/downloads", + "issues_url": "https://api.github.com/repos/python/cpython/issues{/number}", + "pulls_url": "https://api.github.com/repos/python/cpython/pulls{/number}", + "milestones_url": "https://api.github.com/repos/python/cpython/milestones{/number}", + "notifications_url": "https://api.github.com/repos/python/cpython/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/python/cpython/labels{/name}", + "releases_url": "https://api.github.com/repos/python/cpython/releases{/id}", + "deployments_url": "https://api.github.com/repos/python/cpython/deployments", + "created_at": "2017-02-10T19:23:51Z", + "updated_at": "2025-11-06T02:51:46Z", + "pushed_at": "2025-11-05T22:52:43Z", + "git_url": "git://github.com/python/cpython.git", + "ssh_url": "git@github.com:python/cpython.git", + "clone_url": "https://github.com/python/cpython.git", + "svn_url": "https://github.com/python/cpython", + "homepage": "https://www.python.org", + "size": 747207, + "stargazers_count": 69684, + "watchers_count": 69684, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 33297, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9228, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [], + "visibility": "public", + "forks": 33297, + "open_issues": 9228, + "watchers": 69684, + "default_branch": "main", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "python", + "id": 1525981, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MjU5ODE=", + "avatar_url": "https://avatars.githubusercontent.com/u/1525981?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/python", + "html_url": "https://github.com/python", + "followers_url": "https://api.github.com/users/python/followers", + "following_url": "https://api.github.com/users/python/following{/other_user}", + "gists_url": "https://api.github.com/users/python/gists{/gist_id}", + "starred_url": "https://api.github.com/users/python/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/python/subscriptions", + "organizations_url": "https://api.github.com/users/python/orgs", + "repos_url": "https://api.github.com/users/python/repos", + "events_url": "https://api.github.com/users/python/events{/privacy}", + "received_events_url": "https://api.github.com/users/python/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 33297, + "subscribers_count": 1533 +} \ No newline at end of file diff --git a/github/repos_python.metadata.json b/github/repos_python.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..06d69334a43502dd15e5476d02341381bd45f44b --- /dev/null +++ b/github/repos_python.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_python", + "source": "github", + "collected_date": "2025-11-05T22:50:17.950369", + "size_bytes": 6537, + "description": "Python repository info", + "url": "https://api.github.com/repos/python/cpython" +} \ No newline at end of file diff --git a/github/repos_react.json b/github/repos_react.json new file mode 100644 index 0000000000000000000000000000000000000000..bf728a64423d954548c06b6e9a82aff838e06791 --- /dev/null +++ b/github/repos_react.json @@ -0,0 +1,139 @@ +{ + "id": 10270250, + "node_id": "MDEwOlJlcG9zaXRvcnkxMDI3MDI1MA==", + "name": "react", + "full_name": "facebook/react", + "private": false, + "owner": { + "login": "facebook", + "id": 69631, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY5NjMx", + "avatar_url": "https://avatars.githubusercontent.com/u/69631?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/facebook", + "html_url": "https://github.com/facebook", + "followers_url": "https://api.github.com/users/facebook/followers", + "following_url": "https://api.github.com/users/facebook/following{/other_user}", + "gists_url": "https://api.github.com/users/facebook/gists{/gist_id}", + "starred_url": "https://api.github.com/users/facebook/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/facebook/subscriptions", + "organizations_url": "https://api.github.com/users/facebook/orgs", + "repos_url": "https://api.github.com/users/facebook/repos", + "events_url": "https://api.github.com/users/facebook/events{/privacy}", + "received_events_url": "https://api.github.com/users/facebook/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/facebook/react", + "description": "The library for web and native user interfaces.", + "fork": false, + "url": "https://api.github.com/repos/facebook/react", + "forks_url": "https://api.github.com/repos/facebook/react/forks", + "keys_url": "https://api.github.com/repos/facebook/react/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/facebook/react/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/facebook/react/teams", + "hooks_url": "https://api.github.com/repos/facebook/react/hooks", + "issue_events_url": "https://api.github.com/repos/facebook/react/issues/events{/number}", + "events_url": "https://api.github.com/repos/facebook/react/events", + "assignees_url": "https://api.github.com/repos/facebook/react/assignees{/user}", + "branches_url": "https://api.github.com/repos/facebook/react/branches{/branch}", + "tags_url": "https://api.github.com/repos/facebook/react/tags", + "blobs_url": "https://api.github.com/repos/facebook/react/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/facebook/react/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/facebook/react/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/facebook/react/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/facebook/react/statuses/{sha}", + "languages_url": "https://api.github.com/repos/facebook/react/languages", + "stargazers_url": "https://api.github.com/repos/facebook/react/stargazers", + "contributors_url": "https://api.github.com/repos/facebook/react/contributors", + "subscribers_url": "https://api.github.com/repos/facebook/react/subscribers", + "subscription_url": "https://api.github.com/repos/facebook/react/subscription", + "commits_url": "https://api.github.com/repos/facebook/react/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/facebook/react/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/facebook/react/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/facebook/react/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/facebook/react/contents/{+path}", + "compare_url": "https://api.github.com/repos/facebook/react/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/facebook/react/merges", + "archive_url": "https://api.github.com/repos/facebook/react/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/facebook/react/downloads", + "issues_url": "https://api.github.com/repos/facebook/react/issues{/number}", + "pulls_url": "https://api.github.com/repos/facebook/react/pulls{/number}", + "milestones_url": "https://api.github.com/repos/facebook/react/milestones{/number}", + "notifications_url": "https://api.github.com/repos/facebook/react/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/facebook/react/labels{/name}", + "releases_url": "https://api.github.com/repos/facebook/react/releases{/id}", + "deployments_url": "https://api.github.com/repos/facebook/react/deployments", + "created_at": "2013-05-24T16:15:54Z", + "updated_at": "2025-11-06T03:17:29Z", + "pushed_at": "2025-11-05T21:57:26Z", + "git_url": "git://github.com/facebook/react.git", + "ssh_url": "git@github.com:facebook/react.git", + "clone_url": "https://github.com/facebook/react.git", + "svn_url": "https://github.com/facebook/react", + "homepage": "https://react.dev", + "size": 1212599, + "stargazers_count": 240343, + "watchers_count": 240343, + "language": "JavaScript", + "has_issues": true, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": false, + "forks_count": 49749, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1045, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "declarative", + "frontend", + "javascript", + "library", + "react", + "ui" + ], + "visibility": "public", + "forks": 49749, + "open_issues": 1045, + "watchers": 240343, + "default_branch": "main", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "facebook", + "id": 69631, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjY5NjMx", + "avatar_url": "https://avatars.githubusercontent.com/u/69631?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/facebook", + "html_url": "https://github.com/facebook", + "followers_url": "https://api.github.com/users/facebook/followers", + "following_url": "https://api.github.com/users/facebook/following{/other_user}", + "gists_url": "https://api.github.com/users/facebook/gists{/gist_id}", + "starred_url": "https://api.github.com/users/facebook/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/facebook/subscriptions", + "organizations_url": "https://api.github.com/users/facebook/orgs", + "repos_url": "https://api.github.com/users/facebook/repos", + "events_url": "https://api.github.com/users/facebook/events{/privacy}", + "received_events_url": "https://api.github.com/users/facebook/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 49749, + "subscribers_count": 6693 +} \ No newline at end of file diff --git a/github/repos_react.metadata.json b/github/repos_react.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..704091e082cb9dd822cfcdf1c1d47193f7c65058 --- /dev/null +++ b/github/repos_react.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_react", + "source": "github", + "collected_date": "2025-11-05T22:50:09.130655", + "size_bytes": 6708, + "description": "React repository info", + "url": "https://api.github.com/repos/facebook/react" +} \ No newline at end of file diff --git a/github/repos_rust.json b/github/repos_rust.json new file mode 100644 index 0000000000000000000000000000000000000000..49247524b1bcd1640f006c2e28e48ffd4beec727 --- /dev/null +++ b/github/repos_rust.json @@ -0,0 +1,136 @@ +{ + "id": 724712, + "node_id": "MDEwOlJlcG9zaXRvcnk3MjQ3MTI=", + "name": "rust", + "full_name": "rust-lang/rust", + "private": false, + "owner": { + "login": "rust-lang", + "id": 5430905, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0MzA5MDU=", + "avatar_url": "https://avatars.githubusercontent.com/u/5430905?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rust-lang", + "html_url": "https://github.com/rust-lang", + "followers_url": "https://api.github.com/users/rust-lang/followers", + "following_url": "https://api.github.com/users/rust-lang/following{/other_user}", + "gists_url": "https://api.github.com/users/rust-lang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rust-lang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rust-lang/subscriptions", + "organizations_url": "https://api.github.com/users/rust-lang/orgs", + "repos_url": "https://api.github.com/users/rust-lang/repos", + "events_url": "https://api.github.com/users/rust-lang/events{/privacy}", + "received_events_url": "https://api.github.com/users/rust-lang/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/rust-lang/rust", + "description": "Empowering everyone to build reliable and efficient software.", + "fork": false, + "url": "https://api.github.com/repos/rust-lang/rust", + "forks_url": "https://api.github.com/repos/rust-lang/rust/forks", + "keys_url": "https://api.github.com/repos/rust-lang/rust/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/rust-lang/rust/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/rust-lang/rust/teams", + "hooks_url": "https://api.github.com/repos/rust-lang/rust/hooks", + "issue_events_url": "https://api.github.com/repos/rust-lang/rust/issues/events{/number}", + "events_url": "https://api.github.com/repos/rust-lang/rust/events", + "assignees_url": "https://api.github.com/repos/rust-lang/rust/assignees{/user}", + "branches_url": "https://api.github.com/repos/rust-lang/rust/branches{/branch}", + "tags_url": "https://api.github.com/repos/rust-lang/rust/tags", + "blobs_url": "https://api.github.com/repos/rust-lang/rust/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/rust-lang/rust/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/rust-lang/rust/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/rust-lang/rust/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/rust-lang/rust/statuses/{sha}", + "languages_url": "https://api.github.com/repos/rust-lang/rust/languages", + "stargazers_url": "https://api.github.com/repos/rust-lang/rust/stargazers", + "contributors_url": "https://api.github.com/repos/rust-lang/rust/contributors", + "subscribers_url": "https://api.github.com/repos/rust-lang/rust/subscribers", + "subscription_url": "https://api.github.com/repos/rust-lang/rust/subscription", + "commits_url": "https://api.github.com/repos/rust-lang/rust/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/rust-lang/rust/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/rust-lang/rust/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/rust-lang/rust/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/rust-lang/rust/contents/{+path}", + "compare_url": "https://api.github.com/repos/rust-lang/rust/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/rust-lang/rust/merges", + "archive_url": "https://api.github.com/repos/rust-lang/rust/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/rust-lang/rust/downloads", + "issues_url": "https://api.github.com/repos/rust-lang/rust/issues{/number}", + "pulls_url": "https://api.github.com/repos/rust-lang/rust/pulls{/number}", + "milestones_url": "https://api.github.com/repos/rust-lang/rust/milestones{/number}", + "notifications_url": "https://api.github.com/repos/rust-lang/rust/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/rust-lang/rust/labels{/name}", + "releases_url": "https://api.github.com/repos/rust-lang/rust/releases{/id}", + "deployments_url": "https://api.github.com/repos/rust-lang/rust/deployments", + "created_at": "2010-06-16T20:39:03Z", + "updated_at": "2025-11-06T02:33:58Z", + "pushed_at": "2025-11-06T02:24:42Z", + "git_url": "git://github.com/rust-lang/rust.git", + "ssh_url": "git@github.com:rust-lang/rust.git", + "clone_url": "https://github.com/rust-lang/rust.git", + "svn_url": "https://github.com/rust-lang/rust", + "homepage": "https://www.rust-lang.org", + "size": 801827, + "stargazers_count": 107661, + "watchers_count": 107661, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 13940, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 11683, + "license": { + "key": "other", + "name": "Other", + "spdx_id": "NOASSERTION", + "url": null, + "node_id": "MDc6TGljZW5zZTA=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "compiler", + "language", + "rust" + ], + "visibility": "public", + "forks": 13940, + "open_issues": 11683, + "watchers": 107661, + "default_branch": "master", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "rust-lang", + "id": 5430905, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0MzA5MDU=", + "avatar_url": "https://avatars.githubusercontent.com/u/5430905?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rust-lang", + "html_url": "https://github.com/rust-lang", + "followers_url": "https://api.github.com/users/rust-lang/followers", + "following_url": "https://api.github.com/users/rust-lang/following{/other_user}", + "gists_url": "https://api.github.com/users/rust-lang/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rust-lang/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rust-lang/subscriptions", + "organizations_url": "https://api.github.com/users/rust-lang/orgs", + "repos_url": "https://api.github.com/users/rust-lang/repos", + "events_url": "https://api.github.com/users/rust-lang/events{/privacy}", + "received_events_url": "https://api.github.com/users/rust-lang/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 13940, + "subscribers_count": 1467 +} \ No newline at end of file diff --git a/github/repos_rust.metadata.json b/github/repos_rust.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..87dc2bf6c71d62afae941ac03f56e05afed5706d --- /dev/null +++ b/github/repos_rust.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_rust", + "source": "github", + "collected_date": "2025-11-05T22:50:15.772751", + "size_bytes": 6684, + "description": "Rust repository info", + "url": "https://api.github.com/repos/rust-lang/rust" +} \ No newline at end of file diff --git a/github/repos_tensorflow.json b/github/repos_tensorflow.json new file mode 100644 index 0000000000000000000000000000000000000000..ce78644d57995cc8a536c64a4bea8bbe3fd7923a --- /dev/null +++ b/github/repos_tensorflow.json @@ -0,0 +1,144 @@ +{ + "id": 45717250, + "node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==", + "name": "tensorflow", + "full_name": "tensorflow/tensorflow", + "private": false, + "owner": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/tensorflow/tensorflow", + "description": "An Open Source Machine Learning Framework for Everyone", + "fork": false, + "url": "https://api.github.com/repos/tensorflow/tensorflow", + "forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks", + "keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams", + "hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks", + "issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}", + "events_url": "https://api.github.com/repos/tensorflow/tensorflow/events", + "assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}", + "branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}", + "tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags", + "blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages", + "stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers", + "contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors", + "subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers", + "subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription", + "commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}", + "compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges", + "archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads", + "issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}", + "pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}", + "releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}", + "deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments", + "created_at": "2015-11-07T01:19:20Z", + "updated_at": "2025-11-06T01:52:45Z", + "pushed_at": "2025-11-06T03:49:40Z", + "git_url": "git://github.com/tensorflow/tensorflow.git", + "ssh_url": "git@github.com:tensorflow/tensorflow.git", + "clone_url": "https://github.com/tensorflow/tensorflow.git", + "svn_url": "https://github.com/tensorflow/tensorflow", + "homepage": "https://tensorflow.org", + "size": 1218255, + "stargazers_count": 192319, + "watchers_count": 192319, + "language": "C++", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 74957, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1988, + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdx_id": "Apache-2.0", + "url": "https://api.github.com/licenses/apache-2.0", + "node_id": "MDc6TGljZW5zZTI=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "deep-learning", + "deep-neural-networks", + "distributed", + "machine-learning", + "ml", + "neural-network", + "python", + "tensorflow" + ], + "visibility": "public", + "forks": 74957, + "open_issues": 1988, + "watchers": 192319, + "default_branch": "master", + "temp_clone_token": null, + "custom_properties": { + "requires_action_scanning": "true", + "requires_two_party_review": "false" + }, + "organization": { + "login": "tensorflow", + "id": 15658638, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4", + "avatar_url": "https://avatars.githubusercontent.com/u/15658638?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tensorflow", + "html_url": "https://github.com/tensorflow", + "followers_url": "https://api.github.com/users/tensorflow/followers", + "following_url": "https://api.github.com/users/tensorflow/following{/other_user}", + "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions", + "organizations_url": "https://api.github.com/users/tensorflow/orgs", + "repos_url": "https://api.github.com/users/tensorflow/repos", + "events_url": "https://api.github.com/users/tensorflow/events{/privacy}", + "received_events_url": "https://api.github.com/users/tensorflow/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 74957, + "subscribers_count": 7433 +} \ No newline at end of file diff --git a/github/repos_tensorflow.metadata.json b/github/repos_tensorflow.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..95426e26b1f9114f53e570304aec8965d102b707 --- /dev/null +++ b/github/repos_tensorflow.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_tensorflow", + "source": "github", + "collected_date": "2025-11-05T22:50:13.570026", + "size_bytes": 7266, + "description": "TensorFlow repository info", + "url": "https://api.github.com/repos/tensorflow/tensorflow" +} \ No newline at end of file diff --git a/github/repos_vscode.json b/github/repos_vscode.json new file mode 100644 index 0000000000000000000000000000000000000000..ddc546b8420fd5b4fe4c7f527811ac6b0525518a --- /dev/null +++ b/github/repos_vscode.json @@ -0,0 +1,144 @@ +{ + "id": 41881900, + "node_id": "MDEwOlJlcG9zaXRvcnk0MTg4MTkwMA==", + "name": "vscode", + "full_name": "microsoft/vscode", + "private": false, + "owner": { + "login": "microsoft", + "id": 6154722, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=", + "avatar_url": "https://avatars.githubusercontent.com/u/6154722?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/microsoft", + "html_url": "https://github.com/microsoft", + "followers_url": "https://api.github.com/users/microsoft/followers", + "following_url": "https://api.github.com/users/microsoft/following{/other_user}", + "gists_url": "https://api.github.com/users/microsoft/gists{/gist_id}", + "starred_url": "https://api.github.com/users/microsoft/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/microsoft/subscriptions", + "organizations_url": "https://api.github.com/users/microsoft/orgs", + "repos_url": "https://api.github.com/users/microsoft/repos", + "events_url": "https://api.github.com/users/microsoft/events{/privacy}", + "received_events_url": "https://api.github.com/users/microsoft/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/microsoft/vscode", + "description": "Visual Studio Code", + "fork": false, + "url": "https://api.github.com/repos/microsoft/vscode", + "forks_url": "https://api.github.com/repos/microsoft/vscode/forks", + "keys_url": "https://api.github.com/repos/microsoft/vscode/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/microsoft/vscode/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/microsoft/vscode/teams", + "hooks_url": "https://api.github.com/repos/microsoft/vscode/hooks", + "issue_events_url": "https://api.github.com/repos/microsoft/vscode/issues/events{/number}", + "events_url": "https://api.github.com/repos/microsoft/vscode/events", + "assignees_url": "https://api.github.com/repos/microsoft/vscode/assignees{/user}", + "branches_url": "https://api.github.com/repos/microsoft/vscode/branches{/branch}", + "tags_url": "https://api.github.com/repos/microsoft/vscode/tags", + "blobs_url": "https://api.github.com/repos/microsoft/vscode/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/microsoft/vscode/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/microsoft/vscode/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/microsoft/vscode/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/microsoft/vscode/statuses/{sha}", + "languages_url": "https://api.github.com/repos/microsoft/vscode/languages", + "stargazers_url": "https://api.github.com/repos/microsoft/vscode/stargazers", + "contributors_url": "https://api.github.com/repos/microsoft/vscode/contributors", + "subscribers_url": "https://api.github.com/repos/microsoft/vscode/subscribers", + "subscription_url": "https://api.github.com/repos/microsoft/vscode/subscription", + "commits_url": "https://api.github.com/repos/microsoft/vscode/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/microsoft/vscode/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/microsoft/vscode/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/microsoft/vscode/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/microsoft/vscode/contents/{+path}", + "compare_url": "https://api.github.com/repos/microsoft/vscode/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/microsoft/vscode/merges", + "archive_url": "https://api.github.com/repos/microsoft/vscode/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/microsoft/vscode/downloads", + "issues_url": "https://api.github.com/repos/microsoft/vscode/issues{/number}", + "pulls_url": "https://api.github.com/repos/microsoft/vscode/pulls{/number}", + "milestones_url": "https://api.github.com/repos/microsoft/vscode/milestones{/number}", + "notifications_url": "https://api.github.com/repos/microsoft/vscode/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/microsoft/vscode/labels{/name}", + "releases_url": "https://api.github.com/repos/microsoft/vscode/releases{/id}", + "deployments_url": "https://api.github.com/repos/microsoft/vscode/deployments", + "created_at": "2015-09-03T20:23:38Z", + "updated_at": "2025-11-06T03:12:53Z", + "pushed_at": "2025-11-06T03:01:24Z", + "git_url": "git://github.com/microsoft/vscode.git", + "ssh_url": "git@github.com:microsoft/vscode.git", + "clone_url": "https://github.com/microsoft/vscode.git", + "svn_url": "https://github.com/microsoft/vscode", + "homepage": "https://code.visualstudio.com", + "size": 1078794, + "stargazers_count": 178248, + "watchers_count": 178248, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 35964, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 14618, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "editor", + "electron", + "microsoft", + "typescript", + "visual-studio-code" + ], + "visibility": "public", + "forks": 35964, + "open_issues": 14618, + "watchers": 178248, + "default_branch": "main", + "temp_clone_token": null, + "custom_properties": { + "activeRepoStatus": "true", + "durableOwnershipDisable": "false", + "durableOwnershipNextCheckDate": "2024-04-19T05:10:48.521Z", + "durableOwnershipWarn": "false", + "global-rulesets-opt-out": "false" + }, + "organization": { + "login": "microsoft", + "id": 6154722, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYxNTQ3MjI=", + "avatar_url": "https://avatars.githubusercontent.com/u/6154722?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/microsoft", + "html_url": "https://github.com/microsoft", + "followers_url": "https://api.github.com/users/microsoft/followers", + "following_url": "https://api.github.com/users/microsoft/following{/other_user}", + "gists_url": "https://api.github.com/users/microsoft/gists{/gist_id}", + "starred_url": "https://api.github.com/users/microsoft/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/microsoft/subscriptions", + "organizations_url": "https://api.github.com/users/microsoft/orgs", + "repos_url": "https://api.github.com/users/microsoft/repos", + "events_url": "https://api.github.com/users/microsoft/events{/privacy}", + "received_events_url": "https://api.github.com/users/microsoft/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 35964, + "subscribers_count": 3365 +} \ No newline at end of file diff --git a/github/repos_vscode.metadata.json b/github/repos_vscode.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8986a5fbe03b917d09bde299d584a30fba14f461 --- /dev/null +++ b/github/repos_vscode.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_vscode", + "source": "github", + "collected_date": "2025-11-05T22:50:11.332531", + "size_bytes": 7035, + "description": "VS Code repository info", + "url": "https://api.github.com/repos/microsoft/vscode" +} \ No newline at end of file diff --git a/github/repos_vue.json b/github/repos_vue.json new file mode 100644 index 0000000000000000000000000000000000000000..675df22ab5df218e0e02ef8f5d3ef9f50b6a4e18 --- /dev/null +++ b/github/repos_vue.json @@ -0,0 +1,137 @@ +{ + "id": 11730342, + "node_id": "MDEwOlJlcG9zaXRvcnkxMTczMDM0Mg==", + "name": "vue", + "full_name": "vuejs/vue", + "private": false, + "owner": { + "login": "vuejs", + "id": 6128107, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYxMjgxMDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/6128107?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vuejs", + "html_url": "https://github.com/vuejs", + "followers_url": "https://api.github.com/users/vuejs/followers", + "following_url": "https://api.github.com/users/vuejs/following{/other_user}", + "gists_url": "https://api.github.com/users/vuejs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vuejs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vuejs/subscriptions", + "organizations_url": "https://api.github.com/users/vuejs/orgs", + "repos_url": "https://api.github.com/users/vuejs/repos", + "events_url": "https://api.github.com/users/vuejs/events{/privacy}", + "received_events_url": "https://api.github.com/users/vuejs/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "html_url": "https://github.com/vuejs/vue", + "description": "This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core", + "fork": false, + "url": "https://api.github.com/repos/vuejs/vue", + "forks_url": "https://api.github.com/repos/vuejs/vue/forks", + "keys_url": "https://api.github.com/repos/vuejs/vue/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/vuejs/vue/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/vuejs/vue/teams", + "hooks_url": "https://api.github.com/repos/vuejs/vue/hooks", + "issue_events_url": "https://api.github.com/repos/vuejs/vue/issues/events{/number}", + "events_url": "https://api.github.com/repos/vuejs/vue/events", + "assignees_url": "https://api.github.com/repos/vuejs/vue/assignees{/user}", + "branches_url": "https://api.github.com/repos/vuejs/vue/branches{/branch}", + "tags_url": "https://api.github.com/repos/vuejs/vue/tags", + "blobs_url": "https://api.github.com/repos/vuejs/vue/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/vuejs/vue/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/vuejs/vue/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/vuejs/vue/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/vuejs/vue/statuses/{sha}", + "languages_url": "https://api.github.com/repos/vuejs/vue/languages", + "stargazers_url": "https://api.github.com/repos/vuejs/vue/stargazers", + "contributors_url": "https://api.github.com/repos/vuejs/vue/contributors", + "subscribers_url": "https://api.github.com/repos/vuejs/vue/subscribers", + "subscription_url": "https://api.github.com/repos/vuejs/vue/subscription", + "commits_url": "https://api.github.com/repos/vuejs/vue/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/vuejs/vue/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/vuejs/vue/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/vuejs/vue/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/vuejs/vue/contents/{+path}", + "compare_url": "https://api.github.com/repos/vuejs/vue/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/vuejs/vue/merges", + "archive_url": "https://api.github.com/repos/vuejs/vue/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/vuejs/vue/downloads", + "issues_url": "https://api.github.com/repos/vuejs/vue/issues{/number}", + "pulls_url": "https://api.github.com/repos/vuejs/vue/pulls{/number}", + "milestones_url": "https://api.github.com/repos/vuejs/vue/milestones{/number}", + "notifications_url": "https://api.github.com/repos/vuejs/vue/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/vuejs/vue/labels{/name}", + "releases_url": "https://api.github.com/repos/vuejs/vue/releases{/id}", + "deployments_url": "https://api.github.com/repos/vuejs/vue/deployments", + "created_at": "2013-07-29T03:24:51Z", + "updated_at": "2025-11-06T03:31:47Z", + "pushed_at": "2024-10-10T07:24:15Z", + "git_url": "git://github.com/vuejs/vue.git", + "ssh_url": "git@github.com:vuejs/vue.git", + "clone_url": "https://github.com/vuejs/vue.git", + "svn_url": "https://github.com/vuejs/vue", + "homepage": "http://v2.vuejs.org", + "size": 32152, + "stargazers_count": 209665, + "watchers_count": 209665, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 33799, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 610, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": false, + "topics": [ + "framework", + "frontend", + "javascript", + "vue" + ], + "visibility": "public", + "forks": 33799, + "open_issues": 610, + "watchers": 209665, + "default_branch": "main", + "temp_clone_token": null, + "custom_properties": {}, + "organization": { + "login": "vuejs", + "id": 6128107, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjYxMjgxMDc=", + "avatar_url": "https://avatars.githubusercontent.com/u/6128107?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/vuejs", + "html_url": "https://github.com/vuejs", + "followers_url": "https://api.github.com/users/vuejs/followers", + "following_url": "https://api.github.com/users/vuejs/following{/other_user}", + "gists_url": "https://api.github.com/users/vuejs/gists{/gist_id}", + "starred_url": "https://api.github.com/users/vuejs/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/vuejs/subscriptions", + "organizations_url": "https://api.github.com/users/vuejs/orgs", + "repos_url": "https://api.github.com/users/vuejs/repos", + "events_url": "https://api.github.com/users/vuejs/events{/privacy}", + "received_events_url": "https://api.github.com/users/vuejs/received_events", + "type": "Organization", + "user_view_type": "public", + "site_admin": false + }, + "network_count": 33799, + "subscribers_count": 5785 +} \ No newline at end of file diff --git a/github/repos_vue.metadata.json b/github/repos_vue.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..977f47b3a83b172f85ab7c62426f55025196d6b0 --- /dev/null +++ b/github/repos_vue.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_repos_vue", + "source": "github", + "collected_date": "2025-11-05T22:50:26.745892", + "size_bytes": 6429, + "description": "Vue.js repository info", + "url": "https://api.github.com/repos/vuejs/vue" +} \ No newline at end of file diff --git a/github/user_dhh.json b/github/user_dhh.json new file mode 100644 index 0000000000000000000000000000000000000000..c629e49a21a183183e094e402d06b51bed5458ab --- /dev/null +++ b/github/user_dhh.json @@ -0,0 +1,35 @@ +{ + "login": "dhh", + "id": 2741, + "node_id": "MDQ6VXNlcjI3NDE=", + "avatar_url": "https://avatars.githubusercontent.com/u/2741?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dhh", + "html_url": "https://github.com/dhh", + "followers_url": "https://api.github.com/users/dhh/followers", + "following_url": "https://api.github.com/users/dhh/following{/other_user}", + "gists_url": "https://api.github.com/users/dhh/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dhh/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dhh/subscriptions", + "organizations_url": "https://api.github.com/users/dhh/orgs", + "repos_url": "https://api.github.com/users/dhh/repos", + "events_url": "https://api.github.com/users/dhh/events{/privacy}", + "received_events_url": "https://api.github.com/users/dhh/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "David Heinemeier Hansson", + "company": "37signals", + "blog": "https://dhh.dk", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": "dhh", + "public_repos": 4, + "public_gists": 55, + "followers": 23396, + "following": 0, + "created_at": "2008-03-10T17:53:51Z", + "updated_at": "2025-11-03T07:32:39Z" +} \ No newline at end of file diff --git a/github/user_dhh.metadata.json b/github/user_dhh.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9bbd7933a5bdfc9ffed6a04608e37117ffc06b5e --- /dev/null +++ b/github/user_dhh.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_user_dhh", + "source": "github", + "collected_date": "2025-11-05T22:50:33.105734", + "size_bytes": 1294, + "description": "David Heinemeier Hansson profile", + "url": "https://api.github.com/users/dhh" +} \ No newline at end of file diff --git a/github/user_getify.json b/github/user_getify.json new file mode 100644 index 0000000000000000000000000000000000000000..1a8a4e1850b3567b66533c8bfbe450c2c5e2c129 --- /dev/null +++ b/github/user_getify.json @@ -0,0 +1,35 @@ +{ + "login": "getify", + "id": 150330, + "node_id": "MDQ6VXNlcjE1MDMzMA==", + "avatar_url": "https://avatars.githubusercontent.com/u/150330?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/getify", + "html_url": "https://github.com/getify", + "followers_url": "https://api.github.com/users/getify/followers", + "following_url": "https://api.github.com/users/getify/following{/other_user}", + "gists_url": "https://api.github.com/users/getify/gists{/gist_id}", + "starred_url": "https://api.github.com/users/getify/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/getify/subscriptions", + "organizations_url": "https://api.github.com/users/getify/orgs", + "repos_url": "https://api.github.com/users/getify/repos", + "events_url": "https://api.github.com/users/getify/events{/privacy}", + "received_events_url": "https://api.github.com/users/getify/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Kyle Simpson", + "company": "Getify Solutions", + "blog": "http://getify.me", + "location": "Austin, TX", + "email": null, + "hireable": true, + "bio": "Kyle Simpson is a Human-Centric Technologist. He's fighting for the people behind the pixels.", + "twitter_username": null, + "public_repos": 73, + "public_gists": 411, + "followers": 44890, + "following": 2, + "created_at": "2009-11-08T06:56:21Z", + "updated_at": "2025-10-08T08:03:03Z" +} \ No newline at end of file diff --git a/github/user_getify.metadata.json b/github/user_getify.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..13a605f43356ef0e34b575e0c44082f07cce8796 --- /dev/null +++ b/github/user_getify.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_user_getify", + "source": "github", + "collected_date": "2025-11-05T22:50:35.232792", + "size_bytes": 1435, + "description": "Kyle Simpson profile", + "url": "https://api.github.com/users/getify" +} \ No newline at end of file diff --git a/github/user_gvanrossum.json b/github/user_gvanrossum.json new file mode 100644 index 0000000000000000000000000000000000000000..02b6c6fc98693ec5e4369d1eb696164333478cef --- /dev/null +++ b/github/user_gvanrossum.json @@ -0,0 +1,35 @@ +{ + "login": "gvanrossum", + "id": 2894642, + "node_id": "MDQ6VXNlcjI4OTQ2NDI=", + "avatar_url": "https://avatars.githubusercontent.com/u/2894642?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/gvanrossum", + "html_url": "https://github.com/gvanrossum", + "followers_url": "https://api.github.com/users/gvanrossum/followers", + "following_url": "https://api.github.com/users/gvanrossum/following{/other_user}", + "gists_url": "https://api.github.com/users/gvanrossum/gists{/gist_id}", + "starred_url": "https://api.github.com/users/gvanrossum/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/gvanrossum/subscriptions", + "organizations_url": "https://api.github.com/users/gvanrossum/orgs", + "repos_url": "https://api.github.com/users/gvanrossum/repos", + "events_url": "https://api.github.com/users/gvanrossum/events{/privacy}", + "received_events_url": "https://api.github.com/users/gvanrossum/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Guido van Rossum", + "company": "Microsoft", + "blog": "https://python.org/~guido/", + "location": "San Francisco Bay Area", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": "gvanrossum", + "public_repos": 26, + "public_gists": 12, + "followers": 25092, + "following": 5, + "created_at": "2012-11-26T18:46:40Z", + "updated_at": "2025-10-24T01:46:34Z" +} \ No newline at end of file diff --git a/github/user_gvanrossum.metadata.json b/github/user_gvanrossum.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..94e5cb99261d97a8a3e86748f3f5a93f6ce51c0d --- /dev/null +++ b/github/user_gvanrossum.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_user_gvanrossum", + "source": "github", + "collected_date": "2025-11-05T22:50:30.972016", + "size_bytes": 1420, + "description": "Guido van Rossum profile", + "url": "https://api.github.com/users/gvanrossum" +} \ No newline at end of file diff --git a/github/user_tj.json b/github/user_tj.json new file mode 100644 index 0000000000000000000000000000000000000000..5541c61e74441adcf98f7495304e02d9828c97cf --- /dev/null +++ b/github/user_tj.json @@ -0,0 +1,35 @@ +{ + "login": "tj", + "id": 25254, + "node_id": "MDQ6VXNlcjI1MjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/25254?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tj", + "html_url": "https://github.com/tj", + "followers_url": "https://api.github.com/users/tj/followers", + "following_url": "https://api.github.com/users/tj/following{/other_user}", + "gists_url": "https://api.github.com/users/tj/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tj/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tj/subscriptions", + "organizations_url": "https://api.github.com/users/tj/orgs", + "repos_url": "https://api.github.com/users/tj/repos", + "events_url": "https://api.github.com/users/tj/events{/privacy}", + "received_events_url": "https://api.github.com/users/tj/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "TJ", + "company": "Apex", + "blog": "", + "location": null, + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 296, + "public_gists": 551, + "followers": 51427, + "following": 45, + "created_at": "2008-09-18T22:37:28Z", + "updated_at": "2025-03-06T12:26:13Z" +} \ No newline at end of file diff --git a/github/user_tj.metadata.json b/github/user_tj.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..4229eba226d7dd5bdc91b6a41721c9447ffbf84d --- /dev/null +++ b/github/user_tj.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_user_tj", + "source": "github", + "collected_date": "2025-11-05T22:50:37.356555", + "size_bytes": 1246, + "description": "TJ Holowaychuk profile", + "url": "https://api.github.com/users/tj" +} \ No newline at end of file diff --git a/github/user_torvalds.json b/github/user_torvalds.json new file mode 100644 index 0000000000000000000000000000000000000000..99833a4682bbeb1ea1602a472bc386232ae0a894 --- /dev/null +++ b/github/user_torvalds.json @@ -0,0 +1,35 @@ +{ + "login": "torvalds", + "id": 1024025, + "node_id": "MDQ6VXNlcjEwMjQwMjU=", + "avatar_url": "https://avatars.githubusercontent.com/u/1024025?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/torvalds", + "html_url": "https://github.com/torvalds", + "followers_url": "https://api.github.com/users/torvalds/followers", + "following_url": "https://api.github.com/users/torvalds/following{/other_user}", + "gists_url": "https://api.github.com/users/torvalds/gists{/gist_id}", + "starred_url": "https://api.github.com/users/torvalds/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/torvalds/subscriptions", + "organizations_url": "https://api.github.com/users/torvalds/orgs", + "repos_url": "https://api.github.com/users/torvalds/repos", + "events_url": "https://api.github.com/users/torvalds/events{/privacy}", + "received_events_url": "https://api.github.com/users/torvalds/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false, + "name": "Linus Torvalds", + "company": "Linux Foundation", + "blog": "", + "location": "Portland, OR", + "email": null, + "hireable": null, + "bio": null, + "twitter_username": null, + "public_repos": 9, + "public_gists": 1, + "followers": 254559, + "following": 0, + "created_at": "2011-09-03T15:26:22Z", + "updated_at": "2025-08-08T04:20:10Z" +} \ No newline at end of file diff --git a/github/user_torvalds.metadata.json b/github/user_torvalds.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..fd9479fe6bf2ec0bf60967b7978b31b53c22f914 --- /dev/null +++ b/github/user_torvalds.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "github_user_torvalds", + "source": "github", + "collected_date": "2025-11-05T22:50:28.855868", + "size_bytes": 1356, + "description": "Linus Torvalds profile", + "url": "https://api.github.com/users/torvalds" +} \ No newline at end of file diff --git a/jsonplaceholder/albums.json b/jsonplaceholder/albums.json new file mode 100644 index 0000000000000000000000000000000000000000..826d40bc12f0a50366d8e0a9634b26143027b941 --- /dev/null +++ b/jsonplaceholder/albums.json @@ -0,0 +1,502 @@ +[ + { + "userId": 1, + "id": 1, + "title": "quidem molestiae enim" + }, + { + "userId": 1, + "id": 2, + "title": "sunt qui excepturi placeat culpa" + }, + { + "userId": 1, + "id": 3, + "title": "omnis laborum odio" + }, + { + "userId": 1, + "id": 4, + "title": "non esse culpa molestiae omnis sed optio" + }, + { + "userId": 1, + "id": 5, + "title": "eaque aut omnis a" + }, + { + "userId": 1, + "id": 6, + "title": "natus impedit quibusdam illo est" + }, + { + "userId": 1, + "id": 7, + "title": "quibusdam autem aliquid et et quia" + }, + { + "userId": 1, + "id": 8, + "title": "qui fuga est a eum" + }, + { + "userId": 1, + "id": 9, + "title": "saepe unde necessitatibus rem" + }, + { + "userId": 1, + "id": 10, + "title": "distinctio laborum qui" + }, + { + "userId": 2, + "id": 11, + "title": "quam nostrum impedit mollitia quod et dolor" + }, + { + "userId": 2, + "id": 12, + "title": "consequatur autem doloribus natus consectetur" + }, + { + "userId": 2, + "id": 13, + "title": "ab rerum non rerum consequatur ut ea unde" + }, + { + "userId": 2, + "id": 14, + "title": "ducimus molestias eos animi atque nihil" + }, + { + "userId": 2, + "id": 15, + "title": "ut pariatur rerum ipsum natus repellendus praesentium" + }, + { + "userId": 2, + "id": 16, + "title": "voluptatem aut maxime inventore autem magnam atque repellat" + }, + { + "userId": 2, + "id": 17, + "title": "aut minima voluptatem ut velit" + }, + { + "userId": 2, + "id": 18, + "title": "nesciunt quia et doloremque" + }, + { + "userId": 2, + "id": 19, + "title": "velit pariatur quaerat similique libero omnis quia" + }, + { + "userId": 2, + "id": 20, + "title": "voluptas rerum iure ut enim" + }, + { + "userId": 3, + "id": 21, + "title": "repudiandae voluptatem optio est consequatur rem in temporibus et" + }, + { + "userId": 3, + "id": 22, + "title": "et rem non provident vel ut" + }, + { + "userId": 3, + "id": 23, + "title": "incidunt quisquam hic adipisci sequi" + }, + { + "userId": 3, + "id": 24, + "title": "dolores ut et facere placeat" + }, + { + "userId": 3, + "id": 25, + "title": "vero maxime id possimus sunt neque et consequatur" + }, + { + "userId": 3, + "id": 26, + "title": "quibusdam saepe ipsa vel harum" + }, + { + "userId": 3, + "id": 27, + "title": "id non nostrum expedita" + }, + { + "userId": 3, + "id": 28, + "title": "omnis neque exercitationem sed dolor atque maxime aut cum" + }, + { + "userId": 3, + "id": 29, + "title": "inventore ut quasi magnam itaque est fugit" + }, + { + "userId": 3, + "id": 30, + "title": "tempora assumenda et similique odit distinctio error" + }, + { + "userId": 4, + "id": 31, + "title": "adipisci laborum fuga laboriosam" + }, + { + "userId": 4, + "id": 32, + "title": "reiciendis dolores a ut qui debitis non quo labore" + }, + { + "userId": 4, + "id": 33, + "title": "iste eos nostrum" + }, + { + "userId": 4, + "id": 34, + "title": "cumque voluptatibus rerum architecto blanditiis" + }, + { + "userId": 4, + "id": 35, + "title": "et impedit nisi quae magni necessitatibus sed aut pariatur" + }, + { + "userId": 4, + "id": 36, + "title": "nihil cupiditate voluptate neque" + }, + { + "userId": 4, + "id": 37, + "title": "est placeat dicta ut nisi rerum iste" + }, + { + "userId": 4, + "id": 38, + "title": "unde a sequi id" + }, + { + "userId": 4, + "id": 39, + "title": "ratione porro illum labore eum aperiam sed" + }, + { + "userId": 4, + "id": 40, + "title": "voluptas neque et sint aut quo odit" + }, + { + "userId": 5, + "id": 41, + "title": "ea voluptates maiores eos accusantium officiis tempore mollitia consequatur" + }, + { + "userId": 5, + "id": 42, + "title": "tenetur explicabo ea" + }, + { + "userId": 5, + "id": 43, + "title": "aperiam doloremque nihil" + }, + { + "userId": 5, + "id": 44, + "title": "sapiente cum numquam officia consequatur vel natus quos suscipit" + }, + { + "userId": 5, + "id": 45, + "title": "tenetur quos ea unde est enim corrupti qui" + }, + { + "userId": 5, + "id": 46, + "title": "molestiae voluptate non" + }, + { + "userId": 5, + "id": 47, + "title": "temporibus molestiae aut" + }, + { + "userId": 5, + "id": 48, + "title": "modi consequatur culpa aut quam soluta alias perspiciatis laudantium" + }, + { + "userId": 5, + "id": 49, + "title": "ut aut vero repudiandae voluptas ullam voluptas at consequatur" + }, + { + "userId": 5, + "id": 50, + "title": "sed qui sed quas sit ducimus dolor" + }, + { + "userId": 6, + "id": 51, + "title": "odit laboriosam sint quia cupiditate animi quis" + }, + { + "userId": 6, + "id": 52, + "title": "necessitatibus quas et sunt at voluptatem" + }, + { + "userId": 6, + "id": 53, + "title": "est vel sequi voluptatem nemo quam molestiae modi enim" + }, + { + "userId": 6, + "id": 54, + "title": "aut non illo amet perferendis" + }, + { + "userId": 6, + "id": 55, + "title": "qui culpa itaque omnis in nesciunt architecto error" + }, + { + "userId": 6, + "id": 56, + "title": "omnis qui maiores tempora officiis omnis rerum sed repellat" + }, + { + "userId": 6, + "id": 57, + "title": "libero excepturi voluptatem est architecto quae voluptatum officia tempora" + }, + { + "userId": 6, + "id": 58, + "title": "nulla illo consequatur aspernatur veritatis aut error delectus et" + }, + { + "userId": 6, + "id": 59, + "title": "eligendi similique provident nihil" + }, + { + "userId": 6, + "id": 60, + "title": "omnis mollitia sunt aliquid eum consequatur fugit minus laudantium" + }, + { + "userId": 7, + "id": 61, + "title": "delectus iusto et" + }, + { + "userId": 7, + "id": 62, + "title": "eos ea non recusandae iste ut quasi" + }, + { + "userId": 7, + "id": 63, + "title": "velit est quam" + }, + { + "userId": 7, + "id": 64, + "title": "autem voluptatem amet iure quae" + }, + { + "userId": 7, + "id": 65, + "title": "voluptates delectus iure iste qui" + }, + { + "userId": 7, + "id": 66, + "title": "velit sed quia dolor dolores delectus" + }, + { + "userId": 7, + "id": 67, + "title": "ad voluptas nostrum et nihil" + }, + { + "userId": 7, + "id": 68, + "title": "qui quasi nihil aut voluptatum sit dolore minima" + }, + { + "userId": 7, + "id": 69, + "title": "qui aut est" + }, + { + "userId": 7, + "id": 70, + "title": "et deleniti unde" + }, + { + "userId": 8, + "id": 71, + "title": "et vel corporis" + }, + { + "userId": 8, + "id": 72, + "title": "unde exercitationem ut" + }, + { + "userId": 8, + "id": 73, + "title": "quos omnis officia" + }, + { + "userId": 8, + "id": 74, + "title": "quia est eius vitae dolor" + }, + { + "userId": 8, + "id": 75, + "title": "aut quia expedita non" + }, + { + "userId": 8, + "id": 76, + "title": "dolorem magnam facere itaque ut reprehenderit tenetur corrupti" + }, + { + "userId": 8, + "id": 77, + "title": "cupiditate sapiente maiores iusto ducimus cum excepturi veritatis quia" + }, + { + "userId": 8, + "id": 78, + "title": "est minima eius possimus ea ratione velit et" + }, + { + "userId": 8, + "id": 79, + "title": "ipsa quae voluptas natus ut suscipit soluta quia quidem" + }, + { + "userId": 8, + "id": 80, + "title": "id nihil reprehenderit" + }, + { + "userId": 9, + "id": 81, + "title": "quibusdam sapiente et" + }, + { + "userId": 9, + "id": 82, + "title": "recusandae consequatur vel amet unde" + }, + { + "userId": 9, + "id": 83, + "title": "aperiam odio fugiat" + }, + { + "userId": 9, + "id": 84, + "title": "est et at eos expedita" + }, + { + "userId": 9, + "id": 85, + "title": "qui voluptatem consequatur aut ab quis temporibus praesentium" + }, + { + "userId": 9, + "id": 86, + "title": "eligendi mollitia alias aspernatur vel ut iusto" + }, + { + "userId": 9, + "id": 87, + "title": "aut aut architecto" + }, + { + "userId": 9, + "id": 88, + "title": "quas perspiciatis optio" + }, + { + "userId": 9, + "id": 89, + "title": "sit optio id voluptatem est eum et" + }, + { + "userId": 9, + "id": 90, + "title": "est vel dignissimos" + }, + { + "userId": 10, + "id": 91, + "title": "repellendus praesentium debitis officiis" + }, + { + "userId": 10, + "id": 92, + "title": "incidunt et et eligendi assumenda soluta quia recusandae" + }, + { + "userId": 10, + "id": 93, + "title": "nisi qui dolores perspiciatis" + }, + { + "userId": 10, + "id": 94, + "title": "quisquam a dolores et earum vitae" + }, + { + "userId": 10, + "id": 95, + "title": "consectetur vel rerum qui aperiam modi eos aspernatur ipsa" + }, + { + "userId": 10, + "id": 96, + "title": "unde et ut molestiae est molestias voluptatem sint" + }, + { + "userId": 10, + "id": 97, + "title": "est quod aut" + }, + { + "userId": 10, + "id": 98, + "title": "omnis quia possimus nesciunt deleniti assumenda sed autem" + }, + { + "userId": 10, + "id": 99, + "title": "consectetur ut id impedit dolores sit ad ex aut" + }, + { + "userId": 10, + "id": 100, + "title": "enim repellat iste" + } +] \ No newline at end of file diff --git a/jsonplaceholder/albums.metadata.json b/jsonplaceholder/albums.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..13fde3242f2b10cb02d20b584bf2b6cd3adadde0 --- /dev/null +++ b/jsonplaceholder/albums.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_albums", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:15.520157", + "size_bytes": 9333, + "description": "All photo albums", + "url": "https://jsonplaceholder.typicode.com/albums" +} \ No newline at end of file diff --git a/jsonplaceholder/comments.json b/jsonplaceholder/comments.json new file mode 100644 index 0000000000000000000000000000000000000000..0d7ba4cd0e1014522195c61c25b869b53c7f57ef --- /dev/null +++ b/jsonplaceholder/comments.json @@ -0,0 +1,3502 @@ +[ + { + "postId": 1, + "id": 1, + "name": "id labore ex et quam laborum", + "email": "Eliseo@gardner.biz", + "body": "laudantium enim quasi est quidem magnam voluptate ipsam eos\ntempora quo necessitatibus\ndolor quam autem quasi\nreiciendis et nam sapiente accusantium" + }, + { + "postId": 1, + "id": 2, + "name": "quo vero reiciendis velit similique earum", + "email": "Jayne_Kuhic@sydney.com", + "body": "est natus enim nihil est dolore omnis voluptatem numquam\net omnis occaecati quod ullam at\nvoluptatem error expedita pariatur\nnihil sint nostrum voluptatem reiciendis et" + }, + { + "postId": 1, + "id": 3, + "name": "odio adipisci rerum aut animi", + "email": "Nikita@garfield.biz", + "body": "quia molestiae reprehenderit quasi aspernatur\naut expedita occaecati aliquam eveniet laudantium\nomnis quibusdam delectus saepe quia accusamus maiores nam est\ncum et ducimus et vero voluptates excepturi deleniti ratione" + }, + { + "postId": 1, + "id": 4, + "name": "alias odio sit", + "email": "Lew@alysha.tv", + "body": "non et atque\noccaecati deserunt quas accusantium unde odit nobis qui voluptatem\nquia voluptas consequuntur itaque dolor\net qui rerum deleniti ut occaecati" + }, + { + "postId": 1, + "id": 5, + "name": "vero eaque aliquid doloribus et culpa", + "email": "Hayden@althea.biz", + "body": "harum non quasi et ratione\ntempore iure ex voluptates in ratione\nharum architecto fugit inventore cupiditate\nvoluptates magni quo et" + }, + { + "postId": 2, + "id": 6, + "name": "et fugit eligendi deleniti quidem qui sint nihil autem", + "email": "Presley.Mueller@myrl.com", + "body": "doloribus at sed quis culpa deserunt consectetur qui praesentium\naccusamus fugiat dicta\nvoluptatem rerum ut voluptate autem\nvoluptatem repellendus aspernatur dolorem in" + }, + { + "postId": 2, + "id": 7, + "name": "repellat consequatur praesentium vel minus molestias voluptatum", + "email": "Dallas@ole.me", + "body": "maiores sed dolores similique labore et inventore et\nquasi temporibus esse sunt id et\neos voluptatem aliquam\naliquid ratione corporis molestiae mollitia quia et magnam dolor" + }, + { + "postId": 2, + "id": 8, + "name": "et omnis dolorem", + "email": "Mallory_Kunze@marie.org", + "body": "ut voluptatem corrupti velit\nad voluptatem maiores\net nisi velit vero accusamus maiores\nvoluptates quia aliquid ullam eaque" + }, + { + "postId": 2, + "id": 9, + "name": "provident id voluptas", + "email": "Meghan_Littel@rene.us", + "body": "sapiente assumenda molestiae atque\nadipisci laborum distinctio aperiam et ab ut omnis\net occaecati aspernatur odit sit rem expedita\nquas enim ipsam minus" + }, + { + "postId": 2, + "id": 10, + "name": "eaque et deleniti atque tenetur ut quo ut", + "email": "Carmen_Keeling@caroline.name", + "body": "voluptate iusto quis nobis reprehenderit ipsum amet nulla\nquia quas dolores velit et non\naut quia necessitatibus\nnostrum quaerat nulla et accusamus nisi facilis" + }, + { + "postId": 3, + "id": 11, + "name": "fugit labore quia mollitia quas deserunt nostrum sunt", + "email": "Veronica_Goodwin@timmothy.net", + "body": "ut dolorum nostrum id quia aut est\nfuga est inventore vel eligendi explicabo quis consectetur\naut occaecati repellat id natus quo est\nut blanditiis quia ut vel ut maiores ea" + }, + { + "postId": 3, + "id": 12, + "name": "modi ut eos dolores illum nam dolor", + "email": "Oswald.Vandervort@leanne.org", + "body": "expedita maiores dignissimos facilis\nipsum est rem est fugit velit sequi\neum odio dolores dolor totam\noccaecati ratione eius rem velit" + }, + { + "postId": 3, + "id": 13, + "name": "aut inventore non pariatur sit vitae voluptatem sapiente", + "email": "Kariane@jadyn.tv", + "body": "fuga eos qui dolor rerum\ninventore corporis exercitationem\ncorporis cupiditate et deserunt recusandae est sed quis culpa\neum maiores corporis et" + }, + { + "postId": 3, + "id": 14, + "name": "et officiis id praesentium hic aut ipsa dolorem repudiandae", + "email": "Nathan@solon.io", + "body": "vel quae voluptas qui exercitationem\nvoluptatibus unde sed\nminima et qui ipsam aspernatur\nexpedita magnam laudantium et et quaerat ut qui dolorum" + }, + { + "postId": 3, + "id": 15, + "name": "debitis magnam hic odit aut ullam nostrum tenetur", + "email": "Maynard.Hodkiewicz@roberta.com", + "body": "nihil ut voluptates blanditiis autem odio dicta rerum\nquisquam saepe et est\nsunt quasi nemo laudantium deserunt\nmolestias tempora quo quia" + }, + { + "postId": 4, + "id": 16, + "name": "perferendis temporibus delectus optio ea eum ratione dolorum", + "email": "Christine@ayana.info", + "body": "iste ut laborum aliquid velit facere itaque\nquo ut soluta dicta voluptate\nerror tempore aut et\nsequi reiciendis dignissimos expedita consequuntur libero sed fugiat facilis" + }, + { + "postId": 4, + "id": 17, + "name": "eos est animi quis", + "email": "Preston_Hudson@blaise.tv", + "body": "consequatur necessitatibus totam sed sit dolorum\nrecusandae quae odio excepturi voluptatum harum voluptas\nquisquam sit ad eveniet delectus\ndoloribus odio qui non labore" + }, + { + "postId": 4, + "id": 18, + "name": "aut et tenetur ducimus illum aut nulla ab", + "email": "Vincenza_Klocko@albertha.name", + "body": "veritatis voluptates necessitatibus maiores corrupti\nneque et exercitationem amet sit et\nullam velit sit magnam laborum\nmagni ut molestias" + }, + { + "postId": 4, + "id": 19, + "name": "sed impedit rerum quia et et inventore unde officiis", + "email": "Madelynn.Gorczany@darion.biz", + "body": "doloribus est illo sed minima aperiam\nut dignissimos accusantium tempore atque et aut molestiae\nmagni ut accusamus voluptatem quos ut voluptates\nquisquam porro sed architecto ut" + }, + { + "postId": 4, + "id": 20, + "name": "molestias expedita iste aliquid voluptates", + "email": "Mariana_Orn@preston.org", + "body": "qui harum consequatur fugiat\net eligendi perferendis at molestiae commodi ducimus\ndoloremque asperiores numquam qui\nut sit dignissimos reprehenderit tempore" + }, + { + "postId": 5, + "id": 21, + "name": "aliquid rerum mollitia qui a consectetur eum sed", + "email": "Noemie@marques.me", + "body": "deleniti aut sed molestias explicabo\ncommodi odio ratione nesciunt\nvoluptate doloremque est\nnam autem error delectus" + }, + { + "postId": 5, + "id": 22, + "name": "porro repellendus aut tempore quis hic", + "email": "Khalil@emile.co.uk", + "body": "qui ipsa animi nostrum praesentium voluptatibus odit\nqui non impedit cum qui nostrum aliquid fuga explicabo\nvoluptatem fugit earum voluptas exercitationem temporibus dignissimos distinctio\nesse inventore reprehenderit quidem ut incidunt nihil necessitatibus rerum" + }, + { + "postId": 5, + "id": 23, + "name": "quis tempora quidem nihil iste", + "email": "Sophia@arianna.co.uk", + "body": "voluptates provident repellendus iusto perspiciatis ex fugiat ut\nut dolor nam aliquid et expedita voluptate\nsunt vitae illo rerum in quos\nvel eligendi enim quae fugiat est" + }, + { + "postId": 5, + "id": 24, + "name": "in tempore eos beatae est", + "email": "Jeffery@juwan.us", + "body": "repudiandae repellat quia\nsequi est dolore explicabo nihil et\net sit et\net praesentium iste atque asperiores tenetur" + }, + { + "postId": 5, + "id": 25, + "name": "autem ab ea sit alias hic provident sit", + "email": "Isaias_Kuhic@jarrett.net", + "body": "sunt aut quae laboriosam sit ut impedit\nadipisci harum laborum totam deleniti voluptas odit rem ea\nnon iure distinctio ut velit doloribus\net non ex" + }, + { + "postId": 6, + "id": 26, + "name": "in deleniti sunt provident soluta ratione veniam quam praesentium", + "email": "Russel.Parker@kameron.io", + "body": "incidunt sapiente eaque dolor eos\nad est molestias\nquas sit et nihil exercitationem at cumque ullam\nnihil magnam et" + }, + { + "postId": 6, + "id": 27, + "name": "doloribus quibusdam molestiae amet illum", + "email": "Francesco.Gleason@nella.us", + "body": "nisi vel quas ut laborum ratione\nrerum magni eum\nunde et voluptatem saepe\nvoluptas corporis modi amet ipsam eos saepe porro" + }, + { + "postId": 6, + "id": 28, + "name": "quo voluptates voluptas nisi veritatis dignissimos dolores ut officiis", + "email": "Ronny@rosina.org", + "body": "voluptatem repellendus quo alias at laudantium\nmollitia quidem esse\ntemporibus consequuntur vitae rerum illum\nid corporis sit id" + }, + { + "postId": 6, + "id": 29, + "name": "eum distinctio amet dolor", + "email": "Jennings_Pouros@erica.biz", + "body": "tempora voluptatem est\nmagnam distinctio autem est dolorem\net ipsa molestiae odit rerum itaque corporis nihil nam\neaque rerum error" + }, + { + "postId": 6, + "id": 30, + "name": "quasi nulla ducimus facilis non voluptas aut", + "email": "Lurline@marvin.biz", + "body": "consequuntur quia voluptate assumenda et\nautem voluptatem reiciendis ipsum animi est provident\nearum aperiam sapiente ad vitae iste\naccusantium aperiam eius qui dolore voluptatem et" + }, + { + "postId": 7, + "id": 31, + "name": "ex velit ut cum eius odio ad placeat", + "email": "Buford@shaylee.biz", + "body": "quia incidunt ut\naliquid est ut rerum deleniti iure est\nipsum quia ea sint et\nvoluptatem quaerat eaque repudiandae eveniet aut" + }, + { + "postId": 7, + "id": 32, + "name": "dolorem architecto ut pariatur quae qui suscipit", + "email": "Maria@laurel.name", + "body": "nihil ea itaque libero illo\nofficiis quo quo dicta inventore consequatur voluptas voluptatem\ncorporis sed necessitatibus velit tempore\nrerum velit et temporibus" + }, + { + "postId": 7, + "id": 33, + "name": "voluptatum totam vel voluptate omnis", + "email": "Jaeden.Towne@arlene.tv", + "body": "fugit harum quae vero\nlibero unde tempore\nsoluta eaque culpa sequi quibusdam nulla id\net et necessitatibus" + }, + { + "postId": 7, + "id": 34, + "name": "omnis nemo sunt ab autem", + "email": "Ethelyn.Schneider@emelia.co.uk", + "body": "omnis temporibus quasi ab omnis\nfacilis et omnis illum quae quasi aut\nminus iure ex rem ut reprehenderit\nin non fugit" + }, + { + "postId": 7, + "id": 35, + "name": "repellendus sapiente omnis praesentium aliquam ipsum id molestiae omnis", + "email": "Georgianna@florence.io", + "body": "dolor mollitia quidem facere et\nvel est ut\nut repudiandae est quidem dolorem sed atque\nrem quia aut adipisci sunt" + }, + { + "postId": 8, + "id": 36, + "name": "sit et quis", + "email": "Raheem_Heaney@gretchen.biz", + "body": "aut vero est\ndolor non aut excepturi dignissimos illo nisi aut quas\naut magni quia nostrum provident magnam quas modi maxime\nvoluptatem et molestiae" + }, + { + "postId": 8, + "id": 37, + "name": "beatae veniam nemo rerum voluptate quam aspernatur", + "email": "Jacky@victoria.net", + "body": "qui rem amet aut\ncumque maiores earum ut quia sit nam esse qui\niusto aspernatur quis voluptas\ndolorem distinctio ex temporibus rem" + }, + { + "postId": 8, + "id": 38, + "name": "maiores dolores expedita", + "email": "Piper@linwood.us", + "body": "unde voluptatem qui dicta\nvel ad aut eos error consequatur voluptatem\nadipisci doloribus qui est sit aut\nvelit aut et ea ratione eveniet iure fuga" + }, + { + "postId": 8, + "id": 39, + "name": "necessitatibus ratione aut ut delectus quae ut", + "email": "Gaylord@russell.net", + "body": "atque consequatur dolorem sunt\nadipisci autem et\nvoluptatibus et quae necessitatibus rerum eaque aperiam nostrum nemo\neligendi sed et beatae et inventore" + }, + { + "postId": 8, + "id": 40, + "name": "non minima omnis deleniti pariatur facere quibusdam at", + "email": "Clare.Aufderhar@nicole.ca", + "body": "quod minus alias quos\nperferendis labore molestias quae ut ut corporis deserunt vitae\net quaerat ut et ullam unde asperiores\ncum voluptatem cumque" + }, + { + "postId": 9, + "id": 41, + "name": "voluptas deleniti ut", + "email": "Lucio@gladys.tv", + "body": "facere repudiandae vitae ea aut sed quo ut et\nfacere nihil ut voluptates in\nsaepe cupiditate accusantium numquam dolores\ninventore sint mollitia provident" + }, + { + "postId": 9, + "id": 42, + "name": "nam qui et", + "email": "Shemar@ewell.name", + "body": "aut culpa quaerat veritatis eos debitis\naut repellat eius explicabo et\nofficiis quo sint at magni ratione et iure\nincidunt quo sequi quia dolorum beatae qui" + }, + { + "postId": 9, + "id": 43, + "name": "molestias sint est voluptatem modi", + "email": "Jackeline@eva.tv", + "body": "voluptatem ut possimus laborum quae ut commodi delectus\nin et consequatur\nin voluptas beatae molestiae\nest rerum laborum et et velit sint ipsum dolorem" + }, + { + "postId": 9, + "id": 44, + "name": "hic molestiae et fuga ea maxime quod", + "email": "Marianna_Wilkinson@rupert.io", + "body": "qui sunt commodi\nsint vel optio vitae quis qui non distinctio\nid quasi modi dicta\neos nihil sit inventore est numquam officiis" + }, + { + "postId": 9, + "id": 45, + "name": "autem illo facilis", + "email": "Marcia@name.biz", + "body": "ipsum odio harum voluptatem sunt cumque et dolores\nnihil laboriosam neque commodi qui est\nquos numquam voluptatum\ncorporis quo in vitae similique cumque tempore" + }, + { + "postId": 10, + "id": 46, + "name": "dignissimos et deleniti voluptate et quod", + "email": "Jeremy.Harann@waino.me", + "body": "exercitationem et id quae cum omnis\nvoluptatibus accusantium et quidem\nut ipsam sint\ndoloremque illo ex atque necessitatibus sed" + }, + { + "postId": 10, + "id": 47, + "name": "rerum commodi est non dolor nesciunt ut", + "email": "Pearlie.Kling@sandy.com", + "body": "occaecati laudantium ratione non cumque\nearum quod non enim soluta nisi velit similique voluptatibus\nesse laudantium consequatur voluptatem rem eaque voluptatem aut ut\net sit quam" + }, + { + "postId": 10, + "id": 48, + "name": "consequatur animi dolorem saepe repellendus ut quo aut tenetur", + "email": "Manuela_Stehr@chelsie.tv", + "body": "illum et alias quidem magni voluptatum\nab soluta ea qui saepe corrupti hic et\ncum repellat esse\nest sint vel veritatis officia consequuntur cum" + }, + { + "postId": 10, + "id": 49, + "name": "rerum placeat quae minus iusto eligendi", + "email": "Camryn.Weimann@doris.io", + "body": "id est iure occaecati quam similique enim\nab repudiandae non\nillum expedita quam excepturi soluta qui placeat\nperspiciatis optio maiores non doloremque aut iusto sapiente" + }, + { + "postId": 10, + "id": 50, + "name": "dolorum soluta quidem ex quae occaecati dicta aut doloribus", + "email": "Kiana_Predovic@yasmin.io", + "body": "eum accusamus aut delectus\narchitecto blanditiis quia sunt\nrerum harum sit quos quia aspernatur vel corrupti inventore\nanimi dicta vel corporis" + }, + { + "postId": 11, + "id": 51, + "name": "molestias et odio ut commodi omnis ex", + "email": "Laurie@lincoln.us", + "body": "perferendis omnis esse\nvoluptate sit mollitia sed perferendis\nnemo nostrum qui\nvel quis nisi doloribus animi odio id quas" + }, + { + "postId": 11, + "id": 52, + "name": "esse autem dolorum", + "email": "Abigail.OConnell@june.org", + "body": "et enim voluptatem totam laudantium\nimpedit nam labore repellendus enim earum aut\nconsectetur mollitia fugit qui repellat expedita sunt\naut fugiat vel illo quos aspernatur ducimus" + }, + { + "postId": 11, + "id": 53, + "name": "maiores alias necessitatibus aut non", + "email": "Laverne_Price@scotty.info", + "body": "a at tempore\nmolestiae odit qui dolores molestias dolorem et\nlaboriosam repudiandae placeat quisquam\nautem aperiam consectetur maiores laboriosam nostrum" + }, + { + "postId": 11, + "id": 54, + "name": "culpa eius tempora sit consequatur neque iure deserunt", + "email": "Kenton_Vandervort@friedrich.com", + "body": "et ipsa rem ullam cum pariatur similique quia\ncum ipsam est sed aut inventore\nprovident sequi commodi enim inventore assumenda aut aut\ntempora possimus soluta quia consequatur modi illo" + }, + { + "postId": 11, + "id": 55, + "name": "quas pariatur quia a doloribus", + "email": "Hayden_Olson@marianna.me", + "body": "perferendis eaque labore laudantium ut molestiae soluta et\nvero odio non corrupti error pariatur consectetur et\nenim nam quia voluptatum non\nmollitia culpa facere voluptas suscipit veniam" + }, + { + "postId": 12, + "id": 56, + "name": "et dolorem corrupti sed molestias", + "email": "Vince_Crist@heidi.biz", + "body": "cum esse odio nihil reiciendis illum quaerat\nest facere quia\noccaecati sit totam fugiat in beatae\nut occaecati unde vitae nihil quidem consequatur" + }, + { + "postId": 12, + "id": 57, + "name": "qui quidem sed", + "email": "Darron.Nikolaus@eulah.me", + "body": "dolorem facere itaque fuga odit autem\nperferendis quisquam quis corrupti eius dicta\nrepudiandae error esse itaque aut\ncorrupti sint consequatur aliquid" + }, + { + "postId": 12, + "id": 58, + "name": "sint minus reiciendis qui perspiciatis id", + "email": "Ezra_Abshire@lyda.us", + "body": "veritatis qui nihil\nquia reprehenderit non ullam ea iusto\nconsectetur nam voluptas ut temporibus tempore provident error\neos et nisi et voluptate" + }, + { + "postId": 12, + "id": 59, + "name": "quis ducimus distinctio similique et illum minima ab libero", + "email": "Jameson@tony.info", + "body": "cumque molestiae officia aut fugiat nemo autem\nvero alias atque sed qui ratione quia\nrepellat vel earum\nea laudantium mollitia" + }, + { + "postId": 12, + "id": 60, + "name": "expedita libero quos cum commodi ad", + "email": "Americo@estrella.net", + "body": "error eum quia voluptates alias repudiandae\naccusantium veritatis maiores assumenda\nquod impedit animi tempore veritatis\nanimi et et officiis labore impedit blanditiis repudiandae" + }, + { + "postId": 13, + "id": 61, + "name": "quidem itaque dolores quod laborum aliquid molestiae", + "email": "Aurelio.Pfeffer@griffin.ca", + "body": "deserunt cumque laudantium\net et odit quia sint quia quidem\nquibusdam debitis fuga in tempora deleniti\nimpedit consequatur veniam reiciendis autem porro minima" + }, + { + "postId": 13, + "id": 62, + "name": "libero beatae consequuntur optio est hic", + "email": "Vesta_Crooks@dora.us", + "body": "tempore dolorum corrupti facilis\npraesentium sunt iste recusandae\nunde quisquam similique\nalias consequuntur voluptates velit" + }, + { + "postId": 13, + "id": 63, + "name": "occaecati dolor accusantium et quasi architecto aut eveniet fugiat", + "email": "Margarett_Klein@mike.biz", + "body": "aut eligendi et molestiae voluptatum tempora\nofficia nihil sit voluptatem aut deleniti\nquaerat consequatur eaque\nsapiente tempore commodi tenetur rerum qui quo" + }, + { + "postId": 13, + "id": 64, + "name": "consequatur aut ullam voluptas dolorum voluptatum sequi et", + "email": "Freida@brandt.tv", + "body": "sed illum quis\nut aut culpa labore aspernatur illo\ndolorem quia vitae ut aut quo repellendus est omnis\nesse at est debitis" + }, + { + "postId": 13, + "id": 65, + "name": "earum ea ratione numquam", + "email": "Mollie@agustina.name", + "body": "qui debitis vitae ratione\ntempora impedit aperiam porro molestiae placeat vero laboriosam recusandae\npraesentium consequatur facere et itaque quidem eveniet\nmagnam natus distinctio sapiente" + }, + { + "postId": 14, + "id": 66, + "name": "eius nam consequuntur", + "email": "Janice@alda.io", + "body": "necessitatibus libero occaecati\nvero inventore iste assumenda veritatis\nasperiores non sit et quia omnis facere nemo explicabo\nodit quo nobis porro" + }, + { + "postId": 14, + "id": 67, + "name": "omnis consequatur natus distinctio", + "email": "Dashawn@garry.com", + "body": "nulla quo itaque beatae ad\nofficiis animi aut exercitationem voluptatum dolorem doloremque ducimus in\nrecusandae officia consequuntur quas\naspernatur dolores est esse dolores sit illo laboriosam quaerat" + }, + { + "postId": 14, + "id": 68, + "name": "architecto ut deserunt consequatur cumque sapiente", + "email": "Devan.Nader@ettie.me", + "body": "sed magni accusantium numquam quidem omnis et voluptatem beatae\nquos fugit libero\nvel ipsa et nihil recusandae ea\niste nemo qui optio sit enim ut nostrum odit" + }, + { + "postId": 14, + "id": 69, + "name": "at aut ea iure accusantium voluptatum nihil ipsum", + "email": "Joana.Schoen@leora.co.uk", + "body": "omnis dolor autem qui est natus\nautem animi nemo voluptatum aut natus accusantium iure\ninventore sunt ea tenetur commodi suscipit facere architecto consequatur\ndolorem nihil veritatis consequuntur corporis" + }, + { + "postId": 14, + "id": 70, + "name": "eum magni accusantium labore aut cum et tenetur", + "email": "Minerva.Anderson@devonte.ca", + "body": "omnis aliquam praesentium ad voluptatem harum aperiam dolor autem\nhic asperiores quisquam ipsa necessitatibus suscipit\npraesentium rem deserunt et\nfacere repellendus aut sed fugit qui est" + }, + { + "postId": 15, + "id": 71, + "name": "vel pariatur perferendis vero ab aut voluptates labore", + "email": "Lavinia@lafayette.me", + "body": "mollitia magnam et\nipsum consequatur est expedita\naut rem ut ex doloremque est vitae est\ncumque velit recusandae numquam libero dolor fuga fugit a" + }, + { + "postId": 15, + "id": 72, + "name": "quia sunt dolor dolor suscipit expedita quis", + "email": "Sabrina.Marks@savanah.name", + "body": "quisquam voluptas ut\npariatur eos amet non\nreprehenderit voluptates numquam\nin est voluptatem dicta ipsa qui esse enim" + }, + { + "postId": 15, + "id": 73, + "name": "ut quia ipsa repellat sunt et sequi aut est", + "email": "Desmond_Graham@kailee.biz", + "body": "nam qui possimus deserunt\ninventore dignissimos nihil rerum ut consequatur vel architecto\ntenetur recusandae voluptate\nnumquam dignissimos aliquid ut reprehenderit voluptatibus" + }, + { + "postId": 15, + "id": 74, + "name": "ut non illum pariatur dolor", + "email": "Gussie_Kunde@sharon.biz", + "body": "non accusamus eum aut et est\naccusantium animi nesciunt distinctio ea quas quisquam\nsit ut voluptatem modi natus sint\nfacilis est qui molestias recusandae nemo" + }, + { + "postId": 15, + "id": 75, + "name": "minus laboriosam consequuntur", + "email": "Richard@chelsie.co.uk", + "body": "natus numquam enim asperiores doloremque ullam et\nest molestias doloribus cupiditate labore vitae aut voluptatem\nitaque quos quo consectetur nihil illum veniam\nnostrum voluptatum repudiandae ut" + }, + { + "postId": 16, + "id": 76, + "name": "porro ut soluta repellendus similique", + "email": "Gage_Turner@halle.name", + "body": "sunt qui consequatur similique recusandae repellendus voluptates eos et\nvero nostrum fugit magnam aliquam\nreprehenderit nobis voluptatem eos consectetur possimus\net perferendis qui ea fugiat sit doloremque" + }, + { + "postId": 16, + "id": 77, + "name": "dolores et quo omnis voluptates", + "email": "Alfred@sadye.biz", + "body": "eos ullam dolorem impedit labore mollitia\nrerum non dolores\nmolestiae dignissimos qui maxime sed voluptate consequatur\ndoloremque praesentium magnam odio iste quae totam aut" + }, + { + "postId": 16, + "id": 78, + "name": "voluptas voluptas voluptatibus blanditiis", + "email": "Catharine@jordyn.com", + "body": "qui adipisci eveniet excepturi iusto magni et\nenim ducimus asperiores blanditiis nemo\ncommodi nihil ex\nenim rerum vel nobis nostrum et non" + }, + { + "postId": 16, + "id": 79, + "name": "beatae ut ad quisquam sed repellendus et", + "email": "Esther_Ratke@shayna.biz", + "body": "et inventore sapiente sed\nsunt similique fugiat officia velit doloremque illo eligendi quas\nsed rerum in quidem perferendis facere molestias\ndolore dolor voluptas nam vel quia" + }, + { + "postId": 16, + "id": 80, + "name": "et cumque ad culpa ut eligendi non", + "email": "Evangeline@chad.net", + "body": "dignissimos itaque ab et tempore odio omnis voluptatem\nitaque perferendis rem repellendus tenetur nesciunt velit\nqui cupiditate recusandae\nquis debitis dolores aliquam nam" + }, + { + "postId": 17, + "id": 81, + "name": "aut non consequuntur dignissimos voluptatibus dolorem earum recusandae dolorem", + "email": "Newton.Kertzmann@anjali.io", + "body": "illum et voluptatem quis repellendus quidem repellat\nreprehenderit voluptas consequatur mollitia\npraesentium nisi quo quod et\noccaecati repellendus illo eius harum explicabo doloribus officia" + }, + { + "postId": 17, + "id": 82, + "name": "ea est non dolorum iste nihil est", + "email": "Caleb_Herzog@rosamond.net", + "body": "officiis dolorem voluptas aliquid eveniet tempora qui\nea temporibus labore accusamus sint\nut sunt necessitatibus voluptatum animi cumque\nat reiciendis voluptatem iure aliquid et qui dolores et" + }, + { + "postId": 17, + "id": 83, + "name": "nihil qui accusamus ratione et molestias et minus", + "email": "Sage_Mueller@candace.net", + "body": "et consequatur voluptates magnam fugit sunt repellendus nihil earum\nofficiis aut cupiditate\net distinctio laboriosam\nmolestiae sunt dolor explicabo recusandae" + }, + { + "postId": 17, + "id": 84, + "name": "quia voluptatibus magnam voluptatem optio vel perspiciatis", + "email": "Bernie.Bergnaum@lue.com", + "body": "ratione ut magni voluptas\nexplicabo natus quia consequatur nostrum aut\nomnis enim in qui illum\naut atque laboriosam aliquid blanditiis quisquam et laborum" + }, + { + "postId": 17, + "id": 85, + "name": "non voluptas cum est quis aut consectetur nam", + "email": "Alexzander_Davis@eduardo.name", + "body": "quisquam incidunt dolores sint qui doloribus provident\nvel cupiditate deleniti alias voluptatem placeat ad\nut dolorem illum unde iure quis libero neque\nea et distinctio id" + }, + { + "postId": 18, + "id": 86, + "name": "suscipit est sunt vel illum sint", + "email": "Jacquelyn@krista.info", + "body": "eum culpa debitis sint\neaque quia magni laudantium qui neque voluptas\nvoluptatem qui molestiae vel earum est ratione excepturi\nsit aut explicabo et repudiandae ut perspiciatis" + }, + { + "postId": 18, + "id": 87, + "name": "dolor asperiores autem et omnis quasi nobis", + "email": "Grover_Volkman@coty.tv", + "body": "assumenda corporis architecto repudiandae omnis qui et odit\nperferendis velit enim\net quia reiciendis sint\nquia voluptas quam deserunt facilis harum eligendi" + }, + { + "postId": 18, + "id": 88, + "name": "officiis aperiam odit sint est non", + "email": "Jovanny@abigale.ca", + "body": "laudantium corrupti atque exercitationem quae enim et veniam dicta\nautem perspiciatis sit dolores\nminima consectetur tenetur iste facere\namet est neque" + }, + { + "postId": 18, + "id": 89, + "name": "in voluptatum nostrum voluptas iure nisi rerum est placeat", + "email": "Isac_Schmeler@barton.com", + "body": "quibusdam rerum quia nostrum culpa\nculpa est natus impedit quo rem voluptate quos\nrerum culpa aut ut consectetur\nsunt esse laudantium voluptatibus cupiditate rerum" + }, + { + "postId": 18, + "id": 90, + "name": "eum voluptas dolores molestias odio amet repellendus", + "email": "Sandy.Erdman@sabina.info", + "body": "vitae cupiditate excepturi eum veniam laudantium aspernatur blanditiis\naspernatur quia ut assumenda et magni enim magnam\nin voluptate tempora\nnon qui voluptatem reprehenderit porro qui voluptatibus" + }, + { + "postId": 19, + "id": 91, + "name": "repellendus est laboriosam voluptas veritatis", + "email": "Alexandro@garry.io", + "body": "qui nisi at maxime deleniti quo\nex quas tenetur nam\ndeleniti aut asperiores deserunt cum ex eaque alias sit\net veniam ab consequatur molestiae" + }, + { + "postId": 19, + "id": 92, + "name": "repellendus aspernatur occaecati tempore blanditiis deleniti omnis qui distinctio", + "email": "Vickie_Schuster@harley.net", + "body": "nihil necessitatibus omnis asperiores nobis praesentium quia\nab debitis quo deleniti aut sequi commodi\nut perspiciatis quod est magnam aliquam modi\neum quos aliquid ea est" + }, + { + "postId": 19, + "id": 93, + "name": "mollitia dolor deleniti sed iure laudantium", + "email": "Roma_Doyle@alia.com", + "body": "ut quis et id repellat labore\nnobis itaque quae saepe est ullam aut\ndolor id ut quis\nsunt iure voluptates expedita voluptas doloribus modi saepe autem" + }, + { + "postId": 19, + "id": 94, + "name": "vero repudiandae voluptatem nobis", + "email": "Tatum_Marks@jaylon.name", + "body": "reiciendis delectus nulla quae voluptas nihil provident quia\nab corporis nesciunt blanditiis quibusdam et unde et\nmagni eligendi aperiam corrupti perspiciatis quasi\nneque iure voluptatibus mollitia" + }, + { + "postId": 19, + "id": 95, + "name": "voluptatem unde quos provident ad qui sit et excepturi", + "email": "Juston.Ruecker@scot.tv", + "body": "at ut tenetur rem\nut fuga quis ea magnam alias\naut tempore fugiat laboriosam porro quia iure qui\narchitecto est enim" + }, + { + "postId": 20, + "id": 96, + "name": "non sit ad culpa quis", + "email": "River.Grady@lavada.biz", + "body": "eum itaque quam\nlaboriosam sequi ullam quos nobis\nomnis dignissimos nam dolores\nfacere id suscipit aliquid culpa rerum quis" + }, + { + "postId": 20, + "id": 97, + "name": "reiciendis culpa omnis suscipit est", + "email": "Claudia@emilia.ca", + "body": "est ducimus voluptate saepe iusto repudiandae recusandae et\nsint fugit voluptas eum itaque\nodit ab eos voluptas molestiae necessitatibus earum possimus voluptatem\nquibusdam aut illo beatae qui delectus aut officia veritatis" + }, + { + "postId": 20, + "id": 98, + "name": "praesentium dolorem ea voluptate et", + "email": "Torrey@june.tv", + "body": "ex et expedita cum voluptatem\nvoluptatem ab expedita quis nihil\nesse quo nihil perferendis dolores velit ut culpa aut\ndolor maxime necessitatibus voluptatem" + }, + { + "postId": 20, + "id": 99, + "name": "laudantium delectus nam", + "email": "Hildegard.Aufderhar@howard.com", + "body": "aut quam consequatur sit et\nrepellat maiores laborum similique voluptatem necessitatibus nihil\net debitis nemo occaecati cupiditate\nmodi dolorum quia aut" + }, + { + "postId": 20, + "id": 100, + "name": "et sint quia dolor et est ea nulla cum", + "email": "Leone_Fay@orrin.com", + "body": "architecto dolorem ab explicabo et provident et\net eos illo omnis mollitia ex aliquam\natque ut ipsum nulla nihil\nquis voluptas aut debitis facilis" + }, + { + "postId": 21, + "id": 101, + "name": "perspiciatis magnam ut eum autem similique explicabo expedita", + "email": "Lura@rod.tv", + "body": "ut aut maxime officia sed aliquam et magni autem\nveniam repudiandae nostrum odio enim eum optio aut\nomnis illo quasi quibusdam inventore explicabo\nreprehenderit dolor saepe possimus molestiae" + }, + { + "postId": 21, + "id": 102, + "name": "officia ullam ut neque earum ipsa et fuga", + "email": "Lottie.Zieme@ruben.us", + "body": "aut dolorem quos ut non\naliquam unde iure minima quod ullam qui\nfugiat molestiae tempora voluptate vel labore\nsaepe animi et vitae numquam ipsa" + }, + { + "postId": 21, + "id": 103, + "name": "ipsum a ut", + "email": "Winona_Price@jevon.me", + "body": "totam eum fugiat repellendus\nquae beatae explicabo excepturi iusto et\nrepellat alias iure voluptates consequatur sequi minus\nsed maxime unde" + }, + { + "postId": 21, + "id": 104, + "name": "a assumenda totam", + "email": "Gabriel@oceane.biz", + "body": "qui aperiam labore animi magnam odit est\nut autem eaque ea magni quas voluptatem\ndoloribus vel voluptatem nostrum ut debitis enim quaerat\nut esse eveniet aut" + }, + { + "postId": 21, + "id": 105, + "name": "voluptatem repellat est", + "email": "Adolph.Ondricka@mozell.co.uk", + "body": "ut rerum illum error at inventore ab nobis molestiae\nipsa architecto temporibus non aliquam aspernatur omnis quidem aliquid\nconsequatur non et expedita cumque voluptates ipsam quia\nblanditiis libero itaque sed iusto at" + }, + { + "postId": 22, + "id": 106, + "name": "maiores placeat facere quam pariatur", + "email": "Allen@richard.biz", + "body": "dolores debitis voluptatem ab hic\nmagnam alias qui est sunt\net porro velit et repellendus occaecati est\nsequi quia odio deleniti illum" + }, + { + "postId": 22, + "id": 107, + "name": "in ipsam vel id impedit possimus eos voluptate", + "email": "Nicholaus@mikayla.ca", + "body": "eveniet fugit qui\nporro eaque dolores eos adipisci dolores ut\nfugit perferendis pariatur\nnumquam et repellat occaecati atque ipsum neque" + }, + { + "postId": 22, + "id": 108, + "name": "ut veritatis corporis placeat suscipit consequatur quaerat", + "email": "Kayla@susanna.org", + "body": "at a vel sequi nostrum\nharum nam nihil\ncumque aut in dolore rerum ipsa hic ratione\nrerum cum ratione provident labore ad quisquam repellendus a" + }, + { + "postId": 22, + "id": 109, + "name": "eveniet ut similique accusantium qui dignissimos", + "email": "Gideon@amina.name", + "body": "aliquid qui dolorem deserunt aperiam natus corporis eligendi neque\nat et sunt aut qui\nillum repellat qui excepturi laborum facilis aut omnis consequatur\net aut optio ipsa nisi enim" + }, + { + "postId": 22, + "id": 110, + "name": "sint est odit officiis similique aut corrupti quas autem", + "email": "Cassidy@maribel.io", + "body": "cum sequi in eligendi id eaque\ndolores accusamus dolorem eum est voluptatem quisquam tempore\nin voluptas enim voluptatem asperiores voluptatibus\neius quo quos quasi voluptas earum ut necessitatibus" + }, + { + "postId": 23, + "id": 111, + "name": "possimus facilis deleniti nemo atque voluptate", + "email": "Stefan.Crist@duane.ca", + "body": "ullam autem et\naccusantium quod sequi similique soluta explicabo ipsa\neius ratione quisquam sed et excepturi occaecati pariatur\nmolestiae ut reiciendis eum voluptatem sed" + }, + { + "postId": 23, + "id": 112, + "name": "dolore aut aspernatur est voluptate quia ipsam", + "email": "Aniyah.Ortiz@monte.me", + "body": "ut tempora deleniti quo molestiae eveniet provident earum occaecati\nest nesciunt ut pariatur ipsa voluptas voluptatem aperiam\nqui deleniti quibusdam voluptas molestiae facilis id iusto similique\ntempora aut qui" + }, + { + "postId": 23, + "id": 113, + "name": "sint quo debitis deleniti repellat", + "email": "Laverna@rico.biz", + "body": "voluptatem sint quia modi accusantium alias\nrecusandae rerum voluptatem aut sit et ut magnam\nvoluptas rerum odio quo labore voluptatem facere consequuntur\nut sit voluptatum hic distinctio" + }, + { + "postId": 23, + "id": 114, + "name": "optio et sunt non", + "email": "Derek@hildegard.net", + "body": "nihil labore qui\nquis dolor eveniet iste numquam\nporro velit incidunt\nlaboriosam asperiores aliquam facilis in et voluptas eveniet quasi" + }, + { + "postId": 23, + "id": 115, + "name": "occaecati dolorem eum in veniam quia quo reiciendis", + "email": "Tyrell@abdullah.ca", + "body": "laudantium tempore aut\nmaiores laborum fugit qui suscipit hic sint officiis corrupti\nofficiis eum optio cumque fuga sed voluptatibus similique\nsit consequuntur rerum commodi" + }, + { + "postId": 24, + "id": 116, + "name": "veritatis sit tempora quasi fuga aut dolorum", + "email": "Reyes@hailey.name", + "body": "quia voluptas qui assumenda nesciunt harum iusto\nest corrupti aperiam\nut aut unde maxime consequatur eligendi\nveniam modi id sint rem labore saepe minus" + }, + { + "postId": 24, + "id": 117, + "name": "incidunt quae optio quam corporis iste deleniti accusantium vero", + "email": "Danika.Dicki@mekhi.biz", + "body": "doloribus esse necessitatibus qui eos et ut est saepe\nsed rerum tempore est ut\nquisquam et eligendi accusantium\ncommodi non doloribus" + }, + { + "postId": 24, + "id": 118, + "name": "quisquam laborum reiciendis aut", + "email": "Alessandra.Nitzsche@stephania.us", + "body": "repudiandae aliquam maxime cupiditate consequatur id\nquas error repellendus\ntotam officia dolorem beatae natus cum exercitationem\nasperiores dolor ea" + }, + { + "postId": 24, + "id": 119, + "name": "minus pariatur odit", + "email": "Matteo@marquis.net", + "body": "et omnis consequatur ut\nin suscipit et voluptatem\nanimi at ut\ndolores quos aut numquam esse praesentium aut placeat nam" + }, + { + "postId": 24, + "id": 120, + "name": "harum error sit", + "email": "Joshua.Spinka@toby.io", + "body": "iusto sint recusandae placeat atque perferendis sit corporis molestiae\nrem dolor eius id delectus et qui\nsed dolorem reiciendis error ullam corporis delectus\nexplicabo mollitia odit laborum sed itaque deserunt rem dolorem" + }, + { + "postId": 25, + "id": 121, + "name": "deleniti quo corporis ullam magni praesentium molestiae", + "email": "Annabelle@cole.com", + "body": "soluta mollitia impedit cumque nostrum tempore aut placeat repellat\nenim adipisci dolores aut ut ratione laboriosam necessitatibus vel\net blanditiis est iste sapiente qui atque repellendus alias\nearum consequuntur quia quasi quia" + }, + { + "postId": 25, + "id": 122, + "name": "nihil tempora et reiciendis modi veniam", + "email": "Kacey@jamal.info", + "body": "doloribus veritatis a et quis corrupti incidunt est\nharum maiores impedit et beatae qui velit et aut\nporro sed dignissimos deserunt deleniti\net eveniet voluptas ipsa pariatur rem ducimus" + }, + { + "postId": 25, + "id": 123, + "name": "ad eos explicabo odio velit", + "email": "Mina@mallie.name", + "body": "nostrum perspiciatis doloribus\nexplicabo soluta id libero illo iste et\nab expedita error aliquam eum sint ipsum\nmodi possimus et" + }, + { + "postId": 25, + "id": 124, + "name": "nostrum suscipit aut consequatur magnam sunt fuga nihil", + "email": "Hudson.Blick@ruben.biz", + "body": "ut ut eius qui explicabo quis\niste autem nulla beatae tenetur enim\nassumenda explicabo consequatur harum exercitationem\nvelit itaque consectetur et possimus" + }, + { + "postId": 25, + "id": 125, + "name": "porro et voluptate et reprehenderit", + "email": "Domenic.Durgan@joaquin.name", + "body": "aut voluptas dolore autem\nreprehenderit expedita et nihil pariatur ea animi quo ullam\na ea officiis corporis\neius voluptatum cum mollitia dolore quaerat accusamus" + }, + { + "postId": 26, + "id": 126, + "name": "fuga tenetur id et qui labore delectus", + "email": "Alexie@alayna.org", + "body": "est qui ut tempore temporibus pariatur provident qui consequuntur\nlaboriosam porro dignissimos quos debitis id laborum et totam\naut eius sequi dolor maiores amet\nrerum voluptatibus quod ratione quos labore fuga sit" + }, + { + "postId": 26, + "id": 127, + "name": "consequatur harum magnam", + "email": "Haven_Barrows@brant.org", + "body": "omnis consequatur dignissimos iure rerum odio\nculpa laudantium quia voluptas enim est nisi\ndoloremque consequatur autem officiis necessitatibus beatae et\net itaque animi dolor praesentium" + }, + { + "postId": 26, + "id": 128, + "name": "labore architecto quaerat tempora voluptas consequuntur animi", + "email": "Marianne@maximo.us", + "body": "exercitationem eius aut ullam vero\nimpedit similique maiores ea et in culpa possimus omnis\neos labore autem quam repellendus dolores deserunt voluptatem\nnon ullam eos accusamus" + }, + { + "postId": 26, + "id": 129, + "name": "deleniti facere tempore et perspiciatis voluptas quis voluptatem", + "email": "Fanny@danial.com", + "body": "fugit minima voluptatem est aut sed explicabo\nharum dolores at qui eaque\nmagni velit ut et\nnam et ut sunt excepturi repellat non commodi" + }, + { + "postId": 26, + "id": 130, + "name": "quod est non quia doloribus quam deleniti libero", + "email": "Trevion_Kuphal@bernice.name", + "body": "dicta sit culpa molestiae quasi at voluptate eos\ndolorem perferendis accusamus rerum expedita ipsum quis qui\nquos est deserunt\nrerum fuga qui aliquam in consequatur aspernatur" + }, + { + "postId": 27, + "id": 131, + "name": "voluptas quasi sunt laboriosam", + "email": "Emmet@guy.biz", + "body": "rem magnam at voluptatem\naspernatur et et nostrum rerum\ndignissimos eum quibusdam\noptio quod dolores et" + }, + { + "postId": 27, + "id": 132, + "name": "unde tenetur vero eum iusto", + "email": "Megane.Fritsch@claude.name", + "body": "ullam harum consequatur est rerum est\nmagni tenetur aperiam et\nrepudiandae et reprehenderit dolorum enim voluptas impedit\neligendi quis necessitatibus in exercitationem voluptatem qui" + }, + { + "postId": 27, + "id": 133, + "name": "est adipisci laudantium amet rem asperiores", + "email": "Amya@durward.ca", + "body": "sunt quis iure molestias qui ipsa commodi dolore a\nodio qui debitis earum\nunde ut omnis\ndoloremque corrupti at repellendus earum eum" + }, + { + "postId": 27, + "id": 134, + "name": "reiciendis quo est vitae dignissimos libero ut officiis fugiat", + "email": "Jasen_Rempel@willis.org", + "body": "corrupti perspiciatis eligendi\net omnis tempora nobis dolores hic\ndolorum vitae odit\nreiciendis sunt odit qui" + }, + { + "postId": 27, + "id": 135, + "name": "inventore fugiat dignissimos", + "email": "Harmony@reggie.com", + "body": "sapiente nostrum dolorem odit a\nsed animi non architecto doloremque unde\nnam aut aut ut facilis\net ut autem fugit minima culpa inventore non" + }, + { + "postId": 28, + "id": 136, + "name": "et expedita est odit", + "email": "Rosanna_Kunze@guy.net", + "body": "cum natus qui dolorem dolorum nihil ut nam tempore\nmodi nesciunt ipsum hic\nrem sunt possimus earum magnam similique aspernatur sed\ntotam sed voluptatem iusto id iste qui" + }, + { + "postId": 28, + "id": 137, + "name": "saepe dolore qui tempore nihil perspiciatis omnis omnis magni", + "email": "Ressie.Boehm@flossie.com", + "body": "reiciendis maiores id\nvoluptas sapiente deserunt itaque\nut omnis sunt\nnecessitatibus quibusdam dolorem voluptatem harum error" + }, + { + "postId": 28, + "id": 138, + "name": "ea optio nesciunt officia velit enim facilis commodi", + "email": "Domenic.Wuckert@jazmyne.us", + "body": "dolorem suscipit adipisci ad cum totam quia fugiat\nvel quia dolores molestiae eos\nomnis officia quidem quaerat alias vel distinctio\nvero provident et corporis a quia ut" + }, + { + "postId": 28, + "id": 139, + "name": "ut pariatur voluptate possimus quasi", + "email": "Rhett.OKon@brian.info", + "body": "facilis cumque nostrum dignissimos\ndoloremque saepe quia adipisci sunt\ndicta dolorum quo esse\nculpa iste ut asperiores cum aperiam" + }, + { + "postId": 28, + "id": 140, + "name": "consectetur tempore eum consequuntur", + "email": "Mathias@richmond.info", + "body": "velit ipsa fugiat sit qui vel nesciunt sapiente\nrepudiandae perferendis nemo eos quos perspiciatis aperiam\ndoloremque incidunt nostrum temporibus corrupti repudiandae vitae non corporis\ncupiditate suscipit quod sed numquam excepturi enim labore" + }, + { + "postId": 29, + "id": 141, + "name": "dignissimos perspiciatis voluptate quos rem qui temporibus excepturi", + "email": "Ottis@lourdes.org", + "body": "et ullam id eligendi rem sit\noccaecati et delectus in nemo\naut veritatis deserunt aspernatur dolor enim voluptas quos consequatur\nmolestiae temporibus error" + }, + { + "postId": 29, + "id": 142, + "name": "cum dolore sit quisquam provident nostrum vitae", + "email": "Estel@newton.ca", + "body": "cumque voluptas quo eligendi sit\nnemo ut ut dolor et cupiditate aut\net voluptatem quia aut maiores quas accusantium expedita quia\nbeatae aut ad quis soluta id dolorum" + }, + { + "postId": 29, + "id": 143, + "name": "velit molestiae assumenda perferendis voluptas explicabo", + "email": "Bertha@erik.co.uk", + "body": "est quasi maiores nisi reiciendis enim\ndolores minus facilis laudantium dignissimos\nreiciendis et facere occaecati dolores et\npossimus et vel et aut ipsa ad" + }, + { + "postId": 29, + "id": 144, + "name": "earum ipsum ea quas qui molestiae omnis unde", + "email": "Joesph@matteo.info", + "body": "voluptatem unde consequatur natus nostrum vel ut\nconsequatur sequi doloremque omnis dolorem maxime\neaque sunt excepturi\nfuga qui illum et accusamus" + }, + { + "postId": 29, + "id": 145, + "name": "magni iusto sit", + "email": "Alva@cassandre.net", + "body": "assumenda nihil et\nsed nulla tempora porro iste possimus aut sit officia\ncumque totam quis tenetur qui sequi\ndelectus aut sunt" + }, + { + "postId": 30, + "id": 146, + "name": "est qui debitis", + "email": "Vivienne@willis.org", + "body": "possimus necessitatibus quis\net dicta omnis voluptatem ea est\nsuscipit eum soluta in quia corrupti hic iusto\nconsequatur est aut qui earum nisi officiis sed culpa" + }, + { + "postId": 30, + "id": 147, + "name": "reiciendis et consectetur officiis beatae corrupti aperiam", + "email": "Angelita@aliza.me", + "body": "nihil aspernatur consequatur voluptatem facere sed fugiat ullam\nbeatae accusamus et fuga maxime vero\nomnis necessitatibus quisquam ipsum consectetur incidunt repellat voluptas\nerror quo et ab magnam quisquam" + }, + { + "postId": 30, + "id": 148, + "name": "iusto reprehenderit voluptatem modi", + "email": "Timmothy_Okuneva@alyce.tv", + "body": "nemo corporis quidem eius aut dolores\nitaque rerum quo occaecati mollitia incidunt\nautem est saepe nulla nobis a id\ndolore facilis placeat molestias in fugiat aliquam excepturi" + }, + { + "postId": 30, + "id": 149, + "name": "optio dolorem et reiciendis et recusandae quidem", + "email": "Moriah_Welch@richmond.org", + "body": "veniam est distinctio\nnihil quia eos sed\ndistinctio hic ut sint ducimus debitis dolorem voluptatum assumenda\neveniet ea perspiciatis" + }, + { + "postId": 30, + "id": 150, + "name": "id saepe numquam est facilis sint enim voluptas voluptatem", + "email": "Ramiro_Kuhn@harmon.biz", + "body": "est non atque eligendi aspernatur quidem earum mollitia\nminima neque nam exercitationem provident eum\nmaxime quo et ut illum sequi aut fuga repudiandae\nsapiente sed ea distinctio molestias illum consequatur libero quidem" + }, + { + "postId": 31, + "id": 151, + "name": "ut quas facilis laborum voluptatum consequatur odio voluptate et", + "email": "Cary@taurean.biz", + "body": "quos eos sint voluptatibus similique iusto perferendis omnis voluptas\nearum nulla cumque\ndolorem consequatur officiis quis consequatur aspernatur nihil ullam et\nenim enim unde nihil labore non ducimus" + }, + { + "postId": 31, + "id": 152, + "name": "quod doloremque omnis", + "email": "Tillman_Koelpin@luisa.com", + "body": "itaque veritatis explicabo\nquis voluptatem mollitia soluta id non\ndoloribus nobis fuga provident\nnesciunt saepe molestiae praesentium laboriosam" + }, + { + "postId": 31, + "id": 153, + "name": "dolorum et dolorem optio in provident", + "email": "Aleen@tania.biz", + "body": "et cumque error pariatur\nquo doloribus corrupti voluptates ad voluptatem consequatur voluptas dolores\npariatur at quas iste repellat et sed quasi\nea maiores rerum aut earum" + }, + { + "postId": 31, + "id": 154, + "name": "odit illo optio ea modi in", + "email": "Durward@cindy.com", + "body": "quod magni consectetur\nquod doloremque velit autem ipsam nisi praesentium ut\nlaboriosam quod deleniti\npariatur aliquam sint excepturi a consectetur quas eos" + }, + { + "postId": 31, + "id": 155, + "name": "adipisci laboriosam repudiandae omnis veritatis in facere similique rem", + "email": "Lester@chauncey.ca", + "body": "animi asperiores modi et tenetur vel magni\nid iusto aliquid ad\nnihil dolorem dolorum aut veritatis voluptates\nomnis cupiditate incidunt" + }, + { + "postId": 32, + "id": 156, + "name": "pariatur omnis in", + "email": "Telly_Lynch@karl.co.uk", + "body": "dolorum voluptas laboriosam quisquam ab\ntotam beatae et aut aliquid optio assumenda\nvoluptas velit itaque quidem voluptatem tempore cupiditate\nin itaque sit molestiae minus dolores magni" + }, + { + "postId": 32, + "id": 157, + "name": "aut nobis et consequatur", + "email": "Makenzie@libbie.io", + "body": "voluptas quia quo ad\nipsum voluptatum provident ut ipsam velit dignissimos aut assumenda\nut officia laudantium\nquibusdam sed minima" + }, + { + "postId": 32, + "id": 158, + "name": "explicabo est molestiae aut", + "email": "Amiya@perry.us", + "body": "et qui ad vero quis\nquisquam omnis fuga et vel nihil minima eligendi nostrum\nsed deserunt rem voluptates autem\nquia blanditiis cum sed" + }, + { + "postId": 32, + "id": 159, + "name": "voluptas blanditiis deserunt quia quis", + "email": "Meghan@akeem.tv", + "body": "deserunt deleniti officiis architecto consequatur molestiae facere dolor\nvoluptatem velit eos fuga dolores\nsit quia est a deleniti hic dolor quisquam repudiandae\nvoluptas numquam voluptatem impedit" + }, + { + "postId": 32, + "id": 160, + "name": "sint fugit esse", + "email": "Mitchel.Williamson@fletcher.io", + "body": "non reprehenderit aut sed quos est ad voluptatum\nest ut est dignissimos ut dolores consequuntur\ndebitis aspernatur consequatur est\nporro nulla laboriosam repellendus et nesciunt est libero placeat" + }, + { + "postId": 33, + "id": 161, + "name": "nesciunt quidem veritatis alias odit nisi voluptatem non est", + "email": "Ashlee_Jast@emie.biz", + "body": "sunt totam blanditiis\neum quos fugit et ab rerum nemo\nut iusto architecto\nut et eligendi iure placeat omnis" + }, + { + "postId": 33, + "id": 162, + "name": "animi vitae qui aut corrupti neque culpa modi", + "email": "Antwan@lori.ca", + "body": "nulla impedit porro in sed\nvoluptatem qui voluptas et enim beatae\nnobis et sit ipsam aut\nvoluptatem voluptatibus blanditiis officia quod eos omnis earum dolorem" + }, + { + "postId": 33, + "id": 163, + "name": "omnis ducimus ab temporibus nobis porro natus deleniti", + "email": "Estelle@valentina.info", + "body": "molestiae dolorem quae rem neque sapiente voluptatum nesciunt cum\nid rerum at blanditiis est accusantium est\neos illo porro ad\nquod repellendus ad et labore fugit dolorum" + }, + { + "postId": 33, + "id": 164, + "name": "eius corrupti ea", + "email": "Haylie@gino.name", + "body": "beatae aut ut autem sit officia rerum nostrum\nprovident ratione sed dicta omnis alias commodi rerum expedita\nnon nobis sapiente consectetur odit unde quia\nvoluptas in nihil consequatur doloremque ullam dolorem cum" + }, + { + "postId": 33, + "id": 165, + "name": "quia commodi molestiae assumenda provident sit incidunt laudantium", + "email": "Blake_Spinka@robyn.info", + "body": "sed praesentium ducimus minima autem corporis debitis\naperiam eum sit pariatur\nimpedit placeat illo odio\nodit accusantium expedita quo rerum magnam" + }, + { + "postId": 34, + "id": 166, + "name": "sint alias molestiae qui dolor vel", + "email": "Aimee.Bins@braeden.ca", + "body": "nam quas eaque unde\ndolor blanditiis cumque eaque omnis qui\nrerum modi sint quae numquam exercitationem\natque aut praesentium ipsa sit neque qui sint aut" + }, + { + "postId": 34, + "id": 167, + "name": "ea nam iste est repudiandae", + "email": "Eloy@vladimir.com", + "body": "molestiae voluptatem qui\nid facere nostrum quasi asperiores rerum\nquisquam est repellendus\ndeleniti eos aut sed nemo non" + }, + { + "postId": 34, + "id": 168, + "name": "quis harum voluptatem et culpa", + "email": "Gabrielle@jada.co.uk", + "body": "cupiditate optio in quidem adipisci sit dolor id\net tenetur quo sit odit\naperiam illum optio magnam qui\nmolestiae eligendi harum optio dolores dolor quaerat nostrum" + }, + { + "postId": 34, + "id": 169, + "name": "dolor dolore similique tempore ducimus", + "email": "Lee@dawn.net", + "body": "unde non aliquid magni accusantium architecto et\nrerum autem eos explicabo et\nodio facilis sed\nrerum ex esse beatae quia" + }, + { + "postId": 34, + "id": 170, + "name": "cupiditate labore omnis consequatur", + "email": "Gideon.Hyatt@jalen.tv", + "body": "amet id deserunt ipsam\ncupiditate distinctio nulla voluptatem\ncum possimus voluptate\nipsum quidem laudantium quos nihil" + }, + { + "postId": 35, + "id": 171, + "name": "voluptatibus qui est et", + "email": "Gerda.Reynolds@ceasar.co.uk", + "body": "sed non beatae placeat qui libero nam eaque qui\nquia ut ad doloremque\nsequi unde quidem adipisci debitis autem velit\narchitecto aperiam eos nihil enim dolores veritatis omnis ex" + }, + { + "postId": 35, + "id": 172, + "name": "corporis ullam quo", + "email": "Ivah@brianne.net", + "body": "nemo ullam omnis sit\nlabore perferendis et eveniet nostrum\ndignissimos expedita iusto\noccaecati quia sit quibusdam" + }, + { + "postId": 35, + "id": 173, + "name": "nulla accusamus saepe debitis cum", + "email": "Ethyl_Bogan@candace.co.uk", + "body": "asperiores hic fugiat aut et temporibus mollitia quo quam\ncumque numquam labore qui illum vel provident quod\npariatur natus incidunt\nsunt error voluptatibus vel voluptas maiores est vero possimus" + }, + { + "postId": 35, + "id": 174, + "name": "iure praesentium ipsam", + "email": "Janelle_Guann@americo.info", + "body": "sit dolores consequatur qui voluptas sunt\nearum at natus alias excepturi dolores\nmaiores pariatur at reiciendis\ndolor esse optio" + }, + { + "postId": 35, + "id": 175, + "name": "autem totam velit officiis voluptates et ullam rem", + "email": "Alfonzo.Barton@kelley.co.uk", + "body": "culpa non ea\nperspiciatis exercitationem sed natus sit\nenim voluptatum ratione omnis consequuntur provident commodi omnis\nquae odio sit at tempora" + }, + { + "postId": 36, + "id": 176, + "name": "ipsam deleniti incidunt repudiandae voluptatem maxime provident non dolores", + "email": "Esther@ford.me", + "body": "quam culpa fugiat\nrerum impedit ratione vel ipsam rem\ncommodi qui rem eum\nitaque officiis omnis ad" + }, + { + "postId": 36, + "id": 177, + "name": "ab cupiditate blanditiis ea sunt", + "email": "Naomie_Cronin@rick.co.uk", + "body": "ut facilis sapiente\nquia repellat autem et aut delectus sint\nautem nulla debitis\nomnis consequuntur neque" + }, + { + "postId": 36, + "id": 178, + "name": "rerum ex quam enim sunt", + "email": "Darryl@reginald.us", + "body": "sit maxime fugit\nsequi culpa optio consequatur voluptatem dolor expedita\nenim iure eum reprehenderit doloremque aspernatur modi\nvoluptatem culpa nostrum quod atque rerum sint laboriosam et" + }, + { + "postId": 36, + "id": 179, + "name": "et iure ex rerum qui", + "email": "Thea@aurelio.org", + "body": "non saepe ipsa velit sunt\ntotam ipsum optio voluptatem\nnesciunt qui iste eum\net deleniti ullam" + }, + { + "postId": 36, + "id": 180, + "name": "autem tempora a iusto eum aut voluptatum", + "email": "Carolyn@eloisa.biz", + "body": "recusandae temporibus nihil non alias consequatur\nlibero voluptatem sed soluta accusamus\na qui reiciendis officiis ad\nquia laborum libero et rerum voluptas sed ut et" + }, + { + "postId": 37, + "id": 181, + "name": "similique ut et non laboriosam in eligendi et", + "email": "Milan.Schoen@cortney.io", + "body": "dolor iure corrupti\net eligendi nesciunt voluptatum autem\nconsequatur in sapiente\ndolor voluptas dolores natus iusto qui et in perferendis" + }, + { + "postId": 37, + "id": 182, + "name": "soluta corporis excepturi consequatur perspiciatis quia voluptatem", + "email": "Sabrina@raymond.biz", + "body": "voluptatum voluptatem nisi consequatur et\nomnis nobis odio neque ab enim veniam\nsit qui aperiam odit voluptatem facere\nnesciunt esse nemo" + }, + { + "postId": 37, + "id": 183, + "name": "praesentium quod quidem optio omnis qui", + "email": "Hildegard@alford.ca", + "body": "tempora soluta voluptas deserunt\nnon fugiat similique\nest natus enim eum error magni soluta\ndolores sit doloremque" + }, + { + "postId": 37, + "id": 184, + "name": "veritatis velit quasi quo et voluptates dolore", + "email": "Lowell.Pagac@omari.biz", + "body": "odio saepe ad error minima itaque\nomnis fuga corrupti qui eaque cupiditate eum\nvitae laborum rerum ut reprehenderit architecto sit debitis magnam\nqui corrupti cum quidem commodi facere corporis" + }, + { + "postId": 37, + "id": 185, + "name": "natus assumenda ut", + "email": "Vivianne@ima.us", + "body": "deleniti non et corrupti delectus ea cupiditate\nat nihil fuga rerum\ntemporibus doloribus unde sed alias\nducimus perspiciatis quia debitis fuga" + }, + { + "postId": 38, + "id": 186, + "name": "voluptas distinctio qui similique quasi voluptatem non sit", + "email": "Yasmin.Prohaska@hanna.co.uk", + "body": "asperiores eaque error sunt ut natus et omnis\nexpedita error iste vitae\nsit alias voluptas voluptatibus quia iusto quia ea\nenim facere est quam ex" + }, + { + "postId": 38, + "id": 187, + "name": "maiores iste dolor itaque nemo voluptas", + "email": "Ursula.Kirlin@eino.org", + "body": "et enim necessitatibus velit autem magni voluptas\nat maxime error sunt nobis sit\ndolor beatae harum rerum\ntenetur facere pariatur et perferendis voluptas maiores nihil eaque" + }, + { + "postId": 38, + "id": 188, + "name": "quisquam quod quia nihil animi minima facere odit est", + "email": "Nichole_Bartoletti@mozell.me", + "body": "quam magni adipisci totam\nut reprehenderit ut tempore non asperiores repellendus architecto aperiam\ndignissimos est aut reiciendis consectetur voluptate nihil culpa at\nmolestiae labore qui ea" + }, + { + "postId": 38, + "id": 189, + "name": "ut iusto asperiores delectus", + "email": "Lottie_Wyman@jasen.biz", + "body": "nostrum excepturi debitis cum\narchitecto iusto laudantium odit aut dolor voluptatem consectetur nulla\nmollitia beatae autem quasi nemo repellendus ut ea et\naut architecto odio cum quod optio" + }, + { + "postId": 38, + "id": 190, + "name": "dignissimos voluptatibus libero", + "email": "Dominique_Hermann@paige.ca", + "body": "laudantium vero similique eum\niure iste culpa praesentium\nmolestias doloremque alias et at doloribus\naperiam natus est illo quo ratione porro excepturi" + }, + { + "postId": 39, + "id": 191, + "name": "est perferendis eos dolores maxime rerum qui", + "email": "Eugene@mohammed.net", + "body": "sit vero aut voluptatem soluta corrupti dolor cum\nnulla ipsa accusamus aut suscipit ut dicta ut nemo\nut et ut sit voluptas modi\nillum suscipit ea debitis aut ullam harum" + }, + { + "postId": 39, + "id": 192, + "name": "sunt veritatis quisquam est et porro nesciunt excepturi a", + "email": "Janick@marty.me", + "body": "dolore velit autem perferendis hic\ntenetur quo rerum\nimpedit error sit eaque ut\nad in expedita et nesciunt sit aspernatur repudiandae" + }, + { + "postId": 39, + "id": 193, + "name": "quia velit nostrum eligendi voluptates", + "email": "Alena@deron.name", + "body": "laudantium consequatur sed adipisci a\nodit quia necessitatibus qui\nnumquam expedita est accusantium nostrum\noccaecati perspiciatis molestiae nostrum atque" + }, + { + "postId": 39, + "id": 194, + "name": "non ut sunt ut eius autem ipsa eos sapiente", + "email": "Alphonso_Rosenbaum@valentin.co.uk", + "body": "aut distinctio iusto autem sit libero deleniti\nest soluta non perferendis illo\neveniet corrupti est sint quae\nsed sunt voluptatem" + }, + { + "postId": 39, + "id": 195, + "name": "tempore vel accusantium qui quidem esse ut aut", + "email": "Frank@rosalind.name", + "body": "culpa voluptas quidem eos quis excepturi\nquasi corporis provident enim\nprovident velit ex occaecati deleniti\nid aspernatur fugiat eligendi" + }, + { + "postId": 40, + "id": 196, + "name": "totam vel saepe aut qui velit quis", + "email": "Jenifer_Lowe@reuben.ca", + "body": "eum laborum quidem omnis facere harum ducimus dolores quaerat\ncorporis quidem aliquid\nquod aut aut at dolorum aspernatur reiciendis\nexercitationem quasi consectetur asperiores vero blanditiis dolor" + }, + { + "postId": 40, + "id": 197, + "name": "non perspiciatis omnis facere rem", + "email": "Cecelia_Nitzsche@marty.com", + "body": "fugit ut laborum provident\nquos provident voluptatibus quam non\nsed accusantium explicabo dolore quia distinctio voluptatibus et\nconsequatur eos qui iure minus eaque praesentium" + }, + { + "postId": 40, + "id": 198, + "name": "quod vel enim sit quia ipsa quo dolores", + "email": "Christop_Friesen@jordan.me", + "body": "est veritatis mollitia atque quas et sint et dolor\net ut beatae aut\nmagni corporis dolores voluptatibus optio molestiae enim minus est\nreiciendis facere voluptate rem officia doloribus ut" + }, + { + "postId": 40, + "id": 199, + "name": "pariatur aspernatur nam atque quis", + "email": "Cooper_Boehm@damian.biz", + "body": "veniam eos ab voluptatem in fugiat ipsam quis\nofficiis non qui\nquia ut id voluptates et a molestiae commodi quam\ndolorem enim soluta impedit autem nulla" + }, + { + "postId": 40, + "id": 200, + "name": "aperiam et omnis totam", + "email": "Amir@kaitlyn.org", + "body": "facere maxime alias aspernatur ab quibusdam necessitatibus\nratione similique error enim\nsed minus et\net provident minima voluptatibus" + }, + { + "postId": 41, + "id": 201, + "name": "et adipisci aliquam a aperiam ut soluta", + "email": "Cleve@royal.us", + "body": "est officiis placeat\nid et iusto ut fugit numquam\neos aut voluptas ad quia tempore qui quibusdam doloremque\nrecusandae tempora qui" + }, + { + "postId": 41, + "id": 202, + "name": "blanditiis vel fuga odio qui", + "email": "Donnell@polly.net", + "body": "sequi expedita quibusdam enim ipsam\nbeatae ad eum placeat\nperspiciatis quis in nulla porro voluptas quia\nesse et quibusdam" + }, + { + "postId": 41, + "id": 203, + "name": "ab enim adipisci laudantium impedit qui sed", + "email": "Bonita@karl.biz", + "body": "eum voluptates id autem sequi qui omnis commodi\nveniam et laudantium aut\net molestias esse asperiores et quaerat\npariatur non officia voluptatibus" + }, + { + "postId": 41, + "id": 204, + "name": "autem voluptates voluptas nihil", + "email": "Shea@angelina.biz", + "body": "voluptatibus pariatur illo\nautem quia aut ullam laudantium quod laborum officia\ndicta sit consequatur quis delectus vel\nomnis laboriosam laborum vero ipsa voluptas" + }, + { + "postId": 41, + "id": 205, + "name": "et reiciendis ullam quae", + "email": "Omari@veronica.us", + "body": "voluptatem accusamus delectus natus quasi aliquid\nporro ab id ea aut consequatur dignissimos quod et\naspernatur sapiente cum corrupti\npariatur veritatis unde" + }, + { + "postId": 42, + "id": 206, + "name": "deserunt eveniet quam vitae velit", + "email": "Sophie@antoinette.ca", + "body": "nam iusto minus expedita numquam\net id quis\nvoluptatibus minima porro facilis dolores beatae aut sit\naut quia suscipit" + }, + { + "postId": 42, + "id": 207, + "name": "asperiores sed voluptate est", + "email": "Jessika@crystel.ca", + "body": "nulla quos harum commodi\naperiam qui et dignissimos\nreiciendis ut quia est corrupti itaque\nlaboriosam debitis suscipit" + }, + { + "postId": 42, + "id": 208, + "name": "excepturi aut libero incidunt doloremque at", + "email": "Cesar_Volkman@letitia.biz", + "body": "enim aut doloremque mollitia provident molestiae omnis esse excepturi\nofficiis tempora sequi molestiae veniam voluptatem\nrecusandae omnis temporibus et deleniti laborum sed ipsa\nmolestiae eum aut" + }, + { + "postId": 42, + "id": 209, + "name": "repudiandae consectetur dolore", + "email": "Maureen_Mueller@lance.us", + "body": "officiis qui eos voluptas laborum error\nsunt repellat quis nisi unde velit\ndelectus eum molestias tempora quia ut aut\nconsequatur cupiditate quis sint in eum voluptates" + }, + { + "postId": 42, + "id": 210, + "name": "quibusdam provident accusamus id aut totam eligendi", + "email": "Eriberto@geovany.ca", + "body": "praesentium odit quos et tempora eum voluptatem non\nnon aut eaque consectetur reprehenderit in qui eos nam\nnemo ea eos\nea nesciunt consequatur et" + }, + { + "postId": 43, + "id": 211, + "name": "rerum voluptate dolor", + "email": "Faustino.Keeling@morris.co.uk", + "body": "odio temporibus est ut a\naut commodi minima tempora eum\net fuga omnis alias deleniti facere totam unde\nimpedit voluptas et possimus consequatur necessitatibus qui velit" + }, + { + "postId": 43, + "id": 212, + "name": "et maiores sed temporibus cumque voluptatem sunt necessitatibus in", + "email": "Viola@aric.co.uk", + "body": "aut vero sint ut et voluptate\nsunt quod velit impedit quia\ncupiditate dicta magni ut\neos blanditiis assumenda pariatur nemo est tempore velit" + }, + { + "postId": 43, + "id": 213, + "name": "ratione architecto in est voluptatem quibusdam et", + "email": "Felton_Huel@terrell.biz", + "body": "at non dolore molestiae\nautem rerum id\ncum facilis sit necessitatibus accusamus quia officiis\nsint ea sit natus rerum est nemo perspiciatis ea" + }, + { + "postId": 43, + "id": 214, + "name": "dicta deserunt tempore", + "email": "Ferne_Bogan@angus.info", + "body": "nam nesciunt earum sequi dolorum\net fuga sint quae architecto\nin et et ipsam veniam ad voluptas rerum animi\nillum temporibus enim rerum est" + }, + { + "postId": 43, + "id": 215, + "name": "sint culpa cupiditate ut sit quas qui voluptas qui", + "email": "Amy@reymundo.org", + "body": "esse ab est deleniti dicta non\ninventore veritatis cupiditate\neligendi sequi excepturi assumenda a harum sint aut eaque\nrerum molestias id excepturi quidem aut" + }, + { + "postId": 44, + "id": 216, + "name": "voluptatem esse sint alias", + "email": "Jaylan.Mayert@norbert.biz", + "body": "minima quaerat voluptatibus iusto earum\nquia nihil et\nminus deleniti aspernatur voluptatibus tempore sit molestias\narchitecto velit id debitis" + }, + { + "postId": 44, + "id": 217, + "name": "eos velit velit esse autem minima voluptas", + "email": "Cristina.DAmore@destini.biz", + "body": "aperiam rerum aut provident cupiditate laboriosam\nenim placeat aut explicabo\nvoluptatum similique rerum eaque eligendi\nnobis occaecati perspiciatis sint ullam" + }, + { + "postId": 44, + "id": 218, + "name": "voluptatem qui deserunt dolorum in voluptates similique et qui", + "email": "Ettie_Bashirian@lambert.biz", + "body": "rem qui est\nfacilis qui voluptatem quis est veniam quam aspernatur dicta\ndolore id sapiente saepe consequatur\nenim qui impedit culpa ex qui voluptas dolor" + }, + { + "postId": 44, + "id": 219, + "name": "qui unde recusandae omnis ut explicabo neque magni veniam", + "email": "Lizeth@kellen.org", + "body": "est et dolores voluptas aut molestiae nam eos saepe\nexpedita eum ea tempore sit iure eveniet\niusto enim quos quo\nrepellendus laudantium eum fugiat aut et" + }, + { + "postId": 44, + "id": 220, + "name": "vel autem quia in modi velit", + "email": "Vladimir_Schumm@sharon.tv", + "body": "illum ea eum quia\ndoloremque modi ducimus voluptatum eaque aperiam accusamus eos quia\nsed rerum aperiam sunt quo\nea veritatis natus eos deserunt voluptas ea voluptate" + }, + { + "postId": 45, + "id": 221, + "name": "reprehenderit rem voluptatem voluptate recusandae dolore distinctio", + "email": "Madonna@will.com", + "body": "rerum possimus asperiores non dolores maiores tenetur ab\nsuscipit laudantium possimus ab iure\ndistinctio assumenda iste adipisci optio est sed eligendi\ntemporibus perferendis tempore soluta" + }, + { + "postId": 45, + "id": 222, + "name": "rerum aliquam ducimus repudiandae perferendis", + "email": "Cicero_Goldner@elenor.tv", + "body": "cum officiis impedit neque a sed dolorum accusamus eaque\nrepellat natus aut commodi sint fugit consequatur corporis\nvoluptatum dolorum sequi perspiciatis ut facilis\ndelectus pariatur consequatur at aut temporibus facere vitae" + }, + { + "postId": 45, + "id": 223, + "name": "accusantium aliquid consequuntur minus quae quis et autem", + "email": "Zella@jan.net", + "body": "maiores perspiciatis quo alias doloremque\nillum iusto possimus impedit\nvelit voluptatem assumenda possimus\nut nesciunt eum et deleniti molestias harum excepturi" + }, + { + "postId": 45, + "id": 224, + "name": "eum dolorum ratione vitae expedita", + "email": "Robin_Jacobi@verdie.net", + "body": "perferendis quae est velit ipsa autem adipisci ex rerum\nvoluptatem occaecati velit perferendis aut tenetur\ndeleniti eaque quasi suscipit\ndolorum nobis vel et aut est eos" + }, + { + "postId": 45, + "id": 225, + "name": "occaecati et corrupti expedita", + "email": "Lawson@demarco.co.uk", + "body": "doloribus illum tempora aliquam qui perspiciatis dolorem ratione velit\nfacere nobis et fugiat modi\nfugiat dolore at\nducimus voluptate porro qui architecto optio unde deleniti" + }, + { + "postId": 46, + "id": 226, + "name": "assumenda officia quam ex natus minima sint quia", + "email": "Benton@jayde.tv", + "body": "provident sed similique\nexplicabo fugiat quasi saepe voluptatem corrupti recusandae\nvoluptas repudiandae illum tenetur mollitia\nsint in enim earum est" + }, + { + "postId": 46, + "id": 227, + "name": "omnis error aut doloremque ipsum ducimus", + "email": "Melody@london.name", + "body": "est quo quod tempora fuga debitis\neum nihil nemo nisi consequatur sequi nesciunt dolorum et\ncumque maxime qui consequatur mollitia dicta iusto aut\nvero recusandae ut dolorem provident voluptatibus suscipit sint" + }, + { + "postId": 46, + "id": 228, + "name": "eaque expedita temporibus iure velit eligendi labore dignissimos molestiae", + "email": "Wyman.Swaniawski@marjorie.name", + "body": "quibusdam dolores eveniet qui minima\nmagni perspiciatis pariatur\nullam dolor sit ex molestiae in nulla unde rerum\nquibusdam deleniti nisi" + }, + { + "postId": 46, + "id": 229, + "name": "maxime veniam at", + "email": "Deborah@fletcher.co.uk", + "body": "unde aliquam ipsam eaque quia laboriosam exercitationem totam illo\nnon et dolore ipsa\nlaborum et sapiente fugit voluptatem\net debitis quia optio et minima et nostrum" + }, + { + "postId": 46, + "id": 230, + "name": "illo dolor corrupti quia pariatur in", + "email": "Dario@barton.info", + "body": "neque ullam eos amet\nratione architecto doloribus qui est nisi\noccaecati unde expedita perspiciatis animi tenetur minus eveniet aspernatur\neius nihil adipisci aut" + }, + { + "postId": 47, + "id": 231, + "name": "omnis minima dicta aliquam excepturi", + "email": "Kelton_McKenzie@danial.us", + "body": "veritatis laudantium laboriosam ut maxime sed voluptate\nconsequatur itaque occaecati voluptatum est\nut itaque aperiam eligendi at vel minus\ndicta tempora nihil pariatur libero est" + }, + { + "postId": 47, + "id": 232, + "name": "voluptatem excepturi sit et sed qui ipsum quam consequatur", + "email": "Itzel@fritz.io", + "body": "ullam modi consequatur officia dolor non explicabo et\neum minus dicta dolores blanditiis dolore\nnobis assumenda harum velit ullam et cupiditate\net commodi dolor harum et sed cum reprehenderit omnis" + }, + { + "postId": 47, + "id": 233, + "name": "qui dolores maxime autem enim repellendus culpa nostrum consequuntur", + "email": "Jacquelyn_Kutch@kaya.co.uk", + "body": "aperiam quo quis\nnobis error et culpa veritatis\nquae sapiente nobis architecto doloribus quia laboriosam\nest consequatur et recusandae est eius" + }, + { + "postId": 47, + "id": 234, + "name": "natus et necessitatibus animi", + "email": "Cheyanne.Schowalter@alycia.biz", + "body": "itaque voluptatem voluptas velit non est rerum incidunt\nvitae aut labore accusantium in atque\nrepudiandae quos necessitatibus\nautem ea excepturi" + }, + { + "postId": 47, + "id": 235, + "name": "odio sed accusantium iure repudiandae officiis ut autem illo", + "email": "Macey@abbie.org", + "body": "ea iusto laboriosam sit\nvoluptatibus magni ratione eum\net minus perferendis\neius rerum suscipit velit culpa ipsa ipsam aperiam est" + }, + { + "postId": 48, + "id": 236, + "name": "cupiditate rerum voluptate quo facere repudiandae", + "email": "Freeda.Kirlin@eddie.ca", + "body": "itaque error cupiditate asperiores ut aspernatur veniam qui\ndoloribus sit aliquid pariatur dicta deleniti qui alias dignissimos\nrecusandae eaque repellendus est et dolorem aut non\nexplicabo voluptas est beatae vel temporibus" + }, + { + "postId": 48, + "id": 237, + "name": "recusandae deserunt possimus voluptatibus ipsam iste consequatur consequatur", + "email": "Jennifer.Rowe@zoe.org", + "body": "aut culpa quis modi\nlibero hic dolore provident officiis placeat minima vero\net iste dolores aut voluptatem saepe unde\nvero temporibus sunt corrupti voluptate" + }, + { + "postId": 48, + "id": 238, + "name": "voluptatem nam ducimus non molestiae", + "email": "Providenci.Heller@lenna.info", + "body": "et nostrum cupiditate nobis facere et est illo\nconsequatur harum voluptatem totam\nmolestiae voluptas consequatur quibusdam aut\nmodi impedit necessitatibus et nisi nesciunt adipisci" + }, + { + "postId": 48, + "id": 239, + "name": "voluptatum debitis qui aut voluptas eos quibusdam et", + "email": "Emerald_Murazik@darrell.biz", + "body": "esse rem ut neque magni voluptatem id qui\naut ut vel autem non qui quam sit\nimpedit quis sit illum laborum\naut at vel eos nihil quo" + }, + { + "postId": 48, + "id": 240, + "name": "est dolorem est placeat provident non nihil", + "email": "Joseph@corrine.com", + "body": "necessitatibus nulla perferendis ad inventore earum delectus\nvitae illo sed perferendis\nofficiis quo eligendi voluptatem animi totam perspiciatis\nrepellat quam eum placeat est tempore facere" + }, + { + "postId": 49, + "id": 241, + "name": "reprehenderit inventore soluta ut aliquam", + "email": "Lemuel@willow.name", + "body": "quisquam asperiores voluptas\nmodi tempore officia quod hic dolor omnis asperiores\narchitecto aut vel odio quisquam sunt\ndeserunt soluta illum" + }, + { + "postId": 49, + "id": 242, + "name": "quis sit aut vero quo accusamus", + "email": "Sven@gudrun.info", + "body": "dolores minus sequi laudantium excepturi deserunt rerum voluptatem\npariatur harum natus sed dolore quis\nconsectetur quod inventore laboriosam et in dolor beatae rerum\nquia rerum qui recusandae quo officiis fugit" + }, + { + "postId": 49, + "id": 243, + "name": "quaerat natus illum", + "email": "Jennifer@shania.ca", + "body": "rem ut cumque tempore sed\naperiam unde tenetur ab maiores officiis alias\naut nemo veniam dolor est eum sunt a\nesse ratione deserunt et" + }, + { + "postId": 49, + "id": 244, + "name": "labore temporibus ipsa at blanditiis autem", + "email": "Eldora@madge.com", + "body": "est et itaque qui laboriosam dolor ut debitis\ncumque et et dolor\neaque enim et architecto\net quia reiciendis quis" + }, + { + "postId": 49, + "id": 245, + "name": "et rerum fuga blanditiis provident eligendi iste eos", + "email": "Litzy@kaylie.io", + "body": "vel nam nemo sed vitae\nrepellat necessitatibus dolores deserunt dolorum\nminima quae velit et nemo\nsit expedita nihil consequatur autem quia maiores" + }, + { + "postId": 50, + "id": 246, + "name": "magnam earum qui eaque sunt excepturi", + "email": "Jaycee.Turner@euna.name", + "body": "quia est sed eos animi optio dolorum\nconsequatur reiciendis exercitationem ipsum nihil omnis\nbeatae sed corporis enim quisquam\net blanditiis qui nihil" + }, + { + "postId": 50, + "id": 247, + "name": "vel aut blanditiis magni accusamus dolor soluta", + "email": "Wilbert@cheyenne.ca", + "body": "explicabo nam nihil atque sint aut\nqui qui rerum excepturi soluta quis et\net mollitia et voluptate minima nihil\nsed quaerat dolor earum tempore et non est voluptatem" + }, + { + "postId": 50, + "id": 248, + "name": "voluptatum sint dicta voluptas aut ut", + "email": "Rebecca_Hessel@edna.net", + "body": "assumenda aut quis repellendus\nnihil impedit cupiditate nemo\nsit sequi laudantium aut voluptas nam dolore magnam\nminima aspernatur vero sapiente" + }, + { + "postId": 50, + "id": 249, + "name": "quibusdam dignissimos aperiam sint commodi", + "email": "Christiana@lawrence.info", + "body": "non repudiandae dicta et commodi\nsint dolores facere eos nesciunt autem quia\nplaceat quaerat non culpa quasi dolores voluptas\ndolorum placeat non atque libero odit autem sunt" + }, + { + "postId": 50, + "id": 250, + "name": "perferendis magnam natus exercitationem eveniet sunt", + "email": "Samara@shaun.org", + "body": "doloremque quae ratione cumque\nexcepturi eligendi delectus maiores necessitatibus veniam\nfugiat exercitationem consectetur vel earum\nquia illo explicabo molestiae enim rem deserunt et omnis" + }, + { + "postId": 51, + "id": 251, + "name": "veritatis sint eius", + "email": "Ayden_Hickle@stephany.tv", + "body": "sit vero at voluptatem corporis adipisci\nerror sit aut nihil rerum doloremque dolorum ipsum\neum ut numquam sapiente ipsam nam blanditiis ut quasi\nfacilis optio rerum qui temporibus esse excepturi eaque" + }, + { + "postId": 51, + "id": 252, + "name": "qui alias beatae iusto omnis placeat recusandae ut", + "email": "Carissa.Krajcik@jean.name", + "body": "exercitationem quisquam sed\neius et cum reiciendis deleniti non\nperspiciatis aut voluptatum deserunt\nsint dignissimos est sed architecto sed" + }, + { + "postId": 51, + "id": 253, + "name": "voluptate ipsum corporis quis provident voluptatem eos asperiores", + "email": "Jayde@geovanny.io", + "body": "debitis dignissimos ut illum\nrerum voluptatem ut qui labore\noptio quaerat iure\niste consequuntur praesentium vero blanditiis quibusdam aut" + }, + { + "postId": 51, + "id": 254, + "name": "velit inventore et eius saepe", + "email": "Ardella@khalid.biz", + "body": "laboriosam voluptas aut quibusdam mollitia sunt non\ndolores illum fugiat ex vero nemo aperiam porro quam\nexpedita est vel voluptatem sit voluptas consequuntur quis eligendi\nomnis id nisi ducimus sapiente odit quam" + }, + { + "postId": 51, + "id": 255, + "name": "impedit et sapiente et tempore repellendus", + "email": "Delta_Welch@carleton.tv", + "body": "nihil esse aut\ndebitis nostrum mollitia similique minus aspernatur possimus\nomnis eaque non eveniet\nrerum qui iure laboriosam" + }, + { + "postId": 52, + "id": 256, + "name": "tempore distinctio quam", + "email": "Carlee_Heathcote@harley.tv", + "body": "nemo deleniti sunt praesentium quis quam repellendus\nconsequatur non est ex fugiat distinctio aliquam explicabo\naspernatur omnis debitis sint consequatur\nquo autem natus veritatis" + }, + { + "postId": 52, + "id": 257, + "name": "illum non quod vel voluptas quos", + "email": "Delpha_Cormier@raymond.org", + "body": "facere at voluptatem\nrepellendus omnis perspiciatis placeat aspernatur nobis blanditiis ut deleniti\nquis non cumque laborum sit id ratione vel sequi\nfacere doloremque beatae aut maxime non" + }, + { + "postId": 52, + "id": 258, + "name": "omnis quia fugit nisi officiis aspernatur occaecati et", + "email": "Glenna@caesar.org", + "body": "aut cum sint qui facere blanditiis magnam consequuntur perspiciatis\nharum impedit reprehenderit iste doloribus quia quo facere\net explicabo aut voluptate modi dolorem\nrem aut nobis ut ad voluptatum ipsum eos maxime" + }, + { + "postId": 52, + "id": 259, + "name": "animi minima ducimus tempore officiis qui", + "email": "Hoyt_Dickens@napoleon.ca", + "body": "itaque occaecati non aspernatur\nvelit repudiandae sit rerum esse quibusdam unde molestias\nexplicabo dolorem vero consequatur quis et libero\nvoluptatem totam vel sapiente autem dolorum consequuntur" + }, + { + "postId": 52, + "id": 260, + "name": "qui dolore delectus et omnis quia", + "email": "Wendell.Marvin@maegan.net", + "body": "aliquid molestias nemo aut est maxime\nlaboriosam et consequatur laudantium\ncommodi et corrupti\nharum quasi minima ratione sint magni sapiente ut" + }, + { + "postId": 53, + "id": 261, + "name": "aut veritatis quasi voluptatem enim dolor soluta temporibus", + "email": "Virgie@layne.org", + "body": "sapiente qui est quod\ndebitis qui est optio consequuntur\nalias hic amet ut non ad qui provident\nquia provident aspernatur corrupti occaecati" + }, + { + "postId": 53, + "id": 262, + "name": "ipsa aliquid laborum quidem recusandae dolorum quia", + "email": "Tia@kirsten.info", + "body": "similique harum iste ipsam non dolores facere esse\net beatae error necessitatibus laboriosam fugiat culpa esse occaecati\nut provident ut et dolorum nam\ndelectus impedit aut blanditiis fugiat est unde" + }, + { + "postId": 53, + "id": 263, + "name": "vitae voluptatem dolor iure quo non atque", + "email": "Marco@jennyfer.biz", + "body": "debitis dolore est\nut eos velit accusamus\nnon nobis ipsa nemo quas facilis quia hic\nofficia quam et possimus voluptas voluptatem quisquam tempore delectus" + }, + { + "postId": 53, + "id": 264, + "name": "cum ab voluptates aut", + "email": "Taya@milan.biz", + "body": "consectetur maiores ab est qui aliquid porro\nipsa labore incidunt\niste deserunt quia aperiam quis sit perferendis\net sint iste" + }, + { + "postId": 53, + "id": 265, + "name": "omnis incidunt est molestias", + "email": "Lenora@derrick.biz", + "body": "et quibusdam saepe labore delectus et earum quis perferendis\nlaborum soluta veritatis\nea veritatis quidem accusantium est aut porro rerum\nquia est consequatur voluptatem numquam laudantium repellendus" + }, + { + "postId": 54, + "id": 266, + "name": "eum enim provident atque eum", + "email": "Carolina.Auer@polly.co.uk", + "body": "non et voluptas\neaque atque esse qui molestias porro quam veniam voluptatibus\nminima ut velit velit ut architecto deleniti\nab sint deserunt possimus quas velit et eum" + }, + { + "postId": 54, + "id": 267, + "name": "ea commodi provident veritatis voluptatem voluptates aperiam", + "email": "Jaylan.Braun@lane.us", + "body": "magnam similique animi eos explicabo natus\nprovident cumque sit maxime velit\nveritatis fuga esse dolor hic nihil nesciunt assumenda\naliquid vero modi alias qui quia doloribus est" + }, + { + "postId": 54, + "id": 268, + "name": "eum et eos delectus", + "email": "Javier.Dicki@damien.org", + "body": "velit earum perspiciatis ea recusandae nihil consectetur ut\nmaxime repellendus doloribus\naperiam ut ex ratione quia esse magni\nducimus rerum vel rerum officiis suscipit nihil qui" + }, + { + "postId": 54, + "id": 269, + "name": "molestiae vitae pariatur", + "email": "Khalil_Sawayn@tanya.net", + "body": "quos sed unde repudiandae aut porro dignissimos qui\noccaecati sed alias enim\nvoluptates nesciunt sit ut adipisci est\nexpedita quae corrupti" + }, + { + "postId": 54, + "id": 270, + "name": "rerum adipisci et ut sit sit dolores", + "email": "Tom.Russel@pattie.org", + "body": "quas placeat repudiandae a delectus facere exercitationem consectetur\nfacilis quas sequi est mollitia\nest vero hic laudantium maiores\nquisquam itaque aut maxime ut cumque quia doloremque voluptatem" + }, + { + "postId": 55, + "id": 271, + "name": "et et repellat quasi non ea similique", + "email": "Ethelyn.Moore@gabe.info", + "body": "quae eaque reprehenderit\nsuscipit facilis ut tenetur blanditiis sint occaecati\naccusantium expedita sed nostrum\nrerum sunt nam qui placeat consequatur et" + }, + { + "postId": 55, + "id": 272, + "name": "repudiandae ut velit dignissimos enim rem dolores odit", + "email": "Evangeline_Kuvalis@santina.ca", + "body": "consequuntur molestiae aut distinctio illo qui est sequi reprehenderit\nhic accusamus et officiis reprehenderit culpa\nest et numquam et\neius ipsa rerum velit" + }, + { + "postId": 55, + "id": 273, + "name": "et aperiam autem inventore nisi nulla reiciendis velit", + "email": "Orland@larry.name", + "body": "asperiores et minus non\ndolor dolorem et sint et ipsam\net enim quia sequi\nsed beatae culpa architecto nisi minima" + }, + { + "postId": 55, + "id": 274, + "name": "et vero nostrum tempore", + "email": "Micaela.Powlowski@saul.me", + "body": "quos illo consectetur dolores\ncupiditate enim rerum dicta sequi totam\naspernatur sed praesentium\nipsum voluptates perspiciatis ipsa accusantium et et" + }, + { + "postId": 55, + "id": 275, + "name": "error nulla est laudantium similique ad", + "email": "Imelda_Klein@melany.biz", + "body": "error et quasi qui facilis enim eum adipisci iste\nad nostrum sint corporis quam velit necessitatibus a\neius doloribus optio ad qui molestiae\nquaerat dignissimos voluptatem culpa aliquam explicabo commodi natus" + }, + { + "postId": 56, + "id": 276, + "name": "inventore amet ut debitis ipsam reiciendis molestiae autem sed", + "email": "Matt.Moen@gilda.org", + "body": "dolores tempora totam quas maxime voluptatem voluptas excepturi\nrecusandae quis odio exercitationem in\nconsectetur sed aut\nexcepturi eligendi sint consectetur repellendus aperiam" + }, + { + "postId": 56, + "id": 277, + "name": "dolorem aut ipsum alias ex ea quidem nostrum", + "email": "Rocky_Ullrich@rowena.name", + "body": "nihil ratione aliquam recusandae ipsa sunt doloribus labore molestiae\nofficia cum aliquid repudiandae et error\ninventore minima optio repellat aut\nea et maxime alias voluptas eius" + }, + { + "postId": 56, + "id": 278, + "name": "est pariatur similique quod voluptas et consequuntur nam molestiae", + "email": "Natalia@caitlyn.ca", + "body": "corporis perferendis dolorum error quo rerum aut odio veritatis\nsit deleniti aut eligendi quam doloremque aut ipsam sint\ndoloribus id voluptatem esse reprehenderit molestiae quia voluptatem\nincidunt illo beatae nihil corporis eligendi iure quo" + }, + { + "postId": 56, + "id": 279, + "name": "voluptas nihil aut dolor adipisci non", + "email": "Edythe@general.org", + "body": "natus atque ipsum voluptatem et\nnecessitatibus atque quia asperiores animi odit ratione quos\nest repellendus sit aut repudiandae animi aut\ncum blanditiis repudiandae saepe laborum" + }, + { + "postId": 56, + "id": 280, + "name": "culpa minima non consequatur sit autem quas sed ipsam", + "email": "Aglae@gerardo.name", + "body": "perferendis fugit expedita cumque\nexercitationem animi fugit aut earum\nnihil quia illum eum dicta ut\nquam commodi optio" + }, + { + "postId": 57, + "id": 281, + "name": "consequatur voluptates sed voluptatem fuga", + "email": "Bridie@pearl.ca", + "body": "eius voluptatem minus\net aliquid perspiciatis sint unde ut\nsimilique odio ullam vitae quisquam hic ex consequatur aliquid\nab nihil explicabo sint maiores aut et dolores nostrum" + }, + { + "postId": 57, + "id": 282, + "name": "et vitae culpa corrupti", + "email": "Aglae_Goldner@madisyn.co.uk", + "body": "ea consequatur placeat\nquo omnis illum voluptatem\nvoluptatem fugit aut dolorum recusandae ut et\ntenetur officia voluptas" + }, + { + "postId": 57, + "id": 283, + "name": "iste molestiae aut hic perspiciatis sint", + "email": "Owen_Moore@jeremy.org", + "body": "perspiciatis omnis eum nihil et porro facilis fuga qui\ndeleniti id et velit adipisci fuga voluptatibus voluptatum\ndebitis tempore dolorem atque consequatur ea perspiciatis sed\nqui temporibus doloremque" + }, + { + "postId": 57, + "id": 284, + "name": "soluta omnis maiores animi veniam voluptas et totam repellendus", + "email": "Jarred@dangelo.name", + "body": "rem ut sed\nnon cumque corrupti vel nam rerum autem\nnobis dolorem necessitatibus fugit corporis\nquos sint distinctio ex et animi tempore" + }, + { + "postId": 57, + "id": 285, + "name": "non est sunt consequatur reiciendis", + "email": "Remington_Mohr@vincenza.me", + "body": "est accusamus facere\nreprehenderit corporis ad et est fugit iure nulla et\ndoloribus reiciendis quasi autem voluptas\nipsam labore et pariatur quia" + }, + { + "postId": 58, + "id": 286, + "name": "dolore dignissimos distinctio", + "email": "Marco.Langworth@zoie.org", + "body": "doloremque accusantium necessitatibus architecto ut provident\nquaerat iusto eius omnis\nfuga laborum harum totam sunt velit\naut neque corporis atque" + }, + { + "postId": 58, + "id": 287, + "name": "voluptas ad autem maxime iusto eos dolorem ducimus est", + "email": "Sedrick@mertie.tv", + "body": "voluptatem perspiciatis voluptatum quaerat\nodit voluptates iure\nquisquam magnam voluptates ut non qui\naliquam aut ut amet sit consequatur ut suscipit" + }, + { + "postId": 58, + "id": 288, + "name": "numquam eius voluptas quibusdam soluta exercitationem", + "email": "Caleigh@eleanore.org", + "body": "est sed illo omnis delectus aut\nlaboriosam possimus incidunt est sunt at\nnemo voluptas ex ipsam\nvoluptatibus inventore velit sit et numquam omnis accusamus in" + }, + { + "postId": 58, + "id": 289, + "name": "voluptatem aut harum aut corporis dignissimos occaecati sequi quod", + "email": "Paolo@cristopher.com", + "body": "occaecati tempora unde\nmaiores aliquid in\nquo libero sint quidem at est facilis ipsa facere\nnostrum atque harum" + }, + { + "postId": 58, + "id": 290, + "name": "suscipit debitis eveniet nobis atque commodi quisquam", + "email": "Juana_Stamm@helmer.com", + "body": "pariatur veniam repellat quisquam tempore autem et voluptatem itaque\nea impedit ex molestiae placeat hic harum mollitia dolorem\ninventore accusantium aut quae quia rerum autem numquam\nnulla culpa quasi dolor" + }, + { + "postId": 59, + "id": 291, + "name": "occaecati et dolorum", + "email": "Pascale@fleta.ca", + "body": "nisi dicta numquam dolor\nrerum sed quaerat et\nsed sequi doloribus libero quos temporibus\nblanditiis optio est tempore qui" + }, + { + "postId": 59, + "id": 292, + "name": "consequatur et facere similique beatae explicabo eligendi consequuntur", + "email": "Molly_Kertzmann@tristin.me", + "body": "eos officiis omnis ab laborum nulla saepe exercitationem recusandae\nvoluptate minima voluptatem sint\nsunt est consequuntur dolor voluptatem odit\nmaxime similique deserunt et quod" + }, + { + "postId": 59, + "id": 293, + "name": "qui sint hic", + "email": "Kailee.Larkin@amina.org", + "body": "fugiat dicta quasi voluptatibus ea aut est aspernatur sed\ncorrupti harum non omnis eos eaque quos ut\nquia et et nisi rerum voluptates possimus quis\nrecusandae aperiam quia esse" + }, + { + "postId": 59, + "id": 294, + "name": "autem totam necessitatibus sit sunt minima aut quis", + "email": "Earnest.Sanford@lane.us", + "body": "ut est veritatis animi quos\nnam sed dolor\nitaque omnis nostrum autem molestiae\naut optio tempora ad sapiente quae voluptatem perferendis repellat" + }, + { + "postId": 59, + "id": 295, + "name": "ullam dignissimos non aut dolore", + "email": "Abigail@trudie.com", + "body": "voluptatem est aspernatur consequatur vel facere\nut omnis tenetur non ea eos\nquibusdam error odio\natque consectetur voluptatem eligendi" + }, + { + "postId": 60, + "id": 296, + "name": "hic eum sed dolore velit cupiditate quisquam ut inventore", + "email": "Name.Walter@zoie.me", + "body": "quasi dolorem veniam dignissimos\natque voluptas iure et quidem fugit velit et\nquod magnam illum quia et ea est modi\naut quis dolores" + }, + { + "postId": 60, + "id": 297, + "name": "dignissimos dolor facere", + "email": "Norma@abraham.co.uk", + "body": "eos exercitationem est ut voluptas accusamus qui\nvelit rerum ut\ndolorem eaque omnis eligendi mollitia\natque ea architecto dolorum delectus accusamus" + }, + { + "postId": 60, + "id": 298, + "name": "ipsam ut labore voluptatem quis id velit sunt", + "email": "Norberto_Weimann@ford.tv", + "body": "molestiae accusantium a tempore occaecati qui sunt optio eos\nexercitationem quas eius voluptatem\nomnis quibusdam autem\nmolestiae odio dolor quam laboriosam mollitia in quibusdam sunt" + }, + { + "postId": 60, + "id": 299, + "name": "laborum asperiores nesciunt itaque", + "email": "Nelson@charlene.biz", + "body": "voluptatem omnis pariatur aut saepe enim qui\naut illo aut sed aperiam expedita debitis\ntempore animi dolorem\nut libero et eos unde ex" + }, + { + "postId": 60, + "id": 300, + "name": "in dolore iusto ex molestias vero", + "email": "Letha@liliane.ca", + "body": "dolorem fugit quidem animi quas quisquam reprehenderit\noccaecati et dolor laborum nemo sed quas unde deleniti\nfacere eligendi placeat aliquid aspernatur commodi sunt impedit\nneque corrupti alias molestiae magni tempora" + }, + { + "postId": 61, + "id": 301, + "name": "id voluptatibus voluptas occaecati quia sunt eveniet et eius", + "email": "Tiana@jeramie.tv", + "body": "dolore maxime saepe dolor asperiores cupiditate nisi nesciunt\nvitae tempora ducimus vel eos perferendis\nfuga sequi numquam blanditiis sit sed inventore et\nut possimus soluta voluptas nihil aliquid sed earum" + }, + { + "postId": 61, + "id": 302, + "name": "quia voluptatem sunt voluptate ut ipsa", + "email": "Lindsey@caitlyn.net", + "body": "fuga aut est delectus earum optio impedit qui excepturi\niusto consequatur deserunt soluta sunt\net autem neque\ndolor ut saepe dolores assumenda ipsa eligendi" + }, + { + "postId": 61, + "id": 303, + "name": "excepturi itaque laudantium reiciendis dolorem", + "email": "Gregory.Kutch@shawn.info", + "body": "sit nesciunt id vitae ut itaque sapiente\nneque in at consequuntur perspiciatis dicta consequatur velit\nfacilis iste ut error sed\nin sequi expedita autem" + }, + { + "postId": 61, + "id": 304, + "name": "voluptatem quidem animi sit est nemo non omnis molestiae", + "email": "Murphy.Kris@casimer.me", + "body": "minus ab quis nihil quia suscipit vel\nperspiciatis sunt unde\naut ullam quo laudantium deleniti modi\nrerum illo error occaecati vel officiis facere" + }, + { + "postId": 61, + "id": 305, + "name": "non cum consequatur at nihil aut fugiat delectus quia", + "email": "Isidro_Kiehn@cristina.org", + "body": "repellendus quae labore sunt ut praesentium fuga reiciendis quis\ncorporis aut quis dolor facere earum\nexercitationem enim sunt nihil asperiores expedita\neius nesciunt a sit sit" + }, + { + "postId": 62, + "id": 306, + "name": "omnis nisi libero", + "email": "Kenton_Carter@yolanda.co.uk", + "body": "ab veritatis aspernatur molestiae explicabo ea saepe molestias sequi\nbeatae aut perferendis quaerat aut omnis illo fugiat\nquisquam hic doloribus maiores itaque\nvoluptas amet dolorem blanditiis" + }, + { + "postId": 62, + "id": 307, + "name": "id ab commodi est quis culpa", + "email": "Amos_Rohan@mozelle.tv", + "body": "sit tenetur aut eum quasi reiciendis dignissimos non nulla\nrepellendus ut quisquam\nnumquam provident et repellendus eum nihil blanditiis\nbeatae iusto sed eius sit sed doloremque exercitationem nihil" + }, + { + "postId": 62, + "id": 308, + "name": "enim ut optio architecto dolores nemo quos", + "email": "Timothy_Heathcote@jose.name", + "body": "officiis ipsa exercitationem impedit dolorem repellat adipisci qui\natque illum sapiente omnis et\nnihil esse et eum facilis aut impedit\nmaxime ullam et dolorem" + }, + { + "postId": 62, + "id": 309, + "name": "maiores et quisquam", + "email": "Otilia.Daniel@elvie.io", + "body": "impedit qui nemo\nreprehenderit sequi praesentium ullam veniam quaerat optio qui error\naperiam qui quisquam dolor est blanditiis molestias rerum et\nquae quam eum odit ab quia est ut" + }, + { + "postId": 62, + "id": 310, + "name": "sed qui atque", + "email": "Toni@joesph.biz", + "body": "quae quis qui ab rerum non hic\nconsequatur earum facilis atque quas dolore fuga ipsam\nnihil velit quis\nrerum sit nam est nulla nihil qui excepturi et" + }, + { + "postId": 63, + "id": 311, + "name": "veritatis nulla consequatur sed cumque", + "email": "Brisa@carrie.us", + "body": "officia provident libero explicabo tempora velit eligendi mollitia similique\nrerum sit aut consequatur ullam tenetur qui est vero\nrerum est et explicabo\nsit sunt ea exercitationem molestiae" + }, + { + "postId": 63, + "id": 312, + "name": "libero et distinctio repudiandae voluptatem dolores", + "email": "Jasen.Kihn@devon.biz", + "body": "ipsa id eum dolorum et officiis\nsaepe eos voluptatem\nnesciunt quos voluptas temporibus dolores ad rerum\nnon voluptatem aut fugit" + }, + { + "postId": 63, + "id": 313, + "name": "quia enim et", + "email": "Efren.Konopelski@madisyn.us", + "body": "corporis quo magnam sunt rerum enim vel\nrepudiandae suscipit corrupti ut ab qui debitis quidem adipisci\ndistinctio voluptatibus vitae molestias incidunt laboriosam quia quidem facilis\nquia architecto libero illum ut dicta" + }, + { + "postId": 63, + "id": 314, + "name": "enim voluptatem quam", + "email": "Demetris.Bergnaum@fae.io", + "body": "sunt cupiditate commodi est pariatur incidunt quis\nsuscipit saepe magnam amet enim\nquod quis neque\net modi rerum asperiores consequatur reprehenderit maiores" + }, + { + "postId": 63, + "id": 315, + "name": "maxime nulla perspiciatis ad quo quae consequatur quas", + "email": "Luella.Pollich@gloria.org", + "body": "repudiandae dolores nam quas\net incidunt odio dicta eum vero dolor quidem\ndolorem quisquam cumque\nmolestiae neque maxime rerum deserunt nam sequi" + }, + { + "postId": 64, + "id": 316, + "name": "totam est minima modi sapiente nobis impedit", + "email": "Sister.Morissette@adelia.io", + "body": "consequatur qui doloribus et rerum\ndebitis cum dolorem voluptate qui fuga\nnecessitatibus quod temporibus non voluptates\naut saepe molestiae" + }, + { + "postId": 64, + "id": 317, + "name": "iusto pariatur ea", + "email": "Shyanne@rick.info", + "body": "quam iste aut molestiae nesciunt modi\natque quo laudantium vel tempora quam tenetur neque aut\net ipsum eum nostrum enim laboriosam officia eligendi\nlaboriosam libero ullam sit nulla voluptate in" + }, + { + "postId": 64, + "id": 318, + "name": "vitae porro aut ex est cumque", + "email": "Freeman.Dare@ada.name", + "body": "distinctio placeat nisi repellat animi\nsed praesentium voluptatem\nplaceat eos blanditiis deleniti natus eveniet dolorum quia tempore\npariatur illum dolor aspernatur ratione tenetur autem ipsum fugit" + }, + { + "postId": 64, + "id": 319, + "name": "et eos praesentium porro voluptatibus quas quidem explicabo est", + "email": "Donnell@orland.org", + "body": "occaecati quia ipsa id fugit sunt velit iure adipisci\nullam inventore quidem dolorem adipisci optio quia et\nquis explicabo omnis ipsa quo ut voluptatem aliquam inventore\nminima aut tempore excepturi similique" + }, + { + "postId": 64, + "id": 320, + "name": "fugiat eos commodi consequatur vel qui quasi", + "email": "Robin@gaylord.biz", + "body": "nihil consequatur dolorem voluptatem non molestiae\nodit eum animi\nipsum omnis ut quasi\nvoluptas sed et et qui est aut" + }, + { + "postId": 65, + "id": 321, + "name": "rem ducimus ipsam ut est vero distinctio et", + "email": "Danyka_Stark@jedidiah.name", + "body": "ea necessitatibus eum nesciunt corporis\nminus in quisquam iste recusandae\nqui nobis deleniti asperiores non laboriosam sunt molestiae dolore\ndistinctio qui officiis tempora dolorem ea" + }, + { + "postId": 65, + "id": 322, + "name": "ipsam et commodi", + "email": "Margarita@casper.io", + "body": "id molestiae doloribus\nomnis atque eius sunt aperiam\ntenetur quia natus nihil sunt veritatis recusandae quia\ncorporis quam omnis veniam voluptas amet quidem illo deleniti" + }, + { + "postId": 65, + "id": 323, + "name": "et aut non illo cumque pariatur laboriosam", + "email": "Carlo@cortney.net", + "body": "explicabo dicta quas cum quis rerum dignissimos et\nmagnam sit mollitia est dolor voluptas sed\nipsum et tenetur recusandae\nquod facilis nulla amet deserunt" + }, + { + "postId": 65, + "id": 324, + "name": "ut ut architecto vero est ipsam", + "email": "Mina@nikita.tv", + "body": "ipsam eum ea distinctio\nducimus saepe eos quaerat molestiae\ncorporis aut officia qui ut perferendis\nitaque possimus incidunt aut quis" + }, + { + "postId": 65, + "id": 325, + "name": "odit sit numquam rerum porro dolorem", + "email": "Violette@naomi.tv", + "body": "qui vero recusandae\nporro esse sint doloribus impedit voluptatem commodi\nasperiores laudantium ut dolores\npraesentium distinctio magnam voluptatum aut" + }, + { + "postId": 66, + "id": 326, + "name": "voluptatem laborum incidunt accusamus", + "email": "Lauren.Hodkiewicz@jarret.info", + "body": "perspiciatis vero nulla aut consequatur fuga earum aut\nnemo suscipit totam vitae qui at omnis aut\nincidunt optio dolorem voluptatem vel\nassumenda vero id explicabo deleniti sit corrupti sit" + }, + { + "postId": 66, + "id": 327, + "name": "quisquam necessitatibus commodi iure eum", + "email": "Ernestina@piper.biz", + "body": "consequatur ut aut placeat harum\nquia perspiciatis unde doloribus quae non\nut modi ad unde ducimus omnis nobis voluptatem atque\nmagnam reiciendis dolorem et qui explicabo" + }, + { + "postId": 66, + "id": 328, + "name": "temporibus ut vero quas", + "email": "Hettie_Morar@wiley.info", + "body": "molestiae minima aut rerum nesciunt\nvitae iusto consequatur architecto assumenda dolorum\nnon doloremque tempora possimus qui mollitia omnis\nvitae odit sed" + }, + { + "postId": 66, + "id": 329, + "name": "quasi beatae sapiente voluptates quo temporibus", + "email": "Corbin.Hilll@modesto.biz", + "body": "nulla corrupti delectus est cupiditate explicabo facere\nsapiente quo id quis illo culpa\nut aut sit error magni atque asperiores soluta\naut cumque voluptatem occaecati omnis aliquid" + }, + { + "postId": 66, + "id": 330, + "name": "illo ab quae deleniti", + "email": "Kenyatta@renee.io", + "body": "dolores tenetur rerum et aliquam\nculpa officiis ea rem neque modi quaerat deserunt\nmolestias minus nesciunt iusto impedit enim laborum perferendis\nvelit minima itaque voluptatem fugiat" + }, + { + "postId": 67, + "id": 331, + "name": "nemo cum est officia maiores sint sunt a", + "email": "Don@cameron.co.uk", + "body": "maxime incidunt velit quam vel fugit nostrum veritatis\net ipsam nisi voluptatem voluptas cumque tempora velit et\net quisquam error\nmaiores fugit qui dolor sit doloribus" + }, + { + "postId": 67, + "id": 332, + "name": "dicta vero voluptas hic dolorem", + "email": "Jovan@aaliyah.tv", + "body": "voluptas iste deleniti\nest itaque vel ea incidunt quia voluptates sapiente repellat\naut consectetur vel neque tempora esse similique sed\na qui nobis voluptate hic eligendi doloribus molestiae et" + }, + { + "postId": 67, + "id": 333, + "name": "soluta dicta pariatur reiciendis", + "email": "Jeanie.McGlynn@enoch.ca", + "body": "et dolor error doloremque\nodio quo sunt quod\nest ipsam assumenda in veniam illum rerum deleniti expedita\nvoluptate hic nostrum sed dolor et qui" + }, + { + "postId": 67, + "id": 334, + "name": "et adipisci laboriosam est modi", + "email": "Garett_Gusikowski@abigale.me", + "body": "et voluptatibus est et aperiam quaerat voluptate eius quo\nnihil voluptas doloribus et ea tempore\nlabore non dolorem\noptio consequatur est id quia magni voluptas enim" + }, + { + "postId": 67, + "id": 335, + "name": "voluptatem accusantium beatae veniam voluptatem quo culpa deleniti", + "email": "Doug@alana.co.uk", + "body": "hic et et aspernatur voluptates voluptas ut ut id\nexcepturi eligendi aspernatur nulla dicta ab\nsuscipit quis distinctio nihil\ntemporibus unde quasi expedita et inventore consequatur rerum ab" + }, + { + "postId": 68, + "id": 336, + "name": "eveniet eligendi nisi sunt a error blanditiis et ea", + "email": "Yoshiko@viviane.name", + "body": "similique autem voluptatem ab et et\nodio animi repellendus libero voluptas voluptas quia\nlibero facere saepe nobis\nconsequatur et qui non hic ea maxime nihil" + }, + { + "postId": 68, + "id": 337, + "name": "beatae esse tenetur aut est", + "email": "Micaela_Bins@mertie.us", + "body": "est ut aut ut omnis distinctio\nillum quisquam pariatur qui aspernatur vitae\ndolor explicabo architecto veritatis ipsa et aut est molestiae\nducimus et sapiente error sed omnis" + }, + { + "postId": 68, + "id": 338, + "name": "qui sit quo est ipsam minima neque nobis", + "email": "Loy@gillian.me", + "body": "maiores totam quo atque\nexplicabo perferendis iste facilis odio ab eius consequatur\nsit praesentium ea vitae optio minus\nvoluptate necessitatibus omnis itaque omnis qui" + }, + { + "postId": 68, + "id": 339, + "name": "accusantium et sit nihil quibusdam voluptatum provident est qui", + "email": "Tyrel@hunter.net", + "body": "dicta dolorem veniam ipsa harum minus sequi\nomnis quia voluptatem autem\nest optio doloribus repellendus id commodi quas exercitationem eum\net eum dignissimos accusamus est eaque doloremque" + }, + { + "postId": 68, + "id": 340, + "name": "rerum et quae tenetur soluta voluptatem tempore laborum enim", + "email": "Otilia.Schuppe@randal.com", + "body": "est aut consequatur error illo ut\nenim nihil fuga\nsuscipit inventore officiis iure earum pariatur temporibus in\naperiam qui quod vel necessitatibus velit eos exercitationem culpa" + }, + { + "postId": 69, + "id": 341, + "name": "sunt ut voluptatem cupiditate maxime dolores eligendi", + "email": "April@larissa.co.uk", + "body": "iure ea ea neque est\nesse ab sed hic et ullam sed sequi a\nnon hic tenetur sunt enim ea\nlaudantium ea natus" + }, + { + "postId": 69, + "id": 342, + "name": "corporis at consequuntur consequatur", + "email": "Glenna_Waters@retha.me", + "body": "quis beatae qui\nsequi dicta quas et dolor\nnon enim aspernatur excepturi aut rerum asperiores\naliquid animi nulla ea tempore esse" + }, + { + "postId": 69, + "id": 343, + "name": "repellat sed consequatur suscipit aliquam", + "email": "Cordelia.Oberbrunner@peyton.com", + "body": "ea alias eos et corrupti\nvoluptatem ab incidunt\nvoluptatibus voluptas ea nesciunt\ntotam corporis dolor recusandae voluptas harum" + }, + { + "postId": 69, + "id": 344, + "name": "blanditiis rerum voluptatem quaerat modi saepe ratione assumenda qui", + "email": "Zander@santino.net", + "body": "iusto nihil quae rerum laborum recusandae voluptatem et necessitatibus\nut deserunt cumque qui qui\nnon et et eos adipisci cupiditate dolor sed voluptates\nmaiores commodi eveniet consequuntur" + }, + { + "postId": 69, + "id": 345, + "name": "ut deleniti autem ullam quod provident ducimus enim explicabo", + "email": "Camila_Runolfsdottir@tressa.tv", + "body": "omnis et fugit eos sint saepe ipsam unde est\ndolores sit sit assumenda laboriosam\ndolor deleniti voluptatem id nesciunt et\nplaceat dolorem cumque laboriosam sunt non" + }, + { + "postId": 70, + "id": 346, + "name": "beatae in fuga assumenda dolorem accusantium blanditiis mollitia", + "email": "Kirstin@tina.info", + "body": "quas non magnam\nquia veritatis assumenda reiciendis\nsimilique dolores est ab\npraesentium fuga ut" + }, + { + "postId": 70, + "id": 347, + "name": "tenetur id delectus recusandae voluptates quo aut", + "email": "Anthony.Koepp@savannah.tv", + "body": "consectetur illo corporis sit labore optio quod\nqui occaecati aut sequi quia\nofficiis quia aut odio quo ad\nrerum tenetur aut quasi veniam" + }, + { + "postId": 70, + "id": 348, + "name": "molestias natus autem quae sint qui", + "email": "Bradley.Lang@marilyne.tv", + "body": "perferendis dignissimos soluta ut provident sit et\ndelectus ratione ad sapiente qui excepturi error qui quo\nquo illo commodi\nrerum maxime voluptas voluptatem" + }, + { + "postId": 70, + "id": 349, + "name": "odio maiores a porro dolorum ut pariatur inventore", + "email": "Loren@aric.biz", + "body": "dicta impedit non\net laborum laudantium qui eaque et beatae suscipit\nsequi magnam rem dolorem non quia vel adipisci\ncorrupti officiis laudantium impedit" + }, + { + "postId": 70, + "id": 350, + "name": "eius quia pariatur", + "email": "Arjun@natalie.ca", + "body": "eaque rerum tempore distinctio\nconsequatur fugiat veniam et incidunt ut ut et\nconsequatur blanditiis magnam\ndoloremque voluptate ut architecto facere in dolorem et aut" + }, + { + "postId": 71, + "id": 351, + "name": "quia ex perspiciatis sunt voluptatem quidem", + "email": "Solon.Goldner@judah.org", + "body": "quo nisi impedit velit repellendus esse itaque ut saepe\nvoluptatibus occaecati ab eaque dolores\nmaxime alias velit ducimus placeat sit laudantium quia\ncorrupti doloremque ut" + }, + { + "postId": 71, + "id": 352, + "name": "sit ipsam voluptatem velit", + "email": "Nina@osbaldo.name", + "body": "dolorem eius voluptatem vitae aliquid unde labore est\nmolestiae labore dolorem beatae voluptatem soluta eum eos dolore\net ea quasi aut doloribus sint\nvel suscipit tempora delectus soluta" + }, + { + "postId": 71, + "id": 353, + "name": "consequatur reprehenderit similique vitae dolor debitis", + "email": "Madaline@marlin.org", + "body": "nemo aut laborum expedita nisi sed illum\nab asperiores provident\na sunt recusandae ut rerum itaque est voluptatibus nihil\nesse ipsum et repellendus nobis rerum voluptas et" + }, + { + "postId": 71, + "id": 354, + "name": "eligendi tempora eum deserunt", + "email": "Mike.Kozey@gladyce.us", + "body": "delectus est consequatur\nat excepturi asperiores dolor nesciunt ad\nid non aut ad ut\nnon et voluptatem" + }, + { + "postId": 71, + "id": 355, + "name": "reiciendis ad ea", + "email": "Orval.Treutel@arnold.me", + "body": "vel cumque labore vitae quisquam magnam sequi ut\nmolestiae dolores vel minus aut\nquas repellat nostrum fugit molestiae veritatis sequi\nvel quidem in molestiae id doloribus sed" + }, + { + "postId": 72, + "id": 356, + "name": "qui vel id qui est", + "email": "Trent@samir.net", + "body": "fugiat dolore voluptas tempore\naspernatur quibusdam rem iste sit fugiat nesciunt consequatur\ndolor sed odit similique minima corporis quae in adipisci\nimpedit dolores et cupiditate accusantium perferendis dignissimos error" + }, + { + "postId": 72, + "id": 357, + "name": "consectetur totam fugit et occaecati minima aliquid hic adipisci", + "email": "Ashleigh@annette.ca", + "body": "et eos est quis quia molestiae est\nquasi est quos omnis\naut et sit consectetur ex molestiae\nest sed accusamus asperiores" + }, + { + "postId": 72, + "id": 358, + "name": "accusantium natus ex et consequuntur neque", + "email": "Douglas@anabel.org", + "body": "unde ad id nemo ipsam dolorem autem quaerat\nperspiciatis voluptas corrupti laborum rerum est architecto\neius quos aut et voluptate voluptatem atque necessitatibus\nvoluptate fugiat aut iusto et atque" + }, + { + "postId": 72, + "id": 359, + "name": "esse quia quidem quisquam consequatur nisi deleniti", + "email": "Lowell@mossie.com", + "body": "et explicabo voluptatem ut est nihil culpa et\nveritatis repellendus ipsum velit qui eligendi maxime voluptatem est\ndicta rerum et et nemo quia\neveniet aspernatur nostrum molestiae mollitia ut dolores rem fugiat" + }, + { + "postId": 72, + "id": 360, + "name": "rerum tempore facilis ut quod sit", + "email": "Jacquelyn@kristian.net", + "body": "sit et aut recusandae\ncorrupti nisi vero eius nulla voluptates\nvoluptatem placeat est commodi impedit odio omnis\nsimilique debitis et in molestiae omnis sed non magni" + }, + { + "postId": 73, + "id": 361, + "name": "voluptates qui et corporis", + "email": "Antwon@domenico.me", + "body": "cum ad porro fuga sequi dolores\nipsa error magni itaque labore accusamus\ncorporis odit consequatur quis debitis\ncum et voluptas facilis incidunt ut itaque dolores error" + }, + { + "postId": 73, + "id": 362, + "name": "quia qui quia qui", + "email": "Kenyon@retha.me", + "body": "excepturi omnis occaecati officiis enim saepe id\nnon quo et dignissimos voluptates ipsum\nmolestias facere dolorem qui iure similique corrupti\nneque ducimus sit alias dolor earum autem doloribus consequatur" + }, + { + "postId": 73, + "id": 363, + "name": "nihil consequatur quibusdam", + "email": "Ben@elouise.net", + "body": "est magni totam est\net enim nam voluptas veritatis est\nsint doloremque incidunt et cum a\net eligendi nobis ratione delectus" + }, + { + "postId": 73, + "id": 364, + "name": "vel architecto assumenda et maiores", + "email": "Madisen.Hauck@barney.co.uk", + "body": "architecto quo enim ad et reprehenderit\nlaboriosam quia commodi officia iusto\ndolorem totam consequuntur cupiditate\nveritatis voluptates aspernatur earum saepe et sed consequatur" + }, + { + "postId": 73, + "id": 365, + "name": "aliquam officiis omnis", + "email": "Dock.Parker@roy.biz", + "body": "modi sed aut quidem quisquam optio est\naut facilis sit quia quis facere quod\nfugiat recusandae ex et quisquam ipsum sed sit\nexercitationem quia recusandae dolorem quasi iusto ipsa qui et" + }, + { + "postId": 74, + "id": 366, + "name": "aperiam ut deserunt minus quo dicta nisi", + "email": "Pablo.Ritchie@tyrique.co.uk", + "body": "explicabo perspiciatis quae sit qui nulla incidunt facilis\nrepudiandae perspiciatis voluptate expedita sunt consectetur quasi\nid occaecati nesciunt dolorem aliquid perspiciatis repellat inventore esse\nut possimus exercitationem facere modi" + }, + { + "postId": 74, + "id": 367, + "name": "praesentium eos quam eius optio eveniet", + "email": "Sebastian_Gaylord@freda.org", + "body": "nostrum modi et et dolores maxime facere\nalias doloribus eaque expedita et similique voluptatum magnam est\nomnis eos voluptatem\net unde fugit voluptatem asperiores" + }, + { + "postId": 74, + "id": 368, + "name": "fugiat aliquid sint", + "email": "Lazaro@nadia.ca", + "body": "est dolor eveniet\nest minus eveniet recusandae\niure quo aut eos ut sed ipsa\nharum earum aut nesciunt non dolores" + }, + { + "postId": 74, + "id": 369, + "name": "qui incidunt vel iusto eligendi amet quia qui", + "email": "Jessy.Boyle@vernice.biz", + "body": "qui fugit accusamus\net quo minus cumque hic adipisci\nodio blanditiis omnis et est\narchitecto et facilis inventore quasi provident quaerat ex rem" + }, + { + "postId": 74, + "id": 370, + "name": "libero vero voluptatum sed facilis quos aut reprehenderit ad", + "email": "Mitchel@hal.co.uk", + "body": "beatae hic est et deserunt eius\ncorrupti quam ut commodi sit modi est corporis animi\nharum ut est\naperiam non fugit excepturi quo tenetur totam" + }, + { + "postId": 75, + "id": 371, + "name": "ut quia sequi sed eius voluptas", + "email": "Lindsay@kiley.name", + "body": "est dicta totam architecto et minus id aut non\nut et fugit eaque culpa modi repellendus\naliquid qui veritatis doloribus aut consequatur voluptas sequi accusantium\nvoluptas occaecati saepe reprehenderit ut" + }, + { + "postId": 75, + "id": 372, + "name": "qui cumque eos consequatur fuga ut", + "email": "Erika.Murazik@jorge.me", + "body": "aut illum est asperiores\nrerum laboriosam quis sit dolores magni minima fuga atque\nomnis at et quibusdam earum rem\nearum distinctio autem et enim dolore eos" + }, + { + "postId": 75, + "id": 373, + "name": "nemo voluptatum quo qui atque", + "email": "Olin@edmund.ca", + "body": "iure aliquid qui sit\nexcepturi dolorem rerum possimus suscipit atque nisi\nlabore ut aut nihil voluptatum ut aliquid praesentium\nassumenda tempore dolor velit ratione et corrupti" + }, + { + "postId": 75, + "id": 374, + "name": "quam exercitationem alias totam", + "email": "Lacey@novella.biz", + "body": "eligendi et consequuntur dolor nihil quaerat doloremque ut\ndignissimos sunt veniam non ratione esse\ndebitis omnis similique maxime dolores tempora laborum rerum adipisci\nreiciendis explicabo error quidem quo necessitatibus voluptatibus vitae ipsum" + }, + { + "postId": 75, + "id": 375, + "name": "similique doloribus odit quas magnam omnis dolorem dolore et", + "email": "Sister@miller.net", + "body": "non ea sed reprehenderit reiciendis eaque et neque adipisci\nipsa architecto deserunt ratione nesciunt tempore similique occaecati non\nhic vitae sit neque\nrerum quod dolorem ratione esse aperiam necessitatibus" + }, + { + "postId": 76, + "id": 376, + "name": "dolorem qui architecto provident", + "email": "Raphaelle@miller.com", + "body": "sint qui aut aspernatur necessitatibus\nlaboriosam autem occaecati nostrum non\nofficiis consequuntur odit\net itaque quam placeat aut molestiae saepe veniam provident" + }, + { + "postId": 76, + "id": 377, + "name": "nemo hic sapiente placeat quidem omnis", + "email": "Jaren.Schiller@augusta.org", + "body": "sint fugit et\nid et saepe non molestiae sit earum doloremque\ndolorem nemo earum dignissimos ipsa soluta deleniti quos\nquis numquam ducimus sed corporis dolores sed quisquam suscipit" + }, + { + "postId": 76, + "id": 378, + "name": "vitae aut perspiciatis quia enim voluptas", + "email": "Nikko_Reynolds@harry.me", + "body": "est molestiae non fugiat voluptatem quo porro\naut praesentium ipsam aspernatur perferendis fuga\nofficia sit ut\naspernatur rerum est" + }, + { + "postId": 76, + "id": 379, + "name": "est qui quos exercitationem", + "email": "Afton.Medhurst@mina.info", + "body": "laboriosam quia animi ut\nquasi aut enim sequi numquam similique fugiat voluptatum non\nsed velit quod nisi id quidem\nmagni in eveniet hic" + }, + { + "postId": 76, + "id": 380, + "name": "similique fugiat tenetur ea incidunt numquam", + "email": "Wilson.Nikolaus@fredrick.org", + "body": "voluptatum quis ipsa voluptatem saepe est\nillum error repellat eaque dolor quae qui\neum rerum sunt quam illo\nvoluptates fuga possimus nemo nihil distinctio" + }, + { + "postId": 77, + "id": 381, + "name": "sint porro optio voluptatem", + "email": "Tomasa@lee.us", + "body": "consequatur possimus sit itaque distinctio fugit aut quod\nexplicabo exercitationem voluptas labore rerum\nporro ut in voluptas maiores tempora accusantium\nvoluptatum et sapiente sit quas quis et veniam" + }, + { + "postId": 77, + "id": 382, + "name": "eius itaque ut ipsa quia quis labore", + "email": "Ally_Kassulke@rashad.ca", + "body": "eaque eius delectus molestias suscipit nulla quisquam\ntotam vel quos et autem sed\neligendi et pariatur earum molestias magnam autem\nplaceat culpa est et qui commodi illo et" + }, + { + "postId": 77, + "id": 383, + "name": "provident voluptas perferendis quibusdam libero", + "email": "Reagan_Ziemann@ross.io", + "body": "qui quaerat id repellendus aut qui\nmaiores quidem consequatur dignissimos deleniti deserunt eveniet libero a\nrepellat ducimus quia aut dignissimos numquam molestiae\nconsequatur sit impedit nostrum et sunt iure" + }, + { + "postId": 77, + "id": 384, + "name": "et et voluptas et eligendi distinctio accusantium temporibus enim", + "email": "Angelita@sally.org", + "body": "blanditiis dolor sint nulla cum quidem aliquid voluptatem\nperferendis dolor consequatur voluptas et ut quisquam tempora tenetur\nmaxime minus animi qui id\neum accusantium et optio et blanditiis maxime" + }, + { + "postId": 77, + "id": 385, + "name": "qui voluptates molestias necessitatibus eos odio quo minima", + "email": "Lonzo@lorena.org", + "body": "sit fugiat est autem quia ipsam error ab\nvoluptatem sed ab labore molestiae qui debitis exercitationem\nnon et sunt officia illo possimus iste tenetur est\ndolores voluptas ad aspernatur nihil" + }, + { + "postId": 78, + "id": 386, + "name": "temporibus minus debitis deleniti repellat unde eveniet", + "email": "Alexandre@derrick.co.uk", + "body": "et dicta dolores sit\nrepudiandae id harum temporibus\nvoluptas quia blanditiis numquam a enim quae\nquisquam assumenda nam doloribus vel temporibus distinctio eveniet dolores" + }, + { + "postId": 78, + "id": 387, + "name": "magnam nihil delectus dolor natus ab ea et", + "email": "Judd@lucinda.ca", + "body": "qui recusandae veniam sed voluptatem ullam facilis consequatur\nnumquam ut quod aut et\nnon alias ex quam aut quasi ipsum praesentium\nut aspernatur sit" + }, + { + "postId": 78, + "id": 388, + "name": "laudantium quibusdam blanditiis pariatur non vero deleniti a perferendis", + "email": "Eleanora@karson.net", + "body": "facilis et totam\nvoluptatibus est optio cum\nfacilis qui aut blanditiis rerum voluptatem accusamus\net omnis quasi sint" + }, + { + "postId": 78, + "id": 389, + "name": "excepturi nam cum molestiae et totam voluptatem nisi", + "email": "Enrico_Feil@liana.biz", + "body": "dolore nihil perferendis\ndolor hic repudiandae iste\ndoloribus labore quaerat et molestiae dolores sit excepturi sint\net eum et aut" + }, + { + "postId": 78, + "id": 390, + "name": "temporibus aut et", + "email": "Beverly@perry.org", + "body": "dolor ratione ab repellendus aut quia reiciendis sed\nest alias ex\nodio voluptatem velit odit tempora nihil optio aperiam blanditiis\nlabore porro id velit dolor veritatis" + }, + { + "postId": 79, + "id": 391, + "name": "sed ratione nesciunt odit expedita", + "email": "Corene_Mante@rory.com", + "body": "aut repellat tenetur delectus eaque est nihil consequatur quae\ndeleniti assumenda voluptates sit sit cupiditate maiores\nautem suscipit sint tenetur dolor tempore\ndolorem dolorum alias adipisci" + }, + { + "postId": 79, + "id": 392, + "name": "rerum officiis qui quaerat omnis dolorem iure est repudiandae", + "email": "Emily_Flatley@ephraim.name", + "body": "aut aut ea ut repudiandae ea assumenda laboriosam\nsunt qui laboriosam dicta omnis sit corporis\nvoluptas eos amet quam quisquam officiis facilis laborum\nvoluptatibus accusantium ab aliquid sed id doloremque" + }, + { + "postId": 79, + "id": 393, + "name": "illo quis nostrum accusantium architecto et aliquam ratione", + "email": "Donna@frederik.com", + "body": "et quia explicabo\nut hic commodi quas provident aliquam nihil\nvitae in voluptatem commodi\nvero velit optio omnis accusamus corrupti voluptatem" + }, + { + "postId": 79, + "id": 394, + "name": "reprehenderit eos voluptatem ut", + "email": "Kyleigh@ruben.org", + "body": "voluptatem quisquam pariatur voluptatum qui quaerat\net minus ea aliquam ullam dolorem consequatur\nratione at ad nemo aperiam excepturi deleniti\nqui numquam quis hic nostrum tempora quidem" + }, + { + "postId": 79, + "id": 395, + "name": "excepturi esse laborum ut qui culpa", + "email": "Noemy.Hammes@lisette.net", + "body": "esse vel reiciendis nobis inventore vero est\nfugit inventore ea quo consequatur aut\nautem deserunt ratione et repellendus nihil quam\nquidem iure est nihil mollitia" + }, + { + "postId": 80, + "id": 396, + "name": "qui eos vitae possimus reprehenderit voluptatem voluptatem repellendus", + "email": "Margarett_Jenkins@harley.us", + "body": "perferendis veritatis saepe voluptatem\neum voluptas quis\nsed occaecati nostrum\nfugit animi omnis ratione molestias" + }, + { + "postId": 80, + "id": 397, + "name": "quasi exercitationem molestias dolore non non sed est", + "email": "Dexter.Pacocha@lauren.biz", + "body": "ut nisi sunt perspiciatis qui doloribus quas\nvelit molestiae atque corrupti corporis voluptatem\nvel ratione aperiam tempore est eos\nquia a voluptas" + }, + { + "postId": 80, + "id": 398, + "name": "labore consequuntur vel qui", + "email": "Gennaro@jaunita.co.uk", + "body": "libero atque accusamus blanditiis minima eveniet corporis est aliquid\ndolores asperiores neque quibusdam quaerat error esse non\nqui et adipisci\nmagni illo hic qui qui dignissimos earum" + }, + { + "postId": 80, + "id": 399, + "name": "sunt ut eos", + "email": "Jaycee@aimee.us", + "body": "corrupti ut et eveniet culpa\nveritatis eos sequi fugiat commodi consequuntur\nipsa totam voluptatem perferendis ducimus aut exercitationem magni\neos mollitia quia" + }, + { + "postId": 80, + "id": 400, + "name": "quia aut consequatur sunt iste aliquam impedit sit", + "email": "Brennon@carmela.tv", + "body": "natus iure velit impedit sed officiis sint\nmolestiae non beatae\nillo consequatur minima\nsed ratione est tenetur" + }, + { + "postId": 81, + "id": 401, + "name": "cum voluptate sint voluptas veritatis", + "email": "Vella.Mayer@colten.net", + "body": "sit delectus recusandae qui\net cupiditate sed ipsum culpa et fugiat ab\nillo dignissimos quo est repellat dolorum neque\nvoluptates sed sapiente ab aut rerum enim sint voluptatum" + }, + { + "postId": 81, + "id": 402, + "name": "ut eos mollitia eum eius", + "email": "Caleb_Dach@kathleen.us", + "body": "et nisi fugit totam\nmaiores voluptatibus quis ipsa sunt debitis assumenda\nullam non quasi numquam ut dolores modi recusandae\nut molestias magni est voluptas quibusdam corporis eius" + }, + { + "postId": 81, + "id": 403, + "name": "architecto voluptatum eos blanditiis aliquam debitis beatae nesciunt dolorum", + "email": "Patience_Bahringer@dameon.biz", + "body": "et a et perspiciatis\nautem expedita maiores dignissimos labore minus molestiae enim\net ipsam ea et\nperspiciatis veritatis debitis maxime" + }, + { + "postId": 81, + "id": 404, + "name": "officia qui ut explicabo eos fugit", + "email": "Destinee.Simonis@jose.tv", + "body": "modi est et eveniet facilis explicabo\nvoluptatem saepe quo et sint quas quia corporis\npariatur voluptatibus est iste fugiat delectus animi rerum\ndoloribus est enim" + }, + { + "postId": 81, + "id": 405, + "name": "incidunt commodi voluptatem maiores asperiores blanditiis omnis ratione", + "email": "Keshaun@brown.biz", + "body": "aut aut sit cupiditate maxime praesentium occaecati cumque\nvero sint sit aliquam porro quo consequuntur ut\nnumquam qui maxime voluptas est consequatur ullam\ntenetur commodi qui consectetur distinctio eligendi atque" + }, + { + "postId": 82, + "id": 406, + "name": "sint eaque rerum voluptas fugiat quia qui", + "email": "Merle.Schultz@marcel.org", + "body": "dicta in quam tenetur\nsed molestiae a sit est aut quia autem aut\nnam voluptatem reiciendis corporis voluptatem\nsapiente est id quia explicabo enim tempora asperiores" + }, + { + "postId": 82, + "id": 407, + "name": "eius tempora sint reprehenderit", + "email": "Malvina_Fay@louie.name", + "body": "totam ad quia non vero dolor laudantium sed temporibus\nquia aperiam corrupti sint accusantium eligendi\naliquam rerum voluptatem delectus numquam nihil\nsoluta qui sequi nisi voluptatum eaque voluptas animi ipsam" + }, + { + "postId": 82, + "id": 408, + "name": "non excepturi enim est sapiente numquam repudiandae illo", + "email": "Domenick_Douglas@gabe.us", + "body": "suscipit quidem fugiat consequatur\nquo sequi nesciunt\naliquam ratione possimus\nvoluptatem sit quia repellendus libero excepturi ut temporibus" + }, + { + "postId": 82, + "id": 409, + "name": "dicta dolor voluptate vel praesentium", + "email": "Isaac@allene.net", + "body": "provident illo quis dolor distinctio laborum eius enim\nsuscipit quia error enim eos consequuntur\nest incidunt adipisci beatae tenetur excepturi in labore commodi\nfugiat omnis in et at nam accusamus et" + }, + { + "postId": 82, + "id": 410, + "name": "et dolore hic a cupiditate beatae natus iusto soluta", + "email": "Marianna.Pacocha@george.net", + "body": "in consequatur corporis qui a et magni eum illum\ncorrupti veniam debitis ab iure harum\nenim ut assumenda cum adipisci veritatis et veniam\nrem eius expedita quos corrupti incidunt" + }, + { + "postId": 83, + "id": 411, + "name": "hic rem eligendi tenetur ipsum dolore maxime eum", + "email": "Sister_Barton@lela.com", + "body": "nam voluptatem ex aut voluptatem mollitia sit sapiente\nqui hic ut\nqui natus in iste et magnam dolores et fugit\nea sint ut minima quas eum nobis at reprehenderit" + }, + { + "postId": 83, + "id": 412, + "name": "quaerat et quia accusamus provident earum cumque", + "email": "Autumn.Lebsack@kasandra.ca", + "body": "veniam non culpa aut voluptas rem eum officiis\nmollitia placeat eos cum\nconsequatur eos commodi dolorem\nanimi maiores qui" + }, + { + "postId": 83, + "id": 413, + "name": "atque porro quo voluptas", + "email": "Irma.OKon@arden.me", + "body": "consequatur harum est omnis\nqui recusandae qui voluptatem et distinctio sint eaque\ndolores quo dolorem asperiores\naperiam non quis asperiores aut praesentium" + }, + { + "postId": 83, + "id": 414, + "name": "ut qui voluptatem hic maxime", + "email": "Alaina_Hammes@carter.info", + "body": "molestias debitis magni illo sint officiis ut quia\nsed tenetur dolorem soluta\nvoluptatem fugiat voluptas molestiae magnam fuga\nsimilique enim illum voluptas aspernatur officia" + }, + { + "postId": 83, + "id": 415, + "name": "rerum consequatur ut et voluptate harum amet accusantium est", + "email": "Alia@addison.org", + "body": "iure vitae accusamus tenetur autem ipsa deleniti\nsunt laudantium ut beatae repellendus non eos\nut consequuntur repudiandae ducimus enim\nreiciendis rem explicabo magni dolore" + }, + { + "postId": 84, + "id": 416, + "name": "neque nemo consequatur ea fugit aut esse suscipit dolore", + "email": "Aurelie_McKenzie@providenci.biz", + "body": "enim velit consequatur excepturi corporis voluptatem nostrum\nnesciunt alias perspiciatis corporis\nneque at eius porro sapiente ratione maiores natus\nfacere molestiae vel explicabo voluptas unde" + }, + { + "postId": 84, + "id": 417, + "name": "quia reiciendis nobis minima quia et saepe", + "email": "May_Steuber@virgil.net", + "body": "et vitae consectetur ut voluptatem\net et eveniet sit\nincidunt tenetur voluptatem\nprovident occaecati exercitationem neque placeat" + }, + { + "postId": 84, + "id": 418, + "name": "nesciunt voluptates amet sint et delectus et dolore culpa", + "email": "Tessie@emilie.co.uk", + "body": "animi est eveniet officiis qui\naperiam dolore occaecati enim aut reiciendis\nanimi ad sint labore blanditiis adipisci voluptatibus eius error\nomnis rerum facere architecto occaecati rerum" + }, + { + "postId": 84, + "id": 419, + "name": "omnis voluptate dolorem similique totam", + "email": "Priscilla@colten.org", + "body": "cum neque recusandae occaecati aliquam reprehenderit ullam saepe veniam\nquasi ea provident tenetur architecto ad\ncupiditate molestiae mollitia molestias debitis eveniet doloremque voluptatem aut\ndolore consequatur nihil facere et" + }, + { + "postId": 84, + "id": 420, + "name": "aut recusandae a sit voluptas explicabo nam et", + "email": "Aylin@abigale.me", + "body": "voluptas cum eum minima rem\ndolorem et nemo repellendus voluptatem sit\nrepudiandae nulla qui recusandae nobis\nblanditiis perspiciatis dolor ipsam reprehenderit odio" + }, + { + "postId": 85, + "id": 421, + "name": "non eligendi ipsam provident", + "email": "Holden@kenny.io", + "body": "voluptate libero corrupti facere totam eaque consequatur nemo\nenim aliquid exercitationem nulla dignissimos illo\nest amet non iure\namet sed dolore non ipsam magni" + }, + { + "postId": 85, + "id": 422, + "name": "sit molestiae corporis", + "email": "Guillermo_Dare@dorothea.tv", + "body": "ducimus ut ut fugiat nesciunt labore\ndeleniti non et aut voluptatum quidem consectetur\nincidunt voluptas accusantium\nquo fuga eaque quisquam et et sapiente aut" + }, + { + "postId": 85, + "id": 423, + "name": "assumenda iure a", + "email": "Oscar@pearline.com", + "body": "rerum laborum voluptas ipsa enim praesentium\nquisquam aliquid perspiciatis eveniet id est est facilis\natque aut facere\nprovident reiciendis libero atque est" + }, + { + "postId": 85, + "id": 424, + "name": "molestiae dolores itaque dicta earum eligendi dolores", + "email": "Jonathon_Feest@maxime.io", + "body": "ducimus hic ea velit\ndolorum soluta voluptas similique rerum\ndolorum sint maxime et vel\nvoluptatum nesciunt et id consequatur earum sed" + }, + { + "postId": 85, + "id": 425, + "name": "cumque expedita consequatur qui", + "email": "Micah_Wolf@lennie.co.uk", + "body": "labore necessitatibus et eum quas id ut\ndoloribus aspernatur nostrum sapiente quo aut quia\neos rerum voluptatem\nnumquam minima soluta velit recusandae ut" + }, + { + "postId": 86, + "id": 426, + "name": "deleniti tempora non quia et aut", + "email": "Shany@daisha.biz", + "body": "reiciendis consequatur sunt atque quisquam ut sed iure\nconsequatur laboriosam dicta odio\nquas cumque iure blanditiis ad sed ullam dignissimos\nsunt et exercitationem saepe" + }, + { + "postId": 86, + "id": 427, + "name": "delectus illum minus odit", + "email": "Drew_Lemke@alexis.net", + "body": "in laborum et distinctio nobis maxime\nmaxime id commodi eaque enim amet qui autem\ndebitis et porro eum dicta sapiente iusto nulla sunt\nvoluptate excepturi sint dolorem voluptatem quae explicabo id" + }, + { + "postId": 86, + "id": 428, + "name": "voluptas dolores dolor nisi voluptatem ratione rerum", + "email": "Karina.Donnelly@liam.com", + "body": "excepturi quos omnis aliquam voluptatem iste\nsit unde ab quam ipsa delectus culpa rerum\ncum delectus impedit ut qui modi\nasperiores qui sapiente quia facilis in iure" + }, + { + "postId": 86, + "id": 429, + "name": "sed omnis dolore aperiam", + "email": "Ahmed_Runolfsson@claire.name", + "body": "ab voluptatem nobis unde\ndoloribus aut fugiat\nconsequuntur laboriosam minima inventore sint quis\ndelectus hic et enim sit optio consequuntur" + }, + { + "postId": 86, + "id": 430, + "name": "sint ullam alias et at et", + "email": "Marilou_Halvorson@kane.io", + "body": "debitis ut maiores ut harum sed voluptas\nquae amet eligendi quo quidem odit atque quisquam animi\nut autem est corporis et\nsed tempora facere corrupti magnam" + }, + { + "postId": 87, + "id": 431, + "name": "velit incidunt ut accusantium odit maiores quaerat", + "email": "Bernie.Schoen@seamus.co.uk", + "body": "voluptas minus fugiat vel\nest quos soluta et veniam quia incidunt unde ut\nlaborum odio in eligendi distinctio odit repellat\nnesciunt consequatur blanditiis cupiditate consequatur at et" + }, + { + "postId": 87, + "id": 432, + "name": "quod quia nihil nisi perferendis laborum blanditiis tempora eos", + "email": "Joesph@darryl.net", + "body": "quam et et harum\nplaceat minus neque quae magni inventore saepe deleniti quisquam\nsuscipit dolorum error aliquid dolores\ndignissimos dolorem autem natus iste molestiae est id impedit" + }, + { + "postId": 87, + "id": 433, + "name": "qui ea voluptatem reiciendis enim enim nisi aut", + "email": "Timmothy.Corwin@augustus.co.uk", + "body": "voluptatem minus asperiores quasi\nperspiciatis et aut blanditiis illo deserunt molestiae ab aperiam\nex minima sed omnis at\net repellat aut incidunt" + }, + { + "postId": 87, + "id": 434, + "name": "doloremque eligendi quas voluptatem non quos ex", + "email": "Julien_OHara@vance.io", + "body": "ex eum at culpa quam aliquam\ncupiditate et id dolorem sint quasi et quos et\nomnis et qui minus est quisquam non qui rerum\nquas molestiae tempore veniam" + }, + { + "postId": 87, + "id": 435, + "name": "id voluptatum nulla maiores ipsa eos", + "email": "Susan.Bartell@euna.org", + "body": "reprehenderit molestias sit nemo quas culpa dolorem exercitationem\neos est voluptatem dolores est fugiat dolorem\neos aut quia et amet et beatae harum vitae\nofficia quia animi dicta magnam accusantium" + }, + { + "postId": 88, + "id": 436, + "name": "ea illo ab et maiores eaque non nobis", + "email": "Selena.Quigley@johan.co.uk", + "body": "sit non facilis commodi sapiente officiis aut facere libero\nsed voluptatum eligendi veniam velit explicabo\nsint laborum sunt reprehenderit dolore id nobis accusamus\nfugit voluptatem magni dolor qui dolores ipsa" + }, + { + "postId": 88, + "id": 437, + "name": "magni asperiores in cupiditate", + "email": "Clifton_Boehm@jacynthe.io", + "body": "suscipit ab qui eos et commodi\nquas ad maiores repellat laboriosam voluptatem exercitationem\nquibusdam ullam ratione nulla\nquia iste error dolorem consequatur beatae temporibus fugit" + }, + { + "postId": 88, + "id": 438, + "name": "ullam autem aliquam", + "email": "Lizzie_Bartell@diamond.net", + "body": "voluptas aspernatur eveniet\nquod id numquam dolores quia perspiciatis eum\net delectus quia occaecati adipisci nihil velit accusamus esse\nminus aspernatur repudiandae" + }, + { + "postId": 88, + "id": 439, + "name": "voluptates quasi minus dolorem itaque nemo", + "email": "Yasmeen@golda.ca", + "body": "cupiditate laborum sit reprehenderit ratione est ad\ncorporis rem pariatur enim et omnis dicta\nnobis molestias quo corporis et nihil\nsed et impedit aut quisquam natus expedita voluptate at" + }, + { + "postId": 88, + "id": 440, + "name": "adipisci sapiente libero beatae quas eveniet", + "email": "Adolf.Russel@clark.ca", + "body": "ut nam ut asperiores quis\nexercitationem aspernatur eligendi autem repellendus\nest repudiandae quisquam rerum ad explicabo suscipit deserunt eius\nalias aliquid eos pariatur rerum magnam provident iusto" + }, + { + "postId": 89, + "id": 441, + "name": "nisi qui voluptates recusandae voluptas assumenda et", + "email": "Elian@matilda.me", + "body": "illum qui quis optio\nquasi eius dolores et non numquam et\nqui necessitatibus itaque magnam mollitia earum et\nnisi voluptate eum accusamus ea" + }, + { + "postId": 89, + "id": 442, + "name": "sed molestias sit voluptatibus sit aut alias sunt inventore", + "email": "Salma@francis.net", + "body": "velit ut incidunt accusantium\nsuscipit animi officia iusto\nnemo omnis sunt nobis repellendus corporis\nconsequatur distinctio dolorem" + }, + { + "postId": 89, + "id": 443, + "name": "illum pariatur aliquam esse nisi voluptas quisquam ea", + "email": "Orlando_Dickinson@vern.org", + "body": "reiciendis et distinctio qui totam non aperiam voluptas\nveniam in dolorem pariatur itaque\nvoluptas adipisci velit\nqui voluptates voluptas ut ullam veritatis repudiandae" + }, + { + "postId": 89, + "id": 444, + "name": "incidunt aut qui quis est sit corporis pariatur qui", + "email": "Elda@orval.name", + "body": "eligendi labore aut non modi vel facere qui\naccusamus qui maxime aperiam\ntotam et non ut repudiandae eum corrupti pariatur quia\nnecessitatibus et adipisci ipsa consequuntur enim et nihil vero" + }, + { + "postId": 89, + "id": 445, + "name": "temporibus adipisci eveniet libero ullam", + "email": "Dennis@karley.net", + "body": "est consequuntur cumque\nquo dolorem at ut dolores\nconsequatur quia voluptates reiciendis\nvel rerum id et" + }, + { + "postId": 90, + "id": 446, + "name": "dicta excepturi aut est dolor ab dolores rerum", + "email": "Jedediah@mason.io", + "body": "cum fugit earum vel et nulla et voluptatem\net ipsam aut\net nihil officia nemo eveniet accusamus\nnulla aut impedit veritatis praesentium" + }, + { + "postId": 90, + "id": 447, + "name": "molestiae qui quod quo", + "email": "Maryam@jack.name", + "body": "rerum omnis voluptatem harum aliquid voluptas accusamus\neius dicta animi\nodio non quidem voluptas tenetur\nnostrum deserunt laudantium culpa dolorum" + }, + { + "postId": 90, + "id": 448, + "name": "pariatur consequatur sit commodi aliquam", + "email": "Rick@carlos.tv", + "body": "odio maxime beatae ab labore rerum\nalias ipsa nam est nostrum\net debitis aut\nab molestias assumenda eaque repudiandae" + }, + { + "postId": 90, + "id": 449, + "name": "sunt quia soluta quae sit deleniti dolor ullam veniam", + "email": "Vallie@jerrod.net", + "body": "dolor at accusantium eveniet\nin voluptatem quam et fugiat et quasi dolores\nsunt eligendi voluptatum id voluptas vitae\nquibusdam iure eum perspiciatis" + }, + { + "postId": 90, + "id": 450, + "name": "dolorem corporis facilis et", + "email": "Adolph.Hayes@isobel.biz", + "body": "et provident quo necessitatibus harum excepturi\nsed est ut sed est doloremque labore quod\nquia optio explicabo adipisci magnam doloribus\nveritatis illo aut est inventore" + }, + { + "postId": 91, + "id": 451, + "name": "maiores ut dolores quo sapiente nisi", + "email": "Duane_Dach@demario.us", + "body": "dolor veritatis ipsum accusamus quae voluptates sint voluptatum et\nharum saepe dolorem enim\nexpedita placeat qui quidem aut et et est\nminus odit qui possimus qui saepe" + }, + { + "postId": 91, + "id": 452, + "name": "quia excepturi in harum repellat consequuntur est vel qui", + "email": "General@schuyler.org", + "body": "ratione sequi sed\nearum nam aut sunt\nquam cum qui\nsimilique consequatur et est" + }, + { + "postId": 91, + "id": 453, + "name": "doloremque ut est eaque", + "email": "Stephania_Stanton@demond.biz", + "body": "quidem nisi reprehenderit eligendi fugiat et et\nsapiente adipisci natus nulla similique et est\nesse ea accusantium sunt\ndeleniti molestiae perferendis quam animi similique ut" + }, + { + "postId": 91, + "id": 454, + "name": "magni quos voluptatibus earum et inventore suscipit", + "email": "Reinhold.Schiller@kelly.info", + "body": "consequatur accusamus maiores dolorem impedit repellendus voluptas rerum eum\nquam quia error voluptatem et\ndignissimos fugit qui\net facilis necessitatibus dignissimos consequatur iusto nihil possimus" + }, + { + "postId": 91, + "id": 455, + "name": "assumenda qui et aspernatur", + "email": "Royce@jaiden.co.uk", + "body": "animi qui nostrum rerum velit\nvoluptates sit in laborum dolorum omnis ut omnis\nea optio quia necessitatibus delectus molestias sapiente perferendis\ndolores vel excepturi expedita" + }, + { + "postId": 92, + "id": 456, + "name": "quod voluptatem qui qui sit sed maiores fugit", + "email": "Cassie@diana.org", + "body": "sunt ipsam illum consequuntur\nquasi enim possimus unde qui beatae quo eligendi\nvel quia asperiores est quae voluptate\naperiam et iste perspiciatis" + }, + { + "postId": 92, + "id": 457, + "name": "ipsa animi saepe veritatis voluptatibus ad amet id aut", + "email": "Jena.OKeefe@adonis.net", + "body": "incidunt itaque enim pariatur quibusdam voluptatibus blanditiis sint\nerror laborum voluptas sed officiis molestiae nostrum\ntemporibus culpa aliquam sit\nconsectetur dolores tempore id accusantium dignissimos vel" + }, + { + "postId": 92, + "id": 458, + "name": "fugiat consectetur saepe dicta", + "email": "Magdalen@holly.io", + "body": "eos hic deserunt necessitatibus sed id ut esse nam\nhic eveniet vitae corrupti mollitia doloremque sit ratione\ndeleniti perspiciatis numquam est sapiente quaerat\nest est sit" + }, + { + "postId": 92, + "id": 459, + "name": "nesciunt numquam alias doloremque minus ipsam optio", + "email": "Nyah@otho.com", + "body": "veniam natus aut vero et aliquam doloremque\nalias cupiditate non est\ntempore et non vel error placeat est quisquam ea\nnon dolore aliquid non fuga expedita dicta ut quos" + }, + { + "postId": 92, + "id": 460, + "name": "eum fugit omnis optio", + "email": "Kara_Stokes@connie.co.uk", + "body": "qui qui deserunt expedita at\nprovident sequi veritatis sit qui nam tempora mollitia ratione\ncorporis vitae rerum pariatur unde deleniti ut eos ad\naut non quae nisi saepe" + }, + { + "postId": 93, + "id": 461, + "name": "perferendis nobis praesentium accusantium culpa et et", + "email": "Conner@daron.info", + "body": "eos quidem temporibus eum\nest ipsa sunt illum a facere\nomnis suscipit dolorem voluptatem incidunt\ntenetur deleniti aspernatur at quis" + }, + { + "postId": 93, + "id": 462, + "name": "assumenda quia sint", + "email": "Nathanael@jada.org", + "body": "adipisci et accusantium hic deserunt voluptates consequatur omnis\nquod dolorem voluptatibus quis velit laboriosam mollitia illo et\niure aliquam dolorem nesciunt laborum\naperiam labore repellat et maxime itaque" + }, + { + "postId": 93, + "id": 463, + "name": "cupiditate quidem corporis totam tenetur rem nesciunt et", + "email": "Nicklaus@talon.io", + "body": "voluptate officiis nihil laudantium sint autem adipisci\naspernatur voluptas debitis nam omnis ut non eligendi\naliquam vel commodi velit officiis laboriosam corporis\nquas aliquid aperiam autem" + }, + { + "postId": 93, + "id": 464, + "name": "quisquam quaerat rerum dolor asperiores doloremque", + "email": "Jerald@laura.io", + "body": "consequatur aliquam illum quis\nfacere vel voluptatem rem sint atque\nin nam autem impedit dolores enim\nsoluta rem adipisci odit sint voluptas aliquam" + }, + { + "postId": 93, + "id": 465, + "name": "est sunt est nesciunt distinctio quaerat reprehenderit in vero", + "email": "Jamey_Dare@johnny.org", + "body": "ex corrupti ut pariatur voluptas illo labore non voluptates\nvoluptas sint et est impedit cum\nin fugiat cumque eum id rerum error\nut rerum voluptates facilis molestiae et labore voluptatem corrupti" + }, + { + "postId": 94, + "id": 466, + "name": "impedit autem distinctio omnis ipsam voluptas eaque", + "email": "Brant@yasmin.co.uk", + "body": "aut dignissimos eos facere velit totam\neaque aut voluptas ex similique ut ipsa est\nvoluptates ut tempora\nquis commodi officia et consequatur cumque delectus" + }, + { + "postId": 94, + "id": 467, + "name": "voluptas unde perferendis ut eaque dicta", + "email": "Adrianna_Howell@molly.io", + "body": "deleniti fuga hic autem\nsed rerum non voluptate sit totam consequuntur illo\nquasi quod aut ducimus dolore distinctio molestias\nnon velit quis debitis cumque voluptas" + }, + { + "postId": 94, + "id": 468, + "name": "nam praesentium est ipsa libero aut", + "email": "Amiya.Morar@emma.tv", + "body": "facilis repellendus inventore aperiam corrupti saepe culpa velit\ndolores sint ut\naut quis voluptates iure et a\nneque harum quia similique sunt eum voluptatem a" + }, + { + "postId": 94, + "id": 469, + "name": "vel eum quia esse sapiente", + "email": "Destany@bailey.info", + "body": "dolor unde numquam distinctio\nducimus eum hic rerum non expedita\ndolores et dignissimos rerum\nperspiciatis et porro est minus" + }, + { + "postId": 94, + "id": 470, + "name": "deleniti vitae alias distinctio dignissimos ab accusantium pariatur dicta", + "email": "Katarina.Wolff@joel.io", + "body": "molestias incidunt eaque\nnumquam reprehenderit rerum ut ex ad\nomnis porro maiores quaerat harum nihil non quasi ea\nasperiores quisquam sunt fugiat eos natus iure adipisci" + }, + { + "postId": 95, + "id": 471, + "name": "nihil ad debitis rerum optio est cumque sed voluptates", + "email": "Pearline@veda.ca", + "body": "quia non dolor\ncorporis consectetur velit eos quis\nincidunt ut eos nesciunt repellendus voluptas voluptate sint neque\ndoloribus est minima autem quis velit illo ea neque" + }, + { + "postId": 95, + "id": 472, + "name": "aspernatur ex dolor optio", + "email": "Belle.Braun@otis.name", + "body": "et necessitatibus earum qui velit id explicabo harum optio\ndolor dolores reprehenderit in\na itaque odit esse et et id\npossimus est ut consequuntur velit autem iure ut" + }, + { + "postId": 95, + "id": 473, + "name": "quaerat et excepturi autem animi fuga", + "email": "Eliane@libby.net", + "body": "quod corrupti eum quisquam rerum accusantium tempora\nreprehenderit qui voluptate et sunt optio et\niusto nihil amet omnis labore cumque quo\nsaepe omnis aut quia consectetur" + }, + { + "postId": 95, + "id": 474, + "name": "natus consequatur deleniti ipsum delectus", + "email": "Trey.Harber@christop.biz", + "body": "tempora sint qui iste itaque non neque qui suscipit\nenim quas rerum totam impedit\nesse nulla praesentium natus explicabo doloremque atque maxime\nmollitia impedit dolorem occaecati officia in provident eos" + }, + { + "postId": 95, + "id": 475, + "name": "cumque consequuntur excepturi consequatur consequatur est", + "email": "Kailyn@ivory.info", + "body": "ut in nostrum\nut et incidunt et minus nulla perferendis libero delectus\nnulla nemo deleniti\ndeleniti facere autem vero velit non molestiae assumenda" + }, + { + "postId": 96, + "id": 476, + "name": "quia hic adipisci modi fuga aperiam", + "email": "Amely.Kunde@rodrigo.co.uk", + "body": "officia quas aut culpa eum\neaque quia rem unde ea quae reiciendis omnis\nexcepturi nemo est vel sequi accusantium tenetur at earum\net rerum quisquam temporibus cupiditate" + }, + { + "postId": 96, + "id": 477, + "name": "ut occaecati non", + "email": "Thaddeus.Halvorson@ruthe.ca", + "body": "nulla veniam quo consequuntur ullam\nautem nisi error aut facere distinctio rerum quia tempore\nvelit distinctio occaecati ducimus\nratione similique doloribus" + }, + { + "postId": 96, + "id": 478, + "name": "quo error dignissimos numquam qui nam fugit voluptates et", + "email": "Hannah@emma.ca", + "body": "non similique illo\nquia et rem placeat reprehenderit voluptas\nvelit officiis fugit blanditiis nihil\nab deserunt ullam" + }, + { + "postId": 96, + "id": 479, + "name": "distinctio minima error aspernatur reiciendis inventore quo", + "email": "Maryam.Mann@thelma.info", + "body": "totam explicabo harum quam impedit sunt\ndoloremque consectetur id et minima eos incidunt quibusdam omnis\nsaepe maiores officiis eligendi alias sint est aut cumque\ndebitis cumque hic aut ut dolorum" + }, + { + "postId": 96, + "id": 480, + "name": "accusantium quo error repudiandae", + "email": "Michel@keira.us", + "body": "tenetur qui ut\narchitecto officiis voluptatem velit eos molestias incidunt eum dolorum\ndistinctio quam et\nsequi consequatur nihil voluptates animi" + }, + { + "postId": 97, + "id": 481, + "name": "recusandae dolor similique autem saepe voluptate aut vel sit", + "email": "Domenick@russell.ca", + "body": "dignissimos nobis vitae corporis delectus eligendi et ut ut\namet laudantium neque\net quia cupiditate debitis aliquid\ndolorem aspernatur libero aut autem quo et" + }, + { + "postId": 97, + "id": 482, + "name": "placeat eveniet sunt ut quis", + "email": "Chanelle@samson.me", + "body": "aliquid natus voluptas doloremque fugiat ratione adipisci\nunde eum facilis enim omnis ipsum nobis nihil praesentium\nut blanditiis voluptatem veniam\ntenetur fugit et distinctio aspernatur" + }, + { + "postId": 97, + "id": 483, + "name": "a ipsa nihil sed impedit", + "email": "Hermann.Kunde@rosina.us", + "body": "quos aut rerum nihil est et\ndolores commodi voluptas voluptatem excepturi et\net expedita dignissimos atque aut reprehenderit\nquis quo soluta" + }, + { + "postId": 97, + "id": 484, + "name": "hic inventore sint aut", + "email": "Olen@bryce.net", + "body": "vel libero quo sit vitae\nid nesciunt ipsam non a aut enim itaque totam\nillum est cupiditate sit\nnam exercitationem magnam veniam" + }, + { + "postId": 97, + "id": 485, + "name": "enim asperiores illum", + "email": "Lorenza.Carter@consuelo.ca", + "body": "soluta quia porro mollitia eos accusamus\nvoluptatem illo perferendis earum quia\nquo sed ipsam in omnis cum earum tempore eos\nvoluptatem illum doloremque corporis ipsam facere" + }, + { + "postId": 98, + "id": 486, + "name": "et aut qui eaque porro quo quis velit rerum", + "email": "Lamont@georgiana.biz", + "body": "iste maxime et molestiae\nqui aliquam doloremque earum beatae repellat\nin aut eum libero eos itaque pariatur exercitationem\nvel quam non" + }, + { + "postId": 98, + "id": 487, + "name": "sunt omnis aliquam labore eveniet", + "email": "Colin_Gutkowski@muriel.net", + "body": "sint delectus nesciunt ipsum et aliquid et libero\naut suscipit et molestiae nemo pariatur sequi\nrepudiandae ea placeat neque quas eveniet\nmollitia quae laboriosam" + }, + { + "postId": 98, + "id": 488, + "name": "quo neque dolorem dolorum non incidunt", + "email": "Albert@johnny.biz", + "body": "aut sunt recusandae laboriosam omnis asperiores et\nnulla ipsum rerum quis doloremque rerum optio mollitia provident\nsed iste aut id\nnumquam repudiandae veritatis" + }, + { + "postId": 98, + "id": 489, + "name": "aut quia et corporis voluptas quisquam voluptatem", + "email": "Hilma.Kutch@ottilie.info", + "body": "et dolorem sit\nreprehenderit sapiente occaecati iusto sit impedit nobis ut quia\nmaiores debitis pariatur nostrum et aut\nassumenda error qui deserunt laborum quaerat et" + }, + { + "postId": 98, + "id": 490, + "name": "et eum provident maxime beatae minus et doloremque perspiciatis", + "email": "Donnie@alfreda.biz", + "body": "minus nihil sunt dolor\nipsum a illum quis\nquasi officiis cupiditate architecto sit consequatur ut\net sed quasi quam doloremque" + }, + { + "postId": 99, + "id": 491, + "name": "eos enim odio", + "email": "Maxwell@adeline.me", + "body": "natus commodi debitis cum ex rerum alias quis\nmaxime fugiat fugit sapiente distinctio nostrum tempora\npossimus quod vero itaque enim accusantium perferendis\nfugit ut eum labore accusantium voluptas" + }, + { + "postId": 99, + "id": 492, + "name": "consequatur alias ab fuga tenetur maiores modi", + "email": "Amina@emmet.org", + "body": "iure deleniti aut consequatur necessitatibus\nid atque voluptas mollitia\nvoluptates doloremque dolorem\nrepudiandae hic enim laboriosam consequatur velit minus" + }, + { + "postId": 99, + "id": 493, + "name": "ut praesentium sit eos rerum tempora", + "email": "Gilda@jacques.org", + "body": "est eos doloremque autem\nsimilique sint fuga atque voluptate est\nminus tempore quia asperiores aliquam et corporis voluptatem\nconsequatur et eum illo aut qui molestiae et amet" + }, + { + "postId": 99, + "id": 494, + "name": "molestias facere soluta mollitia totam dolorem commodi itaque", + "email": "Kadin@walter.io", + "body": "est illum quia alias ipsam minus\nut quod vero aut magni harum quis\nab minima voluptates nemo non sint quis\ndistinctio officia ea et maxime" + }, + { + "postId": 99, + "id": 495, + "name": "dolor ut ut aut molestiae esse et tempora numquam", + "email": "Alice_Considine@daren.com", + "body": "pariatur occaecati ea autem at quis et dolorem similique\npariatur ipsa hic et saepe itaque cumque repellendus vel\net quibusdam qui aut nemo et illo\nqui non quod officiis aspernatur qui optio" + }, + { + "postId": 100, + "id": 496, + "name": "et occaecati asperiores quas voluptas ipsam nostrum", + "email": "Zola@lizzie.com", + "body": "neque unde voluptatem iure\nodio excepturi ipsam ad id\nipsa sed expedita error quam\nvoluptatem tempora necessitatibus suscipit culpa veniam porro iste vel" + }, + { + "postId": 100, + "id": 497, + "name": "doloribus dolores ut dolores occaecati", + "email": "Dolly@mandy.co.uk", + "body": "non dolor consequatur\nlaboriosam ut deserunt autem odit\nlibero dolore non nesciunt qui\naut est consequatur quo dolorem" + }, + { + "postId": 100, + "id": 498, + "name": "dolores minus aut libero", + "email": "Davion@eldora.net", + "body": "aliquam pariatur suscipit fugiat eos sunt\noptio voluptatem eveniet rerum dignissimos\nquia aut beatae\nmodi consequatur qui rerum sint veritatis deserunt est" + }, + { + "postId": 100, + "id": 499, + "name": "excepturi sunt cum a et rerum quo voluptatibus quia", + "email": "Wilburn_Labadie@araceli.name", + "body": "et necessitatibus tempora ipsum quaerat inventore est quasi quidem\nea repudiandae laborum omnis ab reprehenderit ut\nratione sit numquam culpa a rem\natque aut et" + }, + { + "postId": 100, + "id": 500, + "name": "ex eaque eum natus", + "email": "Emma@joanny.ca", + "body": "perspiciatis quis doloremque\nveniam nisi eos velit sed\nid totam inventore voluptatem laborum et eveniet\naut aut aut maxime quia temporibus ut omnis" + } +] \ No newline at end of file diff --git a/jsonplaceholder/comments.metadata.json b/jsonplaceholder/comments.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..c86f1c5d64921406e3cdaa35de83818ba4fe78b1 --- /dev/null +++ b/jsonplaceholder/comments.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_comments", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:14.451772", + "size_bytes": 157745, + "description": "All comments", + "url": "https://jsonplaceholder.typicode.com/comments" +} \ No newline at end of file diff --git a/jsonplaceholder/photos.json b/jsonplaceholder/photos.json new file mode 100644 index 0000000000000000000000000000000000000000..cad2b60b5fba19d962486ddd1f43b4aec71692e9 --- /dev/null +++ b/jsonplaceholder/photos.json @@ -0,0 +1,352 @@ +[ + { + "albumId": 1, + "id": 1, + "title": "accusamus beatae ad facilis cum similique qui sunt", + "url": "https://via.placeholder.com/600/92c952", + "thumbnailUrl": "https://via.placeholder.com/150/92c952" + }, + { + "albumId": 1, + "id": 2, + "title": "reprehenderit est deserunt velit ipsam", + "url": "https://via.placeholder.com/600/771796", + "thumbnailUrl": "https://via.placeholder.com/150/771796" + }, + { + "albumId": 1, + "id": 3, + "title": "officia porro iure quia iusto qui ipsa ut modi", + "url": "https://via.placeholder.com/600/24f355", + "thumbnailUrl": "https://via.placeholder.com/150/24f355" + }, + { + "albumId": 1, + "id": 4, + "title": "culpa odio esse rerum omnis laboriosam voluptate repudiandae", + "url": "https://via.placeholder.com/600/d32776", + "thumbnailUrl": "https://via.placeholder.com/150/d32776" + }, + { + "albumId": 1, + "id": 5, + "title": "natus nisi omnis corporis facere molestiae rerum in", + "url": "https://via.placeholder.com/600/f66b97", + "thumbnailUrl": "https://via.placeholder.com/150/f66b97" + }, + { + "albumId": 1, + "id": 6, + "title": "accusamus ea aliquid et amet sequi nemo", + "url": "https://via.placeholder.com/600/56a8c2", + "thumbnailUrl": "https://via.placeholder.com/150/56a8c2" + }, + { + "albumId": 1, + "id": 7, + "title": "officia delectus consequatur vero aut veniam explicabo molestias", + "url": "https://via.placeholder.com/600/b0f7cc", + "thumbnailUrl": "https://via.placeholder.com/150/b0f7cc" + }, + { + "albumId": 1, + "id": 8, + "title": "aut porro officiis laborum odit ea laudantium corporis", + "url": "https://via.placeholder.com/600/54176f", + "thumbnailUrl": "https://via.placeholder.com/150/54176f" + }, + { + "albumId": 1, + "id": 9, + "title": "qui eius qui autem sed", + "url": "https://via.placeholder.com/600/51aa97", + "thumbnailUrl": "https://via.placeholder.com/150/51aa97" + }, + { + "albumId": 1, + "id": 10, + "title": "beatae et provident et ut vel", + "url": "https://via.placeholder.com/600/810b14", + "thumbnailUrl": "https://via.placeholder.com/150/810b14" + }, + { + "albumId": 1, + "id": 11, + "title": "nihil at amet non hic quia qui", + "url": "https://via.placeholder.com/600/1ee8a4", + "thumbnailUrl": "https://via.placeholder.com/150/1ee8a4" + }, + { + "albumId": 1, + "id": 12, + "title": "mollitia soluta ut rerum eos aliquam consequatur perspiciatis maiores", + "url": "https://via.placeholder.com/600/66b7d2", + "thumbnailUrl": "https://via.placeholder.com/150/66b7d2" + }, + { + "albumId": 1, + "id": 13, + "title": "repudiandae iusto deleniti rerum", + "url": "https://via.placeholder.com/600/197d29", + "thumbnailUrl": "https://via.placeholder.com/150/197d29" + }, + { + "albumId": 1, + "id": 14, + "title": "est necessitatibus architecto ut laborum", + "url": "https://via.placeholder.com/600/61a65", + "thumbnailUrl": "https://via.placeholder.com/150/61a65" + }, + { + "albumId": 1, + "id": 15, + "title": "harum dicta similique quis dolore earum ex qui", + "url": "https://via.placeholder.com/600/f9cee5", + "thumbnailUrl": "https://via.placeholder.com/150/f9cee5" + }, + { + "albumId": 1, + "id": 16, + "title": "iusto sunt nobis quasi veritatis quas expedita voluptatum deserunt", + "url": "https://via.placeholder.com/600/fdf73e", + "thumbnailUrl": "https://via.placeholder.com/150/fdf73e" + }, + { + "albumId": 1, + "id": 17, + "title": "natus doloribus necessitatibus ipsa", + "url": "https://via.placeholder.com/600/9c184f", + "thumbnailUrl": "https://via.placeholder.com/150/9c184f" + }, + { + "albumId": 1, + "id": 18, + "title": "laboriosam odit nam necessitatibus et illum dolores reiciendis", + "url": "https://via.placeholder.com/600/1fe46f", + "thumbnailUrl": "https://via.placeholder.com/150/1fe46f" + }, + { + "albumId": 1, + "id": 19, + "title": "perferendis nesciunt eveniet et optio a", + "url": "https://via.placeholder.com/600/56acb2", + "thumbnailUrl": "https://via.placeholder.com/150/56acb2" + }, + { + "albumId": 1, + "id": 20, + "title": "assumenda voluptatem laboriosam enim consequatur veniam placeat reiciendis error", + "url": "https://via.placeholder.com/600/8985dc", + "thumbnailUrl": "https://via.placeholder.com/150/8985dc" + }, + { + "albumId": 1, + "id": 21, + "title": "ad et natus qui", + "url": "https://via.placeholder.com/600/5e12c6", + "thumbnailUrl": "https://via.placeholder.com/150/5e12c6" + }, + { + "albumId": 1, + "id": 22, + "title": "et ea illo et sit voluptas animi blanditiis porro", + "url": "https://via.placeholder.com/600/45601a", + "thumbnailUrl": "https://via.placeholder.com/150/45601a" + }, + { + "albumId": 1, + "id": 23, + "title": "harum velit vero totam", + "url": "https://via.placeholder.com/600/e924e6", + "thumbnailUrl": "https://via.placeholder.com/150/e924e6" + }, + { + "albumId": 1, + "id": 24, + "title": "beatae officiis ut aut", + "url": "https://via.placeholder.com/600/8f209a", + "thumbnailUrl": "https://via.placeholder.com/150/8f209a" + }, + { + "albumId": 1, + "id": 25, + "title": "facere non quis fuga fugit vitae", + "url": "https://via.placeholder.com/600/5e3a73", + "thumbnailUrl": "https://via.placeholder.com/150/5e3a73" + }, + { + "albumId": 1, + "id": 26, + "title": "asperiores nobis voluptate qui", + "url": "https://via.placeholder.com/600/474645", + "thumbnailUrl": "https://via.placeholder.com/150/474645" + }, + { + "albumId": 1, + "id": 27, + "title": "sit asperiores est quos quis nisi veniam error", + "url": "https://via.placeholder.com/600/c984bf", + "thumbnailUrl": "https://via.placeholder.com/150/c984bf" + }, + { + "albumId": 1, + "id": 28, + "title": "non neque eligendi molestiae repudiandae illum voluptatem qui aut", + "url": "https://via.placeholder.com/600/392537", + "thumbnailUrl": "https://via.placeholder.com/150/392537" + }, + { + "albumId": 1, + "id": 29, + "title": "aut ipsam quos ab placeat omnis", + "url": "https://via.placeholder.com/600/602b9e", + "thumbnailUrl": "https://via.placeholder.com/150/602b9e" + }, + { + "albumId": 1, + "id": 30, + "title": "odio enim voluptatem quidem aut nihil illum", + "url": "https://via.placeholder.com/600/372c93", + "thumbnailUrl": "https://via.placeholder.com/150/372c93" + }, + { + "albumId": 1, + "id": 31, + "title": "voluptate voluptates sequi", + "url": "https://via.placeholder.com/600/a7c272", + "thumbnailUrl": "https://via.placeholder.com/150/a7c272" + }, + { + "albumId": 1, + "id": 32, + "title": "ad enim dignissimos voluptatem similique", + "url": "https://via.placeholder.com/600/c70a4d", + "thumbnailUrl": "https://via.placeholder.com/150/c70a4d" + }, + { + "albumId": 1, + "id": 33, + "title": "culpa ipsam nobis qui fuga magni et mollitia", + "url": "https://via.placeholder.com/600/501fe1", + "thumbnailUrl": "https://via.placeholder.com/150/501fe1" + }, + { + "albumId": 1, + "id": 34, + "title": "vitae est facere quia itaque adipisci perferendis id maiores", + "url": "https://via.placeholder.com/600/35185e", + "thumbnailUrl": "https://via.placeholder.com/150/35185e" + }, + { + "albumId": 1, + "id": 35, + "title": "tenetur minus voluptatum et", + "url": "https://via.placeholder.com/600/c96cad", + "thumbnailUrl": "https://via.placeholder.com/150/c96cad" + }, + { + "albumId": 1, + "id": 36, + "title": "expedita rerum eaque", + "url": "https://via.placeholder.com/600/4d564d", + "thumbnailUrl": "https://via.placeholder.com/150/4d564d" + }, + { + "albumId": 1, + "id": 37, + "title": "totam voluptas iusto deserunt dolores", + "url": "https://via.placeholder.com/600/ea51da", + "thumbnailUrl": "https://via.placeholder.com/150/ea51da" + }, + { + "albumId": 1, + "id": 38, + "title": "natus magnam iure rerum pariatur molestias dolore nisi", + "url": "https://via.placeholder.com/600/4f5b8d", + "thumbnailUrl": "https://via.placeholder.com/150/4f5b8d" + }, + { + "albumId": 1, + "id": 39, + "title": "molestiae nam ullam et rerum doloribus", + "url": "https://via.placeholder.com/600/1e71a2", + "thumbnailUrl": "https://via.placeholder.com/150/1e71a2" + }, + { + "albumId": 1, + "id": 40, + "title": "est quas voluptates dignissimos sint praesentium nisi recusandae", + "url": "https://via.placeholder.com/600/3a0b95", + "thumbnailUrl": "https://via.placeholder.com/150/3a0b95" + }, + { + "albumId": 1, + "id": 41, + "title": "in voluptatem doloremque cum atque architecto deleniti", + "url": "https://via.placeholder.com/600/659403", + "thumbnailUrl": "https://via.placeholder.com/150/659403" + }, + { + "albumId": 1, + "id": 42, + "title": "voluptatibus a autem molestias voluptas architecto culpa", + "url": "https://via.placeholder.com/600/ca50ac", + "thumbnailUrl": "https://via.placeholder.com/150/ca50ac" + }, + { + "albumId": 1, + "id": 43, + "title": "eius hic autem ad beatae voluptas", + "url": "https://via.placeholder.com/600/6ad437", + "thumbnailUrl": "https://via.placeholder.com/150/6ad437" + }, + { + "albumId": 1, + "id": 44, + "title": "neque eum provident et inventore sed ipsam dignissimos quo", + "url": "https://via.placeholder.com/600/29fe9f", + "thumbnailUrl": "https://via.placeholder.com/150/29fe9f" + }, + { + "albumId": 1, + "id": 45, + "title": "praesentium fugit quis aut voluptatum commodi dolore corrupti", + "url": "https://via.placeholder.com/600/c4084a", + "thumbnailUrl": "https://via.placeholder.com/150/c4084a" + }, + { + "albumId": 1, + "id": 46, + "title": "quidem maiores in quia fugit dolore explicabo occaecati", + "url": "https://via.placeholder.com/600/e9b68", + "thumbnailUrl": "https://via.placeholder.com/150/e9b68" + }, + { + "albumId": 1, + "id": 47, + "title": "et soluta est", + "url": "https://via.placeholder.com/600/b4412f", + "thumbnailUrl": "https://via.placeholder.com/150/b4412f" + }, + { + "albumId": 1, + "id": 48, + "title": "ut esse id", + "url": "https://via.placeholder.com/600/68e0a8", + "thumbnailUrl": "https://via.placeholder.com/150/68e0a8" + }, + { + "albumId": 1, + "id": 49, + "title": "quasi quae est modi quis quam in impedit", + "url": "https://via.placeholder.com/600/2cd88b", + "thumbnailUrl": "https://via.placeholder.com/150/2cd88b" + }, + { + "albumId": 1, + "id": 50, + "title": "et inventore quae ut tempore eius voluptatum", + "url": "https://via.placeholder.com/600/9e59da", + "thumbnailUrl": "https://via.placeholder.com/150/9e59da" + } +] \ No newline at end of file diff --git a/jsonplaceholder/photos.metadata.json b/jsonplaceholder/photos.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..0aad145cb6eb3ef7f830f0a5e2f922fef2ae9839 --- /dev/null +++ b/jsonplaceholder/photos.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_photos", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:16.628998", + "size_bytes": 10730, + "description": "50 photos sample", + "url": "https://jsonplaceholder.typicode.com/photos?_limit=50" +} \ No newline at end of file diff --git a/jsonplaceholder/post_comments.json b/jsonplaceholder/post_comments.json new file mode 100644 index 0000000000000000000000000000000000000000..3e6e0edb0cf7241e6ad32aaa1178caec2ca50804 --- /dev/null +++ b/jsonplaceholder/post_comments.json @@ -0,0 +1,37 @@ +[ + { + "postId": 1, + "id": 1, + "name": "id labore ex et quam laborum", + "email": "Eliseo@gardner.biz", + "body": "laudantium enim quasi est quidem magnam voluptate ipsam eos\ntempora quo necessitatibus\ndolor quam autem quasi\nreiciendis et nam sapiente accusantium" + }, + { + "postId": 1, + "id": 2, + "name": "quo vero reiciendis velit similique earum", + "email": "Jayne_Kuhic@sydney.com", + "body": "est natus enim nihil est dolore omnis voluptatem numquam\net omnis occaecati quod ullam at\nvoluptatem error expedita pariatur\nnihil sint nostrum voluptatem reiciendis et" + }, + { + "postId": 1, + "id": 3, + "name": "odio adipisci rerum aut animi", + "email": "Nikita@garfield.biz", + "body": "quia molestiae reprehenderit quasi aspernatur\naut expedita occaecati aliquam eveniet laudantium\nomnis quibusdam delectus saepe quia accusamus maiores nam est\ncum et ducimus et vero voluptates excepturi deleniti ratione" + }, + { + "postId": 1, + "id": 4, + "name": "alias odio sit", + "email": "Lew@alysha.tv", + "body": "non et atque\noccaecati deserunt quas accusantium unde odit nobis qui voluptatem\nquia voluptas consequuntur itaque dolor\net qui rerum deleniti ut occaecati" + }, + { + "postId": 1, + "id": 5, + "name": "vero eaque aliquid doloribus et culpa", + "email": "Hayden@althea.biz", + "body": "harum non quasi et ratione\ntempore iure ex voluptates in ratione\nharum architecto fugit inventore cupiditate\nvoluptates magni quo et" + } +] \ No newline at end of file diff --git a/jsonplaceholder/post_comments.metadata.json b/jsonplaceholder/post_comments.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..861b46b7e2e25764522bbd029bb2855fd195a86f --- /dev/null +++ b/jsonplaceholder/post_comments.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_post_comments", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:21.972319", + "size_bytes": 1510, + "description": "Comments on post 1", + "url": "https://jsonplaceholder.typicode.com/posts/1/comments" +} \ No newline at end of file diff --git a/jsonplaceholder/posts.json b/jsonplaceholder/posts.json new file mode 100644 index 0000000000000000000000000000000000000000..8ecc411530098524485ba6c76681efd6af211eeb --- /dev/null +++ b/jsonplaceholder/posts.json @@ -0,0 +1,602 @@ +[ + { + "userId": 1, + "id": 1, + "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit", + "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto" + }, + { + "userId": 1, + "id": 2, + "title": "qui est esse", + "body": "est rerum tempore vitae\nsequi sint nihil reprehenderit dolor beatae ea dolores neque\nfugiat blanditiis voluptate porro vel nihil molestiae ut reiciendis\nqui aperiam non debitis possimus qui neque nisi nulla" + }, + { + "userId": 1, + "id": 3, + "title": "ea molestias quasi exercitationem repellat qui ipsa sit aut", + "body": "et iusto sed quo iure\nvoluptatem occaecati omnis eligendi aut ad\nvoluptatem doloribus vel accusantium quis pariatur\nmolestiae porro eius odio et labore et velit aut" + }, + { + "userId": 1, + "id": 4, + "title": "eum et est occaecati", + "body": "ullam et saepe reiciendis voluptatem adipisci\nsit amet autem assumenda provident rerum culpa\nquis hic commodi nesciunt rem tenetur doloremque ipsam iure\nquis sunt voluptatem rerum illo velit" + }, + { + "userId": 1, + "id": 5, + "title": "nesciunt quas odio", + "body": "repudiandae veniam quaerat sunt sed\nalias aut fugiat sit autem sed est\nvoluptatem omnis possimus esse voluptatibus quis\nest aut tenetur dolor neque" + }, + { + "userId": 1, + "id": 6, + "title": "dolorem eum magni eos aperiam quia", + "body": "ut aspernatur corporis harum nihil quis provident sequi\nmollitia nobis aliquid molestiae\nperspiciatis et ea nemo ab reprehenderit accusantium quas\nvoluptate dolores velit et doloremque molestiae" + }, + { + "userId": 1, + "id": 7, + "title": "magnam facilis autem", + "body": "dolore placeat quibusdam ea quo vitae\nmagni quis enim qui quis quo nemo aut saepe\nquidem repellat excepturi ut quia\nsunt ut sequi eos ea sed quas" + }, + { + "userId": 1, + "id": 8, + "title": "dolorem dolore est ipsam", + "body": "dignissimos aperiam dolorem qui eum\nfacilis quibusdam animi sint suscipit qui sint possimus cum\nquaerat magni maiores excepturi\nipsam ut commodi dolor voluptatum modi aut vitae" + }, + { + "userId": 1, + "id": 9, + "title": "nesciunt iure omnis dolorem tempora et accusantium", + "body": "consectetur animi nesciunt iure dolore\nenim quia ad\nveniam autem ut quam aut nobis\net est aut quod aut provident voluptas autem voluptas" + }, + { + "userId": 1, + "id": 10, + "title": "optio molestias id quia eum", + "body": "quo et expedita modi cum officia vel magni\ndoloribus qui repudiandae\nvero nisi sit\nquos veniam quod sed accusamus veritatis error" + }, + { + "userId": 2, + "id": 11, + "title": "et ea vero quia laudantium autem", + "body": "delectus reiciendis molestiae occaecati non minima eveniet qui voluptatibus\naccusamus in eum beatae sit\nvel qui neque voluptates ut commodi qui incidunt\nut animi commodi" + }, + { + "userId": 2, + "id": 12, + "title": "in quibusdam tempore odit est dolorem", + "body": "itaque id aut magnam\npraesentium quia et ea odit et ea voluptas et\nsapiente quia nihil amet occaecati quia id voluptatem\nincidunt ea est distinctio odio" + }, + { + "userId": 2, + "id": 13, + "title": "dolorum ut in voluptas mollitia et saepe quo animi", + "body": "aut dicta possimus sint mollitia voluptas commodi quo doloremque\niste corrupti reiciendis voluptatem eius rerum\nsit cumque quod eligendi laborum minima\nperferendis recusandae assumenda consectetur porro architecto ipsum ipsam" + }, + { + "userId": 2, + "id": 14, + "title": "voluptatem eligendi optio", + "body": "fuga et accusamus dolorum perferendis illo voluptas\nnon doloremque neque facere\nad qui dolorum molestiae beatae\nsed aut voluptas totam sit illum" + }, + { + "userId": 2, + "id": 15, + "title": "eveniet quod temporibus", + "body": "reprehenderit quos placeat\nvelit minima officia dolores impedit repudiandae molestiae nam\nvoluptas recusandae quis delectus\nofficiis harum fugiat vitae" + }, + { + "userId": 2, + "id": 16, + "title": "sint suscipit perspiciatis velit dolorum rerum ipsa laboriosam odio", + "body": "suscipit nam nisi quo aperiam aut\nasperiores eos fugit maiores voluptatibus quia\nvoluptatem quis ullam qui in alias quia est\nconsequatur magni mollitia accusamus ea nisi voluptate dicta" + }, + { + "userId": 2, + "id": 17, + "title": "fugit voluptas sed molestias voluptatem provident", + "body": "eos voluptas et aut odit natus earum\naspernatur fuga molestiae ullam\ndeserunt ratione qui eos\nqui nihil ratione nemo velit ut aut id quo" + }, + { + "userId": 2, + "id": 18, + "title": "voluptate et itaque vero tempora molestiae", + "body": "eveniet quo quis\nlaborum totam consequatur non dolor\nut et est repudiandae\nest voluptatem vel debitis et magnam" + }, + { + "userId": 2, + "id": 19, + "title": "adipisci placeat illum aut reiciendis qui", + "body": "illum quis cupiditate provident sit magnam\nea sed aut omnis\nveniam maiores ullam consequatur atque\nadipisci quo iste expedita sit quos voluptas" + }, + { + "userId": 2, + "id": 20, + "title": "doloribus ad provident suscipit at", + "body": "qui consequuntur ducimus possimus quisquam amet similique\nsuscipit porro ipsam amet\neos veritatis officiis exercitationem vel fugit aut necessitatibus totam\nomnis rerum consequatur expedita quidem cumque explicabo" + }, + { + "userId": 3, + "id": 21, + "title": "asperiores ea ipsam voluptatibus modi minima quia sint", + "body": "repellat aliquid praesentium dolorem quo\nsed totam minus non itaque\nnihil labore molestiae sunt dolor eveniet hic recusandae veniam\ntempora et tenetur expedita sunt" + }, + { + "userId": 3, + "id": 22, + "title": "dolor sint quo a velit explicabo quia nam", + "body": "eos qui et ipsum ipsam suscipit aut\nsed omnis non odio\nexpedita earum mollitia molestiae aut atque rem suscipit\nnam impedit esse" + }, + { + "userId": 3, + "id": 23, + "title": "maxime id vitae nihil numquam", + "body": "veritatis unde neque eligendi\nquae quod architecto quo neque vitae\nest illo sit tempora doloremque fugit quod\net et vel beatae sequi ullam sed tenetur perspiciatis" + }, + { + "userId": 3, + "id": 24, + "title": "autem hic labore sunt dolores incidunt", + "body": "enim et ex nulla\nomnis voluptas quia qui\nvoluptatem consequatur numquam aliquam sunt\ntotam recusandae id dignissimos aut sed asperiores deserunt" + }, + { + "userId": 3, + "id": 25, + "title": "rem alias distinctio quo quis", + "body": "ullam consequatur ut\nomnis quis sit vel consequuntur\nipsa eligendi ipsum molestiae et omnis error nostrum\nmolestiae illo tempore quia et distinctio" + }, + { + "userId": 3, + "id": 26, + "title": "est et quae odit qui non", + "body": "similique esse doloribus nihil accusamus\nomnis dolorem fuga consequuntur reprehenderit fugit recusandae temporibus\nperspiciatis cum ut laudantium\nomnis aut molestiae vel vero" + }, + { + "userId": 3, + "id": 27, + "title": "quasi id et eos tenetur aut quo autem", + "body": "eum sed dolores ipsam sint possimus debitis occaecati\ndebitis qui qui et\nut placeat enim earum aut odit facilis\nconsequatur suscipit necessitatibus rerum sed inventore temporibus consequatur" + }, + { + "userId": 3, + "id": 28, + "title": "delectus ullam et corporis nulla voluptas sequi", + "body": "non et quaerat ex quae ad maiores\nmaiores recusandae totam aut blanditiis mollitia quas illo\nut voluptatibus voluptatem\nsimilique nostrum eum" + }, + { + "userId": 3, + "id": 29, + "title": "iusto eius quod necessitatibus culpa ea", + "body": "odit magnam ut saepe sed non qui\ntempora atque nihil\naccusamus illum doloribus illo dolor\neligendi repudiandae odit magni similique sed cum maiores" + }, + { + "userId": 3, + "id": 30, + "title": "a quo magni similique perferendis", + "body": "alias dolor cumque\nimpedit blanditiis non eveniet odio maxime\nblanditiis amet eius quis tempora quia autem rem\na provident perspiciatis quia" + }, + { + "userId": 4, + "id": 31, + "title": "ullam ut quidem id aut vel consequuntur", + "body": "debitis eius sed quibusdam non quis consectetur vitae\nimpedit ut qui consequatur sed aut in\nquidem sit nostrum et maiores adipisci atque\nquaerat voluptatem adipisci repudiandae" + }, + { + "userId": 4, + "id": 32, + "title": "doloremque illum aliquid sunt", + "body": "deserunt eos nobis asperiores et hic\nest debitis repellat molestiae optio\nnihil ratione ut eos beatae quibusdam distinctio maiores\nearum voluptates et aut adipisci ea maiores voluptas maxime" + }, + { + "userId": 4, + "id": 33, + "title": "qui explicabo molestiae dolorem", + "body": "rerum ut et numquam laborum odit est sit\nid qui sint in\nquasi tenetur tempore aperiam et quaerat qui in\nrerum officiis sequi cumque quod" + }, + { + "userId": 4, + "id": 34, + "title": "magnam ut rerum iure", + "body": "ea velit perferendis earum ut voluptatem voluptate itaque iusto\ntotam pariatur in\nnemo voluptatem voluptatem autem magni tempora minima in\nest distinctio qui assumenda accusamus dignissimos officia nesciunt nobis" + }, + { + "userId": 4, + "id": 35, + "title": "id nihil consequatur molestias animi provident", + "body": "nisi error delectus possimus ut eligendi vitae\nplaceat eos harum cupiditate facilis reprehenderit voluptatem beatae\nmodi ducimus quo illum voluptas eligendi\net nobis quia fugit" + }, + { + "userId": 4, + "id": 36, + "title": "fuga nam accusamus voluptas reiciendis itaque", + "body": "ad mollitia et omnis minus architecto odit\nvoluptas doloremque maxime aut non ipsa qui alias veniam\nblanditiis culpa aut quia nihil cumque facere et occaecati\nqui aspernatur quia eaque ut aperiam inventore" + }, + { + "userId": 4, + "id": 37, + "title": "provident vel ut sit ratione est", + "body": "debitis et eaque non officia sed nesciunt pariatur vel\nvoluptatem iste vero et ea\nnumquam aut expedita ipsum nulla in\nvoluptates omnis consequatur aut enim officiis in quam qui" + }, + { + "userId": 4, + "id": 38, + "title": "explicabo et eos deleniti nostrum ab id repellendus", + "body": "animi esse sit aut sit nesciunt assumenda eum voluptas\nquia voluptatibus provident quia necessitatibus ea\nrerum repudiandae quia voluptatem delectus fugit aut id quia\nratione optio eos iusto veniam iure" + }, + { + "userId": 4, + "id": 39, + "title": "eos dolorem iste accusantium est eaque quam", + "body": "corporis rerum ducimus vel eum accusantium\nmaxime aspernatur a porro possimus iste omnis\nest in deleniti asperiores fuga aut\nvoluptas sapiente vel dolore minus voluptatem incidunt ex" + }, + { + "userId": 4, + "id": 40, + "title": "enim quo cumque", + "body": "ut voluptatum aliquid illo tenetur nemo sequi quo facilis\nipsum rem optio mollitia quas\nvoluptatem eum voluptas qui\nunde omnis voluptatem iure quasi maxime voluptas nam" + }, + { + "userId": 5, + "id": 41, + "title": "non est facere", + "body": "molestias id nostrum\nexcepturi molestiae dolore omnis repellendus quaerat saepe\nconsectetur iste quaerat tenetur asperiores accusamus ex ut\nnam quidem est ducimus sunt debitis saepe" + }, + { + "userId": 5, + "id": 42, + "title": "commodi ullam sint et excepturi error explicabo praesentium voluptas", + "body": "odio fugit voluptatum ducimus earum autem est incidunt voluptatem\nodit reiciendis aliquam sunt sequi nulla dolorem\nnon facere repellendus voluptates quia\nratione harum vitae ut" + }, + { + "userId": 5, + "id": 43, + "title": "eligendi iste nostrum consequuntur adipisci praesentium sit beatae perferendis", + "body": "similique fugit est\nillum et dolorum harum et voluptate eaque quidem\nexercitationem quos nam commodi possimus cum odio nihil nulla\ndolorum exercitationem magnam ex et a et distinctio debitis" + }, + { + "userId": 5, + "id": 44, + "title": "optio dolor molestias sit", + "body": "temporibus est consectetur dolore\net libero debitis vel velit laboriosam quia\nipsum quibusdam qui itaque fuga rem aut\nea et iure quam sed maxime ut distinctio quae" + }, + { + "userId": 5, + "id": 45, + "title": "ut numquam possimus omnis eius suscipit laudantium iure", + "body": "est natus reiciendis nihil possimus aut provident\nex et dolor\nrepellat pariatur est\nnobis rerum repellendus dolorem autem" + }, + { + "userId": 5, + "id": 46, + "title": "aut quo modi neque nostrum ducimus", + "body": "voluptatem quisquam iste\nvoluptatibus natus officiis facilis dolorem\nquis quas ipsam\nvel et voluptatum in aliquid" + }, + { + "userId": 5, + "id": 47, + "title": "quibusdam cumque rem aut deserunt", + "body": "voluptatem assumenda ut qui ut cupiditate aut impedit veniam\noccaecati nemo illum voluptatem laudantium\nmolestiae beatae rerum ea iure soluta nostrum\neligendi et voluptate" + }, + { + "userId": 5, + "id": 48, + "title": "ut voluptatem illum ea doloribus itaque eos", + "body": "voluptates quo voluptatem facilis iure occaecati\nvel assumenda rerum officia et\nillum perspiciatis ab deleniti\nlaudantium repellat ad ut et autem reprehenderit" + }, + { + "userId": 5, + "id": 49, + "title": "laborum non sunt aut ut assumenda perspiciatis voluptas", + "body": "inventore ab sint\nnatus fugit id nulla sequi architecto nihil quaerat\neos tenetur in in eum veritatis non\nquibusdam officiis aspernatur cumque aut commodi aut" + }, + { + "userId": 5, + "id": 50, + "title": "repellendus qui recusandae incidunt voluptates tenetur qui omnis exercitationem", + "body": "error suscipit maxime adipisci consequuntur recusandae\nvoluptas eligendi et est et voluptates\nquia distinctio ab amet quaerat molestiae et vitae\nadipisci impedit sequi nesciunt quis consectetur" + }, + { + "userId": 6, + "id": 51, + "title": "soluta aliquam aperiam consequatur illo quis voluptas", + "body": "sunt dolores aut doloribus\ndolore doloribus voluptates tempora et\ndoloremque et quo\ncum asperiores sit consectetur dolorem" + }, + { + "userId": 6, + "id": 52, + "title": "qui enim et consequuntur quia animi quis voluptate quibusdam", + "body": "iusto est quibusdam fuga quas quaerat molestias\na enim ut sit accusamus enim\ntemporibus iusto accusantium provident architecto\nsoluta esse reprehenderit qui laborum" + }, + { + "userId": 6, + "id": 53, + "title": "ut quo aut ducimus alias", + "body": "minima harum praesentium eum rerum illo dolore\nquasi exercitationem rerum nam\nporro quis neque quo\nconsequatur minus dolor quidem veritatis sunt non explicabo similique" + }, + { + "userId": 6, + "id": 54, + "title": "sit asperiores ipsam eveniet odio non quia", + "body": "totam corporis dignissimos\nvitae dolorem ut occaecati accusamus\nex velit deserunt\net exercitationem vero incidunt corrupti mollitia" + }, + { + "userId": 6, + "id": 55, + "title": "sit vel voluptatem et non libero", + "body": "debitis excepturi ea perferendis harum libero optio\neos accusamus cum fuga ut sapiente repudiandae\net ut incidunt omnis molestiae\nnihil ut eum odit" + }, + { + "userId": 6, + "id": 56, + "title": "qui et at rerum necessitatibus", + "body": "aut est omnis dolores\nneque rerum quod ea rerum velit pariatur beatae excepturi\net provident voluptas corrupti\ncorporis harum reprehenderit dolores eligendi" + }, + { + "userId": 6, + "id": 57, + "title": "sed ab est est", + "body": "at pariatur consequuntur earum quidem\nquo est laudantium soluta voluptatem\nqui ullam et est\net cum voluptas voluptatum repellat est" + }, + { + "userId": 6, + "id": 58, + "title": "voluptatum itaque dolores nisi et quasi", + "body": "veniam voluptatum quae adipisci id\net id quia eos ad et dolorem\naliquam quo nisi sunt eos impedit error\nad similique veniam" + }, + { + "userId": 6, + "id": 59, + "title": "qui commodi dolor at maiores et quis id accusantium", + "body": "perspiciatis et quam ea autem temporibus non voluptatibus qui\nbeatae a earum officia nesciunt dolores suscipit voluptas et\nanimi doloribus cum rerum quas et magni\net hic ut ut commodi expedita sunt" + }, + { + "userId": 6, + "id": 60, + "title": "consequatur placeat omnis quisquam quia reprehenderit fugit veritatis facere", + "body": "asperiores sunt ab assumenda cumque modi velit\nqui esse omnis\nvoluptate et fuga perferendis voluptas\nillo ratione amet aut et omnis" + }, + { + "userId": 7, + "id": 61, + "title": "voluptatem doloribus consectetur est ut ducimus", + "body": "ab nemo optio odio\ndelectus tenetur corporis similique nobis repellendus rerum omnis facilis\nvero blanditiis debitis in nesciunt doloribus dicta dolores\nmagnam minus velit" + }, + { + "userId": 7, + "id": 62, + "title": "beatae enim quia vel", + "body": "enim aspernatur illo distinctio quae praesentium\nbeatae alias amet delectus qui voluptate distinctio\nodit sint accusantium autem omnis\nquo molestiae omnis ea eveniet optio" + }, + { + "userId": 7, + "id": 63, + "title": "voluptas blanditiis repellendus animi ducimus error sapiente et suscipit", + "body": "enim adipisci aspernatur nemo\nnumquam omnis facere dolorem dolor ex quis temporibus incidunt\nab delectus culpa quo reprehenderit blanditiis asperiores\naccusantium ut quam in voluptatibus voluptas ipsam dicta" + }, + { + "userId": 7, + "id": 64, + "title": "et fugit quas eum in in aperiam quod", + "body": "id velit blanditiis\neum ea voluptatem\nmolestiae sint occaecati est eos perspiciatis\nincidunt a error provident eaque aut aut qui" + }, + { + "userId": 7, + "id": 65, + "title": "consequatur id enim sunt et et", + "body": "voluptatibus ex esse\nsint explicabo est aliquid cumque adipisci fuga repellat labore\nmolestiae corrupti ex saepe at asperiores et perferendis\nnatus id esse incidunt pariatur" + }, + { + "userId": 7, + "id": 66, + "title": "repudiandae ea animi iusto", + "body": "officia veritatis tenetur vero qui itaque\nsint non ratione\nsed et ut asperiores iusto eos molestiae nostrum\nveritatis quibusdam et nemo iusto saepe" + }, + { + "userId": 7, + "id": 67, + "title": "aliquid eos sed fuga est maxime repellendus", + "body": "reprehenderit id nostrum\nvoluptas doloremque pariatur sint et accusantium quia quod aspernatur\net fugiat amet\nnon sapiente et consequatur necessitatibus molestiae" + }, + { + "userId": 7, + "id": 68, + "title": "odio quis facere architecto reiciendis optio", + "body": "magnam molestiae perferendis quisquam\nqui cum reiciendis\nquaerat animi amet hic inventore\nea quia deleniti quidem saepe porro velit" + }, + { + "userId": 7, + "id": 69, + "title": "fugiat quod pariatur odit minima", + "body": "officiis error culpa consequatur modi asperiores et\ndolorum assumenda voluptas et vel qui aut vel rerum\nvoluptatum quisquam perspiciatis quia rerum consequatur totam quas\nsequi commodi repudiandae asperiores et saepe a" + }, + { + "userId": 7, + "id": 70, + "title": "voluptatem laborum magni", + "body": "sunt repellendus quae\nest asperiores aut deleniti esse accusamus repellendus quia aut\nquia dolorem unde\neum tempora esse dolore" + }, + { + "userId": 8, + "id": 71, + "title": "et iusto veniam et illum aut fuga", + "body": "occaecati a doloribus\niste saepe consectetur placeat eum voluptate dolorem et\nqui quo quia voluptas\nrerum ut id enim velit est perferendis" + }, + { + "userId": 8, + "id": 72, + "title": "sint hic doloribus consequatur eos non id", + "body": "quam occaecati qui deleniti consectetur\nconsequatur aut facere quas exercitationem aliquam hic voluptas\nneque id sunt ut aut accusamus\nsunt consectetur expedita inventore velit" + }, + { + "userId": 8, + "id": 73, + "title": "consequuntur deleniti eos quia temporibus ab aliquid at", + "body": "voluptatem cumque tenetur consequatur expedita ipsum nemo quia explicabo\naut eum minima consequatur\ntempore cumque quae est et\net in consequuntur voluptatem voluptates aut" + }, + { + "userId": 8, + "id": 74, + "title": "enim unde ratione doloribus quas enim ut sit sapiente", + "body": "odit qui et et necessitatibus sint veniam\nmollitia amet doloremque molestiae commodi similique magnam et quam\nblanditiis est itaque\nquo et tenetur ratione occaecati molestiae tempora" + }, + { + "userId": 8, + "id": 75, + "title": "dignissimos eum dolor ut enim et delectus in", + "body": "commodi non non omnis et voluptas sit\nautem aut nobis magnam et sapiente voluptatem\net laborum repellat qui delectus facilis temporibus\nrerum amet et nemo voluptate expedita adipisci error dolorem" + }, + { + "userId": 8, + "id": 76, + "title": "doloremque officiis ad et non perferendis", + "body": "ut animi facere\ntotam iusto tempore\nmolestiae eum aut et dolorem aperiam\nquaerat recusandae totam odio" + }, + { + "userId": 8, + "id": 77, + "title": "necessitatibus quasi exercitationem odio", + "body": "modi ut in nulla repudiandae dolorum nostrum eos\naut consequatur omnis\nut incidunt est omnis iste et quam\nvoluptates sapiente aliquam asperiores nobis amet corrupti repudiandae provident" + }, + { + "userId": 8, + "id": 78, + "title": "quam voluptatibus rerum veritatis", + "body": "nobis facilis odit tempore cupiditate quia\nassumenda doloribus rerum qui ea\nillum et qui totam\naut veniam repellendus" + }, + { + "userId": 8, + "id": 79, + "title": "pariatur consequatur quia magnam autem omnis non amet", + "body": "libero accusantium et et facere incidunt sit dolorem\nnon excepturi qui quia sed laudantium\nquisquam molestiae ducimus est\nofficiis esse molestiae iste et quos" + }, + { + "userId": 8, + "id": 80, + "title": "labore in ex et explicabo corporis aut quas", + "body": "ex quod dolorem ea eum iure qui provident amet\nquia qui facere excepturi et repudiandae\nasperiores molestias provident\nminus incidunt vero fugit rerum sint sunt excepturi provident" + }, + { + "userId": 9, + "id": 81, + "title": "tempora rem veritatis voluptas quo dolores vero", + "body": "facere qui nesciunt est voluptatum voluptatem nisi\nsequi eligendi necessitatibus ea at rerum itaque\nharum non ratione velit laboriosam quis consequuntur\nex officiis minima doloremque voluptas ut aut" + }, + { + "userId": 9, + "id": 82, + "title": "laudantium voluptate suscipit sunt enim enim", + "body": "ut libero sit aut totam inventore sunt\nporro sint qui sunt molestiae\nconsequatur cupiditate qui iste ducimus adipisci\ndolor enim assumenda soluta laboriosam amet iste delectus hic" + }, + { + "userId": 9, + "id": 83, + "title": "odit et voluptates doloribus alias odio et", + "body": "est molestiae facilis quis tempora numquam nihil qui\nvoluptate sapiente consequatur est qui\nnecessitatibus autem aut ipsa aperiam modi dolore numquam\nreprehenderit eius rem quibusdam" + }, + { + "userId": 9, + "id": 84, + "title": "optio ipsam molestias necessitatibus occaecati facilis veritatis dolores aut", + "body": "sint molestiae magni a et quos\neaque et quasi\nut rerum debitis similique veniam\nrecusandae dignissimos dolor incidunt consequatur odio" + }, + { + "userId": 9, + "id": 85, + "title": "dolore veritatis porro provident adipisci blanditiis et sunt", + "body": "similique sed nisi voluptas iusto omnis\nmollitia et quo\nassumenda suscipit officia magnam sint sed tempora\nenim provident pariatur praesentium atque animi amet ratione" + }, + { + "userId": 9, + "id": 86, + "title": "placeat quia et porro iste", + "body": "quasi excepturi consequatur iste autem temporibus sed molestiae beatae\net quaerat et esse ut\nvoluptatem occaecati et vel explicabo autem\nasperiores pariatur deserunt optio" + }, + { + "userId": 9, + "id": 87, + "title": "nostrum quis quasi placeat", + "body": "eos et molestiae\nnesciunt ut a\ndolores perspiciatis repellendus repellat aliquid\nmagnam sint rem ipsum est" + }, + { + "userId": 9, + "id": 88, + "title": "sapiente omnis fugit eos", + "body": "consequatur omnis est praesentium\nducimus non iste\nneque hic deserunt\nvoluptatibus veniam cum et rerum sed" + }, + { + "userId": 9, + "id": 89, + "title": "sint soluta et vel magnam aut ut sed qui", + "body": "repellat aut aperiam totam temporibus autem et\narchitecto magnam ut\nconsequatur qui cupiditate rerum quia soluta dignissimos nihil iure\ntempore quas est" + }, + { + "userId": 9, + "id": 90, + "title": "ad iusto omnis odit dolor voluptatibus", + "body": "minus omnis soluta quia\nqui sed adipisci voluptates illum ipsam voluptatem\neligendi officia ut in\neos soluta similique molestias praesentium blanditiis" + }, + { + "userId": 10, + "id": 91, + "title": "aut amet sed", + "body": "libero voluptate eveniet aperiam sed\nsunt placeat suscipit molestias\nsimilique fugit nam natus\nexpedita consequatur consequatur dolores quia eos et placeat" + }, + { + "userId": 10, + "id": 92, + "title": "ratione ex tenetur perferendis", + "body": "aut et excepturi dicta laudantium sint rerum nihil\nlaudantium et at\na neque minima officia et similique libero et\ncommodi voluptate qui" + }, + { + "userId": 10, + "id": 93, + "title": "beatae soluta recusandae", + "body": "dolorem quibusdam ducimus consequuntur dicta aut quo laboriosam\nvoluptatem quis enim recusandae ut sed sunt\nnostrum est odit totam\nsit error sed sunt eveniet provident qui nulla" + }, + { + "userId": 10, + "id": 94, + "title": "qui qui voluptates illo iste minima", + "body": "aspernatur expedita soluta quo ab ut similique\nexpedita dolores amet\nsed temporibus distinctio magnam saepe deleniti\nomnis facilis nam ipsum natus sint similique omnis" + }, + { + "userId": 10, + "id": 95, + "title": "id minus libero illum nam ad officiis", + "body": "earum voluptatem facere provident blanditiis velit laboriosam\npariatur accusamus odio saepe\ncumque dolor qui a dicta ab doloribus consequatur omnis\ncorporis cupiditate eaque assumenda ad nesciunt" + }, + { + "userId": 10, + "id": 96, + "title": "quaerat velit veniam amet cupiditate aut numquam ut sequi", + "body": "in non odio excepturi sint eum\nlabore voluptates vitae quia qui et\ninventore itaque rerum\nveniam non exercitationem delectus aut" + }, + { + "userId": 10, + "id": 97, + "title": "quas fugiat ut perspiciatis vero provident", + "body": "eum non blanditiis soluta porro quibusdam voluptas\nvel voluptatem qui placeat dolores qui velit aut\nvel inventore aut cumque culpa explicabo aliquid at\nperspiciatis est et voluptatem dignissimos dolor itaque sit nam" + }, + { + "userId": 10, + "id": 98, + "title": "laboriosam dolor voluptates", + "body": "doloremque ex facilis sit sint culpa\nsoluta assumenda eligendi non ut eius\nsequi ducimus vel quasi\nveritatis est dolores" + }, + { + "userId": 10, + "id": 99, + "title": "temporibus sit alias delectus eligendi possimus magni", + "body": "quo deleniti praesentium dicta non quod\naut est molestias\nmolestias et officia quis nihil\nitaque dolorem quia" + }, + { + "userId": 10, + "id": 100, + "title": "at nam consequatur ea labore ea harum", + "body": "cupiditate quo est a modi nesciunt soluta\nipsa voluptas error itaque dicta in\nautem qui minus magnam et distinctio eum\naccusamus ratione error aut" + } +] \ No newline at end of file diff --git a/jsonplaceholder/posts.metadata.json b/jsonplaceholder/posts.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e6fa5f892d0d680f064ab592a52303e29102e255 --- /dev/null +++ b/jsonplaceholder/posts.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_posts", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:12.312465", + "size_bytes": 27520, + "description": "All blog posts", + "url": "https://jsonplaceholder.typicode.com/posts" +} \ No newline at end of file diff --git a/jsonplaceholder/posts_single.json b/jsonplaceholder/posts_single.json new file mode 100644 index 0000000000000000000000000000000000000000..c295fad73ea1ef22dec80fc02838366a0e9d3608 --- /dev/null +++ b/jsonplaceholder/posts_single.json @@ -0,0 +1,6 @@ +{ + "userId": 1, + "id": 1, + "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit", + "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto" +} \ No newline at end of file diff --git a/jsonplaceholder/posts_single.metadata.json b/jsonplaceholder/posts_single.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..543306fc4f73499124bc9cfcbb9b17dbf433548b --- /dev/null +++ b/jsonplaceholder/posts_single.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_posts_single", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:13.377828", + "size_bytes": 292, + "description": "Single blog post", + "url": "https://jsonplaceholder.typicode.com/posts/1" +} \ No newline at end of file diff --git a/jsonplaceholder/todos.json b/jsonplaceholder/todos.json new file mode 100644 index 0000000000000000000000000000000000000000..799b8322d2677cfcdb7b9c0cfd78f20fc83d4011 --- /dev/null +++ b/jsonplaceholder/todos.json @@ -0,0 +1,1202 @@ +[ + { + "userId": 1, + "id": 1, + "title": "delectus aut autem", + "completed": false + }, + { + "userId": 1, + "id": 2, + "title": "quis ut nam facilis et officia qui", + "completed": false + }, + { + "userId": 1, + "id": 3, + "title": "fugiat veniam minus", + "completed": false + }, + { + "userId": 1, + "id": 4, + "title": "et porro tempora", + "completed": true + }, + { + "userId": 1, + "id": 5, + "title": "laboriosam mollitia et enim quasi adipisci quia provident illum", + "completed": false + }, + { + "userId": 1, + "id": 6, + "title": "qui ullam ratione quibusdam voluptatem quia omnis", + "completed": false + }, + { + "userId": 1, + "id": 7, + "title": "illo expedita consequatur quia in", + "completed": false + }, + { + "userId": 1, + "id": 8, + "title": "quo adipisci enim quam ut ab", + "completed": true + }, + { + "userId": 1, + "id": 9, + "title": "molestiae perspiciatis ipsa", + "completed": false + }, + { + "userId": 1, + "id": 10, + "title": "illo est ratione doloremque quia maiores aut", + "completed": true + }, + { + "userId": 1, + "id": 11, + "title": "vero rerum temporibus dolor", + "completed": true + }, + { + "userId": 1, + "id": 12, + "title": "ipsa repellendus fugit nisi", + "completed": true + }, + { + "userId": 1, + "id": 13, + "title": "et doloremque nulla", + "completed": false + }, + { + "userId": 1, + "id": 14, + "title": "repellendus sunt dolores architecto voluptatum", + "completed": true + }, + { + "userId": 1, + "id": 15, + "title": "ab voluptatum amet voluptas", + "completed": true + }, + { + "userId": 1, + "id": 16, + "title": "accusamus eos facilis sint et aut voluptatem", + "completed": true + }, + { + "userId": 1, + "id": 17, + "title": "quo laboriosam deleniti aut qui", + "completed": true + }, + { + "userId": 1, + "id": 18, + "title": "dolorum est consequatur ea mollitia in culpa", + "completed": false + }, + { + "userId": 1, + "id": 19, + "title": "molestiae ipsa aut voluptatibus pariatur dolor nihil", + "completed": true + }, + { + "userId": 1, + "id": 20, + "title": "ullam nobis libero sapiente ad optio sint", + "completed": true + }, + { + "userId": 2, + "id": 21, + "title": "suscipit repellat esse quibusdam voluptatem incidunt", + "completed": false + }, + { + "userId": 2, + "id": 22, + "title": "distinctio vitae autem nihil ut molestias quo", + "completed": true + }, + { + "userId": 2, + "id": 23, + "title": "et itaque necessitatibus maxime molestiae qui quas velit", + "completed": false + }, + { + "userId": 2, + "id": 24, + "title": "adipisci non ad dicta qui amet quaerat doloribus ea", + "completed": false + }, + { + "userId": 2, + "id": 25, + "title": "voluptas quo tenetur perspiciatis explicabo natus", + "completed": true + }, + { + "userId": 2, + "id": 26, + "title": "aliquam aut quasi", + "completed": true + }, + { + "userId": 2, + "id": 27, + "title": "veritatis pariatur delectus", + "completed": true + }, + { + "userId": 2, + "id": 28, + "title": "nesciunt totam sit blanditiis sit", + "completed": false + }, + { + "userId": 2, + "id": 29, + "title": "laborum aut in quam", + "completed": false + }, + { + "userId": 2, + "id": 30, + "title": "nemo perspiciatis repellat ut dolor libero commodi blanditiis omnis", + "completed": true + }, + { + "userId": 2, + "id": 31, + "title": "repudiandae totam in est sint facere fuga", + "completed": false + }, + { + "userId": 2, + "id": 32, + "title": "earum doloribus ea doloremque quis", + "completed": false + }, + { + "userId": 2, + "id": 33, + "title": "sint sit aut vero", + "completed": false + }, + { + "userId": 2, + "id": 34, + "title": "porro aut necessitatibus eaque distinctio", + "completed": false + }, + { + "userId": 2, + "id": 35, + "title": "repellendus veritatis molestias dicta incidunt", + "completed": true + }, + { + "userId": 2, + "id": 36, + "title": "excepturi deleniti adipisci voluptatem et neque optio illum ad", + "completed": true + }, + { + "userId": 2, + "id": 37, + "title": "sunt cum tempora", + "completed": false + }, + { + "userId": 2, + "id": 38, + "title": "totam quia non", + "completed": false + }, + { + "userId": 2, + "id": 39, + "title": "doloremque quibusdam asperiores libero corrupti illum qui omnis", + "completed": false + }, + { + "userId": 2, + "id": 40, + "title": "totam atque quo nesciunt", + "completed": true + }, + { + "userId": 3, + "id": 41, + "title": "aliquid amet impedit consequatur aspernatur placeat eaque fugiat suscipit", + "completed": false + }, + { + "userId": 3, + "id": 42, + "title": "rerum perferendis error quia ut eveniet", + "completed": false + }, + { + "userId": 3, + "id": 43, + "title": "tempore ut sint quis recusandae", + "completed": true + }, + { + "userId": 3, + "id": 44, + "title": "cum debitis quis accusamus doloremque ipsa natus sapiente omnis", + "completed": true + }, + { + "userId": 3, + "id": 45, + "title": "velit soluta adipisci molestias reiciendis harum", + "completed": false + }, + { + "userId": 3, + "id": 46, + "title": "vel voluptatem repellat nihil placeat corporis", + "completed": false + }, + { + "userId": 3, + "id": 47, + "title": "nam qui rerum fugiat accusamus", + "completed": false + }, + { + "userId": 3, + "id": 48, + "title": "sit reprehenderit omnis quia", + "completed": false + }, + { + "userId": 3, + "id": 49, + "title": "ut necessitatibus aut maiores debitis officia blanditiis velit et", + "completed": false + }, + { + "userId": 3, + "id": 50, + "title": "cupiditate necessitatibus ullam aut quis dolor voluptate", + "completed": true + }, + { + "userId": 3, + "id": 51, + "title": "distinctio exercitationem ab doloribus", + "completed": false + }, + { + "userId": 3, + "id": 52, + "title": "nesciunt dolorum quis recusandae ad pariatur ratione", + "completed": false + }, + { + "userId": 3, + "id": 53, + "title": "qui labore est occaecati recusandae aliquid quam", + "completed": false + }, + { + "userId": 3, + "id": 54, + "title": "quis et est ut voluptate quam dolor", + "completed": true + }, + { + "userId": 3, + "id": 55, + "title": "voluptatum omnis minima qui occaecati provident nulla voluptatem ratione", + "completed": true + }, + { + "userId": 3, + "id": 56, + "title": "deleniti ea temporibus enim", + "completed": true + }, + { + "userId": 3, + "id": 57, + "title": "pariatur et magnam ea doloribus similique voluptatem rerum quia", + "completed": false + }, + { + "userId": 3, + "id": 58, + "title": "est dicta totam qui explicabo doloribus qui dignissimos", + "completed": false + }, + { + "userId": 3, + "id": 59, + "title": "perspiciatis velit id laborum placeat iusto et aliquam odio", + "completed": false + }, + { + "userId": 3, + "id": 60, + "title": "et sequi qui architecto ut adipisci", + "completed": true + }, + { + "userId": 4, + "id": 61, + "title": "odit optio omnis qui sunt", + "completed": true + }, + { + "userId": 4, + "id": 62, + "title": "et placeat et tempore aspernatur sint numquam", + "completed": false + }, + { + "userId": 4, + "id": 63, + "title": "doloremque aut dolores quidem fuga qui nulla", + "completed": true + }, + { + "userId": 4, + "id": 64, + "title": "voluptas consequatur qui ut quia magnam nemo esse", + "completed": false + }, + { + "userId": 4, + "id": 65, + "title": "fugiat pariatur ratione ut asperiores necessitatibus magni", + "completed": false + }, + { + "userId": 4, + "id": 66, + "title": "rerum eum molestias autem voluptatum sit optio", + "completed": false + }, + { + "userId": 4, + "id": 67, + "title": "quia voluptatibus voluptatem quos similique maiores repellat", + "completed": false + }, + { + "userId": 4, + "id": 68, + "title": "aut id perspiciatis voluptatem iusto", + "completed": false + }, + { + "userId": 4, + "id": 69, + "title": "doloribus sint dolorum ab adipisci itaque dignissimos aliquam suscipit", + "completed": false + }, + { + "userId": 4, + "id": 70, + "title": "ut sequi accusantium et mollitia delectus sunt", + "completed": false + }, + { + "userId": 4, + "id": 71, + "title": "aut velit saepe ullam", + "completed": false + }, + { + "userId": 4, + "id": 72, + "title": "praesentium facilis facere quis harum voluptatibus voluptatem eum", + "completed": false + }, + { + "userId": 4, + "id": 73, + "title": "sint amet quia totam corporis qui exercitationem commodi", + "completed": true + }, + { + "userId": 4, + "id": 74, + "title": "expedita tempore nobis eveniet laborum maiores", + "completed": false + }, + { + "userId": 4, + "id": 75, + "title": "occaecati adipisci est possimus totam", + "completed": false + }, + { + "userId": 4, + "id": 76, + "title": "sequi dolorem sed", + "completed": true + }, + { + "userId": 4, + "id": 77, + "title": "maiores aut nesciunt delectus exercitationem vel assumenda eligendi at", + "completed": false + }, + { + "userId": 4, + "id": 78, + "title": "reiciendis est magnam amet nemo iste recusandae impedit quaerat", + "completed": false + }, + { + "userId": 4, + "id": 79, + "title": "eum ipsa maxime ut", + "completed": true + }, + { + "userId": 4, + "id": 80, + "title": "tempore molestias dolores rerum sequi voluptates ipsum consequatur", + "completed": true + }, + { + "userId": 5, + "id": 81, + "title": "suscipit qui totam", + "completed": true + }, + { + "userId": 5, + "id": 82, + "title": "voluptates eum voluptas et dicta", + "completed": false + }, + { + "userId": 5, + "id": 83, + "title": "quidem at rerum quis ex aut sit quam", + "completed": true + }, + { + "userId": 5, + "id": 84, + "title": "sunt veritatis ut voluptate", + "completed": false + }, + { + "userId": 5, + "id": 85, + "title": "et quia ad iste a", + "completed": true + }, + { + "userId": 5, + "id": 86, + "title": "incidunt ut saepe autem", + "completed": true + }, + { + "userId": 5, + "id": 87, + "title": "laudantium quae eligendi consequatur quia et vero autem", + "completed": true + }, + { + "userId": 5, + "id": 88, + "title": "vitae aut excepturi laboriosam sint aliquam et et accusantium", + "completed": false + }, + { + "userId": 5, + "id": 89, + "title": "sequi ut omnis et", + "completed": true + }, + { + "userId": 5, + "id": 90, + "title": "molestiae nisi accusantium tenetur dolorem et", + "completed": true + }, + { + "userId": 5, + "id": 91, + "title": "nulla quis consequatur saepe qui id expedita", + "completed": true + }, + { + "userId": 5, + "id": 92, + "title": "in omnis laboriosam", + "completed": true + }, + { + "userId": 5, + "id": 93, + "title": "odio iure consequatur molestiae quibusdam necessitatibus quia sint", + "completed": true + }, + { + "userId": 5, + "id": 94, + "title": "facilis modi saepe mollitia", + "completed": false + }, + { + "userId": 5, + "id": 95, + "title": "vel nihil et molestiae iusto assumenda nemo quo ut", + "completed": true + }, + { + "userId": 5, + "id": 96, + "title": "nobis suscipit ducimus enim asperiores voluptas", + "completed": false + }, + { + "userId": 5, + "id": 97, + "title": "dolorum laboriosam eos qui iure aliquam", + "completed": false + }, + { + "userId": 5, + "id": 98, + "title": "debitis accusantium ut quo facilis nihil quis sapiente necessitatibus", + "completed": true + }, + { + "userId": 5, + "id": 99, + "title": "neque voluptates ratione", + "completed": false + }, + { + "userId": 5, + "id": 100, + "title": "excepturi a et neque qui expedita vel voluptate", + "completed": false + }, + { + "userId": 6, + "id": 101, + "title": "explicabo enim cumque porro aperiam occaecati minima", + "completed": false + }, + { + "userId": 6, + "id": 102, + "title": "sed ab consequatur", + "completed": false + }, + { + "userId": 6, + "id": 103, + "title": "non sunt delectus illo nulla tenetur enim omnis", + "completed": false + }, + { + "userId": 6, + "id": 104, + "title": "excepturi non laudantium quo", + "completed": false + }, + { + "userId": 6, + "id": 105, + "title": "totam quia dolorem et illum repellat voluptas optio", + "completed": true + }, + { + "userId": 6, + "id": 106, + "title": "ad illo quis voluptatem temporibus", + "completed": true + }, + { + "userId": 6, + "id": 107, + "title": "praesentium facilis omnis laudantium fugit ad iusto nihil nesciunt", + "completed": false + }, + { + "userId": 6, + "id": 108, + "title": "a eos eaque nihil et exercitationem incidunt delectus", + "completed": true + }, + { + "userId": 6, + "id": 109, + "title": "autem temporibus harum quisquam in culpa", + "completed": true + }, + { + "userId": 6, + "id": 110, + "title": "aut aut ea corporis", + "completed": true + }, + { + "userId": 6, + "id": 111, + "title": "magni accusantium labore et id quis provident", + "completed": false + }, + { + "userId": 6, + "id": 112, + "title": "consectetur impedit quisquam qui deserunt non rerum consequuntur eius", + "completed": false + }, + { + "userId": 6, + "id": 113, + "title": "quia atque aliquam sunt impedit voluptatum rerum assumenda nisi", + "completed": false + }, + { + "userId": 6, + "id": 114, + "title": "cupiditate quos possimus corporis quisquam exercitationem beatae", + "completed": false + }, + { + "userId": 6, + "id": 115, + "title": "sed et ea eum", + "completed": false + }, + { + "userId": 6, + "id": 116, + "title": "ipsa dolores vel facilis ut", + "completed": true + }, + { + "userId": 6, + "id": 117, + "title": "sequi quae est et qui qui eveniet asperiores", + "completed": false + }, + { + "userId": 6, + "id": 118, + "title": "quia modi consequatur vero fugiat", + "completed": false + }, + { + "userId": 6, + "id": 119, + "title": "corporis ducimus ea perspiciatis iste", + "completed": false + }, + { + "userId": 6, + "id": 120, + "title": "dolorem laboriosam vel voluptas et aliquam quasi", + "completed": false + }, + { + "userId": 7, + "id": 121, + "title": "inventore aut nihil minima laudantium hic qui omnis", + "completed": true + }, + { + "userId": 7, + "id": 122, + "title": "provident aut nobis culpa", + "completed": true + }, + { + "userId": 7, + "id": 123, + "title": "esse et quis iste est earum aut impedit", + "completed": false + }, + { + "userId": 7, + "id": 124, + "title": "qui consectetur id", + "completed": false + }, + { + "userId": 7, + "id": 125, + "title": "aut quasi autem iste tempore illum possimus", + "completed": false + }, + { + "userId": 7, + "id": 126, + "title": "ut asperiores perspiciatis veniam ipsum rerum saepe", + "completed": true + }, + { + "userId": 7, + "id": 127, + "title": "voluptatem libero consectetur rerum ut", + "completed": true + }, + { + "userId": 7, + "id": 128, + "title": "eius omnis est qui voluptatem autem", + "completed": false + }, + { + "userId": 7, + "id": 129, + "title": "rerum culpa quis harum", + "completed": false + }, + { + "userId": 7, + "id": 130, + "title": "nulla aliquid eveniet harum laborum libero alias ut unde", + "completed": true + }, + { + "userId": 7, + "id": 131, + "title": "qui ea incidunt quis", + "completed": false + }, + { + "userId": 7, + "id": 132, + "title": "qui molestiae voluptatibus velit iure harum quisquam", + "completed": true + }, + { + "userId": 7, + "id": 133, + "title": "et labore eos enim rerum consequatur sunt", + "completed": true + }, + { + "userId": 7, + "id": 134, + "title": "molestiae doloribus et laborum quod ea", + "completed": false + }, + { + "userId": 7, + "id": 135, + "title": "facere ipsa nam eum voluptates reiciendis vero qui", + "completed": false + }, + { + "userId": 7, + "id": 136, + "title": "asperiores illo tempora fuga sed ut quasi adipisci", + "completed": false + }, + { + "userId": 7, + "id": 137, + "title": "qui sit non", + "completed": false + }, + { + "userId": 7, + "id": 138, + "title": "placeat minima consequatur rem qui ut", + "completed": true + }, + { + "userId": 7, + "id": 139, + "title": "consequatur doloribus id possimus voluptas a voluptatem", + "completed": false + }, + { + "userId": 7, + "id": 140, + "title": "aut consectetur in blanditiis deserunt quia sed laboriosam", + "completed": true + }, + { + "userId": 8, + "id": 141, + "title": "explicabo consectetur debitis voluptates quas quae culpa rerum non", + "completed": true + }, + { + "userId": 8, + "id": 142, + "title": "maiores accusantium architecto necessitatibus reiciendis ea aut", + "completed": true + }, + { + "userId": 8, + "id": 143, + "title": "eum non recusandae cupiditate animi", + "completed": false + }, + { + "userId": 8, + "id": 144, + "title": "ut eum exercitationem sint", + "completed": false + }, + { + "userId": 8, + "id": 145, + "title": "beatae qui ullam incidunt voluptatem non nisi aliquam", + "completed": false + }, + { + "userId": 8, + "id": 146, + "title": "molestiae suscipit ratione nihil odio libero impedit vero totam", + "completed": true + }, + { + "userId": 8, + "id": 147, + "title": "eum itaque quod reprehenderit et facilis dolor autem ut", + "completed": true + }, + { + "userId": 8, + "id": 148, + "title": "esse quas et quo quasi exercitationem", + "completed": false + }, + { + "userId": 8, + "id": 149, + "title": "animi voluptas quod perferendis est", + "completed": false + }, + { + "userId": 8, + "id": 150, + "title": "eos amet tempore laudantium fugit a", + "completed": false + }, + { + "userId": 8, + "id": 151, + "title": "accusamus adipisci dicta qui quo ea explicabo sed vero", + "completed": true + }, + { + "userId": 8, + "id": 152, + "title": "odit eligendi recusandae doloremque cumque non", + "completed": false + }, + { + "userId": 8, + "id": 153, + "title": "ea aperiam consequatur qui repellat eos", + "completed": false + }, + { + "userId": 8, + "id": 154, + "title": "rerum non ex sapiente", + "completed": true + }, + { + "userId": 8, + "id": 155, + "title": "voluptatem nobis consequatur et assumenda magnam", + "completed": true + }, + { + "userId": 8, + "id": 156, + "title": "nam quia quia nulla repellat assumenda quibusdam sit nobis", + "completed": true + }, + { + "userId": 8, + "id": 157, + "title": "dolorem veniam quisquam deserunt repellendus", + "completed": true + }, + { + "userId": 8, + "id": 158, + "title": "debitis vitae delectus et harum accusamus aut deleniti a", + "completed": true + }, + { + "userId": 8, + "id": 159, + "title": "debitis adipisci quibusdam aliquam sed dolore ea praesentium nobis", + "completed": true + }, + { + "userId": 8, + "id": 160, + "title": "et praesentium aliquam est", + "completed": false + }, + { + "userId": 9, + "id": 161, + "title": "ex hic consequuntur earum omnis alias ut occaecati culpa", + "completed": true + }, + { + "userId": 9, + "id": 162, + "title": "omnis laboriosam molestias animi sunt dolore", + "completed": true + }, + { + "userId": 9, + "id": 163, + "title": "natus corrupti maxime laudantium et voluptatem laboriosam odit", + "completed": false + }, + { + "userId": 9, + "id": 164, + "title": "reprehenderit quos aut aut consequatur est sed", + "completed": false + }, + { + "userId": 9, + "id": 165, + "title": "fugiat perferendis sed aut quidem", + "completed": false + }, + { + "userId": 9, + "id": 166, + "title": "quos quo possimus suscipit minima ut", + "completed": false + }, + { + "userId": 9, + "id": 167, + "title": "et quis minus quo a asperiores molestiae", + "completed": false + }, + { + "userId": 9, + "id": 168, + "title": "recusandae quia qui sunt libero", + "completed": false + }, + { + "userId": 9, + "id": 169, + "title": "ea odio perferendis officiis", + "completed": true + }, + { + "userId": 9, + "id": 170, + "title": "quisquam aliquam quia doloribus aut", + "completed": false + }, + { + "userId": 9, + "id": 171, + "title": "fugiat aut voluptatibus corrupti deleniti velit iste odio", + "completed": true + }, + { + "userId": 9, + "id": 172, + "title": "et provident amet rerum consectetur et voluptatum", + "completed": false + }, + { + "userId": 9, + "id": 173, + "title": "harum ad aperiam quis", + "completed": false + }, + { + "userId": 9, + "id": 174, + "title": "similique aut quo", + "completed": false + }, + { + "userId": 9, + "id": 175, + "title": "laudantium eius officia perferendis provident perspiciatis asperiores", + "completed": true + }, + { + "userId": 9, + "id": 176, + "title": "magni soluta corrupti ut maiores rem quidem", + "completed": false + }, + { + "userId": 9, + "id": 177, + "title": "et placeat temporibus voluptas est tempora quos quibusdam", + "completed": false + }, + { + "userId": 9, + "id": 178, + "title": "nesciunt itaque commodi tempore", + "completed": true + }, + { + "userId": 9, + "id": 179, + "title": "omnis consequuntur cupiditate impedit itaque ipsam quo", + "completed": true + }, + { + "userId": 9, + "id": 180, + "title": "debitis nisi et dolorem repellat et", + "completed": true + }, + { + "userId": 10, + "id": 181, + "title": "ut cupiditate sequi aliquam fuga maiores", + "completed": false + }, + { + "userId": 10, + "id": 182, + "title": "inventore saepe cumque et aut illum enim", + "completed": true + }, + { + "userId": 10, + "id": 183, + "title": "omnis nulla eum aliquam distinctio", + "completed": true + }, + { + "userId": 10, + "id": 184, + "title": "molestias modi perferendis perspiciatis", + "completed": false + }, + { + "userId": 10, + "id": 185, + "title": "voluptates dignissimos sed doloribus animi quaerat aut", + "completed": false + }, + { + "userId": 10, + "id": 186, + "title": "explicabo odio est et", + "completed": false + }, + { + "userId": 10, + "id": 187, + "title": "consequuntur animi possimus", + "completed": false + }, + { + "userId": 10, + "id": 188, + "title": "vel non beatae est", + "completed": true + }, + { + "userId": 10, + "id": 189, + "title": "culpa eius et voluptatem et", + "completed": true + }, + { + "userId": 10, + "id": 190, + "title": "accusamus sint iusto et voluptatem exercitationem", + "completed": true + }, + { + "userId": 10, + "id": 191, + "title": "temporibus atque distinctio omnis eius impedit tempore molestias pariatur", + "completed": true + }, + { + "userId": 10, + "id": 192, + "title": "ut quas possimus exercitationem sint voluptates", + "completed": false + }, + { + "userId": 10, + "id": 193, + "title": "rerum debitis voluptatem qui eveniet tempora distinctio a", + "completed": true + }, + { + "userId": 10, + "id": 194, + "title": "sed ut vero sit molestiae", + "completed": false + }, + { + "userId": 10, + "id": 195, + "title": "rerum ex veniam mollitia voluptatibus pariatur", + "completed": true + }, + { + "userId": 10, + "id": 196, + "title": "consequuntur aut ut fugit similique", + "completed": true + }, + { + "userId": 10, + "id": 197, + "title": "dignissimos quo nobis earum saepe", + "completed": true + }, + { + "userId": 10, + "id": 198, + "title": "quis eius est sint explicabo", + "completed": true + }, + { + "userId": 10, + "id": 199, + "title": "numquam repellendus a magnam", + "completed": true + }, + { + "userId": 10, + "id": 200, + "title": "ipsam aperiam voluptates qui", + "completed": false + } +] \ No newline at end of file diff --git a/jsonplaceholder/todos.metadata.json b/jsonplaceholder/todos.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9bdf9765981fcae9aae6b3b31678087bf7d985e5 --- /dev/null +++ b/jsonplaceholder/todos.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_todos", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:17.695924", + "size_bytes": 24311, + "description": "All todos", + "url": "https://jsonplaceholder.typicode.com/todos" +} \ No newline at end of file diff --git a/jsonplaceholder/user_albums.json b/jsonplaceholder/user_albums.json new file mode 100644 index 0000000000000000000000000000000000000000..ea89aa5eb39c7543b4e70733e5980340287a1abc --- /dev/null +++ b/jsonplaceholder/user_albums.json @@ -0,0 +1,52 @@ +[ + { + "userId": 2, + "id": 11, + "title": "quam nostrum impedit mollitia quod et dolor" + }, + { + "userId": 2, + "id": 12, + "title": "consequatur autem doloribus natus consectetur" + }, + { + "userId": 2, + "id": 13, + "title": "ab rerum non rerum consequatur ut ea unde" + }, + { + "userId": 2, + "id": 14, + "title": "ducimus molestias eos animi atque nihil" + }, + { + "userId": 2, + "id": 15, + "title": "ut pariatur rerum ipsum natus repellendus praesentium" + }, + { + "userId": 2, + "id": 16, + "title": "voluptatem aut maxime inventore autem magnam atque repellat" + }, + { + "userId": 2, + "id": 17, + "title": "aut minima voluptatem ut velit" + }, + { + "userId": 2, + "id": 18, + "title": "nesciunt quia et doloremque" + }, + { + "userId": 2, + "id": 19, + "title": "velit pariatur quaerat similique libero omnis quia" + }, + { + "userId": 2, + "id": 20, + "title": "voluptas rerum iure ut enim" + } +] \ No newline at end of file diff --git a/jsonplaceholder/user_albums.metadata.json b/jsonplaceholder/user_albums.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..b497fc0f310055223b9f01065b5a604f1009a562 --- /dev/null +++ b/jsonplaceholder/user_albums.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_user_albums", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:20.895787", + "size_bytes": 976, + "description": "Albums by user 2", + "url": "https://jsonplaceholder.typicode.com/albums?userId=2" +} \ No newline at end of file diff --git a/jsonplaceholder/user_posts.json b/jsonplaceholder/user_posts.json new file mode 100644 index 0000000000000000000000000000000000000000..1bdd8602a6d60547019a3c80e3177b46f2ae6391 --- /dev/null +++ b/jsonplaceholder/user_posts.json @@ -0,0 +1,62 @@ +[ + { + "userId": 1, + "id": 1, + "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit", + "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto" + }, + { + "userId": 1, + "id": 2, + "title": "qui est esse", + "body": "est rerum tempore vitae\nsequi sint nihil reprehenderit dolor beatae ea dolores neque\nfugiat blanditiis voluptate porro vel nihil molestiae ut reiciendis\nqui aperiam non debitis possimus qui neque nisi nulla" + }, + { + "userId": 1, + "id": 3, + "title": "ea molestias quasi exercitationem repellat qui ipsa sit aut", + "body": "et iusto sed quo iure\nvoluptatem occaecati omnis eligendi aut ad\nvoluptatem doloribus vel accusantium quis pariatur\nmolestiae porro eius odio et labore et velit aut" + }, + { + "userId": 1, + "id": 4, + "title": "eum et est occaecati", + "body": "ullam et saepe reiciendis voluptatem adipisci\nsit amet autem assumenda provident rerum culpa\nquis hic commodi nesciunt rem tenetur doloremque ipsam iure\nquis sunt voluptatem rerum illo velit" + }, + { + "userId": 1, + "id": 5, + "title": "nesciunt quas odio", + "body": "repudiandae veniam quaerat sunt sed\nalias aut fugiat sit autem sed est\nvoluptatem omnis possimus esse voluptatibus quis\nest aut tenetur dolor neque" + }, + { + "userId": 1, + "id": 6, + "title": "dolorem eum magni eos aperiam quia", + "body": "ut aspernatur corporis harum nihil quis provident sequi\nmollitia nobis aliquid molestiae\nperspiciatis et ea nemo ab reprehenderit accusantium quas\nvoluptate dolores velit et doloremque molestiae" + }, + { + "userId": 1, + "id": 7, + "title": "magnam facilis autem", + "body": "dolore placeat quibusdam ea quo vitae\nmagni quis enim qui quis quo nemo aut saepe\nquidem repellat excepturi ut quia\nsunt ut sequi eos ea sed quas" + }, + { + "userId": 1, + "id": 8, + "title": "dolorem dolore est ipsam", + "body": "dignissimos aperiam dolorem qui eum\nfacilis quibusdam animi sint suscipit qui sint possimus cum\nquaerat magni maiores excepturi\nipsam ut commodi dolor voluptatum modi aut vitae" + }, + { + "userId": 1, + "id": 9, + "title": "nesciunt iure omnis dolorem tempora et accusantium", + "body": "consectetur animi nesciunt iure dolore\nenim quia ad\nveniam autem ut quam aut nobis\net est aut quod aut provident voluptas autem voluptas" + }, + { + "userId": 1, + "id": 10, + "title": "optio molestias id quia eum", + "body": "quo et expedita modi cum officia vel magni\ndoloribus qui repudiandae\nvero nisi sit\nquos veniam quod sed accusamus veritatis error" + } +] \ No newline at end of file diff --git a/jsonplaceholder/user_posts.metadata.json b/jsonplaceholder/user_posts.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..b3b2ccb8302cefe0b7be8c2238a15e27a0fa5391 --- /dev/null +++ b/jsonplaceholder/user_posts.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_user_posts", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:19.835433", + "size_bytes": 2726, + "description": "Posts by user 1", + "url": "https://jsonplaceholder.typicode.com/posts?userId=1" +} \ No newline at end of file diff --git a/jsonplaceholder/users.json b/jsonplaceholder/users.json new file mode 100644 index 0000000000000000000000000000000000000000..79b699aa772428c8c735cbc139999a3efb4dc513 --- /dev/null +++ b/jsonplaceholder/users.json @@ -0,0 +1,232 @@ +[ + { + "id": 1, + "name": "Leanne Graham", + "username": "Bret", + "email": "Sincere@april.biz", + "address": { + "street": "Kulas Light", + "suite": "Apt. 556", + "city": "Gwenborough", + "zipcode": "92998-3874", + "geo": { + "lat": "-37.3159", + "lng": "81.1496" + } + }, + "phone": "1-770-736-8031 x56442", + "website": "hildegard.org", + "company": { + "name": "Romaguera-Crona", + "catchPhrase": "Multi-layered client-server neural-net", + "bs": "harness real-time e-markets" + } + }, + { + "id": 2, + "name": "Ervin Howell", + "username": "Antonette", + "email": "Shanna@melissa.tv", + "address": { + "street": "Victor Plains", + "suite": "Suite 879", + "city": "Wisokyburgh", + "zipcode": "90566-7771", + "geo": { + "lat": "-43.9509", + "lng": "-34.4618" + } + }, + "phone": "010-692-6593 x09125", + "website": "anastasia.net", + "company": { + "name": "Deckow-Crist", + "catchPhrase": "Proactive didactic contingency", + "bs": "synergize scalable supply-chains" + } + }, + { + "id": 3, + "name": "Clementine Bauch", + "username": "Samantha", + "email": "Nathan@yesenia.net", + "address": { + "street": "Douglas Extension", + "suite": "Suite 847", + "city": "McKenziehaven", + "zipcode": "59590-4157", + "geo": { + "lat": "-68.6102", + "lng": "-47.0653" + } + }, + "phone": "1-463-123-4447", + "website": "ramiro.info", + "company": { + "name": "Romaguera-Jacobson", + "catchPhrase": "Face to face bifurcated interface", + "bs": "e-enable strategic applications" + } + }, + { + "id": 4, + "name": "Patricia Lebsack", + "username": "Karianne", + "email": "Julianne.OConner@kory.org", + "address": { + "street": "Hoeger Mall", + "suite": "Apt. 692", + "city": "South Elvis", + "zipcode": "53919-4257", + "geo": { + "lat": "29.4572", + "lng": "-164.2990" + } + }, + "phone": "493-170-9623 x156", + "website": "kale.biz", + "company": { + "name": "Robel-Corkery", + "catchPhrase": "Multi-tiered zero tolerance productivity", + "bs": "transition cutting-edge web services" + } + }, + { + "id": 5, + "name": "Chelsey Dietrich", + "username": "Kamren", + "email": "Lucio_Hettinger@annie.ca", + "address": { + "street": "Skiles Walks", + "suite": "Suite 351", + "city": "Roscoeview", + "zipcode": "33263", + "geo": { + "lat": "-31.8129", + "lng": "62.5342" + } + }, + "phone": "(254)954-1289", + "website": "demarco.info", + "company": { + "name": "Keebler LLC", + "catchPhrase": "User-centric fault-tolerant solution", + "bs": "revolutionize end-to-end systems" + } + }, + { + "id": 6, + "name": "Mrs. Dennis Schulist", + "username": "Leopoldo_Corkery", + "email": "Karley_Dach@jasper.info", + "address": { + "street": "Norberto Crossing", + "suite": "Apt. 950", + "city": "South Christy", + "zipcode": "23505-1337", + "geo": { + "lat": "-71.4197", + "lng": "71.7478" + } + }, + "phone": "1-477-935-8478 x6430", + "website": "ola.org", + "company": { + "name": "Considine-Lockman", + "catchPhrase": "Synchronised bottom-line interface", + "bs": "e-enable innovative applications" + } + }, + { + "id": 7, + "name": "Kurtis Weissnat", + "username": "Elwyn.Skiles", + "email": "Telly.Hoeger@billy.biz", + "address": { + "street": "Rex Trail", + "suite": "Suite 280", + "city": "Howemouth", + "zipcode": "58804-1099", + "geo": { + "lat": "24.8918", + "lng": "21.8984" + } + }, + "phone": "210.067.6132", + "website": "elvis.io", + "company": { + "name": "Johns Group", + "catchPhrase": "Configurable multimedia task-force", + "bs": "generate enterprise e-tailers" + } + }, + { + "id": 8, + "name": "Nicholas Runolfsdottir V", + "username": "Maxime_Nienow", + "email": "Sherwood@rosamond.me", + "address": { + "street": "Ellsworth Summit", + "suite": "Suite 729", + "city": "Aliyaview", + "zipcode": "45169", + "geo": { + "lat": "-14.3990", + "lng": "-120.7677" + } + }, + "phone": "586.493.6943 x140", + "website": "jacynthe.com", + "company": { + "name": "Abernathy Group", + "catchPhrase": "Implemented secondary concept", + "bs": "e-enable extensible e-tailers" + } + }, + { + "id": 9, + "name": "Glenna Reichert", + "username": "Delphine", + "email": "Chaim_McDermott@dana.io", + "address": { + "street": "Dayna Park", + "suite": "Suite 449", + "city": "Bartholomebury", + "zipcode": "76495-3109", + "geo": { + "lat": "24.6463", + "lng": "-168.8889" + } + }, + "phone": "(775)976-6794 x41206", + "website": "conrad.com", + "company": { + "name": "Yost and Sons", + "catchPhrase": "Switchable contextually-based project", + "bs": "aggregate real-time technologies" + } + }, + { + "id": 10, + "name": "Clementina DuBuque", + "username": "Moriah.Stanton", + "email": "Rey.Padberg@karina.biz", + "address": { + "street": "Kattie Turnpike", + "suite": "Suite 198", + "city": "Lebsackbury", + "zipcode": "31428-2261", + "geo": { + "lat": "-38.2386", + "lng": "57.2232" + } + }, + "phone": "024-648-3804", + "website": "ambrose.net", + "company": { + "name": "Hoeger LLC", + "catchPhrase": "Centralized empowering task-force", + "bs": "target end-to-end models" + } + } +] \ No newline at end of file diff --git a/jsonplaceholder/users.metadata.json b/jsonplaceholder/users.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cdd0a7d3ef84557fc33b67608831df5324276942 --- /dev/null +++ b/jsonplaceholder/users.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "jsonplaceholder_users", + "source": "jsonplaceholder", + "collected_date": "2025-11-05T22:51:18.743047", + "size_bytes": 5645, + "description": "All users", + "url": "https://jsonplaceholder.typicode.com/users" +} \ No newline at end of file diff --git a/public_apis/breweries.json b/public_apis/breweries.json new file mode 100644 index 0000000000000000000000000000000000000000..8767f2bf85ebd76cfa772c4cf5fa9147d5af1d0b --- /dev/null +++ b/public_apis/breweries.json @@ -0,0 +1,902 @@ +[ + { + "id": "5128df48-79fc-4f0f-8b52-d06be54d0cec", + "name": "(405) Brewing Co", + "brewery_type": "micro", + "address_1": "1716 Topeka St", + "address_2": null, + "address_3": null, + "city": "Norman", + "state_province": "Oklahoma", + "postal_code": "73069-8224", + "country": "United States", + "longitude": -97.46818222, + "latitude": 35.25738891, + "phone": "4058160490", + "website_url": "http://www.405brewing.com", + "state": "Oklahoma", + "street": "1716 Topeka St" + }, + { + "id": "9c5a66c8-cc13-416f-a5d9-0a769c87d318", + "name": "(512) Brewing Co", + "brewery_type": "micro", + "address_1": "407 Radam Ln Ste F200", + "address_2": null, + "address_3": null, + "city": "Austin", + "state_province": "Texas", + "postal_code": "78745-1197", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5129211545", + "website_url": "http://www.512brewing.com", + "state": "Texas", + "street": "407 Radam Ln Ste F200" + }, + { + "id": "34e8c68b-6146-453f-a4b9-1f6cd99a5ada", + "name": "1 of Us Brewing Company", + "brewery_type": "micro", + "address_1": "8100 Washington Ave", + "address_2": null, + "address_3": null, + "city": "Mount Pleasant", + "state_province": "Wisconsin", + "postal_code": "53406-3920", + "country": "United States", + "longitude": -87.883363502094, + "latitude": 42.720108268996, + "phone": "2624847553", + "website_url": "https://www.1ofusbrewing.com", + "state": "Wisconsin", + "street": "8100 Washington Ave" + }, + { + "id": "6d14b220-8926-4521-8d19-b98a2d6ec3db", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "62970 18th St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701-9847", + "country": "United States", + "longitude": -121.281706, + "latitude": 44.08683531, + "phone": "5415851007", + "website_url": "http://www.10barrel.com", + "state": "Oregon", + "street": "62970 18th St" + }, + { + "id": "e2e78bd8-80ff-4a61-a65c-3bfbd9d76ce2", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "1135 NW Galveston Ave Ste B", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97703-2465", + "country": "United States", + "longitude": -121.3288021, + "latitude": 44.0575649, + "phone": "5415851007", + "website_url": null, + "state": "Oregon", + "street": "1135 NW Galveston Ave Ste B" + }, + { + "id": "e432899b-7f58-455f-9c7b-9a6e2130a1e0", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "1411 NW Flanders St", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97209-2620", + "country": "United States", + "longitude": -122.6855056, + "latitude": 45.5259786, + "phone": "5032241700", + "website_url": "http://www.10barrel.com", + "state": "Oregon", + "street": "1411 NW Flanders St" + }, + { + "id": "ef970757-fe42-416f-931d-722451f1f59c", + "name": "10 Barrel Brewing Co", + "brewery_type": "large", + "address_1": "1501 E St", + "address_2": null, + "address_3": null, + "city": "San Diego", + "state_province": "California", + "postal_code": "92101-6618", + "country": "United States", + "longitude": -117.129593, + "latitude": 32.714813, + "phone": "6195782311", + "website_url": "http://10barrel.com", + "state": "California", + "street": "1501 E St" + }, + { + "id": "9f1852da-c312-42da-9a31-097bac81c4c0", + "name": "10 Barrel Brewing Co - Bend Pub", + "brewery_type": "large", + "address_1": "62950 NE 18th St", + "address_2": null, + "address_3": null, + "city": "Bend", + "state_province": "Oregon", + "postal_code": "97701", + "country": "United States", + "longitude": -121.2809536, + "latitude": 44.0912109, + "phone": "5415851007", + "website_url": null, + "state": "Oregon", + "street": "62950 NE 18th St" + }, + { + "id": "ea4f30c0-bce6-416b-8904-fab4055a7362", + "name": "10 Barrel Brewing Co - Boise", + "brewery_type": "large", + "address_1": "826 W Bannock St", + "address_2": null, + "address_3": null, + "city": "Boise", + "state_province": "Idaho", + "postal_code": "83702-5857", + "country": "United States", + "longitude": -116.202929, + "latitude": 43.618516, + "phone": "2083445870", + "website_url": "http://www.10barrel.com", + "state": "Idaho", + "street": "826 W Bannock St" + }, + { + "id": "1988eb86-f0a2-4674-ba04-02454efa0d31", + "name": "10 Barrel Brewing Co - Denver", + "brewery_type": "large", + "address_1": "2620 Walnut St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2231", + "country": "United States", + "longitude": -104.9853655, + "latitude": 39.7592508, + "phone": "7205738992", + "website_url": null, + "state": "Colorado", + "street": "2620 Walnut St" + }, + { + "id": "1ecc330f-6275-42a5-b14e-00adbed62752", + "name": "10 Torr Distilling and Brewing", + "brewery_type": "micro", + "address_1": "490 Mill St", + "address_2": null, + "address_3": null, + "city": "Reno", + "state_province": "Nevada", + "postal_code": "89502", + "country": "United States", + "longitude": -119.7732015, + "latitude": 39.5171702, + "phone": "7755307014", + "website_url": "http://www.10torr.com", + "state": "Nevada", + "street": "490 Mill St" + }, + { + "id": "7531dbd8-afc9-4b5b-95bc-7ece7f2c0bf3", + "name": "10-56 Brewing Company", + "brewery_type": "micro", + "address_1": "400 Brown Cir", + "address_2": null, + "address_3": null, + "city": "Knox", + "state_province": "Indiana", + "postal_code": "46534", + "country": "United States", + "longitude": -86.627954, + "latitude": 41.289715, + "phone": "6308165790", + "website_url": null, + "state": "Indiana", + "street": "400 Brown Cir" + }, + { + "id": "49eaa1ab-5cee-40cd-a0dc-da14ba2b7dac", + "name": "1000 Hills Brewing Company", + "brewery_type": "brewpub", + "address_1": "168 Old Main Road", + "address_2": " Botha's Hill", + "address_3": null, + "city": "Durban", + "state_province": "KwaZulu-Natal", + "postal_code": "3610", + "country": "South Africa", + "longitude": 30.7063, + "latitude": -29.7711, + "phone": "+27 31 777 1566", + "website_url": "https://1000hillsbrewingcompany.co.za/", + "state": "KwaZulu-Natal", + "street": "168 Old Main Road" + }, + { + "id": "5ae467af-66dc-4d7f-8839-44228f89b596", + "name": "101 North Brewing Company", + "brewery_type": "closed", + "address_1": "1304 Scott St Ste D", + "address_2": null, + "address_3": null, + "city": "Petaluma", + "state_province": "California", + "postal_code": "94954-7100", + "country": "United States", + "longitude": -122.665055, + "latitude": 38.27029381, + "phone": "7077534934", + "website_url": "http://www.101northbeer.com", + "state": "California", + "street": "1304 Scott St Ste D" + }, + { + "id": "4ffda196-dd59-44a5-9eeb-5f7fd4b58f5a", + "name": "105 West Brewing Co", + "brewery_type": "micro", + "address_1": "1043 Park St", + "address_2": null, + "address_3": null, + "city": "Castle Rock", + "state_province": "Colorado", + "postal_code": "80109-1585", + "country": "United States", + "longitude": -104.8667206, + "latitude": 39.38269495, + "phone": "3033257321", + "website_url": "http://www.105westbrewing.com", + "state": "Colorado", + "street": "1043 Park St" + }, + { + "id": "42aa37d5-8384-4ffe-8c81-7c982eff0384", + "name": "10K Brewing", + "brewery_type": "micro", + "address_1": "2005 2nd Ave", + "address_2": null, + "address_3": null, + "city": "Anoka", + "state_province": "Minnesota", + "postal_code": "55303-2243", + "country": "United States", + "longitude": -93.38952559, + "latitude": 45.19812039, + "phone": "7633924753", + "website_url": "http://10KBrew.com", + "state": "Minnesota", + "street": "2005 2nd Ave" + }, + { + "id": "232e8f62-9afc-45f5-b4bc-582c26b5c43b", + "name": "10th District Brewing Company", + "brewery_type": "micro", + "address_1": "491 Washington St", + "address_2": null, + "address_3": null, + "city": "Abington", + "state_province": "Massachusetts", + "postal_code": "02351-2419", + "country": "United States", + "longitude": -70.94594149, + "latitude": 42.10591754, + "phone": "7813071554", + "website_url": "http://www.10thdistrictbrewing.com", + "state": "Massachusetts", + "street": "491 Washington St" + }, + { + "id": "08f78223-24f8-4b71-b381-ea19a5bd82df", + "name": "11 Below Brewing Company", + "brewery_type": "micro", + "address_1": "6820 Bourgeois Rd", + "address_2": null, + "address_3": null, + "city": "Houston", + "state_province": "Texas", + "postal_code": "77066-3107", + "country": "United States", + "longitude": -95.5186591, + "latitude": 29.9515464, + "phone": "2814442337", + "website_url": "http://www.11belowbrewing.com", + "state": "Texas", + "street": "6820 Bourgeois Rd" + }, + { + "id": "58293321-14ae-49d7-9a7b-08436c9e63a6", + "name": "1188 Brewing Co", + "brewery_type": "brewpub", + "address_1": "141 E Main St", + "address_2": null, + "address_3": null, + "city": "John Day", + "state_province": "Oregon", + "postal_code": "97845-1210", + "country": "United States", + "longitude": -118.9218754, + "latitude": 44.4146563, + "phone": "5415751188", + "website_url": "http://www.1188brewing.com", + "state": "Oregon", + "street": "141 E Main St" + }, + { + "id": "e5f3e72a-fee2-4813-82cf-f2e53b439ae6", + "name": "12 Acres Brewing Company", + "brewery_type": "micro", + "address_1": "Unnamed Street", + "address_2": "Clonmore", + "address_3": null, + "city": "Killeshin", + "state_province": "Laois", + "postal_code": "R93 X3X8", + "country": "Ireland", + "longitude": -6.979343891, + "latitude": 52.84930763, + "phone": "353599107299", + "website_url": "https://12acresbrewing.ie/", + "state": "Laois", + "street": "Unnamed Street" + }, + { + "id": "d81ff708-b5d2-478f-af6a-6d40f5beb9ac", + "name": "12 Gates Brewing Company", + "brewery_type": "brewpub", + "address_1": "80 Earhart Dr Ste 20", + "address_2": null, + "address_3": null, + "city": "Williamsville", + "state_province": "New York", + "postal_code": "14221-7804", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "7169066600", + "website_url": "http://www.12gatesbrewing.com", + "state": "New York", + "street": "80 Earhart Dr Ste 20" + }, + { + "id": "fb94830f-6196-4f59-9189-c9060b778085", + "name": "12 West Brewing Company", + "brewery_type": "micro", + "address_1": "3000 E Ray Rd Bldg 6", + "address_2": null, + "address_3": null, + "city": "Gilbert", + "state_province": "Arizona", + "postal_code": "85296-7832", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6023395014", + "website_url": "http://www.12westbrewing.com", + "state": "Arizona", + "street": "3000 E Ray Rd Bldg 6" + }, + { + "id": "0faa0fb2-fffa-416d-9eab-46f67477c8ef", + "name": "12 West Brewing Company - Production Facility", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mesa", + "state_province": "Arizona", + "postal_code": "85207", + "country": "United States", + "longitude": -111.5860662, + "latitude": 33.436188, + "phone": null, + "website_url": null, + "state": "Arizona", + "street": null + }, + { + "id": "e54c2f02-acd6-4172-861d-fcfa54c8701a", + "name": "122 West Brewing Co", + "brewery_type": "closed", + "address_1": "2416 Meridian St", + "address_2": null, + "address_3": null, + "city": "Bellingham", + "state_province": "Washington", + "postal_code": "98225-2405", + "country": "United States", + "longitude": -122.485982, + "latitude": 48.7621709, + "phone": "3603063285", + "website_url": "https://www.122westbrew.com/", + "state": "Washington", + "street": "2416 Meridian St" + }, + { + "id": "d5cb896d-3e99-4e19-9693-5e06ce987e53", + "name": "127 Brewing", + "brewery_type": "micro", + "address_1": "3090 Shirley Dr", + "address_2": null, + "address_3": null, + "city": "Jackson", + "state_province": "Michigan", + "postal_code": "49201-7010", + "country": "United States", + "longitude": -84.43116792, + "latitude": 42.28667212, + "phone": "5172581346", + "website_url": null, + "state": "Michigan", + "street": "3090 Shirley Dr" + }, + { + "id": "06e9fffb-e820-45c9-b107-b52b51013e8f", + "name": "12Degree Brewing", + "brewery_type": "brewpub", + "address_1": "820 Main St", + "address_2": null, + "address_3": null, + "city": "Louisville", + "state_province": "Colorado", + "postal_code": "80027-1865", + "country": "United States", + "longitude": -105.1319826, + "latitude": 39.9782443, + "phone": "3035791004", + "website_url": "http://www.12degree.com", + "state": "Colorado", + "street": "820 Main St" + }, + { + "id": "50521ef7-f543-4c5d-98b1-0d0ee1a2be01", + "name": "12welve Eyes Brewing", + "brewery_type": "micro", + "address_1": "141 E 4th St Ste LL2", + "address_2": null, + "address_3": null, + "city": "Saint Paul", + "state_province": "Minnesota", + "postal_code": "55101-1639", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "6514938106", + "website_url": "http://www.12welveEyes.com", + "state": "Minnesota", + "street": "141 E 4th St Ste LL2" + }, + { + "id": "950180bd-29c9-46b3-ad0c-e6f09799ec7f", + "name": "13 Below Brewery", + "brewery_type": "micro", + "address_1": "7391 Forbes Rd", + "address_2": null, + "address_3": null, + "city": "Cincinnati", + "state_province": "Ohio", + "postal_code": "45233-1013", + "country": "United States", + "longitude": -84.70634815, + "latitude": 39.12639764, + "phone": "5139750613", + "website_url": "http://www.13belowbrewery.com", + "state": "Ohio", + "street": "7391 Forbes Rd" + }, + { + "id": "45119c56-345b-4adc-b481-c5cf7bfe98c4", + "name": "13 Stripes Brewery", + "brewery_type": "brewpub", + "address_1": "250 Mill St, Suite PW3101", + "address_2": null, + "address_3": null, + "city": "Taylors", + "state_province": "South Carolina", + "postal_code": "29687", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8643491430", + "website_url": "http://www.13StripesBrewery.com", + "state": "South Carolina", + "street": "250 Mill St, Suite PW3101" + }, + { + "id": "936c3d7e-5d54-4459-b72c-117cdda059b4", + "name": "13 Virtues Brewing Co", + "brewery_type": "brewpub", + "address_1": "6410 SE Milwaukie Ave", + "address_2": null, + "address_3": null, + "city": "Portland", + "state_province": "Oregon", + "postal_code": "97202-5518", + "country": "United States", + "longitude": -122.6487531, + "latitude": 45.4762536, + "phone": "5032393831", + "website_url": "http://www.13virtuesbrewing.com", + "state": "Oregon", + "street": "6410 SE Milwaukie Ave" + }, + { + "id": "5c53b314-ebab-4e3e-89be-e4139d9318ae", + "name": "1323 R & D", + "brewery_type": "micro", + "address_1": "1323 Capital Blvd 1323 R and D", + "address_2": null, + "address_3": null, + "city": "Raleigh", + "state_province": "North Carolina", + "postal_code": "27603-1117", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "9199775654", + "website_url": "http://www.1323rnd.com", + "state": "North Carolina", + "street": "1323 Capital Blvd 1323 R and D" + }, + { + "id": "4788221a-a03b-458c-9084-4cadd69ade6d", + "name": "14 Cannons Brewing Company", + "brewery_type": "micro", + "address_1": "31125 Via Colinas Ste 907", + "address_2": null, + "address_3": null, + "city": "Westlake Village", + "state_province": "California", + "postal_code": "91362-3974", + "country": "United States", + "longitude": -118.802397, + "latitude": 34.15334, + "phone": "8186996165", + "website_url": "http://14cannons.com", + "state": "California", + "street": "31125 Via Colinas Ste 907" + }, + { + "id": "b7b68d22-5045-4501-b9bf-ec94946eaffc", + "name": "14 Lakes Brewery", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Crosslake", + "state_province": "Minnesota", + "postal_code": "56442", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "2186924129", + "website_url": null, + "state": "Minnesota", + "street": null + }, + { + "id": "4b677b60-fef1-42e2-90ef-dadc1bd7fb06", + "name": "14er Brewing Company", + "brewery_type": "proprietor", + "address_1": "2801 Walnut St", + "address_2": null, + "address_3": null, + "city": "Denver", + "state_province": "Colorado", + "postal_code": "80205-2235", + "country": "United States", + "longitude": -104.9839636, + "latitude": 39.7614112, + "phone": "7207731437", + "website_url": "http://www.14erBrewing.com", + "state": "Colorado", + "street": "2801 Walnut St" + }, + { + "id": "6c53984f-fac1-4ea7-9c44-44e25897c71a", + "name": "14th Star Brewing", + "brewery_type": "micro", + "address_1": "133 N Main St Ste 7", + "address_2": null, + "address_3": null, + "city": "Saint Albans", + "state_province": "Vermont", + "postal_code": "05478-1735", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "8025285988", + "website_url": "http://www.14thstarbrewing.com", + "state": "Vermont", + "street": "133 N Main St Ste 7" + }, + { + "id": "85192a9c-58a4-48c3-bd9d-496d09d22aa3", + "name": "16 Lots Brewing", + "brewery_type": "brewpub", + "address_1": "753 Reading Rd", + "address_2": null, + "address_3": null, + "city": "Mason", + "state_province": "Ohio", + "postal_code": "45040-1303", + "country": "United States", + "longitude": -84.3183801, + "latitude": 39.3545967, + "phone": "5134863672", + "website_url": "http://www.16lots.com", + "state": "Ohio", + "street": "753 Reading Rd" + }, + { + "id": "284b44f8-6ccb-4cd6-8d06-f2ad882a47c3", + "name": "16 Mile Brewing Co", + "brewery_type": "micro", + "address_1": "413 S Bedford St", + "address_2": null, + "address_3": null, + "city": "Georgetown", + "state_province": "Delaware", + "postal_code": "19947-1849", + "country": "United States", + "longitude": -75.37816436, + "latitude": 38.6788938, + "phone": "3022538816", + "website_url": "http://www.16milebrewery.com", + "state": "Delaware", + "street": "413 S Bedford St" + }, + { + "id": "ee6d39c6-092f-4623-8099-5b8643f70dbe", + "name": "16 Stone Brewpub", + "brewery_type": "brewpub", + "address_1": "9542 Main St", + "address_2": null, + "address_3": null, + "city": "Holland Patent", + "state_province": "New York", + "postal_code": "13354", + "country": "United States", + "longitude": -75.2565195, + "latitude": 43.24211175, + "phone": "3158658500", + "website_url": "http://www.16stonebrewpub.com", + "state": "New York", + "street": "9542 Main St" + }, + { + "id": "d35b40b0-a3ff-4878-a6ee-9caa2149b521", + "name": "1623 Brewing CO, llc", + "brewery_type": "contract", + "address_1": "1146 colonel Joshua Ct", + "address_2": null, + "address_3": null, + "city": "Westminister", + "state_province": "Maryland", + "postal_code": "21157", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": null, + "website_url": null, + "state": "Maryland", + "street": "1146 colonel Joshua Ct" + }, + { + "id": "84bd3b3c-bd2d-4e07-bc31-b43a8c8ebf4c", + "name": "1717 Brewing Co", + "brewery_type": "micro", + "address_1": "322 E Court Ave", + "address_2": null, + "address_3": null, + "city": "Des Moines", + "state_province": "Iowa", + "postal_code": "50309-2015", + "country": "United States", + "longitude": -93.6120353, + "latitude": 41.5872267, + "phone": "5152437868", + "website_url": "http://1717brewing.com", + "state": "Iowa", + "street": "322 E Court Ave" + }, + { + "id": "f41a0c47-ba9b-4547-bfed-fcbefe0fc74b", + "name": "1718 Ocracoke Brewing", + "brewery_type": "brewpub", + "address_1": "1129 Irvin Garrish Hwy", + "address_2": null, + "address_3": null, + "city": "Ocracoke", + "state_province": "North Carolina", + "postal_code": "27960", + "country": "United States", + "longitude": -75.97176063, + "latitude": 35.10715368, + "phone": "2529282337", + "website_url": "http://www.ocracokebrewing.com", + "state": "North Carolina", + "street": "1129 Irvin Garrish Hwy" + }, + { + "id": "84d621c4-81a5-44e6-aca7-1566c2e67cc0", + "name": "1781 Brewing Company", + "brewery_type": "micro", + "address_1": "11109 Plank Rd", + "address_2": null, + "address_3": null, + "city": "Spotsylvania", + "state_province": "Virginia", + "postal_code": "22553-4258", + "country": "United States", + "longitude": null, + "latitude": null, + "phone": "5408412598", + "website_url": null, + "state": "Virginia", + "street": "11109 Plank Rd" + }, + { + "id": "896f26a1-d80e-4790-9287-026a86c1799d", + "name": "180 and Tapped", + "brewery_type": "micro", + "address_1": "2010 A State Ave", + "address_2": null, + "address_3": null, + "city": "Coraopolis", + "state_province": "Pennsylvania", + "postal_code": "15108", + "country": "United States", + "longitude": -80.15020356, + "latitude": 40.50984957, + "phone": "4127375273", + "website_url": "http://www.180andtapped.com", + "state": "Pennsylvania", + "street": "2010 A State Ave" + }, + { + "id": "46839a79-b7bf-4733-b91b-ce116d062a57", + "name": "1817 Brewery", + "brewery_type": "micro", + "address_1": "100 B South Olive St", + "address_2": null, + "address_3": null, + "city": "okolona", + "state_province": "Mississippi", + "postal_code": "38860", + "country": "United States", + "longitude": -88.750264, + "latitude": 34.001703, + "phone": "6623055907", + "website_url": null, + "state": "Mississippi", + "street": "100 B South Olive St" + }, + { + "id": "1a1b2165-73ed-40aa-b89b-56794d140f22", + "name": "1840 Brewing Company", + "brewery_type": "micro", + "address_1": "342 E Ward St", + "address_2": null, + "address_3": null, + "city": "Milwaukee", + "state_province": "Wisconsin", + "postal_code": "53207-1348", + "country": "United States", + "longitude": -87.90606942, + "latitude": 43.00436242, + "phone": "4142364056", + "website_url": "http://www.1840brewing.com", + "state": "Wisconsin", + "street": "342 E Ward St" + }, + { + "id": "fe6b9893-b93e-43d5-a9f6-3e0c89a3f13c", + "name": "1850 Brewing Company", + "brewery_type": "micro", + "address_1": null, + "address_2": null, + "address_3": null, + "city": "Mariposa", + "state_province": "California", + "postal_code": "95338", + "country": "United States", + "longitude": -119.9036592, + "latitude": 37.570148, + "phone": null, + "website_url": "http://www.1850restaurant.com", + "state": "California", + "street": null + }, + { + "id": "b51f3cdf-60ff-4ae1-94a7-76906c7d62eb", + "name": "18th Street Brewery", + "brewery_type": "micro", + "address_1": "5725 Miller Ave", + "address_2": null, + "address_3": null, + "city": "Gary", + "state_province": "Indiana", + "postal_code": "46403-2871", + "country": "United States", + "longitude": -87.26887786, + "latitude": 41.59928343, + "phone": null, + "website_url": "http://www.18thstreetbrewery.com", + "state": "Indiana", + "street": "5725 Miller Ave" + }, + { + "id": "add7f978-942e-4d56-b209-c80837a51d69", + "name": "18th Street Brewery", + "brewery_type": "micro", + "address_1": "5417 Oakley Ave", + "address_2": null, + "address_3": null, + "city": "Hammond", + "state_province": "Indiana", + "postal_code": "46320-1817", + "country": "United States", + "longitude": -87.517422, + "latitude": 41.61556796, + "phone": null, + "website_url": null, + "state": "Indiana", + "street": "5417 Oakley Ave" + }, + { + "id": "dbde8235-2b55-4d8b-8b1c-438155abe104", + "name": "1905 Brewing Company", + "brewery_type": "micro", + "address_1": "1301 S Chestnut St", + "address_2": null, + "address_3": null, + "city": "Assumption", + "state_province": "Illinois", + "postal_code": "62510-8504", + "country": "United States", + "longitude": -89.0503635, + "latitude": 39.5172564, + "phone": "2172549374", + "website_url": "http://1905BrewingCompany.com", + "state": "Illinois", + "street": "1301 S Chestnut St" + }, + { + "id": "4f4b5b34-d572-4dff-a18f-47e507c073e6", + "name": "1912 Brewing", + "brewery_type": "micro", + "address_1": "2045 N Forbes Blvd Ste 105", + "address_2": null, + "address_3": null, + "city": "Tucson", + "state_province": "Arizona", + "postal_code": "85745-1444", + "country": "United States", + "longitude": -110.9927505, + "latitude": 32.24673727, + "phone": "5202564851", + "website_url": "http://www.1912brewing.com", + "state": "Arizona", + "street": "2045 N Forbes Blvd Ste 105" + } +] \ No newline at end of file diff --git a/public_apis/breweries.metadata.json b/public_apis/breweries.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8715b51a299863e67dd39ca09ce5dc2e6e49bcd7 --- /dev/null +++ b/public_apis/breweries.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_breweries", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:38.125563", + "size_bytes": 25738, + "description": "Brewery data", + "url": "https://api.openbrewerydb.org/v1/breweries?per_page=50" +} \ No newline at end of file diff --git a/public_apis/countries_language_spanish.json b/public_apis/countries_language_spanish.json new file mode 100644 index 0000000000000000000000000000000000000000..c5fa0f72b65b87a15e8cc8c9911c24d073aa7970 --- /dev/null +++ b/public_apis/countries_language_spanish.json @@ -0,0 +1,5257 @@ +[ + { + "name": { + "common": "Guatemala", + "official": "Republic of Guatemala", + "nativeName": { + "spa": { + "official": "República de Guatemala", + "common": "Guatemala" + } + } + }, + "tld": [ + ".gt" + ], + "cca2": "GT", + "ccn3": "320", + "cioc": "GUA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "GTQ": { + "symbol": "Q", + "name": "Guatemalan quetzal" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "02" + ] + }, + "capital": [ + "Guatemala City" + ], + "altSpellings": [ + "GT" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 15.5, + -90.25 + ], + "landlocked": false, + "borders": [ + "BLZ", + "SLV", + "HND", + "MEX" + ], + "area": 108889.0, + "demonyms": { + "eng": { + "f": "Guatemalan", + "m": "Guatemalan" + }, + "fra": { + "f": "Guatémaltèque", + "m": "Guatémaltèque" + } + }, + "cca3": "GTM", + "translations": { + "ara": { + "official": "جمهورية غواتيمالا", + "common": "غواتيمالا" + }, + "bre": { + "official": "Republik Guatemala", + "common": "Guatemala" + }, + "ces": { + "official": "Republika Guatemala", + "common": "Guatemala" + }, + "cym": { + "official": "Republic of Guatemala", + "common": "Guatemala" + }, + "deu": { + "official": "Republik Guatemala", + "common": "Guatemala" + }, + "est": { + "official": "Guatemala Vabariik", + "common": "Guatemala" + }, + "fin": { + "official": "Guatemalan tasavalta", + "common": "Guatemala" + }, + "fra": { + "official": "République du Guatemala", + "common": "Guatemala" + }, + "hrv": { + "official": "Republika Gvatemala", + "common": "Gvatemala" + }, + "hun": { + "official": "Guatemalai Köztársaság", + "common": "Guatemala" + }, + "ind": { + "official": "Republik Guatemala", + "common": "Guatemala" + }, + "ita": { + "official": "Repubblica del Guatemala", + "common": "Guatemala" + }, + "jpn": { + "official": "グアテマラ共和国", + "common": "グアテマラ" + }, + "kor": { + "official": "과테말라 공화국", + "common": "과테말라" + }, + "nld": { + "official": "Republiek Guatemala", + "common": "Guatemala" + }, + "per": { + "official": "جمهوری گواتِمالا", + "common": "گواتِمالا" + }, + "pol": { + "official": "Republika Gwatemali", + "common": "Gwatemala" + }, + "por": { + "official": "República da Guatemala", + "common": "Guatemala" + }, + "rus": { + "official": "Республика Гватемала", + "common": "Гватемала" + }, + "slk": { + "official": "Guatemalská republika", + "common": "Guatemala" + }, + "spa": { + "official": "República de Guatemala", + "common": "Guatemala" + }, + "srp": { + "official": "Република Гватемала", + "common": "Гватемала" + }, + "swe": { + "official": "Republiken Guatemala", + "common": "Guatemala" + }, + "tur": { + "official": "Guatemala Cumhuriyeti", + "common": "Guatemala" + }, + "urd": { + "official": "جمہوریہ گواتیمالا", + "common": "گواتیمالا" + }, + "zho": { + "official": "危地马拉共和国", + "common": "危地马拉" + } + }, + "flag": "🇬🇹", + "maps": { + "googleMaps": "https://goo.gl/maps/JoRAbem4Hxb9FYbVA", + "openStreetMaps": "https://www.openstreetmap.org/relation/1521463" + }, + "population": 18079810, + "gini": { + "2014": 48.3 + }, + "fifa": "GUA", + "car": { + "signs": [ + "GCA" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/gt.png", + "svg": "https://flagcdn.com/gt.svg", + "alt": "The flag of Guatemala is composed of three equal vertical bands of light blue, white and light blue, with the national coat of arms centered in the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gt.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gt.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 14.62, + -90.52 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Bolivia", + "official": "Plurinational State of Bolivia", + "nativeName": { + "aym": { + "official": "Wuliwya Suyu", + "common": "Wuliwya" + }, + "grn": { + "official": "Tetã Volívia", + "common": "Volívia" + }, + "que": { + "official": "Buliwya Mamallaqta", + "common": "Buliwya" + }, + "spa": { + "official": "Estado Plurinacional de Bolivia", + "common": "Bolivia" + } + } + }, + "tld": [ + ".bo" + ], + "cca2": "BO", + "ccn3": "068", + "cioc": "BOL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "BOB": { + "symbol": "Bs.", + "name": "Bolivian boliviano" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "91" + ] + }, + "capital": [ + "Sucre" + ], + "altSpellings": [ + "BO", + "Buliwya", + "Wuliwya", + "Bolivia, Plurinational State of", + "Plurinational State of Bolivia", + "Estado Plurinacional de Bolivia", + "Buliwya Mamallaqta", + "Wuliwya Suyu", + "Tetã Volívia" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "aym": "Aymara", + "grn": "Guaraní", + "que": "Quechua", + "spa": "Spanish" + }, + "latlng": [ + -17.0, + -65.0 + ], + "landlocked": true, + "borders": [ + "ARG", + "BRA", + "CHL", + "PRY", + "PER" + ], + "area": 1098581.0, + "demonyms": { + "eng": { + "f": "Bolivian", + "m": "Bolivian" + }, + "fra": { + "f": "Bolivienne", + "m": "Bolivien" + } + }, + "cca3": "BOL", + "translations": { + "ara": { + "official": "دولة بوليفيا المتعددة القوميات", + "common": "بوليفيا" + }, + "bre": { + "official": "Stad Liesvroadel Bolivia", + "common": "Bolivia" + }, + "ces": { + "official": "Mnohonárodnostní stát Bolívie", + "common": "Bolívie" + }, + "cym": { + "official": "Gweriniaeth Bolifia", + "common": "Bolifia" + }, + "deu": { + "official": "Plurinationaler Staat Bolivien", + "common": "Bolivien" + }, + "est": { + "official": "Boliivia Paljurahvuseline Riik", + "common": "Boliivia" + }, + "fin": { + "official": "Bolivian monikansainen valtio", + "common": "Bolivia" + }, + "fra": { + "official": "État plurinational de Bolivie", + "common": "Bolivie" + }, + "hrv": { + "official": "Plurinational State of Bolivia", + "common": "Bolivija" + }, + "hun": { + "official": "Bolíviai Többnemzetiségű Állam", + "common": "Bolívia" + }, + "ind": { + "official": "Negara Plurinasional Bolivia", + "common": "Bolivia" + }, + "ita": { + "official": "Stato Plurinazionale della Bolivia", + "common": "Bolivia" + }, + "jpn": { + "official": "ボリビアの多民族国", + "common": "ボリビア多民族国" + }, + "kor": { + "official": "볼리비아 다민족국", + "common": "볼리비아" + }, + "nld": { + "official": "Plurinationale Staat van Bolivia", + "common": "Bolivia" + }, + "per": { + "official": "جمهوری بولیوی", + "common": "بولیوی" + }, + "pol": { + "official": "Wielonarodowe Państwo Boliwia", + "common": "Boliwia" + }, + "por": { + "official": "Estado Plurinacional da Bolívia", + "common": "Bolívia" + }, + "rus": { + "official": "Многонациональное Государство Боливия", + "common": "Боливия" + }, + "slk": { + "official": "Bolívijská republika", + "common": "Bolívia" + }, + "spa": { + "official": "Estado Plurinacional de Bolivia", + "common": "Bolivia" + }, + "srp": { + "official": "Вишенационална Држава Боливија", + "common": "Боливија" + }, + "swe": { + "official": "Mångnationella staten Bolivia", + "common": "Bolivia" + }, + "tur": { + "official": "Bolivya Çokuluslu Devleti", + "common": "Bolivya" + }, + "urd": { + "official": "جمہوریہ بولیویا", + "common": "بولیویا" + }, + "zho": { + "official": "多民族玻利维亚国", + "common": "玻利维亚" + } + }, + "flag": "🇧🇴", + "maps": { + "googleMaps": "https://goo.gl/maps/9DfnyfbxNM2g5U9b9", + "openStreetMaps": "https://www.openstreetmap.org/relation/252645" + }, + "population": 11365333, + "gini": { + "2019": 41.6 + }, + "fifa": "BOL", + "car": { + "signs": [ + "BOL" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/bo.png", + "svg": "https://flagcdn.com/bo.svg", + "alt": "The flag of Bolivia is composed of three equal horizontal bands of red, yellow and green, with the national coat of arms centered in the yellow band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/bo.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/bo.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -19.02, + -65.26 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Chile", + "official": "Republic of Chile", + "nativeName": { + "spa": { + "official": "República de Chile", + "common": "Chile" + } + } + }, + "tld": [ + ".cl" + ], + "cca2": "CL", + "ccn3": "152", + "cioc": "CHI", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "CLP": { + "symbol": "$", + "name": "Chilean peso" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "6" + ] + }, + "capital": [ + "Santiago" + ], + "altSpellings": [ + "CL", + "Republic of Chile", + "República de Chile" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + -30.0, + -71.0 + ], + "landlocked": false, + "borders": [ + "ARG", + "BOL", + "PER" + ], + "area": 756102.0, + "demonyms": { + "eng": { + "f": "Chilean", + "m": "Chilean" + }, + "fra": { + "f": "Chilienne", + "m": "Chilien" + } + }, + "cca3": "CHL", + "translations": { + "ara": { + "official": "جمهورية تشيلي", + "common": "تشيلي" + }, + "bre": { + "official": "Republik Chile", + "common": "Chile" + }, + "ces": { + "official": "Chilská republika", + "common": "Chile" + }, + "cym": { + "official": "Gweriniaeth Chile", + "common": "Chile" + }, + "deu": { + "official": "Republik Chile", + "common": "Chile" + }, + "est": { + "official": "Tšiili Vabariik", + "common": "Tšiili" + }, + "fin": { + "official": "Chilen tasavalta", + "common": "Chile" + }, + "fra": { + "official": "République du Chili", + "common": "Chili" + }, + "hrv": { + "official": "Republika Čile", + "common": "Čile" + }, + "hun": { + "official": "Chilei Köztársaság", + "common": "Chile" + }, + "ind": { + "official": "Republik Chili", + "common": "Chili" + }, + "ita": { + "official": "Repubblica del Cile", + "common": "Cile" + }, + "jpn": { + "official": "チリ共和国", + "common": "チリ" + }, + "kor": { + "official": "칠레 공화국", + "common": "칠레" + }, + "nld": { + "official": "Republiek Chili", + "common": "Chili" + }, + "per": { + "official": "جمهوری شیلی", + "common": "شیلی" + }, + "pol": { + "official": "Republika Chile", + "common": "Chile" + }, + "por": { + "official": "República do Chile", + "common": "Chile" + }, + "rus": { + "official": "Республика Чили", + "common": "Чили" + }, + "slk": { + "official": "Čílska republika", + "common": "Čile" + }, + "spa": { + "official": "República de Chile", + "common": "Chile" + }, + "srp": { + "official": "Република Чиле", + "common": "Чиле" + }, + "swe": { + "official": "Republiken Chile", + "common": "Chile" + }, + "tur": { + "official": "Şili Cumhuriyeti", + "common": "Şili" + }, + "urd": { + "official": "جمہوریہ چلی", + "common": "چلی" + }, + "zho": { + "official": "智利共和国", + "common": "智利" + } + }, + "flag": "🇨🇱", + "maps": { + "googleMaps": "https://goo.gl/maps/XboxyNHh2fAjCPNn9", + "openStreetMaps": "https://www.openstreetmap.org/relation/167454" + }, + "population": 20206953, + "gini": { + "2017": 44.4 + }, + "fifa": "CHI", + "car": { + "signs": [ + "RCH" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00", + "UTC-04:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/cl.png", + "svg": "https://flagcdn.com/cl.svg", + "alt": "The flag of Chile is composed of two equal horizontal bands of white and red, with a blue square of the same height as the white band superimposed in the canton. A white five-pointed star is centered in the blue square." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/cl.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/cl.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -33.45, + -70.67 + ] + }, + "postalCode": { + "format": "#######", + "regex": "^(\\d{7})$" + } + }, + { + "name": { + "common": "Ecuador", + "official": "Republic of Ecuador", + "nativeName": { + "spa": { + "official": "República del Ecuador", + "common": "Ecuador" + } + } + }, + "tld": [ + ".ec" + ], + "cca2": "EC", + "ccn3": "218", + "cioc": "ECU", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "93" + ] + }, + "capital": [ + "Quito" + ], + "altSpellings": [ + "EC", + "Republic of Ecuador", + "República del Ecuador" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + -2.0, + -77.5 + ], + "landlocked": false, + "borders": [ + "COL", + "PER" + ], + "area": 276841.0, + "demonyms": { + "eng": { + "f": "Ecuadorean", + "m": "Ecuadorean" + }, + "fra": { + "f": "Équatorienne", + "m": "Équatorien" + } + }, + "cca3": "ECU", + "translations": { + "ara": { + "official": "جمهورية الإكوادور", + "common": "الإكوادور" + }, + "bre": { + "official": "Republik Ecuador", + "common": "Ecuador" + }, + "ces": { + "official": "Ekvádorská republika", + "common": "Ekvádor" + }, + "cym": { + "official": "Gweriniaeth Ecwador", + "common": "Ecwador" + }, + "deu": { + "official": "Republik Ecuador", + "common": "Ecuador" + }, + "est": { + "official": "Ecuadori Vabariik", + "common": "Ecuador" + }, + "fin": { + "official": "Ecuadorin tasavalta", + "common": "Ecuador" + }, + "fra": { + "official": "République de l'Équateur", + "common": "Équateur" + }, + "hrv": { + "official": "Republika Ekvador", + "common": "Ekvador" + }, + "hun": { + "official": "Ecuadori Köztársaság", + "common": "Ecuador" + }, + "ind": { + "official": "Republik Ekuador", + "common": "Ekuador" + }, + "ita": { + "official": "Repubblica dell'Ecuador", + "common": "Ecuador" + }, + "jpn": { + "official": "エクアドル共和国", + "common": "エクアドル" + }, + "kor": { + "official": "에콰도르 공화국", + "common": "에콰도르" + }, + "nld": { + "official": "Republiek Ecuador", + "common": "Ecuador" + }, + "per": { + "official": "جمهوری اکوادور", + "common": "اکوادور" + }, + "pol": { + "official": "Ekwador", + "common": "Ekwador" + }, + "por": { + "official": "República do Equador", + "common": "Equador" + }, + "rus": { + "official": "Республика Эквадор", + "common": "Эквадор" + }, + "slk": { + "official": "Ekvádorská republika", + "common": "Ekvádor" + }, + "spa": { + "official": "República del Ecuador", + "common": "Ecuador" + }, + "srp": { + "official": "Република Еквадор", + "common": "Еквадор" + }, + "swe": { + "official": "Republiken Ecuador", + "common": "Ecuador" + }, + "tur": { + "official": "Ekvador Cumhuriyeti", + "common": "Ekvador" + }, + "urd": { + "official": "جمہوریہ ایکوڈور", + "common": "ایکواڈور" + }, + "zho": { + "official": "厄瓜多尔共和国", + "common": "厄瓜多尔" + } + }, + "flag": "🇪🇨", + "maps": { + "googleMaps": "https://goo.gl/maps/TbX8hUW4gcbRPZiK7", + "openStreetMaps": "https://www.openstreetmap.org/relation/108089" + }, + "population": 18103660, + "gini": { + "2019": 45.7 + }, + "fifa": "ECU", + "car": { + "signs": [ + "EC" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00", + "UTC-05:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/ec.png", + "svg": "https://flagcdn.com/ec.svg", + "alt": "The flag of Ecuador is composed of the horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands. The Ecuadorian coat of arms is superimposed in the center of the field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ec.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ec.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -0.22, + -78.5 + ] + }, + "postalCode": { + "format": "@####@", + "regex": "^([a-zA-Z]\\d{4}[a-zA-Z])$" + } + }, + { + "name": { + "common": "Dominican Republic", + "official": "Dominican Republic", + "nativeName": { + "spa": { + "official": "República Dominicana", + "common": "República Dominicana" + } + } + }, + "tld": [ + ".do" + ], + "cca2": "DO", + "ccn3": "214", + "cioc": "DOM", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "DOP": { + "symbol": "$", + "name": "Dominican peso" + } + }, + "idd": { + "root": "+1", + "suffixes": [ + "809", + "829", + "849" + ] + }, + "capital": [ + "Santo Domingo" + ], + "altSpellings": [ + "DO" + ], + "region": "Americas", + "subregion": "Caribbean", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 19.0, + -70.66666666 + ], + "landlocked": false, + "borders": [ + "HTI" + ], + "area": 48671.0, + "demonyms": { + "eng": { + "f": "Dominican", + "m": "Dominican" + }, + "fra": { + "f": "Dominicaine", + "m": "Dominicain" + } + }, + "cca3": "DOM", + "translations": { + "ara": { + "official": "جمهورية الدومينيكان", + "common": "جمهورية الدومينيكان" + }, + "bre": { + "official": "Republik Dominikan", + "common": "Republik Dominikan" + }, + "ces": { + "official": "Dominikánská republika", + "common": "Dominikánská republika" + }, + "cym": { + "official": "Gweriniaeth Dominica", + "common": "Gweriniaeth Dominica" + }, + "deu": { + "official": "Dominikanische Republik", + "common": "Dominikanische Republik" + }, + "est": { + "official": "Dominikaani Vabariik", + "common": "Dominikaani Vabariik" + }, + "fin": { + "official": "Dominikaaninen tasavalta", + "common": "Dominikaaninen tasavalta" + }, + "fra": { + "official": "République Dominicaine", + "common": "République dominicaine" + }, + "hrv": { + "official": "Dominikanska Republika", + "common": "Dominikanska Republika" + }, + "hun": { + "official": "Dominikai Köztársaság", + "common": "Dominikai Köztársaság" + }, + "ind": { + "official": "Republik Dominika", + "common": "Republik Dominika" + }, + "ita": { + "official": "Repubblica Dominicana", + "common": "Repubblica Dominicana" + }, + "jpn": { + "official": "ドミニカ共和国", + "common": "ドミニカ共和国" + }, + "kor": { + "official": "도미니카 공화국", + "common": "도미니카 공화국" + }, + "nld": { + "official": "Dominicaanse Republiek", + "common": "Dominicaanse Republiek" + }, + "per": { + "official": "جمهوری دومینیکن", + "common": "جمهوری دومینیکن" + }, + "pol": { + "official": "Republika Dominikańska", + "common": "Dominikana" + }, + "por": { + "official": "República Dominicana", + "common": "República Dominicana" + }, + "rus": { + "official": "Доминиканская Республика", + "common": "Доминиканская Республика" + }, + "slk": { + "official": "Dominikánska republika", + "common": "Dominikánska republika" + }, + "spa": { + "official": "República Dominicana", + "common": "República Dominicana" + }, + "srp": { + "official": "Доминиканска Република", + "common": "Доминикана" + }, + "swe": { + "official": "Dominikanska republiken", + "common": "Dominikanska republiken" + }, + "tur": { + "official": "Dominik Cumhuriyeti", + "common": "Dominik Cumhuriyeti" + }, + "urd": { + "official": "جمہوریہ ڈومینیکن", + "common": "ڈومینیکن" + }, + "zho": { + "official": "多明尼加共和国", + "common": "多明尼加" + } + }, + "flag": "🇩🇴", + "maps": { + "googleMaps": "https://goo.gl/maps/soxooTHxEeiAbn3UA", + "openStreetMaps": "https://www.openstreetmap.org/relation/307828" + }, + "population": 10771504, + "gini": { + "2019": 41.9 + }, + "fifa": "DOM", + "car": { + "signs": [ + "DOM" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/do.png", + "svg": "https://flagcdn.com/do.svg", + "alt": "The flag of the Dominican Republic is divided into four rectangles by a centered white cross that extends to the edges of the field and bears the national coat of arms in its center. The upper hoist-side and lower fly-side rectangles are blue and the lower hoist-side and upper fly-side rectangles are red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/do.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/do.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 18.47, + -69.9 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Honduras", + "official": "Republic of Honduras", + "nativeName": { + "spa": { + "official": "República de Honduras", + "common": "Honduras" + } + } + }, + "tld": [ + ".hn" + ], + "cca2": "HN", + "ccn3": "340", + "cioc": "HON", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "HNL": { + "symbol": "L", + "name": "Honduran lempira" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "04" + ] + }, + "capital": [ + "Tegucigalpa" + ], + "altSpellings": [ + "HN", + "Republic of Honduras", + "República de Honduras" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 15.0, + -86.5 + ], + "landlocked": false, + "borders": [ + "GTM", + "SLV", + "NIC" + ], + "area": 112492.0, + "demonyms": { + "eng": { + "f": "Honduran", + "m": "Honduran" + }, + "fra": { + "f": "Hondurienne", + "m": "Hondurien" + } + }, + "cca3": "HND", + "translations": { + "ara": { + "official": "جمهورية هندوراس", + "common": "هندوراس" + }, + "bre": { + "official": "Republik Honduras", + "common": "Honduras" + }, + "ces": { + "official": "Honduraská republika", + "common": "Honduras" + }, + "cym": { + "official": "Republic of Honduras", + "common": "Honduras" + }, + "deu": { + "official": "Republik Honduras", + "common": "Honduras" + }, + "est": { + "official": "Hondurase Vabariik", + "common": "Honduras" + }, + "fin": { + "official": "Hondurasin tasavalta", + "common": "Honduras" + }, + "fra": { + "official": "République du Honduras", + "common": "Honduras" + }, + "hrv": { + "official": "Republika Honduras", + "common": "Honduras" + }, + "hun": { + "official": "Hondurasi Köztársaság", + "common": "Honduras" + }, + "ind": { + "official": "Republik Honduras", + "common": "Honduras" + }, + "ita": { + "official": "Repubblica di Honduras", + "common": "Honduras" + }, + "jpn": { + "official": "ホンジュラス共和国", + "common": "ホンジュラス" + }, + "kor": { + "official": "온두라스 공화국", + "common": "온두라스" + }, + "nld": { + "official": "Republiek Honduras", + "common": "Honduras" + }, + "per": { + "official": "جمهوری هندوراس", + "common": "هُندوراس" + }, + "pol": { + "official": "Republika Hondurasu", + "common": "Honduras" + }, + "por": { + "official": "República de Honduras", + "common": "Honduras" + }, + "rus": { + "official": "Республика Гондурас", + "common": "Гондурас" + }, + "slk": { + "official": "Honduraská republika", + "common": "Honduras" + }, + "spa": { + "official": "República de Honduras", + "common": "Honduras" + }, + "srp": { + "official": "Република Хондурас", + "common": "Хондурас" + }, + "swe": { + "official": "Republiken Honduras", + "common": "Honduras" + }, + "tur": { + "official": "Honduras Cumhuriyeti", + "common": "Honduras" + }, + "urd": { + "official": "جمہوریہ ہونڈوراس", + "common": "ہونڈوراس" + }, + "zho": { + "official": "洪都拉斯共和国", + "common": "洪都拉斯" + } + }, + "flag": "🇭🇳", + "maps": { + "googleMaps": "https://goo.gl/maps/BbeJK8Sk2VkMHbdF8", + "openStreetMaps": "https://www.openstreetmap.org/relation/287670" + }, + "population": 9892632, + "gini": { + "2019": 48.2 + }, + "fifa": "HON", + "car": { + "signs": [ + "HN" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/hn.png", + "svg": "https://flagcdn.com/hn.svg", + "alt": "The flag of Honduras is composed of three equal horizontal bands of turquoise, white and turquoise, with five small five-pointed turquoise stars arranged in a quincuncial pattern at the center of the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/hn.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/hn.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 14.1, + -87.22 + ] + }, + "postalCode": { + "format": "@@####", + "regex": "^([A-Z]{2}\\d{4})$" + } + }, + { + "name": { + "common": "Western Sahara", + "official": "Sahrawi Arab Democratic Republic", + "nativeName": { + "ber": { + "official": "Sahrawi Arab Democratic Republic", + "common": "Western Sahara" + }, + "mey": { + "official": "الجمهورية العربية الصحراوية الديمقراطية", + "common": "الصحراء الغربية" + }, + "spa": { + "official": "República Árabe Saharaui Democrática", + "common": "Sahara Occidental" + } + } + }, + "tld": [ + ".eh" + ], + "cca2": "EH", + "ccn3": "732", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "DZD": { + "symbol": "دج", + "name": "Algerian dinar" + }, + "MAD": { + "symbol": "DH", + "name": "Moroccan dirham" + }, + "MRU": { + "symbol": "UM", + "name": "Mauritanian ouguiya" + } + }, + "idd": { + "root": "+2", + "suffixes": [ + "125288", + "125289" + ] + }, + "capital": [ + "El Aaiún" + ], + "altSpellings": [ + "EH", + "Taneẓroft Tutrimt" + ], + "region": "Africa", + "subregion": "Northern Africa", + "languages": { + "ber": "Berber", + "mey": "Hassaniya", + "spa": "Spanish" + }, + "latlng": [ + 24.5, + -13.0 + ], + "landlocked": false, + "borders": [ + "DZA", + "MRT", + "MAR" + ], + "area": 266000.0, + "demonyms": { + "eng": { + "f": "Sahrawi", + "m": "Sahrawi" + }, + "fra": { + "f": "", + "m": "" + } + }, + "cca3": "ESH", + "translations": { + "ara": { + "official": "الجمهورية العربية الصحراوية الديمقراطية", + "common": "الصحراء الغربية" + }, + "bre": { + "official": "Republik Arab Saharaoui Demokratel", + "common": "Sahara ar C'hornôg" + }, + "ces": { + "official": "Západní Sahara", + "common": "Západní Sahara" + }, + "cym": { + "official": "Sahrawi Arab Democratic Republic", + "common": "Western Sahara" + }, + "deu": { + "official": "Demokratische Arabische Republik Sahara", + "common": "Westsahara" + }, + "est": { + "official": "Lääne-Sahara", + "common": "Lääne-Sahara" + }, + "fin": { + "official": "Länsi-Sahara", + "common": "Länsi-Sahara" + }, + "fra": { + "official": "République arabe sahraouie démocratique", + "common": "Sahara Occidental" + }, + "hrv": { + "official": "Sahrawi Arab Demokratska Republika", + "common": "Zapadna Sahara" + }, + "hun": { + "official": "Nyugat-Szahara", + "common": "Nyugat-Szahara" + }, + "ind": { + "official": "Republik Demokratik Arab Sahrawi", + "common": "Sahara Barat" + }, + "ita": { + "official": "Repubblica Araba Saharawi Democratica", + "common": "Sahara Occidentale" + }, + "jpn": { + "official": "サハラアラブ民主共和国", + "common": "西サハラ" + }, + "kor": { + "official": "사하라 아랍 민주 공화국", + "common": "서사하라" + }, + "nld": { + "official": "Sahrawi Arabische Democratische Republiek", + "common": "Westelijke Sahara" + }, + "per": { + "official": "صحرای غربی", + "common": "صحرای غربی" + }, + "pol": { + "official": "Saharyjska Arabska Republika Demokratyczna", + "common": "Sahara Zachodnia" + }, + "por": { + "official": "República Árabe Saharaui Democrática", + "common": "Saara Ocidental" + }, + "rus": { + "official": "Sahrawi Арабская Демократическая Республика", + "common": "Западная Сахара" + }, + "slk": { + "official": "Západná Sahara", + "common": "Západná Sahara" + }, + "spa": { + "official": "República Árabe Saharaui Democrática", + "common": "Sahara Occidental" + }, + "srp": { + "official": "Сахарска Арапска Демократска Република", + "common": "Сахарска Република" + }, + "swe": { + "official": "Västsahara", + "common": "Västsahara" + }, + "tur": { + "official": "Sahra Demokratik Arap Cumhuriyeti", + "common": "Sahra Demokratik Arap Cumhuriyeti" + }, + "urd": { + "official": "صحراوی عرب عوامی جمہوریہ", + "common": "مغربی صحارا" + }, + "zho": { + "official": "阿拉伯撒哈拉民主共和国", + "common": "西撒哈拉" + } + }, + "flag": "🇪🇭", + "maps": { + "googleMaps": "https://goo.gl/maps/7nU3mB69vP6zQp7A8", + "openStreetMaps": "https://www.openstreetmap.org/relation/5441968" + }, + "population": 600904, + "car": { + "signs": [ + "" + ], + "side": "right" + }, + "timezones": [ + "UTC+00:00" + ], + "continents": [ + "Africa" + ], + "flags": { + "png": "https://flagcdn.com/w320/eh.png", + "svg": "https://flagcdn.com/eh.svg" + }, + "coatOfArms": {}, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -13.28, + 27.14 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Peru", + "official": "Republic of Peru", + "nativeName": { + "aym": { + "official": "Piruw Suyu", + "common": "Piruw" + }, + "que": { + "official": "Piruw Ripuwlika", + "common": "Piruw" + }, + "spa": { + "official": "República del Perú", + "common": "Perú" + } + } + }, + "tld": [ + ".pe" + ], + "cca2": "PE", + "ccn3": "604", + "cioc": "PER", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "PEN": { + "symbol": "S/ ", + "name": "Peruvian sol" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "1" + ] + }, + "capital": [ + "Lima" + ], + "altSpellings": [ + "PE", + "Republic of Peru", + "República del Perú" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "aym": "Aymara", + "que": "Quechua", + "spa": "Spanish" + }, + "latlng": [ + -10.0, + -76.0 + ], + "landlocked": false, + "borders": [ + "BOL", + "BRA", + "CHL", + "COL", + "ECU" + ], + "area": 1285216.0, + "demonyms": { + "eng": { + "f": "Peruvian", + "m": "Peruvian" + }, + "fra": { + "f": "Péruvienne", + "m": "Péruvien" + } + }, + "cca3": "PER", + "translations": { + "ara": { + "official": "جمهورية بيرو", + "common": "بيرو" + }, + "bre": { + "official": "Republik Perou", + "common": "Perou" + }, + "ces": { + "official": "Peruánská republika", + "common": "Peru" + }, + "cym": { + "official": "Republic of Peru", + "common": "Peru" + }, + "deu": { + "official": "Republik Peru", + "common": "Peru" + }, + "est": { + "official": "Peruu Vabariik", + "common": "Peruu" + }, + "fin": { + "official": "Perun tasavalta", + "common": "Peru" + }, + "fra": { + "official": "République du Pérou", + "common": "Pérou" + }, + "hrv": { + "official": "Republika Peru", + "common": "Peru" + }, + "hun": { + "official": "Perui Köztársaság", + "common": "Peru" + }, + "ind": { + "official": "Republik Peru", + "common": "Peru" + }, + "ita": { + "official": "Repubblica del Perù", + "common": "Perù" + }, + "jpn": { + "official": "ペルー共和国", + "common": "ペルー" + }, + "kor": { + "official": "페루 공화국", + "common": "페루" + }, + "nld": { + "official": "Republiek Peru", + "common": "Peru" + }, + "per": { + "official": "جمهوری پرو", + "common": "پرو" + }, + "pol": { + "official": "Republika Peru", + "common": "Peru" + }, + "por": { + "official": "República do Peru", + "common": "Perú" + }, + "rus": { + "official": "Республика Перу", + "common": "Перу" + }, + "slk": { + "official": "Peruánska republika", + "common": "Peru" + }, + "spa": { + "official": "República de Perú", + "common": "Perú" + }, + "srp": { + "official": "Република Перу", + "common": "Перу" + }, + "swe": { + "official": "Republiken Peru", + "common": "Peru" + }, + "tur": { + "official": "Peru Cumhuriyeti", + "common": "Peru" + }, + "urd": { + "official": "جمہوریہ پیرو", + "common": "پیرو" + }, + "zho": { + "official": "秘鲁共和国", + "common": "秘鲁" + } + }, + "flag": "🇵🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/uDWEUaXNcZTng1fP6", + "openStreetMaps": "https://www.openstreetmap.org/relation/288247" + }, + "population": 34350244, + "gini": { + "2019": 41.5 + }, + "fifa": "PER", + "car": { + "signs": [ + "PE" + ], + "side": "right" + }, + "timezones": [ + "UTC-05:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/pe.png", + "svg": "https://flagcdn.com/pe.svg", + "alt": "The flag of Peru is composed of three equal vertical bands of red, white and red, with the national emblem centered in the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/pe.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/pe.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -12.05, + -77.05 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Puerto Rico", + "official": "Commonwealth of Puerto Rico", + "nativeName": { + "eng": { + "official": "Commonwealth of Puerto Rico", + "common": "Puerto Rico" + }, + "spa": { + "official": "Estado Libre Asociado de Puerto Rico", + "common": "Puerto Rico" + } + } + }, + "tld": [ + ".pr" + ], + "cca2": "PR", + "ccn3": "630", + "cioc": "PUR", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+1", + "suffixes": [ + "787", + "939" + ] + }, + "capital": [ + "San Juan" + ], + "altSpellings": [ + "PR", + "Commonwealth of Puerto Rico", + "Estado Libre Asociado de Puerto Rico" + ], + "region": "Americas", + "subregion": "Caribbean", + "languages": { + "eng": "English", + "spa": "Spanish" + }, + "latlng": [ + 18.25, + -66.5 + ], + "landlocked": false, + "area": 8870.0, + "demonyms": { + "eng": { + "f": "Puerto Rican", + "m": "Puerto Rican" + }, + "fra": { + "f": "Portoricaine", + "m": "Portoricain" + } + }, + "cca3": "PRI", + "translations": { + "ara": { + "official": "كومنولث بويرتوريكو", + "common": "بويرتوريكو" + }, + "bre": { + "official": "Kenglad Puerto Rico", + "common": "Puerto Rico" + }, + "ces": { + "official": "Portoriko", + "common": "Portoriko" + }, + "cym": { + "official": "Commonwealth of Puerto Rico", + "common": "Puerto Rico" + }, + "deu": { + "official": "Freistaat Puerto Rico", + "common": "Puerto Rico" + }, + "est": { + "official": "Puerto Rico Ühendus", + "common": "Puerto Rico" + }, + "fin": { + "official": "Puerto Rico", + "common": "Puerto Rico" + }, + "fra": { + "official": "Porto Rico", + "common": "Porto Rico" + }, + "hrv": { + "official": "Zajednica Puerto Rico", + "common": "Portoriko" + }, + "hun": { + "official": "Puerto Rico", + "common": "Puerto Rico" + }, + "ind": { + "official": "Persemakmuran Puerto Riko", + "common": "Puerto Riko" + }, + "ita": { + "official": "Commonwealth di Porto Rico", + "common": "Porto Rico" + }, + "jpn": { + "official": "プエルトリコのコモンウェルス", + "common": "プエルトリコ" + }, + "kor": { + "official": "푸에르토리코", + "common": "푸에르토리코" + }, + "nld": { + "official": "Gemenebest van Puerto Rico", + "common": "Puerto Rico" + }, + "per": { + "official": "قلمرو همسود پورتوریکو", + "common": "پورتوریکو" + }, + "pol": { + "official": "Wolne Stowarzyszone Państwo Portoryko", + "common": "Portoryko" + }, + "por": { + "official": "Commonwealth of Puerto Rico", + "common": "Porto Rico" + }, + "rus": { + "official": "Содружество Пуэрто-Рико", + "common": "Пуэрто-Рико" + }, + "slk": { + "official": "Portorické spoločenstvo", + "common": "Portoriko" + }, + "spa": { + "official": "Asociado de Puerto Rico", + "common": "Puerto Rico" + }, + "srp": { + "official": "Комонвелт Порторико", + "common": "Порторико" + }, + "swe": { + "official": "Puerto Rico", + "common": "Puerto Rico" + }, + "tur": { + "official": "Porto Riko Topluluğu", + "common": "Porto Riko" + }, + "urd": { + "official": " دولتِ مشترکہ پورٹو ریکو", + "common": "پورٹو ریکو" + }, + "zho": { + "official": "波多黎各联邦", + "common": "波多黎各" + } + }, + "flag": "🇵🇷", + "maps": { + "googleMaps": "https://goo.gl/maps/sygfDbtwn389wu8x5", + "openStreetMaps": "https://www.openstreetmap.org/relation/4422604" + }, + "population": 3203295, + "fifa": "PUR", + "car": { + "signs": [ + "USA" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/pr.png", + "svg": "https://flagcdn.com/pr.svg" + }, + "coatOfArms": {}, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 18.47, + -66.12 + ] + }, + "postalCode": { + "format": "#####-####", + "regex": "^(\\d{9})$" + } + }, + { + "name": { + "common": "Venezuela", + "official": "Bolivarian Republic of Venezuela", + "nativeName": { + "spa": { + "official": "República Bolivariana de Venezuela", + "common": "Venezuela" + } + } + }, + "tld": [ + ".ve" + ], + "cca2": "VE", + "ccn3": "862", + "cioc": "VEN", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "VES": { + "symbol": "Bs.S.", + "name": "Venezuelan bolívar soberano" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "8" + ] + }, + "capital": [ + "Caracas" + ], + "altSpellings": [ + "VE", + "Bolivarian Republic of Venezuela", + "Venezuela, Bolivarian Republic of", + "República Bolivariana de Venezuela" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 8.0, + -66.0 + ], + "landlocked": false, + "borders": [ + "BRA", + "COL", + "GUY" + ], + "area": 916445.0, + "demonyms": { + "eng": { + "f": "Venezuelan", + "m": "Venezuelan" + }, + "fra": { + "f": "Vénézuélienne", + "m": "Vénézuélien" + } + }, + "cca3": "VEN", + "translations": { + "ara": { + "official": "جمهورية فنزويلا البوليفارية", + "common": "فنزويلا" + }, + "bre": { + "official": "Republik Volivarian Venezuela", + "common": "Venezuela" + }, + "ces": { + "official": "Bolívarská republika Venezuela", + "common": "Venezuela" + }, + "cym": { + "official": "Bolivarian Republic of Venezuela", + "common": "Venezuela" + }, + "deu": { + "official": "Bolivarische Republik Venezuela", + "common": "Venezuela" + }, + "est": { + "official": "Venezuela Bolívari Vabariik", + "common": "Venezuela" + }, + "fin": { + "official": "Venezuelan bolivariaainen tasavalta", + "common": "Venezuela" + }, + "fra": { + "official": "République bolivarienne du Venezuela", + "common": "Venezuela" + }, + "hrv": { + "official": "BOLIVARIJANSKA Republika Venezuela", + "common": "Venezuela" + }, + "hun": { + "official": "Venezuelai Bolivári Köztársaság", + "common": "Venezuela" + }, + "ind": { + "official": "Republik Bolivar Venezuela", + "common": "Venezuela" + }, + "ita": { + "official": "Repubblica Bolivariana del Venezuela", + "common": "Venezuela" + }, + "jpn": { + "official": "ベネズエラ·ボリバル共和国", + "common": "ベネズエラ・ボリバル共和国" + }, + "kor": { + "official": "베네수엘라 볼리바르 공화국", + "common": "베네수엘라" + }, + "nld": { + "official": "Bolivariaanse Republiek Venezuela", + "common": "Venezuela" + }, + "per": { + "official": "جمهوری بولیواری ونزوئلا", + "common": "ونزوئلا" + }, + "pol": { + "official": "Boliwariańska Republika Wenezueli", + "common": "Wenezuela" + }, + "por": { + "official": "República Bolivariana da Venezuela", + "common": "Venezuela" + }, + "rus": { + "official": "Боливарианская Республика Венесуэла", + "common": "Венесуэла" + }, + "slk": { + "official": "Venezuelská bolívarovská republika", + "common": "Venezuela" + }, + "spa": { + "official": "República Bolivariana de Venezuela", + "common": "Venezuela" + }, + "srp": { + "official": "Боливарска Република Венецуела", + "common": "Венецуела" + }, + "swe": { + "official": "Bolivarianska republiken Venezuela", + "common": "Venezuela" + }, + "tur": { + "official": "Bolivarcı Venezuela Cumhuriyeti", + "common": "Venezuela" + }, + "urd": { + "official": "جمہوریہ وینیزویلا", + "common": "وینیزویلا" + }, + "zho": { + "official": "委内瑞拉玻利瓦尔共和国", + "common": "委内瑞拉" + } + }, + "flag": "🇻🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/KLCwDN8sec7z2kse9", + "openStreetMaps": "https://www.openstreetmap.org/relation/272644" + }, + "population": 28517000, + "gini": { + "2006": 44.8 + }, + "fifa": "VEN", + "car": { + "signs": [ + "YV" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/ve.png", + "svg": "https://flagcdn.com/ve.svg", + "alt": "The flag of Venezuela is composed of three equal horizontal bands of yellow, blue and red. At the center of the blue band are eight five-pointed white stars arranged in a horizontal arc." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ve.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ve.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 10.48, + -66.87 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Costa Rica", + "official": "Republic of Costa Rica", + "nativeName": { + "spa": { + "official": "República de Costa Rica", + "common": "Costa Rica" + } + } + }, + "tld": [ + ".cr" + ], + "cca2": "CR", + "ccn3": "188", + "cioc": "CRC", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "CRC": { + "symbol": "₡", + "name": "Costa Rican colón" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "06" + ] + }, + "capital": [ + "San José" + ], + "altSpellings": [ + "CR", + "Republic of Costa Rica", + "República de Costa Rica" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 10.0, + -84.0 + ], + "landlocked": false, + "borders": [ + "NIC", + "PAN" + ], + "area": 51100.0, + "demonyms": { + "eng": { + "f": "Costa Rican", + "m": "Costa Rican" + }, + "fra": { + "f": "Costaricaine", + "m": "Costaricain" + } + }, + "cca3": "CRI", + "translations": { + "ara": { + "official": "جمهورية كوستاريكا", + "common": "كوستاريكا" + }, + "bre": { + "official": "Republik Costa Rica", + "common": "Costa Rica" + }, + "ces": { + "official": "Kostarická republika", + "common": "Kostarika" + }, + "cym": { + "official": "Gweriniaeth Costa Rica", + "common": "Costa Rica" + }, + "deu": { + "official": "Republik Costa Rica", + "common": "Costa Rica" + }, + "est": { + "official": "Costa Rica Vabariik", + "common": "Costa Rica" + }, + "fin": { + "official": "Costa Rican tasavalta", + "common": "Costa Rica" + }, + "fra": { + "official": "République du Costa Rica", + "common": "Costa Rica" + }, + "hrv": { + "official": "Republika Kostarika", + "common": "Kostarika" + }, + "hun": { + "official": "Costa Rica-i Köztársaság", + "common": "Costa Rica" + }, + "ind": { + "official": "Republik Kosta Rika", + "common": "Kosta Rika" + }, + "ita": { + "official": "Repubblica di Costa Rica", + "common": "Costa Rica" + }, + "jpn": { + "official": "コスタリカ共和国", + "common": "コスタリカ" + }, + "kor": { + "official": "코스타리카 공화국", + "common": "코스타리카" + }, + "nld": { + "official": "Republiek Costa Rica", + "common": "Costa Rica" + }, + "per": { + "official": "جمهوری کاستاریکا", + "common": "کاستاریکا" + }, + "pol": { + "official": "Republika Kostaryki", + "common": "Kostaryka" + }, + "por": { + "official": "República da Costa Rica", + "common": "Costa Rica" + }, + "rus": { + "official": "Республика Коста-Рика", + "common": "Коста-Рика" + }, + "slk": { + "official": "Kostarická republika", + "common": "Kostarika" + }, + "spa": { + "official": "República de Costa Rica", + "common": "Costa Rica" + }, + "srp": { + "official": "Република Костарика", + "common": "Костарика" + }, + "swe": { + "official": "Republiken Costa Rica", + "common": "Costa Rica" + }, + "tur": { + "official": "Kosta Rika Cumhuriyeti", + "common": "Kosta Rika" + }, + "urd": { + "official": "جمہوریہ کوسٹاریکا", + "common": "کوسٹاریکا" + }, + "zho": { + "official": "哥斯达黎加共和国", + "common": "哥斯达黎加" + } + }, + "flag": "🇨🇷", + "maps": { + "googleMaps": "https://goo.gl/maps/RFiwytjvNrpfKN7k6", + "openStreetMaps": "https://www.openstreetmap.org/relation/287667" + }, + "population": 5309625, + "gini": { + "2019": 48.2 + }, + "fifa": "CRC", + "car": { + "signs": [ + "CR" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/cr.png", + "svg": "https://flagcdn.com/cr.svg", + "alt": "The flag of Costa Rica is composed of five horizontal bands of blue, white, red, white and blue. The central red band is twice the height of the other four bands." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/cr.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/cr.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 9.93, + -84.09 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Belize", + "official": "Belize", + "nativeName": { + "bjz": { + "official": "Belize", + "common": "Belize" + }, + "eng": { + "official": "Belize", + "common": "Belize" + }, + "spa": { + "official": "Belice", + "common": "Belice" + } + } + }, + "tld": [ + ".bz" + ], + "cca2": "BZ", + "ccn3": "084", + "cioc": "BIZ", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "BZD": { + "symbol": "$", + "name": "Belize dollar" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "01" + ] + }, + "capital": [ + "Belmopan" + ], + "altSpellings": [ + "BZ" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "bjz": "Belizean Creole", + "eng": "English", + "spa": "Spanish" + }, + "latlng": [ + 17.25, + -88.75 + ], + "landlocked": false, + "borders": [ + "GTM", + "MEX" + ], + "area": 22966.0, + "demonyms": { + "eng": { + "f": "Belizean", + "m": "Belizean" + }, + "fra": { + "f": "Bélizienne", + "m": "Bélizien" + } + }, + "cca3": "BLZ", + "translations": { + "ara": { + "official": "بليز", + "common": "بليز" + }, + "bre": { + "official": "Belize", + "common": "Belize" + }, + "ces": { + "official": "Belize", + "common": "Belize" + }, + "cym": { + "official": "Belîs", + "common": "Belîs" + }, + "deu": { + "official": "Belize", + "common": "Belize" + }, + "est": { + "official": "Belize", + "common": "Belize" + }, + "fin": { + "official": "Belize", + "common": "Belize" + }, + "fra": { + "official": "Belize", + "common": "Belize" + }, + "hrv": { + "official": "Belize", + "common": "Belize" + }, + "hun": { + "official": "Belize", + "common": "Belize" + }, + "ind": { + "official": "Belize", + "common": "Belize" + }, + "ita": { + "official": "Belize", + "common": "Belize" + }, + "jpn": { + "official": "ベリーズ", + "common": "ベリーズ" + }, + "kor": { + "official": "벨리즈", + "common": "벨리즈" + }, + "nld": { + "official": "Belize", + "common": "Belize" + }, + "per": { + "official": "بلیز", + "common": "بلیز" + }, + "pol": { + "official": "Belize", + "common": "Belize" + }, + "por": { + "official": "Belize", + "common": "Belize" + }, + "rus": { + "official": "Белиз", + "common": "Белиз" + }, + "slk": { + "official": "Belize", + "common": "Belize" + }, + "spa": { + "official": "Belice", + "common": "Belice" + }, + "srp": { + "official": "Белизе", + "common": "Белизе" + }, + "swe": { + "official": "Belize", + "common": "Belize" + }, + "tur": { + "official": "Belize", + "common": "Belize" + }, + "urd": { + "official": "بیلیز", + "common": "بیلیز" + }, + "zho": { + "official": "伯利兹", + "common": "伯利兹" + } + }, + "flag": "🇧🇿", + "maps": { + "googleMaps": "https://goo.gl/maps/jdCccpdLodm1uTmo9", + "openStreetMaps": "https://www.openstreetmap.org/relation/287827" + }, + "population": 417634, + "gini": { + "1999": 53.3 + }, + "fifa": "BLZ", + "car": { + "signs": [ + "BH" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/bz.png", + "svg": "https://flagcdn.com/bz.svg", + "alt": "The flag of Belize has a royal blue field with a thin red horizontal band at the top and bottom of the field and the national coat of arms in the center." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/bz.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/bz.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 17.25, + -88.77 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Mexico", + "official": "United Mexican States", + "nativeName": { + "spa": { + "official": "Estados Unidos Mexicanos", + "common": "México" + } + } + }, + "tld": [ + ".mx" + ], + "cca2": "MX", + "ccn3": "484", + "cioc": "MEX", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "MXN": { + "symbol": "$", + "name": "Mexican peso" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "2" + ] + }, + "capital": [ + "Mexico City" + ], + "altSpellings": [ + "MX", + "Mexicanos", + "United Mexican States", + "Estados Unidos Mexicanos" + ], + "region": "Americas", + "subregion": "North America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 23.0, + -102.0 + ], + "landlocked": false, + "borders": [ + "BLZ", + "GTM", + "USA" + ], + "area": 1964375.0, + "demonyms": { + "eng": { + "f": "Mexican", + "m": "Mexican" + }, + "fra": { + "f": "Mexicaine", + "m": "Mexicain" + } + }, + "cca3": "MEX", + "translations": { + "ara": { + "official": "الولايات المتحدة المكسيكية", + "common": "المسكيك" + }, + "bre": { + "official": "Stadoù-Unanet Mec'hiko", + "common": "Mec'hiko" + }, + "ces": { + "official": "Spojené státy mexické", + "common": "Mexiko" + }, + "cym": { + "official": "United Mexican States", + "common": "Mexico" + }, + "deu": { + "official": "Vereinigte Mexikanische Staaten", + "common": "Mexiko" + }, + "est": { + "official": "Mehhiko Ühendriigid", + "common": "Mehhiko" + }, + "fin": { + "official": "Meksikon yhdysvallat", + "common": "Meksiko" + }, + "fra": { + "official": "États-Unis du Mexique", + "common": "Mexique" + }, + "hrv": { + "official": "Sjedinjene Meksičke Države", + "common": "Meksiko" + }, + "hun": { + "official": "Mexikói Egyesült Államok", + "common": "Mexikó" + }, + "ind": { + "official": "Negara Meksiko Serikat", + "common": "Meksiko" + }, + "ita": { + "official": "Stati Uniti del Messico", + "common": "Messico" + }, + "jpn": { + "official": "メキシコ合衆国", + "common": "メキシコ" + }, + "kor": { + "official": "멕시코 합중국", + "common": "멕시코" + }, + "nld": { + "official": "Verenigde Mexicaanse Staten", + "common": "Mexico" + }, + "per": { + "official": "ایالات متحد مکزیک", + "common": "مکزیک" + }, + "pol": { + "official": "Meksykańskie Stany Zjednoczone", + "common": "Meksyk" + }, + "por": { + "official": "Estados Unidos Mexicanos", + "common": "México" + }, + "rus": { + "official": "Мексиканские Соединённые Штаты", + "common": "Мексика" + }, + "slk": { + "official": "Spojené štášy mexické", + "common": "Mexiko" + }, + "spa": { + "official": "Estados Unidos Mexicanos", + "common": "México" + }, + "srp": { + "official": "Сједињене Мексичке Државе", + "common": "Мексико" + }, + "swe": { + "official": "Mexikos förenta stater", + "common": "Mexiko" + }, + "tur": { + "official": "Birleşik Meksika Devletleri", + "common": "Meksika" + }, + "urd": { + "official": "ریاستہائے متحدہ میکسیکو", + "common": "میکسیکو" + }, + "zho": { + "official": "墨西哥合众国", + "common": "墨西哥" + } + }, + "flag": "🇲🇽", + "maps": { + "googleMaps": "https://goo.gl/maps/s5g7imNPMDEePxzbA", + "openStreetMaps": "https://www.openstreetmap.org/relation/114686" + }, + "population": 130575786, + "gini": { + "2018": 45.4 + }, + "fifa": "MEX", + "car": { + "signs": [ + "MEX" + ], + "side": "right" + }, + "timezones": [ + "UTC-08:00", + "UTC-07:00", + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/mx.png", + "svg": "https://flagcdn.com/mx.svg", + "alt": "The flag of Mexico is composed of three equal vertical bands of green, white and red, with the national coat of arms centered in the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/mx.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/mx.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 19.43, + -99.13 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Uruguay", + "official": "Oriental Republic of Uruguay", + "nativeName": { + "spa": { + "official": "República Oriental del Uruguay", + "common": "Uruguay" + } + } + }, + "tld": [ + ".uy" + ], + "cca2": "UY", + "ccn3": "858", + "cioc": "URU", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "UYU": { + "symbol": "$", + "name": "Uruguayan peso" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "98" + ] + }, + "capital": [ + "Montevideo" + ], + "altSpellings": [ + "UY", + "Oriental Republic of Uruguay", + "República Oriental del Uruguay" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + -33.0, + -56.0 + ], + "landlocked": false, + "borders": [ + "ARG", + "BRA" + ], + "area": 181034.0, + "demonyms": { + "eng": { + "f": "Uruguayan", + "m": "Uruguayan" + }, + "fra": { + "f": "Uruguayenne", + "m": "Uruguayen" + } + }, + "cca3": "URY", + "translations": { + "ara": { + "official": "جمهورية الأوروغواي الشرقية", + "common": "الأوروغواي" + }, + "bre": { + "official": "Republik Reter Uruguay", + "common": "Uruguay" + }, + "ces": { + "official": "Uruguayská východní republika", + "common": "Uruguay" + }, + "cym": { + "official": "Oriental Republic of Uruguay", + "common": "Uruguay" + }, + "deu": { + "official": "Republik Östlich des Uruguay", + "common": "Uruguay" + }, + "est": { + "official": "Uruguay Idavabariik", + "common": "Uruguay" + }, + "fin": { + "official": "Uruguayn itäinen tasavalta", + "common": "Uruguay" + }, + "fra": { + "official": "République orientale de l'Uruguay", + "common": "Uruguay" + }, + "hrv": { + "official": "Orijentalna Republika Urugvaj", + "common": "Urugvaj" + }, + "hun": { + "official": "Uruguayi Keleti Köztársaság", + "common": "Uruguay" + }, + "ind": { + "official": "Republik Oriental Uruguay", + "common": "Uruguay" + }, + "ita": { + "official": "Repubblica Orientale dell'Uruguay", + "common": "Uruguay" + }, + "jpn": { + "official": "ウルグアイ東方共和国", + "common": "ウルグアイ" + }, + "kor": { + "official": "우루과이 동방 공화국", + "common": "우루과이" + }, + "nld": { + "official": "Oosterse Republiek Uruguay", + "common": "Uruguay" + }, + "per": { + "official": "جمهوری اروگوئه", + "common": "اروگوئه" + }, + "pol": { + "official": "Wschodnia Republika Urugwaju", + "common": "Urugwaj" + }, + "por": { + "official": "República Oriental do Uruguai", + "common": "Uruguai" + }, + "rus": { + "official": "Восточной Республики Уругвай", + "common": "Уругвай" + }, + "slk": { + "official": "Uruguajská východná republika", + "common": "Uruguaj" + }, + "spa": { + "official": "República Oriental del Uruguay", + "common": "Uruguay" + }, + "srp": { + "official": "Источна Република Уругвај", + "common": "Уругвај" + }, + "swe": { + "official": "Republiken Uruguay", + "common": "Uruguay" + }, + "tur": { + "official": "Uruguay Doğu Cumhuriyeti", + "common": "Uruguay" + }, + "urd": { + "official": "جمہوریہ شرقیہ یوراگوئے", + "common": "یوراگوئے" + }, + "zho": { + "official": "乌拉圭东岸共和国", + "common": "乌拉圭" + } + }, + "flag": "🇺🇾", + "maps": { + "googleMaps": "https://goo.gl/maps/tiQ9Baekb1jQtDSD9", + "openStreetMaps": "https://www.openstreetmap.org/relation/287072" + }, + "population": 3499451, + "gini": { + "2019": 39.7 + }, + "fifa": "URU", + "car": { + "signs": [ + "ROU" + ], + "side": "right" + }, + "timezones": [ + "UTC-03:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/uy.png", + "svg": "https://flagcdn.com/uy.svg", + "alt": "The flag of Uruguay is composed of nine equal horizontal bands of white alternating with blue, with a white square superimposed in the canton. In the white square is a yellow sun bearing a human face — the Sun of May — from which sixteen rays extend. The sun's rays alternate between triangular and wavy." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/uy.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/uy.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -34.85, + -56.17 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "El Salvador", + "official": "Republic of El Salvador", + "nativeName": { + "spa": { + "official": "República de El Salvador", + "common": "El Salvador" + } + } + }, + "tld": [ + ".sv" + ], + "cca2": "SV", + "ccn3": "222", + "cioc": "ESA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "03" + ] + }, + "capital": [ + "San Salvador" + ], + "altSpellings": [ + "SV", + "Republic of El Salvador", + "República de El Salvador" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 13.83333333, + -88.91666666 + ], + "landlocked": false, + "borders": [ + "GTM", + "HND" + ], + "area": 21041.0, + "demonyms": { + "eng": { + "f": "Salvadoran", + "m": "Salvadoran" + }, + "fra": { + "f": "Salvadorienne", + "m": "Salvadorien" + } + }, + "cca3": "SLV", + "translations": { + "ara": { + "official": "جمهورية السلفادور", + "common": "السلفادور" + }, + "bre": { + "official": "Republik El Salvador", + "common": "El Salvador" + }, + "ces": { + "official": "Salvadorská republika", + "common": "Salvador" + }, + "cym": { + "official": "Gweriniaeth El Salfador", + "common": "El Salfador" + }, + "deu": { + "official": "Republik El Salvador", + "common": "El Salvador" + }, + "est": { + "official": "El Salvadori Vabariik", + "common": "El Salvador" + }, + "fin": { + "official": "El Salvadorin tasavalta", + "common": "El Salvador" + }, + "fra": { + "official": "République du Salvador", + "common": "Salvador" + }, + "hrv": { + "official": "Republika El Salvador", + "common": "Salvador" + }, + "hun": { + "official": "Salvadori Köztársaság", + "common": "Salvador" + }, + "ind": { + "official": "Republik El Salvador", + "common": "El Salvador" + }, + "ita": { + "official": "Repubblica di El Salvador", + "common": "El Salvador" + }, + "jpn": { + "official": "エルサルバドル共和国", + "common": "エルサルバドル" + }, + "kor": { + "official": "엘살바도르 공화국", + "common": "엘살바도르" + }, + "nld": { + "official": "Republiek El Salvador", + "common": "El Salvador" + }, + "per": { + "official": "جمهوری السالوادور", + "common": "السالوادور" + }, + "pol": { + "official": "Republika Salwadoru", + "common": "Salwador" + }, + "por": { + "official": "República de El Salvador", + "common": "El Salvador" + }, + "rus": { + "official": "Республика Эль-Сальвадор", + "common": "Сальвадор" + }, + "slk": { + "official": "Salvádorská republika", + "common": "Salvádor" + }, + "spa": { + "official": "República de El Salvador", + "common": "El Salvador" + }, + "srp": { + "official": "Република Ел Салвадор", + "common": "Салвадор" + }, + "swe": { + "official": "Republiken El Salvador", + "common": "El Salvador" + }, + "tur": { + "official": "El Salvador Cumhuriyeti", + "common": "El Salvador" + }, + "urd": { + "official": "جمہوریہ ایل سیلواڈور", + "common": "ایل سیلواڈور" + }, + "zho": { + "official": "萨尔瓦多共和国", + "common": "萨尔瓦多" + } + }, + "flag": "🇸🇻", + "maps": { + "googleMaps": "https://goo.gl/maps/cZnCEi5sEMQtKKcB7", + "openStreetMaps": "https://www.openstreetmap.org/relation/1520612" + }, + "population": 6029976, + "gini": { + "2019": 38.8 + }, + "fifa": "SLV", + "car": { + "signs": [ + "ES" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/sv.png", + "svg": "https://flagcdn.com/sv.svg", + "alt": "The flag of El Salvador is composed of three equal horizontal bands of cobalt blue, white and cobalt blue, with the national coat of arms centered in the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/sv.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/sv.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 13.7, + -89.2 + ] + }, + "postalCode": { + "format": "CP ####", + "regex": "^(?:CP)*(\\d{4})$" + } + }, + { + "name": { + "common": "Paraguay", + "official": "Republic of Paraguay", + "nativeName": { + "grn": { + "official": "Tetã Paraguái", + "common": "Paraguái" + }, + "spa": { + "official": "República de Paraguay", + "common": "Paraguay" + } + } + }, + "tld": [ + ".py" + ], + "cca2": "PY", + "ccn3": "600", + "cioc": "PAR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "PYG": { + "symbol": "₲", + "name": "Paraguayan guaraní" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "95" + ] + }, + "capital": [ + "Asunción" + ], + "altSpellings": [ + "PY", + "Republic of Paraguay", + "República del Paraguay", + "Tetã Paraguái" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "grn": "Guaraní", + "spa": "Spanish" + }, + "latlng": [ + -23.0, + -58.0 + ], + "landlocked": true, + "borders": [ + "ARG", + "BOL", + "BRA" + ], + "area": 406752.0, + "demonyms": { + "eng": { + "f": "Paraguayan", + "m": "Paraguayan" + }, + "fra": { + "f": "Paraguayenne", + "m": "Paraguayen" + } + }, + "cca3": "PRY", + "translations": { + "ara": { + "official": "جمهورية باراغواي", + "common": "باراغواي" + }, + "bre": { + "official": "Republik Paraguay", + "common": "Paraguay" + }, + "ces": { + "official": "Paraguayská republika", + "common": "Paraguay" + }, + "cym": { + "official": "Republic of Paraguay", + "common": "Paraguay" + }, + "deu": { + "official": "Republik Paraguay", + "common": "Paraguay" + }, + "est": { + "official": "Paraguay Vabariik", + "common": "Paraguay" + }, + "fin": { + "official": "Paraguayn tasavalta", + "common": "Paraguay" + }, + "fra": { + "official": "République du Paraguay", + "common": "Paraguay" + }, + "hrv": { + "official": "Republika Paragvaj", + "common": "Paragvaj" + }, + "hun": { + "official": "Paraguayi Köztársaság", + "common": "Paraguay" + }, + "ind": { + "official": "Republik Paraguay", + "common": "Paraguay" + }, + "ita": { + "official": "Repubblica del Paraguay", + "common": "Paraguay" + }, + "jpn": { + "official": "パラグアイ共和国", + "common": "パラグアイ" + }, + "kor": { + "official": "파라과이 공화국", + "common": "파라과이" + }, + "nld": { + "official": "Republiek Paraguay", + "common": "Paraguay" + }, + "per": { + "official": "جمهوری پاراگوئه", + "common": "پاراگوئه" + }, + "pol": { + "official": "Republika Paragwaju", + "common": "Paragwaj" + }, + "por": { + "official": "República do Paraguai", + "common": "Paraguai" + }, + "rus": { + "official": "Республика Парагвай", + "common": "Парагвай" + }, + "slk": { + "official": "Paraguajská republika", + "common": "Paraguaj" + }, + "spa": { + "official": "República de Paraguay", + "common": "Paraguay" + }, + "srp": { + "official": "Република Парагвај", + "common": "Парагвај" + }, + "swe": { + "official": "Republiken Paraguay", + "common": "Paraguay" + }, + "tur": { + "official": "Paraguay Cumhuriyeti", + "common": "Paraguay" + }, + "urd": { + "official": "جمہوریہ پیراگوئے", + "common": "پیراگوئے" + }, + "zho": { + "official": "巴拉圭共和国", + "common": "巴拉圭" + } + }, + "flag": "🇵🇾", + "maps": { + "googleMaps": "https://goo.gl/maps/JtnqG73WJn1Gx6mz6", + "openStreetMaps": "https://www.openstreetmap.org/relation/287077" + }, + "population": 6109644, + "gini": { + "2019": 45.7 + }, + "fifa": "PAR", + "car": { + "signs": [ + "PY" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/py.png", + "svg": "https://flagcdn.com/py.svg", + "alt": "The flag of Paraguay features three equal horizontal bands of red, white and blue, with an emblem centered in the white band. On the obverse side of the flag depicted, this emblem is the national coat of arms." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/py.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/py.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -25.28, + -57.57 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Cuba", + "official": "Republic of Cuba", + "nativeName": { + "spa": { + "official": "República de Cuba", + "common": "Cuba" + } + } + }, + "tld": [ + ".cu" + ], + "cca2": "CU", + "ccn3": "192", + "cioc": "CUB", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "CUC": { + "symbol": "$", + "name": "Cuban convertible peso" + }, + "CUP": { + "symbol": "$", + "name": "Cuban peso" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "3" + ] + }, + "capital": [ + "Havana" + ], + "altSpellings": [ + "CU", + "Republic of Cuba", + "República de Cuba" + ], + "region": "Americas", + "subregion": "Caribbean", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 21.5, + -80.0 + ], + "landlocked": false, + "area": 109884.0, + "demonyms": { + "eng": { + "f": "Cuban", + "m": "Cuban" + }, + "fra": { + "f": "Cubaine", + "m": "Cubain" + } + }, + "cca3": "CUB", + "translations": { + "ara": { + "official": "جمهورية كوبا", + "common": "كوبا" + }, + "bre": { + "official": "Republik Kuba", + "common": "Kuba" + }, + "ces": { + "official": "Kubánská republika", + "common": "Kuba" + }, + "cym": { + "official": "Gweriniaeth Ciwba", + "common": "Ciwba" + }, + "deu": { + "official": "Republik Kuba", + "common": "Kuba" + }, + "est": { + "official": "Kuuba Vabariik", + "common": "Kuuba" + }, + "fin": { + "official": "Kuuban tasavalta", + "common": "Kuuba" + }, + "fra": { + "official": "République de Cuba", + "common": "Cuba" + }, + "hrv": { + "official": "Republika Kuba", + "common": "Kuba" + }, + "hun": { + "official": "Kubai Köztársaság", + "common": "Kuba" + }, + "ind": { + "official": "Republik Kuba", + "common": "Kuba" + }, + "ita": { + "official": "Repubblica di Cuba", + "common": "Cuba" + }, + "jpn": { + "official": "キューバ共和国", + "common": "キューバ" + }, + "kor": { + "official": "쿠바 공화국", + "common": "쿠바" + }, + "nld": { + "official": "Republiek Cuba", + "common": "Cuba" + }, + "per": { + "official": "جمهوری کوبا", + "common": "کوبا" + }, + "pol": { + "official": "Republika Kuby", + "common": "Kuba" + }, + "por": { + "official": "República de Cuba", + "common": "Cuba" + }, + "rus": { + "official": "Республика Куба", + "common": "Куба" + }, + "slk": { + "official": "Kubánska republika", + "common": "Kuba" + }, + "spa": { + "official": "República de Cuba", + "common": "Cuba" + }, + "srp": { + "official": "Република Куба", + "common": "Куба" + }, + "swe": { + "official": "Republiken Kuba", + "common": "Kuba" + }, + "tur": { + "official": "Küba Cumhuriyeti", + "common": "Küba" + }, + "urd": { + "official": "جمہوریہ کیوبا", + "common": "کیوبا" + }, + "zho": { + "official": "古巴共和国", + "common": "古巴" + } + }, + "flag": "🇨🇺", + "maps": { + "googleMaps": "https://goo.gl/maps/1dDw1QfZspfMUTm99", + "openStreetMaps": "https://www.openstreetmap.org/relation/307833" + }, + "population": 9748007, + "fifa": "CUB", + "car": { + "signs": [ + "C" + ], + "side": "right" + }, + "timezones": [ + "UTC-05:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/cu.png", + "svg": "https://flagcdn.com/cu.svg", + "alt": "The flag of Cuba is composed of five equal horizontal bands of blue alternating with white and a red equilateral triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end, spans about two-fifth the width of the field and bears a white five-pointed star at its center." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/cu.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/cu.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 23.12, + -82.35 + ] + }, + "postalCode": { + "format": "CP #####", + "regex": "^(?:CP)*(\\d{5})$" + } + }, + { + "name": { + "common": "Panama", + "official": "Republic of Panama", + "nativeName": { + "spa": { + "official": "República de Panamá", + "common": "Panamá" + } + } + }, + "tld": [ + ".pa" + ], + "cca2": "PA", + "ccn3": "591", + "cioc": "PAN", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "PAB": { + "symbol": "B/.", + "name": "Panamanian balboa" + }, + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "07" + ] + }, + "capital": [ + "Panama City" + ], + "altSpellings": [ + "PA", + "Republic of Panama", + "República de Panamá" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 9.0, + -80.0 + ], + "landlocked": false, + "borders": [ + "COL", + "CRI" + ], + "area": 75417.0, + "demonyms": { + "eng": { + "f": "Panamanian", + "m": "Panamanian" + }, + "fra": { + "f": "Panaméenne", + "m": "Panaméen" + } + }, + "cca3": "PAN", + "translations": { + "ara": { + "official": "جمهورية بنما", + "common": "بنما" + }, + "bre": { + "official": "Republik Panama", + "common": "Panama" + }, + "ces": { + "official": "Panamská republika", + "common": "Panama" + }, + "cym": { + "official": "Republic of Panama", + "common": "Panama" + }, + "deu": { + "official": "Republik Panama", + "common": "Panama" + }, + "est": { + "official": "Panama Vabariik", + "common": "Panama" + }, + "fin": { + "official": "Panaman tasavalta", + "common": "Panama" + }, + "fra": { + "official": "République du Panama", + "common": "Panama" + }, + "hrv": { + "official": "Republika Panama", + "common": "Panama" + }, + "hun": { + "official": "Panamai Köztársaság", + "common": "Panama" + }, + "ind": { + "official": "Republik Panama", + "common": "Panama" + }, + "ita": { + "official": "Repubblica di Panama", + "common": "Panama" + }, + "jpn": { + "official": "パナマ共和国", + "common": "パナマ" + }, + "kor": { + "official": "파나마 공화국", + "common": "파나마" + }, + "nld": { + "official": "Republiek Panama", + "common": "Panama" + }, + "per": { + "official": "جمهوری پاناما", + "common": "پاناما" + }, + "pol": { + "official": "Republika Panamy", + "common": "Panama" + }, + "por": { + "official": "República do Panamá", + "common": "Panamá" + }, + "rus": { + "official": "Республика Панама", + "common": "Панама" + }, + "slk": { + "official": "Panamská republika", + "common": "Panama" + }, + "spa": { + "official": "República de Panamá", + "common": "Panamá" + }, + "srp": { + "official": "Република Панама", + "common": "Панама" + }, + "swe": { + "official": "Republiken Panama", + "common": "Panama" + }, + "tur": { + "official": "Panama Cumhuriyeti", + "common": "Panama" + }, + "urd": { + "official": "جمہوریہ پاناما", + "common": "پاناما" + }, + "zho": { + "official": "巴拿马共和国", + "common": "巴拿马" + } + }, + "flag": "🇵🇦", + "maps": { + "googleMaps": "https://goo.gl/maps/sEN7sKqeawa5oPNLA", + "openStreetMaps": "https://www.openstreetmap.org/relation/287668" + }, + "population": 4064780, + "gini": { + "2019": 49.8 + }, + "fifa": "PAN", + "car": { + "signs": [ + "PA" + ], + "side": "right" + }, + "timezones": [ + "UTC-05:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/pa.png", + "svg": "https://flagcdn.com/pa.svg", + "alt": "The flag of Panama is composed of four equal rectangular areas — a white rectangular area with a blue five-pointed star at its center, a red rectangular area, a white rectangular area with a red five-pointed star at its center, and a blue rectangular area — in the upper hoist side, upper fly side, lower fly side and lower hoist side respectively." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/pa.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/pa.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 8.97, + -79.53 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Argentina", + "official": "Argentine Republic", + "nativeName": { + "grn": { + "official": "Argentine Republic", + "common": "Argentina" + }, + "spa": { + "official": "República Argentina", + "common": "Argentina" + } + } + }, + "tld": [ + ".ar" + ], + "cca2": "AR", + "ccn3": "032", + "cioc": "ARG", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "ARS": { + "symbol": "$", + "name": "Argentine peso" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "4" + ] + }, + "capital": [ + "Buenos Aires" + ], + "altSpellings": [ + "AR", + "Argentine Republic", + "República Argentina" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "grn": "Guaraní", + "spa": "Spanish" + }, + "latlng": [ + -34.0, + -64.0 + ], + "landlocked": false, + "borders": [ + "BOL", + "BRA", + "CHL", + "PRY", + "URY" + ], + "area": 2780400.0, + "demonyms": { + "eng": { + "f": "Argentine", + "m": "Argentine" + }, + "fra": { + "f": "Argentine", + "m": "Argentin" + } + }, + "cca3": "ARG", + "translations": { + "ara": { + "official": "جمهورية الأرجنتين", + "common": "الأرجنتين" + }, + "bre": { + "official": "Republik Arc'hantina", + "common": "Arc'hantina" + }, + "ces": { + "official": "Argentinská republika", + "common": "Argentina" + }, + "cym": { + "official": "Gweriniaeth yr Ariannin", + "common": "Ariannin" + }, + "deu": { + "official": "Argentinische Republik", + "common": "Argentinien" + }, + "est": { + "official": "Argentina Vabariik", + "common": "Argentina" + }, + "fin": { + "official": "Argentiinan tasavalta", + "common": "Argentiina" + }, + "fra": { + "official": "République argentine", + "common": "Argentine" + }, + "hrv": { + "official": "Argentinski Republika", + "common": "Argentina" + }, + "hun": { + "official": "Argentin Köztársaság", + "common": "Argentína" + }, + "ind": { + "official": "Republik Argentina", + "common": "Argentina" + }, + "ita": { + "official": "Repubblica Argentina", + "common": "Argentina" + }, + "jpn": { + "official": "アルゼンチン共和国", + "common": "アルゼンチン" + }, + "kor": { + "official": "아르헨티나 공화국", + "common": "아르헨티나" + }, + "nld": { + "official": "Argentijnse Republiek", + "common": "Argentinië" + }, + "per": { + "official": "جمهوری آرژانتین", + "common": "آرژانتین" + }, + "pol": { + "official": "Republika Argentyńska", + "common": "Argentyna" + }, + "por": { + "official": "República Argentina", + "common": "Argentina" + }, + "rus": { + "official": "Аргентинская Республика", + "common": "Аргентина" + }, + "slk": { + "official": "Argentínska republika", + "common": "Argentína" + }, + "spa": { + "official": "República Argentina", + "common": "Argentina" + }, + "srp": { + "official": "Аргентинска Република", + "common": "Аргентина" + }, + "swe": { + "official": "Republiken Argentina", + "common": "Argentina" + }, + "tur": { + "official": "Arjantin Cumhuriyeti", + "common": "Arjantin" + }, + "urd": { + "official": "جمہوریہ ارجنٹائن", + "common": "ارجنٹائن" + }, + "zho": { + "official": "阿根廷共和国", + "common": "阿根廷" + } + }, + "flag": "🇦🇷", + "maps": { + "googleMaps": "https://goo.gl/maps/Z9DXNxhf2o93kvyc6", + "openStreetMaps": "https://www.openstreetmap.org/relation/286393" + }, + "population": 46735004, + "gini": { + "2019": 42.9 + }, + "fifa": "ARG", + "car": { + "signs": [ + "RA" + ], + "side": "right" + }, + "timezones": [ + "UTC-03:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/ar.png", + "svg": "https://flagcdn.com/ar.svg", + "alt": "The flag of Argentina features three equal horizontal bands of light blue, white and light blue. A brown-edged golden sun is centered in the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ar.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ar.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + -34.58, + -58.67 + ] + }, + "postalCode": { + "format": "@####@@@", + "regex": "^([A-Z]\\d{4}[A-Z]{3})$" + } + }, + { + "name": { + "common": "Nicaragua", + "official": "Republic of Nicaragua", + "nativeName": { + "spa": { + "official": "República de Nicaragua", + "common": "Nicaragua" + } + } + }, + "tld": [ + ".ni" + ], + "cca2": "NI", + "ccn3": "558", + "cioc": "NCA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "NIO": { + "symbol": "C$", + "name": "Nicaraguan córdoba" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "05" + ] + }, + "capital": [ + "Managua" + ], + "altSpellings": [ + "NI", + "Republic of Nicaragua", + "República de Nicaragua" + ], + "region": "Americas", + "subregion": "Central America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 13.0, + -85.0 + ], + "landlocked": false, + "borders": [ + "CRI", + "HND" + ], + "area": 130373.0, + "demonyms": { + "eng": { + "f": "Nicaraguan", + "m": "Nicaraguan" + }, + "fra": { + "f": "Nicaraguayenne", + "m": "Nicaraguayen" + } + }, + "cca3": "NIC", + "translations": { + "ara": { + "official": "جمهورية نيكاراغوا", + "common": "نيكاراغوا" + }, + "bre": { + "official": "Republik Nicaragua", + "common": "Nicaragua" + }, + "ces": { + "official": "Republika Nikaragua", + "common": "Nikaragua" + }, + "cym": { + "official": "Republic of Nicaragua", + "common": "Nicaragua" + }, + "deu": { + "official": "Republik Nicaragua", + "common": "Nicaragua" + }, + "est": { + "official": "Nicaragua Vabariik", + "common": "Nicaragua" + }, + "fin": { + "official": "Nicaraguan tasavalta", + "common": "Nicaragua" + }, + "fra": { + "official": "République du Nicaragua", + "common": "Nicaragua" + }, + "hrv": { + "official": "Republika Nikaragva", + "common": "Nikaragva" + }, + "hun": { + "official": "Nicaraguai Köztársaság", + "common": "Nicaragua" + }, + "ind": { + "official": "Republik Nikaragua", + "common": "Nikaragua" + }, + "ita": { + "official": "Repubblica del Nicaragua", + "common": "Nicaragua" + }, + "jpn": { + "official": "ニカラグア共和国", + "common": "ニカラグア" + }, + "kor": { + "official": "니카라과 공화국", + "common": "니카라과" + }, + "nld": { + "official": "Republiek Nicaragua", + "common": "Nicaragua" + }, + "per": { + "official": "جمهوری نیکاراگوئه", + "common": "نیکاراگوئه" + }, + "pol": { + "official": "Republika Nikaragui", + "common": "Nikaragua" + }, + "por": { + "official": "República da Nicarágua", + "common": "Nicarágua" + }, + "rus": { + "official": "Республика Никарагуа", + "common": "Никарагуа" + }, + "slk": { + "official": "Nikaragujská republika", + "common": "Nikaragua" + }, + "spa": { + "official": "República de Nicaragua", + "common": "Nicaragua" + }, + "srp": { + "official": "Република Никарагва", + "common": "Никарагва" + }, + "swe": { + "official": "Republiken Nicaragua", + "common": "Nicaragua" + }, + "tur": { + "official": "Nikaragua Cumhuriyeti", + "common": "Nikaragua" + }, + "urd": { + "official": "جمہوریہ نکاراگوا", + "common": "نکاراگوا" + }, + "zho": { + "official": "尼加拉瓜共和国", + "common": "尼加拉瓜" + } + }, + "flag": "🇳🇮", + "maps": { + "googleMaps": "https://goo.gl/maps/P77LaEVkKJKXneRC6", + "openStreetMaps": "https://www.openstreetmap.org/relation/287666" + }, + "population": 6803886, + "gini": { + "2014": 46.2 + }, + "fifa": "NCA", + "car": { + "signs": [ + "NIC" + ], + "side": "right" + }, + "timezones": [ + "UTC-06:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/ni.png", + "svg": "https://flagcdn.com/ni.svg", + "alt": "The flag of Nicaragua is composed of three equal horizontal bands of blue, white and blue, with the national coat of arms centered in the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ni.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ni.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 12.13, + -86.25 + ] + }, + "postalCode": { + "format": "###-###-#", + "regex": "^(\\d{7})$" + } + }, + { + "name": { + "common": "Colombia", + "official": "Republic of Colombia", + "nativeName": { + "spa": { + "official": "República de Colombia", + "common": "Colombia" + } + } + }, + "tld": [ + ".co" + ], + "cca2": "CO", + "ccn3": "170", + "cioc": "COL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "COP": { + "symbol": "$", + "name": "Colombian peso" + } + }, + "idd": { + "root": "+5", + "suffixes": [ + "7" + ] + }, + "capital": [ + "Bogotá" + ], + "altSpellings": [ + "CO", + "Republic of Colombia", + "República de Colombia" + ], + "region": "Americas", + "subregion": "South America", + "languages": { + "spa": "Spanish" + }, + "latlng": [ + 4.0, + -72.0 + ], + "landlocked": false, + "borders": [ + "BRA", + "ECU", + "PAN", + "PER", + "VEN" + ], + "area": 1141748.0, + "demonyms": { + "eng": { + "f": "Colombian", + "m": "Colombian" + }, + "fra": { + "f": "Colombienne", + "m": "Colombien" + } + }, + "cca3": "COL", + "translations": { + "ara": { + "official": "جمهورية كولومبيا", + "common": "كولومبيا" + }, + "bre": { + "official": "Republik Kolombia", + "common": "Kolombia" + }, + "ces": { + "official": "Kolumbijská republika", + "common": "Kolumbie" + }, + "cym": { + "official": "Gweriniaeth Colombia", + "common": "Colombia" + }, + "deu": { + "official": "Republik Kolumbien", + "common": "Kolumbien" + }, + "est": { + "official": "Colombia Vabariik", + "common": "Colombia" + }, + "fin": { + "official": "Kolumbian tasavalta", + "common": "Kolumbia" + }, + "fra": { + "official": "République de Colombie", + "common": "Colombie" + }, + "hrv": { + "official": "Republika Kolumbija", + "common": "Kolumbija" + }, + "hun": { + "official": "Kolumbiai Köztársaság", + "common": "Kolumbia" + }, + "ind": { + "official": "Republik Kolombia", + "common": "Kolombia" + }, + "ita": { + "official": "Repubblica di Colombia", + "common": "Colombia" + }, + "jpn": { + "official": "コロンビア共和国", + "common": "コロンビア" + }, + "kor": { + "official": "콜롬비아 공화국", + "common": "콜롬비아" + }, + "nld": { + "official": "Republiek Colombia", + "common": "Colombia" + }, + "per": { + "official": "جمهوری کلمبیا", + "common": "کلمبیا" + }, + "pol": { + "official": "Republika Kolumbii", + "common": "Kolumbia" + }, + "por": { + "official": "República da Colômbia", + "common": "Colômbia" + }, + "rus": { + "official": "Республика Колумбия", + "common": "Колумбия" + }, + "slk": { + "official": "Kolumbijská republika", + "common": "Kolumbia" + }, + "spa": { + "official": "República de Colombia", + "common": "Colombia" + }, + "srp": { + "official": "Република Колумбија", + "common": "Колумбија" + }, + "swe": { + "official": "Republiken Colombia", + "common": "Colombia" + }, + "tur": { + "official": "Kolombiya Cumhuriyeti", + "common": "Kolombiya" + }, + "urd": { + "official": "جمہوریہ کولمبیا", + "common": "کولمبیا" + }, + "zho": { + "official": "哥伦比亚共和国", + "common": "哥伦比亚" + } + }, + "flag": "🇨🇴", + "maps": { + "googleMaps": "https://goo.gl/maps/zix9qNFX69E9yZ2M6", + "openStreetMaps": "https://www.openstreetmap.org/relation/120027" + }, + "population": 53057212, + "gini": { + "2019": 51.3 + }, + "fifa": "COL", + "car": { + "signs": [ + "CO" + ], + "side": "right" + }, + "timezones": [ + "UTC-05:00" + ], + "continents": [ + "South America" + ], + "flags": { + "png": "https://flagcdn.com/w320/co.png", + "svg": "https://flagcdn.com/co.svg", + "alt": "The flag of Colombia is composed of three horizontal bands of yellow, blue and red, with the yellow band twice the height of the other two bands." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/co.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/co.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 4.71, + -74.07 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Guam", + "official": "Guam", + "nativeName": { + "cha": { + "official": "Guåhån", + "common": "Guåhån" + }, + "eng": { + "official": "Guam", + "common": "Guam" + }, + "spa": { + "official": "Guam", + "common": "Guam" + } + } + }, + "tld": [ + ".gu" + ], + "cca2": "GU", + "ccn3": "316", + "cioc": "GUM", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+1", + "suffixes": [ + "671" + ] + }, + "capital": [ + "Hagåtña" + ], + "altSpellings": [ + "GU", + "Guåhån" + ], + "region": "Oceania", + "subregion": "Micronesia", + "languages": { + "cha": "Chamorro", + "eng": "English", + "spa": "Spanish" + }, + "latlng": [ + 13.46666666, + 144.78333333 + ], + "landlocked": false, + "area": 549.0, + "demonyms": { + "eng": { + "f": "Guamanian", + "m": "Guamanian" + }, + "fra": { + "f": "", + "m": "" + } + }, + "cca3": "GUM", + "translations": { + "ara": { + "official": "غوام", + "common": "غوام" + }, + "bre": { + "official": "Guam", + "common": "Guam" + }, + "ces": { + "official": "Guam", + "common": "Guam" + }, + "cym": { + "official": "Guam", + "common": "Guam" + }, + "deu": { + "official": "Guam", + "common": "Guam" + }, + "est": { + "official": "Guami ala", + "common": "Guam" + }, + "fin": { + "official": "Guam", + "common": "Guam" + }, + "fra": { + "official": "Guam", + "common": "Guam" + }, + "hrv": { + "official": "Guam", + "common": "Guam" + }, + "hun": { + "official": "Guam", + "common": "Guam" + }, + "ind": { + "official": "Guam", + "common": "Guam" + }, + "ita": { + "official": "Guam", + "common": "Guam" + }, + "jpn": { + "official": "グアム", + "common": "グアム" + }, + "kor": { + "official": "괌", + "common": "괌" + }, + "nld": { + "official": "Guam", + "common": "Guam" + }, + "per": { + "official": "گوآم", + "common": "گوآم" + }, + "pol": { + "official": "Terytorium Guamu", + "common": "Guam" + }, + "por": { + "official": "Guam", + "common": "Guam" + }, + "rus": { + "official": "Гуам", + "common": "Гуам" + }, + "slk": { + "official": "Guam", + "common": "Guam" + }, + "spa": { + "official": "Guam", + "common": "Guam" + }, + "srp": { + "official": "Гуам", + "common": "Гуам" + }, + "swe": { + "official": "Guam", + "common": "Guam" + }, + "tur": { + "official": "Guam Toprağı", + "common": "Guam" + }, + "urd": { + "official": "گوام", + "common": "گوام" + }, + "zho": { + "official": "关岛", + "common": "关岛" + } + }, + "flag": "🇬🇺", + "maps": { + "googleMaps": "https://goo.gl/maps/Xfnq2i279b18cH3C9", + "openStreetMaps": "https://www.openstreetmap.org/relation/306001" + }, + "population": 153836, + "fifa": "GUM", + "car": { + "signs": [ + "USA" + ], + "side": "right" + }, + "timezones": [ + "UTC+10:00" + ], + "continents": [ + "Oceania" + ], + "flags": { + "png": "https://flagcdn.com/w320/gu.png", + "svg": "https://flagcdn.com/gu.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gu.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gu.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 13.48, + 144.75 + ] + }, + "postalCode": { + "format": "969##", + "regex": "^(969\\d{2})$" + } + }, + { + "name": { + "common": "Equatorial Guinea", + "official": "Republic of Equatorial Guinea", + "nativeName": { + "fra": { + "official": "République de la Guinée Équatoriale", + "common": "Guinée équatoriale" + }, + "por": { + "official": "República da Guiné Equatorial", + "common": "Guiné Equatorial" + }, + "spa": { + "official": "República de Guinea Ecuatorial", + "common": "Guinea Ecuatorial" + } + } + }, + "tld": [ + ".gq" + ], + "cca2": "GQ", + "ccn3": "226", + "cioc": "GEQ", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "XAF": { + "symbol": "Fr", + "name": "Central African CFA franc" + } + }, + "idd": { + "root": "+2", + "suffixes": [ + "40" + ] + }, + "capital": [ + "Malabo" + ], + "altSpellings": [ + "GQ", + "Republic of Equatorial Guinea", + "República de Guinea Ecuatorial", + "République de Guinée équatoriale", + "República da Guiné Equatorial" + ], + "region": "Africa", + "subregion": "Middle Africa", + "languages": { + "fra": "French", + "por": "Portuguese", + "spa": "Spanish" + }, + "latlng": [ + 2.0, + 10.0 + ], + "landlocked": false, + "borders": [ + "CMR", + "GAB" + ], + "area": 28051.0, + "demonyms": { + "eng": { + "f": "Equatorial Guinean", + "m": "Equatorial Guinean" + }, + "fra": { + "f": "Équato-guinéenne", + "m": "Équato-guinéen" + } + }, + "cca3": "GNQ", + "translations": { + "ara": { + "official": "جمهورية غينيا الاستوائية", + "common": "غينيا الاستوائية" + }, + "bre": { + "official": "Republik Ginea ar C'heheder", + "common": "Ginea ar C'heheder" + }, + "ces": { + "official": "Republika Rovníková Guinea", + "common": "Rovníková Guinea" + }, + "cym": { + "official": "Gweriniaeth Gini Gyhydeddol", + "common": "Gini Gyhydeddol" + }, + "deu": { + "official": "Republik Äquatorialguinea", + "common": "Äquatorialguinea" + }, + "est": { + "official": "Ekvatoriaal-Guinea Vabariik", + "common": "Ekvatoriaal-Guinea" + }, + "fin": { + "official": "Päiväntasaajan Guinean tasavalta", + "common": "Päiväntasaajan Guinea" + }, + "fra": { + "official": "République de Guinée équatoriale", + "common": "Guinée équatoriale" + }, + "hrv": { + "official": "Republika Ekvatorska Gvineja", + "common": "Ekvatorijalna Gvineja" + }, + "hun": { + "official": "Egyenlítői-Guinea-i Köztársaság", + "common": "Egyenlítői-Guinea" + }, + "ind": { + "official": "Republik Guinea Khatulistiwa", + "common": "Guinea Khatulistiwa" + }, + "ita": { + "official": "Repubblica della Guinea Equatoriale", + "common": "Guinea Equatoriale" + }, + "jpn": { + "official": "赤道ギニア共和国", + "common": "赤道ギニア" + }, + "kor": { + "official": "적도 기니 공화국", + "common": "적도 기니" + }, + "nld": { + "official": "Republiek Equatoriaal-Guinea", + "common": "Equatoriaal-Guinea" + }, + "per": { + "official": "جمهوری گینه استوایی", + "common": "گینه استوایی" + }, + "pol": { + "official": "Republika Gwinei Równikowej", + "common": "Gwinea Równikowa" + }, + "por": { + "official": "República da Guiné Equatorial", + "common": "Guiné Equatorial" + }, + "rus": { + "official": "Республика Экваториальная Гвинея", + "common": "Экваториальная Гвинея" + }, + "slk": { + "official": "Republika rovníkovej Guiney", + "common": "Rovníková Guinea" + }, + "spa": { + "official": "República de Guinea Ecuatorial", + "common": "Guinea Ecuatorial" + }, + "srp": { + "official": "Република Екваторијална Гвинеја", + "common": "Екваторијална Гвинеја" + }, + "swe": { + "official": "Republiken Ekvatorialguinea", + "common": "Ekvatorialguinea" + }, + "tur": { + "official": "Ekvator Ginesi Cumhuriyeti", + "common": "Ekvator Ginesi" + }, + "urd": { + "official": "جمہوریہ استوائی گنی", + "common": "استوائی گنی" + }, + "zho": { + "official": "赤道几内亚共和国", + "common": "赤道几内亚" + } + }, + "flag": "🇬🇶", + "maps": { + "googleMaps": "https://goo.gl/maps/ucWfFd8aW1FbGMva9", + "openStreetMaps": "https://www.openstreetmap.org/relation/192791" + }, + "population": 1668768, + "fifa": "EQG", + "car": { + "signs": [ + "GQ" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Africa" + ], + "flags": { + "png": "https://flagcdn.com/w320/gq.png", + "svg": "https://flagcdn.com/gq.svg", + "alt": "The flag of Equatorial Guinea is composed of three equal horizontal bands of green, white and red with the national coat of arms centered in the white band and an isosceles triangle superimposed on the hoist side of the field. The triangle is light blue, has its base on the hoist end and spans about one-fifth the width of the field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gq.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gq.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 3.75, + 8.78 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Spain", + "official": "Kingdom of Spain", + "nativeName": { + "spa": { + "official": "Reino de España", + "common": "España" + } + } + }, + "tld": [ + ".es" + ], + "cca2": "ES", + "ccn3": "724", + "cioc": "ESP", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "4" + ] + }, + "capital": [ + "Madrid" + ], + "altSpellings": [ + "ES", + "Kingdom of Spain", + "Reino de España" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "spa": "Spanish", + "cat": "Catalan", + "eus": "Basque", + "glc": "Galician" + }, + "latlng": [ + 40.0, + -4.0 + ], + "landlocked": false, + "borders": [ + "AND", + "FRA", + "GIB", + "PRT", + "MAR" + ], + "area": 505992.0, + "demonyms": { + "eng": { + "f": "Spanish", + "m": "Spanish" + }, + "fra": { + "f": "Espagnole", + "m": "Espagnol" + } + }, + "cca3": "ESP", + "translations": { + "ara": { + "official": "مملكة إسبانيا", + "common": "إسبانيا" + }, + "bre": { + "official": "Rouantelezh Spagn", + "common": "Spagn" + }, + "ces": { + "official": "Španělské království", + "common": "Španělsko" + }, + "cym": { + "official": "Kingdom of Spain", + "common": "Spain" + }, + "deu": { + "official": "Königreich Spanien", + "common": "Spanien" + }, + "est": { + "official": "Hispaania Kuningriik", + "common": "Hispaania" + }, + "fin": { + "official": "Espanjan kuningaskunta", + "common": "Espanja" + }, + "fra": { + "official": "Royaume d'Espagne", + "common": "Espagne" + }, + "hrv": { + "official": "Kraljevina Španjolska", + "common": "Španjolska" + }, + "hun": { + "official": "Spanyol Királyság", + "common": "Spanyolország" + }, + "ind": { + "official": "Kerajaan Spanyol", + "common": "Spanyol" + }, + "ita": { + "official": "Regno di Spagna", + "common": "Spagna" + }, + "jpn": { + "official": "スペイン王国", + "common": "スペイン" + }, + "kor": { + "official": "에스파냐 왕국", + "common": "스페인" + }, + "nld": { + "official": "Koninkrijk Spanje", + "common": "Spanje" + }, + "per": { + "official": "پادشاهی اسپانیا", + "common": "اسپانیا" + }, + "pol": { + "official": "Królestwo Hiszpanii ", + "common": "Hiszpania" + }, + "por": { + "official": "Reino de Espanha", + "common": "Espanha" + }, + "rus": { + "official": "Королевство Испания", + "common": "Испания" + }, + "slk": { + "official": "Španielske kráľovstvo", + "common": "Španielsko" + }, + "spa": { + "official": "Reino de España", + "common": "España" + }, + "srp": { + "official": "Краљевина Шпанија", + "common": "Шпанија" + }, + "swe": { + "official": "Konungariket Spanien", + "common": "Spanien" + }, + "tur": { + "official": "İspanya Krallığı", + "common": "İspanya" + }, + "urd": { + "official": "مملکتِ ہسپانیہ", + "common": "ہسپانیہ" + }, + "zho": { + "official": "西班牙王国", + "common": "西班牙" + } + }, + "flag": "🇪🇸", + "maps": { + "googleMaps": "https://goo.gl/maps/138JaXW8EZzRVitY9", + "openStreetMaps": "https://www.openstreetmap.org/relation/1311341" + }, + "population": 49315949, + "gini": { + "2018": 34.7 + }, + "fifa": "ESP", + "car": { + "signs": [ + "E" + ], + "side": "right" + }, + "timezones": [ + "UTC", + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/es.png", + "svg": "https://flagcdn.com/es.svg", + "alt": "The flag of Spain is composed of three horizontal bands of red, yellow and red, with the yellow band twice the height of the red bands. In the yellow band is the national coat of arms offset slightly towards the hoist side of center." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/es.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/es.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 40.4, + -3.68 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + } +] \ No newline at end of file diff --git a/public_apis/countries_language_spanish.metadata.json b/public_apis/countries_language_spanish.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..3653f954e70c53fdd09f51a74fdcca917c0a80df --- /dev/null +++ b/public_apis/countries_language_spanish.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_countries_language_spanish", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:39.230663", + "size_bytes": 122723, + "description": "Spanish-speaking countries", + "url": "https://restcountries.com/v3.1/lang/spanish" +} \ No newline at end of file diff --git a/public_apis/countries_region_europe.json b/public_apis/countries_region_europe.json new file mode 100644 index 0000000000000000000000000000000000000000..a747d9d3b85afc50a2c6eea592917b1abea36a6e --- /dev/null +++ b/public_apis/countries_region_europe.json @@ -0,0 +1,11607 @@ +[ + { + "name": { + "common": "Serbia", + "official": "Republic of Serbia", + "nativeName": { + "srp": { + "official": "Република Србија", + "common": "Србија" + } + } + }, + "tld": [ + ".rs", + ".срб" + ], + "cca2": "RS", + "ccn3": "688", + "cioc": "SRB", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "RSD": { + "symbol": "дин.", + "name": "Serbian dinar" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "81" + ] + }, + "capital": [ + "Belgrade" + ], + "altSpellings": [ + "RS", + "Srbija", + "Republic of Serbia", + "Република Србија", + "Republika Srbija" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "srp": "Serbian" + }, + "latlng": [ + 44.0, + 21.0 + ], + "landlocked": true, + "borders": [ + "BIH", + "BGR", + "HRV", + "HUN", + "UNK", + "MKD", + "MNE", + "ROU" + ], + "area": 77589.0, + "demonyms": { + "eng": { + "f": "Serbian", + "m": "Serbian" + }, + "fra": { + "f": "Serbe", + "m": "Serbe" + } + }, + "cca3": "SRB", + "translations": { + "ara": { + "official": "جمهورية صيربيا", + "common": "صيربيا" + }, + "bre": { + "official": "Republik Serbia", + "common": "Serbia" + }, + "ces": { + "official": "Srbská republika", + "common": "Srbsko" + }, + "cym": { + "official": "Republic of Serbia", + "common": "Serbia" + }, + "deu": { + "official": "Republik Serbien", + "common": "Serbien" + }, + "est": { + "official": "Serbia Vabariik", + "common": "Serbia" + }, + "fin": { + "official": "Serbian tasavalta", + "common": "Serbia" + }, + "fra": { + "official": "République de Serbie", + "common": "Serbie" + }, + "hrv": { + "official": "Republika Srbija", + "common": "Srbija" + }, + "hun": { + "official": "Szerb Köztársaság", + "common": "Szerbia" + }, + "ind": { + "official": "Republik Serbia", + "common": "Serbia" + }, + "ita": { + "official": "Repubblica di Serbia", + "common": "Serbia" + }, + "jpn": { + "official": "セルビア共和国", + "common": "セルビア" + }, + "kor": { + "official": "세르비아 공화국", + "common": "세르비아" + }, + "nld": { + "official": "Republiek Servië", + "common": "Servië" + }, + "per": { + "official": "جمهوری صربستان", + "common": "صربستان" + }, + "pol": { + "official": "Republika Serbii", + "common": "Serbia" + }, + "por": { + "official": "República da Sérvia", + "common": "Sérvia" + }, + "rus": { + "official": "Республика Сербия", + "common": "Сербия" + }, + "slk": { + "official": "Srbská republika", + "common": "Srbsko" + }, + "spa": { + "official": "República de Serbia", + "common": "Serbia" + }, + "srp": { + "official": "Република Србија", + "common": "Србија" + }, + "swe": { + "official": "Republiken Serbien", + "common": "Serbien" + }, + "tur": { + "official": "Sırbistan Cumhuriyeti", + "common": "Sırbistan" + }, + "urd": { + "official": "جمہوریہ سربیا", + "common": "سربیا" + }, + "zho": { + "official": "塞尔维亚共和国", + "common": "塞尔维亚" + } + }, + "flag": "🇷🇸", + "maps": { + "googleMaps": "https://goo.gl/maps/2Aqof7aV2Naq8YEK8", + "openStreetMaps": "https://www.openstreetmap.org/relation/1741311" + }, + "population": 6567783, + "gini": { + "2017": 36.2 + }, + "fifa": "SRB", + "car": { + "signs": [ + "SRB" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/rs.png", + "svg": "https://flagcdn.com/rs.svg", + "alt": "The flag of Serbia is composed of three equal horizontal bands of red, blue and white. The coat of arms of Serbia is superimposed at the center of the field slightly towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/rs.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/rs.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 44.83, + 20.5 + ] + }, + "postalCode": { + "format": "######", + "regex": "^(\\d{6})$" + } + }, + { + "name": { + "common": "Slovakia", + "official": "Slovak Republic", + "nativeName": { + "slk": { + "official": "Slovenská republika", + "common": "Slovensko" + } + } + }, + "tld": [ + ".sk" + ], + "cca2": "SK", + "ccn3": "703", + "cioc": "SVK", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "21" + ] + }, + "capital": [ + "Bratislava" + ], + "altSpellings": [ + "SK", + "Slovak Republic", + "Slovenská republika" + ], + "region": "Europe", + "subregion": "Central Europe", + "languages": { + "slk": "Slovak" + }, + "latlng": [ + 48.66666666, + 19.5 + ], + "landlocked": true, + "borders": [ + "AUT", + "CZE", + "HUN", + "POL", + "UKR" + ], + "area": 49037.0, + "demonyms": { + "eng": { + "f": "Slovak", + "m": "Slovak" + }, + "fra": { + "f": "Slovaque", + "m": "Slovaque" + } + }, + "cca3": "SVK", + "translations": { + "ara": { + "official": "جمهورية سلوفاكيا", + "common": "سلوفاكيا" + }, + "bre": { + "official": "Republik Slovak", + "common": "Slovakia" + }, + "ces": { + "official": "Slovenská republika", + "common": "Slovensko" + }, + "cym": { + "official": "Slovak Republic", + "common": "Slovakia" + }, + "deu": { + "official": "Slowakische Republik", + "common": "Slowakei" + }, + "est": { + "official": "Slovaki Vabariik", + "common": "Slovakkia" + }, + "fin": { + "official": "Slovakian tasavalta", + "common": "Slovakia" + }, + "fra": { + "official": "République slovaque", + "common": "Slovaquie" + }, + "hrv": { + "official": "slovačka", + "common": "Slovačka" + }, + "hun": { + "official": "Szlovák Köztársaság", + "common": "Szlovákia" + }, + "ind": { + "official": "Republik Slowakia", + "common": "Slowakia" + }, + "ita": { + "official": "Repubblica slovacca", + "common": "Slovacchia" + }, + "jpn": { + "official": "スロバキア共和国", + "common": "スロバキア" + }, + "kor": { + "official": "슬로바키아 공화국", + "common": "슬로바키아" + }, + "nld": { + "official": "Slowaakse Republiek", + "common": "Slowakije" + }, + "per": { + "official": "جمهوری اسلواکی", + "common": "اِسلُواکی" + }, + "pol": { + "official": "Republika Słowacka", + "common": "Słowacja" + }, + "por": { + "official": "República Eslovaca", + "common": "Eslováquia" + }, + "rus": { + "official": "Словацкая Республика", + "common": "Словакия" + }, + "slk": { + "official": "Slovenská republika", + "common": "Slovensko" + }, + "spa": { + "official": "República Eslovaca", + "common": "República Eslovaca" + }, + "srp": { + "official": "Словачка Република", + "common": "Словачка" + }, + "swe": { + "official": "Republiken Slovakien", + "common": "Slovakien" + }, + "tur": { + "official": "Slovak Cumhuriyeti", + "common": "Slovakya" + }, + "urd": { + "official": "جمہوریہ سلوواکیہ", + "common": "سلوواکیہ" + }, + "zho": { + "official": "斯洛伐克共和国", + "common": "斯洛伐克" + } + }, + "flag": "🇸🇰", + "maps": { + "googleMaps": "https://goo.gl/maps/uNSH2wW4bLoZVYJj7", + "openStreetMaps": "https://www.openstreetmap.org/relation/14296" + }, + "population": 5413813, + "gini": { + "2018": 25.0 + }, + "fifa": "SVK", + "car": { + "signs": [ + "SK" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/sk.png", + "svg": "https://flagcdn.com/sk.svg", + "alt": "The flag of Slovakia is composed of three equal horizontal bands of white, blue and red. The coat of arms of Slovakia is superimposed at the center of the field slightly towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/sk.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/sk.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 48.15, + 17.12 + ] + }, + "postalCode": { + "format": "### ##", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Estonia", + "official": "Republic of Estonia", + "nativeName": { + "est": { + "official": "Eesti Vabariik", + "common": "Eesti" + } + } + }, + "tld": [ + ".ee" + ], + "cca2": "EE", + "ccn3": "233", + "cioc": "EST", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "72" + ] + }, + "capital": [ + "Tallinn" + ], + "altSpellings": [ + "EE", + "Eesti", + "Republic of Estonia", + "Eesti Vabariik" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "est": "Estonian" + }, + "latlng": [ + 59.0, + 26.0 + ], + "landlocked": false, + "borders": [ + "LVA", + "RUS" + ], + "area": 45227.0, + "demonyms": { + "eng": { + "f": "Estonian", + "m": "Estonian" + }, + "fra": { + "f": "Estonienne", + "m": "Estonien" + } + }, + "cca3": "EST", + "translations": { + "ara": { + "official": "جمهورية إستونيا", + "common": "إستونيا" + }, + "bre": { + "official": "Republik Estonia", + "common": "Estonia" + }, + "ces": { + "official": "Estonská republika", + "common": "Estonsko" + }, + "cym": { + "official": "Gweriniaeth Estonia", + "common": "Estonia" + }, + "deu": { + "official": "Republik Estland", + "common": "Estland" + }, + "est": { + "official": "Eesti Vabariik", + "common": "Eesti" + }, + "fin": { + "official": "Viron tasavalta", + "common": "Viro" + }, + "fra": { + "official": "République d'Estonie", + "common": "Estonie" + }, + "hrv": { + "official": "Republika Estonija", + "common": "Estonija" + }, + "hun": { + "official": "Észt Köztársaság", + "common": "Észtország" + }, + "ind": { + "official": "Republik Estonia", + "common": "Estonia" + }, + "ita": { + "official": "Repubblica di Estonia", + "common": "Estonia" + }, + "jpn": { + "official": "エストニア共和国", + "common": "エストニア" + }, + "kor": { + "official": "에스토니아 공화국", + "common": "에스토니아" + }, + "nld": { + "official": "Republiek Estland", + "common": "Estland" + }, + "per": { + "official": "جمهوری استونی", + "common": "اِستونی" + }, + "pol": { + "official": "Republika Estońska", + "common": "Estonia" + }, + "por": { + "official": "República da Estónia", + "common": "Estónia" + }, + "rus": { + "official": "Эстонская Республика", + "common": "Эстония" + }, + "slk": { + "official": "Estónska republika", + "common": "Estónsko" + }, + "spa": { + "official": "República de Estonia", + "common": "Estonia" + }, + "srp": { + "official": "Естонска Република", + "common": "Естонија" + }, + "swe": { + "official": "Republiken Estland", + "common": "Estland" + }, + "tur": { + "official": "Estonya Cumhuriyeti", + "common": "Estonya" + }, + "urd": { + "official": "جمہوریہ اسٹونیا", + "common": "اسٹونیا" + }, + "zho": { + "official": "爱沙尼亚共和国", + "common": "爱沙尼亚" + } + }, + "flag": "🇪🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/6SsynwGUodL1sDvq8", + "openStreetMaps": "https://www.openstreetmap.org/relation/79510" + }, + "population": 1369995, + "gini": { + "2018": 30.3 + }, + "fifa": "EST", + "car": { + "signs": [ + "EST" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ee.png", + "svg": "https://flagcdn.com/ee.svg", + "alt": "The flag of Estonia is composed of three equal horizontal bands of blue, black and white." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ee.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ee.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 59.43, + 24.72 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Gibraltar", + "official": "Gibraltar", + "nativeName": { + "eng": { + "official": "Gibraltar", + "common": "Gibraltar" + } + } + }, + "tld": [ + ".gi" + ], + "cca2": "GI", + "ccn3": "292", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "GIP": { + "symbol": "£", + "name": "Gibraltar pound" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "50" + ] + }, + "capital": [ + "Gibraltar" + ], + "altSpellings": [ + "GI" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "eng": "English" + }, + "latlng": [ + 36.13333333, + -5.35 + ], + "landlocked": false, + "borders": [ + "ESP" + ], + "area": 6.0, + "demonyms": { + "eng": { + "f": "Gibraltar", + "m": "Gibraltar" + }, + "fra": { + "f": "Gibraltarienne", + "m": "Gibraltarien" + } + }, + "cca3": "GIB", + "translations": { + "ara": { + "official": "جبل طارق", + "common": "جبل طارق" + }, + "bre": { + "official": "Jibraltar", + "common": "Jibraltar" + }, + "ces": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "cym": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "deu": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "est": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "fin": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "fra": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "hrv": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "hun": { + "official": "Gibraltár", + "common": "Gibraltár" + }, + "ind": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "ita": { + "official": "Gibilterra", + "common": "Gibilterra" + }, + "jpn": { + "official": "ジブラルタル", + "common": "ジブラルタル" + }, + "kor": { + "official": "지브롤터", + "common": "지브롤터" + }, + "nld": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "per": { + "official": "جبل طارق", + "common": "جبل طارق" + }, + "pol": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "por": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "rus": { + "official": "Гибралтар", + "common": "Гибралтар" + }, + "slk": { + "official": "Gibraltár", + "common": "Gibraltár" + }, + "spa": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "srp": { + "official": "Гибралтар", + "common": "Гибралтар" + }, + "swe": { + "official": "Gibraltar", + "common": "Gibraltar" + }, + "tur": { + "official": "Cebelitarık", + "common": "Cebelitarık" + }, + "urd": { + "official": "جبل الطارق", + "common": "جبل الطارق" + }, + "zho": { + "official": "直布罗陀", + "common": "直布罗陀" + } + }, + "flag": "🇬🇮", + "maps": { + "googleMaps": "https://goo.gl/maps/CEoHAs1t6byCBhHFA", + "openStreetMaps": "https://www.openstreetmap.org/relation/1278736" + }, + "population": 38000, + "fifa": "GIB", + "car": { + "signs": [ + "GBZ" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/gi.png", + "svg": "https://flagcdn.com/gi.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gi.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gi.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 36.13, + -5.35 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Ireland", + "official": "Republic of Ireland", + "nativeName": { + "eng": { + "official": "Republic of Ireland", + "common": "Ireland" + }, + "gle": { + "official": "Poblacht na hÉireann", + "common": "Éire" + } + } + }, + "tld": [ + ".ie" + ], + "cca2": "IE", + "ccn3": "372", + "cioc": "IRL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "53" + ] + }, + "capital": [ + "Dublin" + ], + "altSpellings": [ + "IE", + "Éire", + "Republic of Ireland", + "Poblacht na hÉireann" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "eng": "English", + "gle": "Irish" + }, + "latlng": [ + 53.0, + -8.0 + ], + "landlocked": false, + "borders": [ + "GBR" + ], + "area": 70273.0, + "demonyms": { + "eng": { + "f": "Irish", + "m": "Irish" + }, + "fra": { + "f": "Irlandaise", + "m": "Irlandais" + } + }, + "cca3": "IRL", + "translations": { + "ara": { + "official": "جمهورية أيرلندا", + "common": "أيرلندا" + }, + "bre": { + "official": "Republik Iwerzhon", + "common": "Iwerzhon" + }, + "ces": { + "official": "Irsko", + "common": "Irsko" + }, + "cym": { + "official": "Republic of Ireland", + "common": "Ireland" + }, + "deu": { + "official": "Republik Irland", + "common": "Irland" + }, + "est": { + "official": "Iirimaa", + "common": "Iirimaa" + }, + "fin": { + "official": "Irlannin tasavalta", + "common": "Irlanti" + }, + "fra": { + "official": "République d'Irlande", + "common": "Irlande" + }, + "hrv": { + "official": "Republika Irska", + "common": "Irska" + }, + "hun": { + "official": "Ír Köztársaság", + "common": "Írország" + }, + "ind": { + "official": "Republik Irlandia", + "common": "Irlandia" + }, + "ita": { + "official": "Repubblica d'Irlanda", + "common": "Irlanda" + }, + "jpn": { + "official": "アイルランド共和国", + "common": "アイルランド" + }, + "kor": { + "official": "아일랜드 공화국", + "common": "아일랜드" + }, + "nld": { + "official": "Republic of Ireland", + "common": "Ierland" + }, + "per": { + "official": "ایرلند", + "common": "ایرلند" + }, + "pol": { + "official": "Republika Irlandii", + "common": "Irlandia" + }, + "por": { + "official": "República da Irlanda", + "common": "Irlanda" + }, + "rus": { + "official": "Ирландия", + "common": "Ирландия" + }, + "slk": { + "official": "Írska republika", + "common": "Írsko" + }, + "spa": { + "official": "República de Irlanda", + "common": "Irlanda" + }, + "srp": { + "official": "Република Ирска", + "common": "Ирска" + }, + "swe": { + "official": "Irland", + "common": "Irland" + }, + "tur": { + "official": "İrlanda Cumhuriyeti", + "common": "İrlanda" + }, + "urd": { + "official": "جمہوریہ جزیرہ آئرلینڈ", + "common": "جزیرہ آئرلینڈ" + }, + "zho": { + "official": "爱尔兰共和国", + "common": "爱尔兰" + } + }, + "flag": "🇮🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/hxd1BKxgpchStzQC6", + "openStreetMaps": "https://www.openstreetmap.org/relation/62273" + }, + "population": 5458600, + "gini": { + "2017": 31.4 + }, + "fifa": "IRL", + "car": { + "signs": [ + "IRL" + ], + "side": "left" + }, + "timezones": [ + "UTC" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ie.png", + "svg": "https://flagcdn.com/ie.svg", + "alt": "The flag of Ireland is composed of three equal vertical bands of green, white and orange." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ie.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ie.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 53.32, + -6.23 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Belgium", + "official": "Kingdom of Belgium", + "nativeName": { + "deu": { + "official": "Königreich Belgien", + "common": "Belgien" + }, + "fra": { + "official": "Royaume de Belgique", + "common": "Belgique" + }, + "nld": { + "official": "Koninkrijk België", + "common": "België" + } + } + }, + "tld": [ + ".be" + ], + "cca2": "BE", + "ccn3": "056", + "cioc": "BEL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "2" + ] + }, + "capital": [ + "Brussels" + ], + "altSpellings": [ + "BE", + "België", + "Belgie", + "Belgien", + "Belgique", + "Kingdom of Belgium", + "Koninkrijk België", + "Royaume de Belgique", + "Königreich Belgien" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "deu": "German", + "fra": "French", + "nld": "Dutch" + }, + "latlng": [ + 50.83333333, + 4.0 + ], + "landlocked": false, + "borders": [ + "FRA", + "DEU", + "LUX", + "NLD" + ], + "area": 30528.0, + "demonyms": { + "eng": { + "f": "Belgian", + "m": "Belgian" + }, + "fra": { + "f": "Belge", + "m": "Belge" + } + }, + "cca3": "BEL", + "translations": { + "ara": { + "official": "مملكة بلجيكا", + "common": "بلجيكا" + }, + "bre": { + "official": "Rouantelezh Belgia", + "common": "Belgia" + }, + "ces": { + "official": "Belgické království", + "common": "Belgie" + }, + "cym": { + "official": "Teyrnas Gwlad Belg", + "common": "Gwlad Belg" + }, + "deu": { + "official": "Königreich Belgien", + "common": "Belgien" + }, + "est": { + "official": "Belgia Kuningriik", + "common": "Belgia" + }, + "fin": { + "official": "Belgian kuningaskunta", + "common": "Belgia" + }, + "fra": { + "official": "Royaume de Belgique", + "common": "Belgique" + }, + "hrv": { + "official": "Kraljevina Belgija", + "common": "Belgija" + }, + "hun": { + "official": "Belga Királyság", + "common": "Belgium" + }, + "ind": { + "official": "Kerajaan Belgia", + "common": "Belgia" + }, + "ita": { + "official": "Regno del Belgio", + "common": "Belgio" + }, + "jpn": { + "official": "ベルギー王国", + "common": "ベルギー" + }, + "kor": { + "official": "벨기에 왕국", + "common": "벨기에" + }, + "nld": { + "official": "Koninkrijk België", + "common": "België" + }, + "per": { + "official": "پادشاهی بلژیک", + "common": "بلژیک" + }, + "pol": { + "official": "Królestwo Belgii", + "common": "Belgia" + }, + "por": { + "official": "Reino da Bélgica", + "common": "Bélgica" + }, + "rus": { + "official": "Королевство Бельгия", + "common": "Бельгия" + }, + "slk": { + "official": "Belgické kráľovstvo", + "common": "Belgicko" + }, + "spa": { + "official": "Reino de Bélgica", + "common": "Bélgica" + }, + "srp": { + "official": "Краљевина Белгија", + "common": "Белгија" + }, + "swe": { + "official": "Konungariket Belgien", + "common": "Belgien" + }, + "tur": { + "official": "Belçika Krallığı", + "common": "Belçika" + }, + "urd": { + "official": "مملکتِ بلجئیم", + "common": "بلجئیم" + }, + "zho": { + "official": "比利时王国", + "common": "比利时" + } + }, + "flag": "🇧🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/UQQzat85TCtPRXAL8", + "openStreetMaps": "https://www.openstreetmap.org/relation/52411" + }, + "population": 11825551, + "gini": { + "2018": 27.2 + }, + "fifa": "BEL", + "car": { + "signs": [ + "B" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/be.png", + "svg": "https://flagcdn.com/be.svg", + "alt": "The flag of Belgium is composed of three equal vertical bands of black, yellow and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/be.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/be.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 50.83, + 4.33 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Kosovo", + "official": "Republic of Kosovo", + "nativeName": { + "sqi": { + "official": "Republika e Kosovës", + "common": "Kosova" + }, + "srp": { + "official": "Република Косово", + "common": "Косово" + } + } + }, + "cca2": "XK", + "cioc": "KOS", + "independent": true, + "status": "user-assigned", + "unMember": false, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "83" + ] + }, + "capital": [ + "Pristina" + ], + "altSpellings": [ + "XK", + "Република Косово" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "sqi": "Albanian", + "srp": "Serbian" + }, + "latlng": [ + 42.666667, + 21.166667 + ], + "landlocked": true, + "borders": [ + "ALB", + "MKD", + "MNE", + "SRB" + ], + "area": 10908.0, + "demonyms": { + "eng": { + "f": "Kosovar", + "m": "Kosovar" + }, + "fra": { + "f": "Kosovare", + "m": "Kosovar" + } + }, + "cca3": "UNK", + "translations": { + "ara": { + "official": "جمهورية كوسوفو", + "common": "كوسوفو" + }, + "bre": { + "official": "Republik Kosovo", + "common": "Kosovo" + }, + "ces": { + "official": "Kosovská republika", + "common": "Kosovo" + }, + "cym": { + "official": "Republic of Kosovo", + "common": "Kosovo" + }, + "deu": { + "official": "Republik Kosovo", + "common": "Kosovo" + }, + "est": { + "official": "Kosovo Vabariik", + "common": "Kosovo" + }, + "fin": { + "official": "Kosovon tasavalta", + "common": "Kosovo" + }, + "fra": { + "official": "République du Kosovo", + "common": "Kosovo" + }, + "hrv": { + "official": "Republika Kosovo", + "common": "Kosovo" + }, + "hun": { + "official": "Koszovó", + "common": "Koszovó" + }, + "ind": { + "official": "Republik Kosovo", + "common": "Kosovo" + }, + "ita": { + "official": "Repubblica del Kosovo", + "common": "Kosovo" + }, + "kor": { + "official": "코소보 공화국", + "common": "코소보" + }, + "nld": { + "official": "Republiek Kosovo", + "common": "Kosovo" + }, + "per": { + "official": "جمهوری کوزوو", + "common": "کوزوو" + }, + "pol": { + "official": "Republika Kosowa", + "common": "Kosowo" + }, + "por": { + "official": "República do Kosovo", + "common": "Kosovo" + }, + "rus": { + "official": "Республика Косово", + "common": "Республика Косово" + }, + "slk": { + "official": "Republika Kosovo", + "common": "Kosovo" + }, + "spa": { + "official": "República de Kosovo", + "common": "Kosovo" + }, + "srp": { + "official": "Република Косово", + "common": "Косово" + }, + "swe": { + "official": "Republiken Kosovo", + "common": "Kosovo" + }, + "tur": { + "official": "Kosova Cumhuriyeti", + "common": "Kosova" + }, + "urd": { + "official": "جمہوریہ کوسووہ", + "common": "کوسووہ" + }, + "zho": { + "official": "科索沃共和国", + "common": "科索沃" + } + }, + "flag": "🇽🇰", + "maps": { + "googleMaps": "https://goo.gl/maps/CSC4Yc8SWPgburuD9", + "openStreetMaps": "https://www.openstreetmap.org/relation/2088990" + }, + "population": 1585566, + "gini": { + "2017": 29.0 + }, + "fifa": "KVX", + "car": { + "signs": [ + "CS" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/xk.png", + "svg": "https://flagcdn.com/xk.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/xk.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/xk.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 42.67, + 21.17 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Ukraine", + "official": "Ukraine", + "nativeName": { + "ukr": { + "official": "Україна", + "common": "Україна" + } + } + }, + "tld": [ + ".ua", + ".укр" + ], + "cca2": "UA", + "ccn3": "804", + "cioc": "UKR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "UAH": { + "symbol": "₴", + "name": "Ukrainian hryvnia" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "80" + ] + }, + "capital": [ + "Kyiv" + ], + "altSpellings": [ + "UA", + "Ukrayina" + ], + "region": "Europe", + "subregion": "Eastern Europe", + "languages": { + "ukr": "Ukrainian" + }, + "latlng": [ + 49.0, + 32.0 + ], + "landlocked": false, + "borders": [ + "BLR", + "HUN", + "MDA", + "POL", + "ROU", + "RUS", + "SVK" + ], + "area": 603550.0, + "demonyms": { + "eng": { + "f": "Ukrainian", + "m": "Ukrainian" + }, + "fra": { + "f": "Ukrainienne", + "m": "Ukrainien" + } + }, + "cca3": "UKR", + "translations": { + "ara": { + "official": "أوكرانيا", + "common": "أوكرانيا" + }, + "bre": { + "official": "Ukraina", + "common": "Ukraina" + }, + "ces": { + "official": "Ukrajina", + "common": "Ukrajina" + }, + "cym": { + "official": "Ukraine", + "common": "Ukraine" + }, + "deu": { + "official": "Ukraine", + "common": "Ukraine" + }, + "est": { + "official": "Ukraina", + "common": "Ukraina" + }, + "fin": { + "official": "Ukraina", + "common": "Ukraina" + }, + "fra": { + "official": "Ukraine", + "common": "Ukraine" + }, + "hrv": { + "official": "Ukrajina", + "common": "Ukrajina" + }, + "hun": { + "official": "Ukrajna", + "common": "Ukrajna" + }, + "ind": { + "official": "Ukraina", + "common": "Ukraina" + }, + "ita": { + "official": "Ucraina", + "common": "Ucraina" + }, + "jpn": { + "official": "ウクライナ", + "common": "ウクライナ" + }, + "kor": { + "official": "우크라이나", + "common": "우크라이나" + }, + "nld": { + "official": "Oekraïne", + "common": "Oekraïne" + }, + "per": { + "official": "اوکراین", + "common": "اوکراین" + }, + "pol": { + "official": "Ukraina", + "common": "Ukraina" + }, + "por": { + "official": "Ucrânia", + "common": "Ucrânia" + }, + "rus": { + "official": "Украина", + "common": "Украина" + }, + "slk": { + "official": "Ukrajina", + "common": "Ukrajina" + }, + "spa": { + "official": "Ucrania", + "common": "Ucrania" + }, + "srp": { + "official": "Украјина", + "common": "Украјина" + }, + "swe": { + "official": "Ukraina", + "common": "Ukraina" + }, + "tur": { + "official": "Ukrayna", + "common": "Ukrayna" + }, + "urd": { + "official": "یوکرین", + "common": "یوکرین" + }, + "zho": { + "official": "乌克兰", + "common": "乌克兰" + } + }, + "flag": "🇺🇦", + "maps": { + "googleMaps": "https://goo.gl/maps/DvgJMiPJ7aozKFZv7", + "openStreetMaps": "https://www.openstreetmap.org/relation/60199" + }, + "population": 32862000, + "gini": { + "2019": 26.6 + }, + "fifa": "UKR", + "car": { + "signs": [ + "UA" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ua.png", + "svg": "https://flagcdn.com/ua.svg", + "alt": "The flag of Ukraine is composed of two equal horizontal bands of blue and yellow." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ua.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ua.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 50.43, + 30.52 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Netherlands", + "official": "Kingdom of the Netherlands", + "nativeName": { + "nld": { + "official": "Koninkrijk der Nederlanden", + "common": "Nederland" + } + } + }, + "tld": [ + ".nl" + ], + "cca2": "NL", + "ccn3": "528", + "cioc": "NED", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "1" + ] + }, + "capital": [ + "Amsterdam" + ], + "altSpellings": [ + "NL", + "Holland", + "Nederland", + "The Netherlands" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "nld": "Dutch" + }, + "latlng": [ + 52.5, + 5.75 + ], + "landlocked": false, + "borders": [ + "BEL", + "DEU" + ], + "area": 41865.0, + "demonyms": { + "eng": { + "f": "Dutch", + "m": "Dutch" + }, + "fra": { + "f": "Néerlandaise", + "m": "Néerlandais" + } + }, + "cca3": "NLD", + "translations": { + "ara": { + "official": "مملكة هولندا", + "common": "هولندا" + }, + "bre": { + "official": "Rouantelezh an Izelvroioù", + "common": "Izelvroioù" + }, + "ces": { + "official": "Nizozemské království", + "common": "Nizozemsko" + }, + "cym": { + "official": "Kingdom of the Netherlands", + "common": "Netherlands" + }, + "deu": { + "official": "Niederlande", + "common": "Niederlande" + }, + "est": { + "official": "Madalmaade Kuningriik", + "common": "Holland" + }, + "fin": { + "official": "Alankomaat", + "common": "Alankomaat" + }, + "fra": { + "official": "Pays-Bas", + "common": "Pays-Bas" + }, + "hrv": { + "official": "Holandija", + "common": "Nizozemska" + }, + "hun": { + "official": "Holland Királyság", + "common": "Hollandia" + }, + "ind": { + "official": "Kerajaan Belanda", + "common": "Belanda" + }, + "ita": { + "official": "Paesi Bassi", + "common": "Paesi Bassi" + }, + "jpn": { + "official": "オランダ", + "common": "オランダ" + }, + "kor": { + "official": "네덜란드 왕국", + "common": "네덜란드" + }, + "nld": { + "official": "Nederland", + "common": "Nederland" + }, + "per": { + "official": "هلند", + "common": "هلند" + }, + "pol": { + "official": "Królestwo Niderlandów", + "common": "Holandia" + }, + "por": { + "official": "Holanda", + "common": "Holanda" + }, + "rus": { + "official": "Нидерланды", + "common": "Нидерланды" + }, + "slk": { + "official": "Holandské kráľovstvo", + "common": "Holansko" + }, + "spa": { + "official": "Países Bajos", + "common": "Países Bajos" + }, + "srp": { + "official": "Краљевина Холандија", + "common": "Холандија" + }, + "swe": { + "official": "Nederländerna", + "common": "Nederländerna" + }, + "tur": { + "official": "Hollanda", + "common": "Hollanda" + }, + "urd": { + "official": "مملکتِ نیدرلینڈز", + "common": "نیدرلینڈز" + }, + "zho": { + "official": "荷兰", + "common": "荷兰" + } + }, + "flag": "🇳🇱", + "maps": { + "googleMaps": "https://goo.gl/maps/Hv6zQswGhFxoVVBm6", + "openStreetMaps": "https://www.openstreetmap.org/relation/47796" + }, + "population": 18100436, + "gini": { + "2018": 28.1 + }, + "fifa": "NED", + "car": { + "signs": [ + "NL" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/nl.png", + "svg": "https://flagcdn.com/nl.svg", + "alt": "The flag of the Netherlands is composed of three equal horizontal bands of red, white and blue." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/nl.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/nl.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 52.35, + 4.92 + ] + }, + "postalCode": { + "format": "#### @@", + "regex": "^(\\d{4}[A-Z]{2})$" + } + }, + { + "name": { + "common": "Moldova", + "official": "Republic of Moldova", + "nativeName": { + "ron": { + "official": "Republica Moldova", + "common": "Moldova" + } + } + }, + "tld": [ + ".md" + ], + "cca2": "MD", + "ccn3": "498", + "cioc": "MDA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "MDL": { + "symbol": "L", + "name": "Moldovan leu" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "73" + ] + }, + "capital": [ + "Chișinău" + ], + "altSpellings": [ + "MD", + "Moldova, Republic of", + "Republic of Moldova", + "Republica Moldova" + ], + "region": "Europe", + "subregion": "Eastern Europe", + "languages": { + "ron": "Romanian" + }, + "latlng": [ + 47.0, + 29.0 + ], + "landlocked": true, + "borders": [ + "ROU", + "UKR" + ], + "area": 33847.0, + "demonyms": { + "eng": { + "f": "Moldovan", + "m": "Moldovan" + }, + "fra": { + "f": "Moldave", + "m": "Moldave" + } + }, + "cca3": "MDA", + "translations": { + "ara": { + "official": "جمهورية مولدوڤا", + "common": "مولدوڤا" + }, + "bre": { + "official": "Republik Moldova", + "common": "Moldova" + }, + "ces": { + "official": "Moldavská republika", + "common": "Moldavsko" + }, + "cym": { + "official": "Republic of Moldova", + "common": "Moldova" + }, + "deu": { + "official": "Republik Moldau", + "common": "Moldawien" + }, + "est": { + "official": "Moldova Vabariik", + "common": "Moldova" + }, + "fin": { + "official": "Moldovan tasavalta", + "common": "Moldova" + }, + "fra": { + "official": "République de Moldavie", + "common": "Moldavie" + }, + "hrv": { + "official": "Moldavija", + "common": "Moldova" + }, + "hun": { + "official": "Moldovai Köztársaság", + "common": "Moldova" + }, + "ind": { + "official": "Republik Moldova", + "common": "Moldova" + }, + "ita": { + "official": "Repubblica di Moldova", + "common": "Moldavia" + }, + "jpn": { + "official": "モルドバ共和国", + "common": "モルドバ共和国" + }, + "kor": { + "official": "몰도바 공화국", + "common": "몰도바" + }, + "nld": { + "official": "Republiek Moldavië", + "common": "Moldavië" + }, + "per": { + "official": "جمهوری مولداوی", + "common": "مولداوی" + }, + "pol": { + "official": "Republika Mołdawii", + "common": "Mołdawia" + }, + "por": { + "official": "República da Moldávia", + "common": "Moldávia" + }, + "rus": { + "official": "Молдова", + "common": "Молдавия" + }, + "slk": { + "official": "Moldavská republika", + "common": "Moldavsko" + }, + "spa": { + "official": "República de Moldova", + "common": "Moldavia" + }, + "srp": { + "official": "Република Молдавија", + "common": "Молдавија" + }, + "swe": { + "official": "Republiken Moldavien", + "common": "Moldavien" + }, + "tur": { + "official": "Moldova Cumhuriyeti", + "common": "Moldova" + }, + "urd": { + "official": "جمہوریہ مالدووا", + "common": "مالدووا" + }, + "zho": { + "official": "摩尔多瓦共和国", + "common": "摩尔多瓦" + } + }, + "flag": "🇲🇩", + "maps": { + "googleMaps": "https://goo.gl/maps/JjmyUuULujnDeFPf7", + "openStreetMaps": "https://www.openstreetmap.org/relation/58974" + }, + "population": 2749076, + "gini": { + "2018": 25.7 + }, + "fifa": "MDA", + "car": { + "signs": [ + "MD" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/md.png", + "svg": "https://flagcdn.com/md.svg", + "alt": "The flag of Moldova is composed of three equal vertical bands of blue, yellow and red, with the national coat of arms centered in the yellow band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/md.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/md.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 47.01, + 28.9 + ] + }, + "postalCode": { + "format": "MD-####", + "regex": "^(?:MD)*(\\d{4})$" + } + }, + { + "name": { + "common": "Liechtenstein", + "official": "Principality of Liechtenstein", + "nativeName": { + "deu": { + "official": "Fürstentum Liechtenstein", + "common": "Liechtenstein" + } + } + }, + "tld": [ + ".li" + ], + "cca2": "LI", + "ccn3": "438", + "cioc": "LIE", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "CHF": { + "symbol": "Fr", + "name": "Swiss franc" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "23" + ] + }, + "capital": [ + "Vaduz" + ], + "altSpellings": [ + "LI", + "Principality of Liechtenstein", + "Fürstentum Liechtenstein" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "deu": "German" + }, + "latlng": [ + 47.26666666, + 9.53333333 + ], + "landlocked": true, + "borders": [ + "AUT", + "CHE" + ], + "area": 160.0, + "demonyms": { + "eng": { + "f": "Liechtensteiner", + "m": "Liechtensteiner" + }, + "fra": { + "f": "Liechtensteinoise", + "m": "Liechtensteinois" + } + }, + "cca3": "LIE", + "translations": { + "ara": { + "official": "إمارة ليختنشتاين", + "common": "ليختنشتاين" + }, + "bre": { + "official": "Priñselezh Liechtenstein", + "common": "Liechtenstein" + }, + "ces": { + "official": "Knížectví Lichtenštejnské", + "common": "Lichtenštejnsko" + }, + "cym": { + "official": "Principality of Liechtenstein", + "common": "Liechtenstein" + }, + "deu": { + "official": "Fürstentum Liechtenstein", + "common": "Liechtenstein" + }, + "est": { + "official": "Liechtensteini Vürstiriik", + "common": "Liechtenstein" + }, + "fin": { + "official": "Liechensteinin ruhtinaskunta", + "common": "Liechenstein" + }, + "fra": { + "official": "Principauté du Liechtenstein", + "common": "Liechtenstein" + }, + "hrv": { + "official": "Kneževina Lihtenštajn", + "common": "Lihtenštajn" + }, + "hun": { + "official": "Liechtensteini Hercegség", + "common": "Liechtenstein" + }, + "ind": { + "official": "Kepangeranan Liechtenstein", + "common": "Liechtenstein" + }, + "ita": { + "official": "Principato del Liechtenstein", + "common": "Liechtenstein" + }, + "jpn": { + "official": "リヒテンシュタイン公国", + "common": "リヒテンシュタイン" + }, + "kor": { + "official": "리히텐슈타인 공국", + "common": "리히텐슈타인" + }, + "nld": { + "official": "Vorstendom Liechtenstein", + "common": "Liechtenstein" + }, + "per": { + "official": "شاهزاده‌نشین لیختن‌اشتاین", + "common": "لیختن‌اشتاین" + }, + "pol": { + "official": "Księstwo Liechtensteinu", + "common": "Liechtenstein" + }, + "por": { + "official": "Principado de Liechtenstein", + "common": "Liechtenstein" + }, + "rus": { + "official": "Княжество Лихтенштейн", + "common": "Лихтенштейн" + }, + "slk": { + "official": "Lichtenštajnské kniežatstvo", + "common": "Lichtenštajnsko" + }, + "spa": { + "official": "Principado de Liechtenstein", + "common": "Liechtenstein" + }, + "srp": { + "official": "Кнежевина Лихтенштајн", + "common": "Лихтенштајн" + }, + "swe": { + "official": "Furstendömet Liechtenstein", + "common": "Liechtenstein" + }, + "tur": { + "official": "Lihtenştayn Prensliği", + "common": "Lihtenştayn" + }, + "urd": { + "official": "امارات لیختینستائن", + "common": "لیختینستائن" + }, + "zho": { + "official": "列支敦士登公国", + "common": "列支敦士登" + } + }, + "flag": "🇱🇮", + "maps": { + "googleMaps": "https://goo.gl/maps/KNuHeiJzAPodwM7y6", + "openStreetMaps": "https://www.openstreetmap.org/relation/1155955" + }, + "population": 40900, + "fifa": "LIE", + "car": { + "signs": [ + "FL" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/li.png", + "svg": "https://flagcdn.com/li.svg", + "alt": "The flag of Liechtenstein is composed of two equal horizontal bands of blue and red, with a golden-yellow crown on the hoist side of the blue band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/li.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/li.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 47.13, + 9.52 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Montenegro", + "official": "Montenegro", + "nativeName": { + "cnr": { + "official": "Црна Гора", + "common": "Црна Гора" + } + } + }, + "tld": [ + ".me" + ], + "cca2": "ME", + "ccn3": "499", + "cioc": "MNE", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "82" + ] + }, + "capital": [ + "Podgorica" + ], + "altSpellings": [ + "ME", + "Crna Gora" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "cnr": "Montenegrin" + }, + "latlng": [ + 42.5, + 19.3 + ], + "landlocked": false, + "borders": [ + "ALB", + "BIH", + "HRV", + "UNK", + "SRB" + ], + "area": 13812.0, + "demonyms": { + "eng": { + "f": "Montenegrin", + "m": "Montenegrin" + }, + "fra": { + "f": "Monténégrine", + "m": "Monténégrin" + } + }, + "cca3": "MNE", + "translations": { + "ara": { + "official": "الجبل الاسود", + "common": "الجبل الاسود" + }, + "bre": { + "official": "Republik Montenegro", + "common": "Montenegro" + }, + "ces": { + "official": "Černá Hora", + "common": "Černá Hora" + }, + "cym": { + "official": "Montenegro", + "common": "Montenegro" + }, + "deu": { + "official": "Montenegro", + "common": "Montenegro" + }, + "est": { + "official": "Montenegro", + "common": "Montenegro" + }, + "fin": { + "official": "Montenegro", + "common": "Montenegro" + }, + "fra": { + "official": "Monténégro", + "common": "Monténégro" + }, + "hrv": { + "official": "Crna Gora", + "common": "Crna Gora" + }, + "hun": { + "official": "Montenegró", + "common": "Montenegró" + }, + "ind": { + "official": "Montenegro", + "common": "Montenegro" + }, + "ita": { + "official": "Montenegro", + "common": "Montenegro" + }, + "jpn": { + "official": "モンテネグロ", + "common": "モンテネグロ" + }, + "kor": { + "official": "몬테네그로", + "common": "몬테네그로" + }, + "nld": { + "official": "Montenegro", + "common": "Montenegro" + }, + "per": { + "official": "مونته‌نگرو", + "common": "مونته‌نگرو" + }, + "pol": { + "official": "Czarnogóra", + "common": "Czarnogóra" + }, + "por": { + "official": "Montenegro", + "common": "Montenegro" + }, + "rus": { + "official": "Черногория", + "common": "Черногория" + }, + "slk": { + "official": "Čierna Hora", + "common": "Čierna Hora" + }, + "spa": { + "official": "Montenegro", + "common": "Montenegro" + }, + "srp": { + "official": "Црна Гора", + "common": "Црна Гора" + }, + "swe": { + "official": "Montenegro", + "common": "Montenegro" + }, + "tur": { + "official": "Karadağ", + "common": "Karadağ" + }, + "urd": { + "official": "مونٹینیگرو", + "common": "مونٹینیگرو" + }, + "zho": { + "official": "黑山", + "common": "黑山" + } + }, + "flag": "🇲🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/4THX1fM7WqANuPbB8", + "openStreetMaps": "https://www.openstreetmap.org/relation/53296" + }, + "population": 623327, + "gini": { + "2016": 38.5 + }, + "fifa": "MNE", + "car": { + "signs": [ + "SCG" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/me.png", + "svg": "https://flagcdn.com/me.svg", + "alt": "The flag of Montenegro features a large red central rectangular area surrounded by a golden-yellow border. The coat of arms of Montenegro is centered in the red rectangle." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/me.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/me.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 42.43, + 19.27 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "France", + "official": "French Republic", + "nativeName": { + "fra": { + "official": "République française", + "common": "France" + } + } + }, + "tld": [ + ".fr" + ], + "cca2": "FR", + "ccn3": "250", + "cioc": "FRA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "3" + ] + }, + "capital": [ + "Paris" + ], + "altSpellings": [ + "FR", + "French Republic", + "République française" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "fra": "French" + }, + "latlng": [ + 46.0, + 2.0 + ], + "landlocked": false, + "borders": [ + "AND", + "BEL", + "DEU", + "ITA", + "LUX", + "MCO", + "ESP", + "CHE" + ], + "area": 543908.0, + "demonyms": { + "eng": { + "f": "French", + "m": "French" + }, + "fra": { + "f": "Française", + "m": "Français" + } + }, + "cca3": "FRA", + "translations": { + "ara": { + "official": "الجمهورية الفرنسية", + "common": "فرنسا" + }, + "bre": { + "official": "Republik Frañs", + "common": "Frañs" + }, + "ces": { + "official": "Francouzská republika", + "common": "Francie" + }, + "cym": { + "official": "French Republic", + "common": "France" + }, + "deu": { + "official": "Französische Republik", + "common": "Frankreich" + }, + "est": { + "official": "Prantsuse Vabariik", + "common": "Prantsusmaa" + }, + "fin": { + "official": "Ranskan tasavalta", + "common": "Ranska" + }, + "fra": { + "official": "République française", + "common": "France" + }, + "hrv": { + "official": "Francuska Republika", + "common": "Francuska" + }, + "hun": { + "official": "Francia Köztársaság", + "common": "Franciaország" + }, + "ind": { + "official": "Republik Prancis", + "common": "Prancis" + }, + "ita": { + "official": "Repubblica francese", + "common": "Francia" + }, + "jpn": { + "official": "フランス共和国", + "common": "フランス" + }, + "kor": { + "official": "프랑스 공화국", + "common": "프랑스" + }, + "nld": { + "official": "Franse Republiek", + "common": "Frankrijk" + }, + "per": { + "official": "جمهوری فرانسه", + "common": "فرانسه" + }, + "pol": { + "official": "Republika Francuska", + "common": "Francja" + }, + "por": { + "official": "República Francesa", + "common": "França" + }, + "rus": { + "official": "Французская Республика", + "common": "Франция" + }, + "slk": { + "official": "Francúzska republika", + "common": "Francúzsko" + }, + "spa": { + "official": "República francés", + "common": "Francia" + }, + "srp": { + "official": "Француска Република", + "common": "Француска" + }, + "swe": { + "official": "Republiken Frankrike", + "common": "Frankrike" + }, + "tur": { + "official": "Fransa Cumhuriyeti", + "common": "Fransa" + }, + "urd": { + "official": "جمہوریہ فرانس", + "common": "فرانس" + }, + "zho": { + "official": "法兰西共和国", + "common": "法国" + } + }, + "flag": "🇫🇷", + "maps": { + "googleMaps": "https://goo.gl/maps/g7QxxSFsWyTPKuzd7", + "openStreetMaps": "https://www.openstreetmap.org/relation/1403916" + }, + "population": 66351959, + "gini": { + "2018": 32.4 + }, + "fifa": "FRA", + "car": { + "signs": [ + "F" + ], + "side": "right" + }, + "timezones": [ + "UTC-10:00", + "UTC-09:30", + "UTC-09:00", + "UTC-08:00", + "UTC-04:00", + "UTC-03:00", + "UTC+01:00", + "UTC+02:00", + "UTC+03:00", + "UTC+04:00", + "UTC+05:00", + "UTC+10:00", + "UTC+11:00", + "UTC+12:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/fr.png", + "svg": "https://flagcdn.com/fr.svg", + "alt": "The flag of France is composed of three equal vertical bands of blue, white and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/fr.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/fr.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 48.87, + 2.33 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Czechia", + "official": "Czech Republic", + "nativeName": { + "ces": { + "official": "Česká republika", + "common": "Česko" + }, + "slk": { + "official": "Česká republika", + "common": "Česko" + } + } + }, + "tld": [ + ".cz" + ], + "cca2": "CZ", + "ccn3": "203", + "cioc": "CZE", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "CZK": { + "symbol": "Kč", + "name": "Czech koruna" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "20" + ] + }, + "capital": [ + "Prague" + ], + "altSpellings": [ + "CZ", + "Česká republika", + "Česko" + ], + "region": "Europe", + "subregion": "Central Europe", + "languages": { + "ces": "Czech", + "slk": "Slovak" + }, + "latlng": [ + 49.75, + 15.5 + ], + "landlocked": true, + "borders": [ + "AUT", + "DEU", + "POL", + "SVK" + ], + "area": 78865.0, + "demonyms": { + "eng": { + "f": "Czech", + "m": "Czech" + }, + "fra": { + "f": "Tchèque", + "m": "Tchèque" + } + }, + "cca3": "CZE", + "translations": { + "ara": { + "official": "جمهورية التشيك", + "common": "التشيك" + }, + "bre": { + "official": "Republik Tchek", + "common": "Tchekia" + }, + "ces": { + "official": "Česká republika", + "common": "Česko" + }, + "cym": { + "official": "Y Weriniaeth Tsiec", + "common": "Y Weriniaeth Tsiec" + }, + "deu": { + "official": "Tschechische Republik", + "common": "Tschechien" + }, + "est": { + "official": "Tšehhi Vabariik", + "common": "Tšehhi" + }, + "fin": { + "official": "Tšekin tasavalta", + "common": "Tšekki" + }, + "fra": { + "official": "République tchèque", + "common": "Tchéquie" + }, + "hrv": { + "official": "Češka", + "common": "Češka" + }, + "hun": { + "official": "Cseh Köztársaság", + "common": "Csehország" + }, + "ind": { + "official": "Republik Ceko", + "common": "Ceko" + }, + "ita": { + "official": "Repubblica Ceca", + "common": "Cechia" + }, + "jpn": { + "official": "チェコ共和国", + "common": "チェコ" + }, + "kor": { + "official": "체코", + "common": "체코" + }, + "nld": { + "official": "Tsjechische Republiek", + "common": "Tsjechië" + }, + "per": { + "official": "جمهوری چک", + "common": "جمهوری چک" + }, + "pol": { + "official": "Republika Czeska", + "common": "Czechy" + }, + "por": { + "official": "República Checa", + "common": "Chéquia" + }, + "rus": { + "official": "Чешская Республика", + "common": "Чехия" + }, + "slk": { + "official": "Česká republika", + "common": "Česko" + }, + "spa": { + "official": "República Checa", + "common": "Chequia" + }, + "srp": { + "official": "Чешка Република", + "common": "Чешка" + }, + "swe": { + "official": "Republiken Tjeckien", + "common": "Tjeckien" + }, + "tur": { + "official": "Çek Cumhuriyeti", + "common": "Çekya" + }, + "urd": { + "official": "چيک جمہوريہ", + "common": "چيک" + }, + "zho": { + "official": "捷克共和国", + "common": "捷克" + } + }, + "flag": "🇨🇿", + "maps": { + "googleMaps": "https://goo.gl/maps/47dmgeXMZyhDHyQW8", + "openStreetMaps": "https://www.openstreetmap.org/relation/51684" + }, + "population": 10882341, + "gini": { + "2018": 25.0 + }, + "fifa": "CZE", + "car": { + "signs": [ + "CZ" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/cz.png", + "svg": "https://flagcdn.com/cz.svg", + "alt": "The flag of Czechia is composed of two equal horizontal bands of white and red, with a blue isosceles triangle superimposed on the hoist side of the field. The triangle has its base on the hoist end and spans about two-fifth the width of the field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/cz.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/cz.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 50.08, + 14.47 + ] + }, + "postalCode": { + "format": "### ##", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Belarus", + "official": "Republic of Belarus", + "nativeName": { + "bel": { + "official": "Рэспубліка Беларусь", + "common": "Белару́сь" + }, + "rus": { + "official": "Республика Беларусь", + "common": "Беларусь" + } + } + }, + "tld": [ + ".by" + ], + "cca2": "BY", + "ccn3": "112", + "cioc": "BLR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "BYN": { + "symbol": "Br", + "name": "Belarusian ruble" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "75" + ] + }, + "capital": [ + "Minsk" + ], + "altSpellings": [ + "BY", + "Bielaruś", + "Republic of Belarus", + "Белоруссия", + "Республика Белоруссия" + ], + "region": "Europe", + "subregion": "Eastern Europe", + "languages": { + "bel": "Belarusian", + "rus": "Russian" + }, + "latlng": [ + 53.0, + 28.0 + ], + "landlocked": true, + "borders": [ + "LVA", + "LTU", + "POL", + "RUS", + "UKR" + ], + "area": 207600.0, + "demonyms": { + "eng": { + "f": "Belarusian", + "m": "Belarusian" + }, + "fra": { + "f": "Biélorusse", + "m": "Biélorusse" + } + }, + "cca3": "BLR", + "translations": { + "ara": { + "official": "جمهورية بيلاروسيا", + "common": "بيلاروسيا" + }, + "bre": { + "official": "Republik Belarus", + "common": "Belarus" + }, + "ces": { + "official": "Běloruská republika", + "common": "Bělorusko" + }, + "cym": { + "official": "Gweriniaeth Belarws", + "common": "Belarws" + }, + "deu": { + "official": "Republik Belarus", + "common": "Weißrussland" + }, + "est": { + "official": "Valgevene Vabariik", + "common": "Valgevene" + }, + "fin": { + "official": "Valko-Venäjän tasavalta", + "common": "Valko-Venäjä" + }, + "fra": { + "official": "République de Biélorussie", + "common": "Biélorussie" + }, + "hrv": { + "official": "Republika Bjelorusija", + "common": "Bjelorusija" + }, + "hun": { + "official": "Fehérorosz Köztársaság", + "common": "Fehéroroszország" + }, + "ind": { + "official": "Republik Belarus", + "common": "Belarus" + }, + "ita": { + "official": "Repubblica di Belarus", + "common": "Bielorussia" + }, + "jpn": { + "official": "ベラルーシ共和国", + "common": "ベラルーシ" + }, + "kor": { + "official": "벨라루스 공화국", + "common": "벨라루스" + }, + "nld": { + "official": "Republiek Belarus", + "common": "Wit-Rusland" + }, + "per": { + "official": "جمهوری بلاروس", + "common": "بلاروس" + }, + "pol": { + "official": "Republika Białorusi", + "common": "Białoruś" + }, + "por": { + "official": "República da Bielorrússia", + "common": "Bielorússia" + }, + "rus": { + "official": "Республика Беларусь", + "common": "Беларусь" + }, + "slk": { + "official": "Bieloruská republika", + "common": "Bielorusko" + }, + "spa": { + "official": "República de Belarús", + "common": "Bielorrusia" + }, + "srp": { + "official": "Република Белорусија", + "common": "Белорусија" + }, + "swe": { + "official": "Republiken Vitryssland", + "common": "Belarus" + }, + "tur": { + "official": "Belarus Cumhuriyeti", + "common": "Belarus" + }, + "urd": { + "official": "جمہوریہ بیلاروس", + "common": "بیلاروس" + }, + "zho": { + "official": "白俄罗斯共和国", + "common": "白俄罗斯" + } + }, + "flag": "🇧🇾", + "maps": { + "googleMaps": "https://goo.gl/maps/PJUDU3EBPSszCQcu6", + "openStreetMaps": "https://www.openstreetmap.org/relation/59065" + }, + "population": 9109280, + "gini": { + "2019": 25.3 + }, + "fifa": "BLR", + "car": { + "signs": [ + "BY" + ], + "side": "right" + }, + "timezones": [ + "UTC+03:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/by.png", + "svg": "https://flagcdn.com/by.svg", + "alt": "The flag of Belarus features a vertical band, with a white and red ornamental pattern, spanning about one-fifth the width of the field on the hoist side. Adjoining the vertical band are two horizontal bands of red and green, with the red band twice the height of the green band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/by.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/by.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 53.9, + 27.57 + ] + }, + "postalCode": { + "format": "######", + "regex": "^(\\d{6})$" + } + }, + { + "name": { + "common": "Albania", + "official": "Republic of Albania", + "nativeName": { + "sqi": { + "official": "Republika e Shqipërisë", + "common": "Shqipëria" + } + } + }, + "tld": [ + ".al" + ], + "cca2": "AL", + "ccn3": "008", + "cioc": "ALB", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "ALL": { + "symbol": "L", + "name": "Albanian lek" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "55" + ] + }, + "capital": [ + "Tirana" + ], + "altSpellings": [ + "AL", + "Shqipëri", + "Shqipëria", + "Shqipnia" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "sqi": "Albanian" + }, + "latlng": [ + 41.0, + 20.0 + ], + "landlocked": false, + "borders": [ + "MNE", + "GRC", + "MKD", + "UNK" + ], + "area": 28748.0, + "demonyms": { + "eng": { + "f": "Albanian", + "m": "Albanian" + }, + "fra": { + "f": "Albanaise", + "m": "Albanais" + } + }, + "cca3": "ALB", + "translations": { + "ara": { + "official": "جمهورية ألبانيا", + "common": "ألبانيا" + }, + "bre": { + "official": "Republik Albania", + "common": "Albania" + }, + "ces": { + "official": "Albánská republika", + "common": "Albánie" + }, + "cym": { + "official": "Gweriniaeth Albania", + "common": "Albania" + }, + "deu": { + "official": "Republik Albanien", + "common": "Albanien" + }, + "est": { + "official": "Albaania Vabariik", + "common": "Albaania" + }, + "fin": { + "official": "Albanian tasavalta", + "common": "Albania" + }, + "fra": { + "official": "République d'Albanie", + "common": "Albanie" + }, + "hrv": { + "official": "Republika Albanija", + "common": "Albanija" + }, + "hun": { + "official": "Albán Köztársaság", + "common": "Albánia" + }, + "ind": { + "official": "Republik Albania", + "common": "Albania" + }, + "ita": { + "official": "Repubblica d'Albania", + "common": "Albania" + }, + "jpn": { + "official": "アルバニア共和国", + "common": "アルバニア" + }, + "kor": { + "official": "알바니아 공화국", + "common": "알바니아" + }, + "nld": { + "official": "Republiek Albanië", + "common": "Albanië" + }, + "per": { + "official": "جمهوری آلبانی", + "common": "آلبانی" + }, + "pol": { + "official": "Republika Albanii", + "common": "Albania" + }, + "por": { + "official": "República da Albânia", + "common": "Albânia" + }, + "rus": { + "official": "Республика Албания", + "common": "Албания" + }, + "slk": { + "official": "Albánska republika", + "common": "Albánsko" + }, + "spa": { + "official": "República de Albania", + "common": "Albania" + }, + "srp": { + "official": "Република Албанија", + "common": "Албанија" + }, + "swe": { + "official": "Republiken Albanien", + "common": "Albanien" + }, + "tur": { + "official": "Arnavutluk Cumhuriyeti", + "common": "Arnavutluk" + }, + "urd": { + "official": "جمہوریہ البانیا", + "common": "البانیا" + }, + "zho": { + "official": "阿尔巴尼亚共和国", + "common": "阿尔巴尼亚" + } + }, + "flag": "🇦🇱", + "maps": { + "googleMaps": "https://goo.gl/maps/BzN9cTuj68ZA8SyZ8", + "openStreetMaps": "https://www.openstreetmap.org/relation/53292" + }, + "population": 2363314, + "gini": { + "2017": 33.2 + }, + "fifa": "ALB", + "car": { + "signs": [ + "AL" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/al.png", + "svg": "https://flagcdn.com/al.svg", + "alt": "The flag of Albania features a silhouetted double-headed black eagle at the center of a red field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/al.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/al.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 41.32, + 19.82 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Slovenia", + "official": "Republic of Slovenia", + "nativeName": { + "slv": { + "official": "Republika Slovenija", + "common": "Slovenija" + } + } + }, + "tld": [ + ".si" + ], + "cca2": "SI", + "ccn3": "705", + "cioc": "SLO", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "86" + ] + }, + "capital": [ + "Ljubljana" + ], + "altSpellings": [ + "SI", + "Republic of Slovenia", + "Republika Slovenija" + ], + "region": "Europe", + "subregion": "Central Europe", + "languages": { + "slv": "Slovene" + }, + "latlng": [ + 46.11666666, + 14.81666666 + ], + "landlocked": false, + "borders": [ + "AUT", + "HRV", + "ITA", + "HUN" + ], + "area": 20273.0, + "demonyms": { + "eng": { + "f": "Slovene", + "m": "Slovene" + }, + "fra": { + "f": "Slovène", + "m": "Slovène" + } + }, + "cca3": "SVN", + "translations": { + "ara": { + "official": "جمهورية سلوفينيا", + "common": "سلوفينيا" + }, + "bre": { + "official": "Republik Slovenia", + "common": "Slovenia" + }, + "ces": { + "official": "Slovinská republika", + "common": "Slovinsko" + }, + "cym": { + "official": "Republic of Slovenia", + "common": "Slovenia" + }, + "deu": { + "official": "Republik Slowenien", + "common": "Slowenien" + }, + "est": { + "official": "Sloveenia Vabariik", + "common": "Sloveenia" + }, + "fin": { + "official": "Slovenian tasavalta", + "common": "Slovenia" + }, + "fra": { + "official": "République de Slovénie", + "common": "Slovénie" + }, + "hrv": { + "official": "Republika Slovenija", + "common": "Slovenija" + }, + "hun": { + "official": "Szlovén Köztársaság", + "common": "Szlovénia" + }, + "ind": { + "official": "Republik Slovenia", + "common": "Slovenia" + }, + "ita": { + "official": "Repubblica di Slovenia", + "common": "Slovenia" + }, + "jpn": { + "official": "スロベニア共和国", + "common": "スロベニア" + }, + "kor": { + "official": "슬로베니아 공화국", + "common": "슬로베니아" + }, + "nld": { + "official": "Republiek Slovenië", + "common": "Slovenië" + }, + "per": { + "official": "جمهوری اسلوونی", + "common": "اسلوونی" + }, + "pol": { + "official": "Republika Słowenii", + "common": "Słowenia" + }, + "por": { + "official": "República da Eslovénia", + "common": "Eslovénia" + }, + "rus": { + "official": "Республика Словения", + "common": "Словения" + }, + "slk": { + "official": "Slovinská republika", + "common": "Slovinsko" + }, + "spa": { + "official": "República de Eslovenia", + "common": "Eslovenia" + }, + "srp": { + "official": "Република Словенија", + "common": "Словенија" + }, + "swe": { + "official": "Republiken Slovenien", + "common": "Slovenien" + }, + "tur": { + "official": "Slovenya Cumhuriyeti", + "common": "Slovenya" + }, + "urd": { + "official": "جمہوریہ سلووینیا", + "common": "سلووینیا" + }, + "zho": { + "official": "斯洛文尼亚共和国", + "common": "斯洛文尼亚" + } + }, + "flag": "🇸🇮", + "maps": { + "googleMaps": "https://goo.gl/maps/7zgFmswcCJh5L5D49", + "openStreetMaps": "https://www.openstreetmap.org/relation/218657" + }, + "population": 2130638, + "gini": { + "2018": 24.6 + }, + "fifa": "SVN", + "car": { + "signs": [ + "SLO" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/si.png", + "svg": "https://flagcdn.com/si.svg", + "alt": "The flag of Slovenia is composed of three equal horizontal bands of white, blue and red. The national coat of arms is situated in the upper hoist side of the field centered on the boundary between the white and blue bands." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/si.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/si.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 46.05, + 14.52 + ] + }, + "postalCode": { + "format": "SI- ####", + "regex": "^(?:SI)*(\\d{4})$" + } + }, + { + "name": { + "common": "Jersey", + "official": "Bailiwick of Jersey", + "nativeName": { + "eng": { + "official": "Bailiwick of Jersey", + "common": "Jersey" + }, + "fra": { + "official": "Bailliage de Jersey", + "common": "Jersey" + }, + "nrf": { + "official": "Bailliage dé Jèrri", + "common": "Jèrri" + } + } + }, + "tld": [ + ".je" + ], + "cca2": "JE", + "ccn3": "832", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "GBP": { + "symbol": "£", + "name": "British pound" + }, + "JEP": { + "symbol": "£", + "name": "Jersey pound" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "4" + ] + }, + "capital": [ + "Saint Helier" + ], + "altSpellings": [ + "JE", + "Bailiwick of Jersey", + "Bailliage de Jersey", + "Bailliage dé Jèrri" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "eng": "English", + "fra": "French", + "nrf": "Jèrriais" + }, + "latlng": [ + 49.25, + -2.16666666 + ], + "landlocked": false, + "area": 116.0, + "demonyms": { + "eng": { + "f": "Channel Islander", + "m": "Channel Islander" + }, + "fra": { + "f": "Jersiaise", + "m": "Jersiais" + } + }, + "cca3": "JEY", + "translations": { + "ara": { + "official": "جيرزي", + "common": "جيرزي" + }, + "bre": { + "official": "Jerzenez", + "common": "Jerzenez" + }, + "ces": { + "official": "Rychtářství Jersey", + "common": "Jersey" + }, + "cym": { + "official": "Bailiwick of Jersey", + "common": "Jersey" + }, + "deu": { + "official": "Vogtei Jersey", + "common": "Jersey" + }, + "est": { + "official": "Jersey foogtkond", + "common": "Jersey" + }, + "fin": { + "official": "Jersey", + "common": "Jersey" + }, + "fra": { + "official": "Bailliage de Jersey", + "common": "Jersey" + }, + "hrv": { + "official": "Struka od Jersey", + "common": "Jersey" + }, + "hun": { + "official": "Jersey", + "common": "Jersey" + }, + "ind": { + "official": "Bailiwick Jersey", + "common": "Jersey" + }, + "ita": { + "official": "Baliato di Jersey", + "common": "Isola di Jersey" + }, + "jpn": { + "official": "ジャージの得意分野", + "common": "ジャージー" + }, + "kor": { + "official": "저지 섬", + "common": "저지 섬" + }, + "nld": { + "official": "Baljuwschap Jersey", + "common": "Jersey" + }, + "per": { + "official": "جرزی", + "common": "جرزی" + }, + "pol": { + "official": "Jersey", + "common": "Jersey" + }, + "por": { + "official": "Bailiado de Jersey", + "common": "Jersey" + }, + "rus": { + "official": "Коронное владение Джерси", + "common": "Джерси" + }, + "slk": { + "official": "Bailiwick Jersey", + "common": "Jersey" + }, + "spa": { + "official": "Bailía de Jersey", + "common": "Jersey" + }, + "srp": { + "official": "Џерзи", + "common": "Џерзи" + }, + "swe": { + "official": "Jersey", + "common": "Jersey" + }, + "tur": { + "official": "Jersey", + "common": "Jersey" + }, + "urd": { + "official": "جرزی", + "common": "جرزی" + }, + "zho": { + "official": "泽西岛", + "common": "泽西岛" + } + }, + "flag": "🇯🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/rXG8GZZtsqK92kTCA", + "openStreetMaps": "https://www.openstreetmap.org/relation/367988" + }, + "population": 103267, + "car": { + "signs": [ + "GBJ" + ], + "side": "left" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/je.png", + "svg": "https://flagcdn.com/je.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/je.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/je.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 49.18, + -2.1 + ] + }, + "postalCode": { + "format": "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA", + "regex": "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$" + } + }, + { + "name": { + "common": "North Macedonia", + "official": "Republic of North Macedonia", + "nativeName": { + "mkd": { + "official": "Република Северна Македонија", + "common": "Македонија" + } + } + }, + "tld": [ + ".mk" + ], + "cca2": "MK", + "ccn3": "807", + "cioc": "MKD", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "MKD": { + "symbol": "den", + "name": "denar" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "89" + ] + }, + "capital": [ + "Skopje" + ], + "altSpellings": [ + "MK", + "The former Yugoslav Republic of Macedonia", + "Republic of North Macedonia", + "Macedonia, The Former Yugoslav Republic of", + "Република Северна Македонија" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "mkd": "Macedonian" + }, + "latlng": [ + 41.83333333, + 22.0 + ], + "landlocked": true, + "borders": [ + "ALB", + "BGR", + "GRC", + "UNK", + "SRB" + ], + "area": 25713.0, + "demonyms": { + "eng": { + "f": "Macedonian", + "m": "Macedonian" + }, + "fra": { + "f": "Macédonienne", + "m": "Macédonien" + } + }, + "cca3": "MKD", + "translations": { + "ara": { + "official": "جمهورية شمال مقدونيا", + "common": "شمال مقدونيا" + }, + "bre": { + "official": "Republik Makedonia an Norzh", + "common": "Makedonia an Norzh" + }, + "ces": { + "official": "Republika Severní Makedonie", + "common": "Severní Makedonie" + }, + "cym": { + "official": "Republic of North Macedonia", + "common": "North Macedonia" + }, + "deu": { + "official": "Republik Nordmazedonien", + "common": "Nordmazedonien" + }, + "est": { + "official": "Põhja-Makedoonia Vabariik", + "common": "Põhja-Makedoonia" + }, + "fin": { + "official": "Pohjois-Makedonian tasavalta", + "common": "Pohjois-Makedonia" + }, + "fra": { + "official": "République de Macédoine du Nord", + "common": "Macédoine du Nord" + }, + "hrv": { + "official": "Republika Sjeverna Makedonija", + "common": "Sjeverna Makedonija" + }, + "hun": { + "official": "Észak-macedón Köztársaság", + "common": "Észak-Macedónia" + }, + "ind": { + "official": "Republik Makedonia Utara", + "common": "Makedonia Utara" + }, + "ita": { + "official": "Repubblica di Macedonia del Nord", + "common": "Macedonia del Nord" + }, + "jpn": { + "official": "北マケドニア共和国", + "common": "北マケドニア " + }, + "kor": { + "official": "북마케도니아 공화국", + "common": "북마케도니아" + }, + "nld": { + "official": "Republiek Noord-Macedonië", + "common": "Noord-Macedonië" + }, + "per": { + "official": "جمهوری مقدونیه شمالی", + "common": "مقدونیه شمالی" + }, + "pol": { + "official": "Republika Macedonii Północnej", + "common": "Macedonia Północna" + }, + "por": { + "official": "República da Macedônia do Norte", + "common": "Macedónia do Norte" + }, + "rus": { + "official": "Республика Северная Македония", + "common": "Северная Македония" + }, + "slk": { + "official": "Severomacedónska republika", + "common": "Severné Macedónsko" + }, + "spa": { + "official": "República de Macedonia del Norte", + "common": "Macedonia del Norte" + }, + "srp": { + "official": "Република Северна Македонија", + "common": "Северна Македонија" + }, + "swe": { + "official": "Republiken Nordmakedonien", + "common": "Nordmakedonien" + }, + "tur": { + "official": "Kuzey Makedonya Cumhuriyeti", + "common": "Kuzey Makedonya" + }, + "urd": { + "official": "جمہوریہ مقدونیہ", + "common": "شمالی مقدونیہ" + }, + "zho": { + "official": "北馬其頓共和國", + "common": "北馬其頓" + } + }, + "flag": "🇲🇰", + "maps": { + "googleMaps": "https://goo.gl/maps/55Q8MEnF6ACdu3q79", + "openStreetMaps": "https://www.openstreetmap.org/relation/53293" + }, + "population": 1822612, + "gini": { + "2018": 33.0 + }, + "fifa": "MKD", + "car": { + "signs": [ + "MK" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/mk.png", + "svg": "https://flagcdn.com/mk.svg", + "alt": "The flag of North Macedonia has a red field, at the center of which is a golden-yellow sun with eight broadening rays that extend to the edges of the field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/mk.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/mk.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 42.0, + 21.43 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Guernsey", + "official": "Bailiwick of Guernsey", + "nativeName": { + "eng": { + "official": "Bailiwick of Guernsey", + "common": "Guernsey" + }, + "fra": { + "official": "Bailliage de Guernesey", + "common": "Guernesey" + }, + "nfr": { + "official": "Dgèrnésiais", + "common": "Dgèrnésiais" + } + } + }, + "tld": [ + ".gg" + ], + "cca2": "GG", + "ccn3": "831", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "GBP": { + "symbol": "£", + "name": "British pound" + }, + "GGP": { + "symbol": "£", + "name": "Guernsey pound" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "4" + ] + }, + "capital": [ + "St. Peter Port" + ], + "altSpellings": [ + "GG", + "Bailiwick of Guernsey", + "Bailliage de Guernesey" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "eng": "English", + "fra": "French", + "nfr": "Guernésiais" + }, + "latlng": [ + 49.46666666, + -2.58333333 + ], + "landlocked": false, + "area": 78.0, + "demonyms": { + "eng": { + "f": "Channel Islander", + "m": "Channel Islander" + }, + "fra": { + "f": "Guernesiaise", + "m": "Guernesiais" + } + }, + "cca3": "GGY", + "translations": { + "ara": { + "official": "غيرنزي", + "common": "غيرنزي" + }, + "bre": { + "official": "Gwernenez", + "common": "Gwernenez" + }, + "ces": { + "official": "Rychtářství Guernsey", + "common": "Guernsey" + }, + "cym": { + "official": "Bailiwick of Guernsey", + "common": "Guernsey" + }, + "deu": { + "official": "Vogtei Guernsey", + "common": "Guernsey" + }, + "est": { + "official": "Guernsey foogtkond", + "common": "Guernsey" + }, + "fin": { + "official": "Guernsey", + "common": "Guernsey" + }, + "fra": { + "official": "Bailliage de Guernesey", + "common": "Guernesey" + }, + "hrv": { + "official": "Struka Guernsey", + "common": "Guernsey" + }, + "hun": { + "official": "Guernsey", + "common": "Guernsey" + }, + "ind": { + "official": "Bailiwick Guernsey", + "common": "Guernsey" + }, + "ita": { + "official": "Baliato di Guernsey", + "common": "Guernsey" + }, + "jpn": { + "official": "ガーンジーの得意分野", + "common": "ガーンジー" + }, + "kor": { + "official": "건지 섬", + "common": "건지 섬" + }, + "nld": { + "official": "Baljuwschap Guernsey", + "common": "Guernsey" + }, + "per": { + "official": "گرنزی", + "common": "گرنزی" + }, + "pol": { + "official": "Baliwat Guernsey", + "common": "Guernsey" + }, + "por": { + "official": "Bailiado de Guernsey", + "common": "Guernsey" + }, + "rus": { + "official": "Коронное владение Гернси", + "common": "Гернси" + }, + "slk": { + "official": "Guernsey", + "common": "Guernsey" + }, + "spa": { + "official": "Bailía de Guernsey", + "common": "Guernsey" + }, + "srp": { + "official": "Бејливик Гернзи", + "common": "Гернзи" + }, + "swe": { + "official": "Guernsey", + "common": "Guernsey" + }, + "tur": { + "official": "Guernsey Muhafızlığı", + "common": "Guernsey" + }, + "urd": { + "official": "گرنزی رودبار", + "common": "گرنزی" + }, + "zho": { + "official": "根西岛", + "common": "根西岛" + } + }, + "flag": "🇬🇬", + "maps": { + "googleMaps": "https://goo.gl/maps/6kXnQU5QvEZMD9VB7", + "openStreetMaps": "https://www.openstreetmap.org/relation/270009" + }, + "population": 64781, + "car": { + "signs": [ + "GBG" + ], + "side": "left" + }, + "timezones": [ + "UTC+00:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/gg.png", + "svg": "https://flagcdn.com/gg.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gg.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gg.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 49.45, + -2.54 + ] + }, + "postalCode": { + "format": "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA", + "regex": "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$" + } + }, + { + "name": { + "common": "Romania", + "official": "Romania", + "nativeName": { + "ron": { + "official": "România", + "common": "România" + } + } + }, + "tld": [ + ".ro" + ], + "cca2": "RO", + "ccn3": "642", + "cioc": "ROU", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "RON": { + "symbol": "lei", + "name": "Romanian leu" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "0" + ] + }, + "capital": [ + "Bucharest" + ], + "altSpellings": [ + "RO", + "Rumania", + "Roumania", + "România" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "ron": "Romanian" + }, + "latlng": [ + 46.0, + 25.0 + ], + "landlocked": false, + "borders": [ + "BGR", + "HUN", + "MDA", + "SRB", + "UKR" + ], + "area": 238391.0, + "demonyms": { + "eng": { + "f": "Romanian", + "m": "Romanian" + }, + "fra": { + "f": "Roumaine", + "m": "Roumain" + } + }, + "cca3": "ROU", + "translations": { + "ara": { + "official": "رومانيا", + "common": "رومانيا" + }, + "bre": { + "official": "Roumania", + "common": "Roumania" + }, + "ces": { + "official": "Rumunsko", + "common": "Rumunsko" + }, + "cym": { + "official": "Romania", + "common": "Romania" + }, + "deu": { + "official": "Rumänien", + "common": "Rumänien" + }, + "est": { + "official": "Rumeenia", + "common": "Rumeenia" + }, + "fin": { + "official": "Romania", + "common": "Romania" + }, + "fra": { + "official": "Roumanie", + "common": "Roumanie" + }, + "hrv": { + "official": "Rumunija", + "common": "Rumunjska" + }, + "hun": { + "official": "Románia", + "common": "Románia" + }, + "ind": { + "official": "Rumania", + "common": "Rumania" + }, + "ita": { + "official": "Romania", + "common": "Romania" + }, + "jpn": { + "official": "ルーマニア", + "common": "ルーマニア" + }, + "kor": { + "official": "루마니아", + "common": "루마니아" + }, + "nld": { + "official": "Roemenië", + "common": "Roemenië" + }, + "per": { + "official": "رومانی", + "common": "رومانی" + }, + "pol": { + "official": "Rumunia", + "common": "Rumunia" + }, + "por": { + "official": "Romênia", + "common": "Roménia" + }, + "rus": { + "official": "Румыния", + "common": "Румыния" + }, + "slk": { + "official": "Rumunsko", + "common": "Rumunsko" + }, + "spa": { + "official": "Rumania", + "common": "Rumania" + }, + "srp": { + "official": "Румунија", + "common": "Румунија" + }, + "swe": { + "official": "Rumänien", + "common": "Rumänien" + }, + "tur": { + "official": "Romanya", + "common": "Romanya" + }, + "urd": { + "official": "رومانیہ", + "common": "رومانیہ" + }, + "zho": { + "official": "罗马尼亚", + "common": "罗马尼亚" + } + }, + "flag": "🇷🇴", + "maps": { + "googleMaps": "https://goo.gl/maps/845hAgCf1mDkN3vr7", + "openStreetMaps": "https://www.openstreetmap.org/relation/90689" + }, + "population": 19036031, + "gini": { + "2018": 35.8 + }, + "fifa": "ROU", + "car": { + "signs": [ + "RO" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ro.png", + "svg": "https://flagcdn.com/ro.svg", + "alt": "The flag of Romania is composed of three equal vertical bands of navy blue, yellow and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ro.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ro.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 44.43, + 26.1 + ] + }, + "postalCode": { + "format": "######", + "regex": "^(\\d{6})$" + } + }, + { + "name": { + "common": "Hungary", + "official": "Hungary", + "nativeName": { + "hun": { + "official": "Magyarország", + "common": "Magyarország" + } + } + }, + "tld": [ + ".hu" + ], + "cca2": "HU", + "ccn3": "348", + "cioc": "HUN", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "HUF": { + "symbol": "Ft", + "name": "Hungarian forint" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "6" + ] + }, + "capital": [ + "Budapest" + ], + "altSpellings": [ + "HU" + ], + "region": "Europe", + "subregion": "Central Europe", + "languages": { + "hun": "Hungarian" + }, + "latlng": [ + 47.0, + 20.0 + ], + "landlocked": true, + "borders": [ + "AUT", + "HRV", + "ROU", + "SRB", + "SVK", + "SVN", + "UKR" + ], + "area": 93028.0, + "demonyms": { + "eng": { + "f": "Hungarian", + "m": "Hungarian" + }, + "fra": { + "f": "Hongroise", + "m": "Hongrois" + } + }, + "cca3": "HUN", + "translations": { + "ara": { + "official": "الجمهورية المجرية", + "common": "المجر" + }, + "bre": { + "official": "Hungaria", + "common": "Hungaria" + }, + "ces": { + "official": "Maďarsko", + "common": "Maďarsko" + }, + "cym": { + "official": "Hungary", + "common": "Hungary" + }, + "deu": { + "official": "Ungarn", + "common": "Ungarn" + }, + "est": { + "official": "Ungari", + "common": "Ungari" + }, + "fin": { + "official": "Unkari", + "common": "Unkari" + }, + "fra": { + "official": "Hongrie", + "common": "Hongrie" + }, + "hrv": { + "official": "Madžarska", + "common": "Mađarska" + }, + "hun": { + "official": "Magyarország", + "common": "Magyarország" + }, + "ind": { + "official": "Hungaria", + "common": "Hungaria" + }, + "ita": { + "official": "Ungheria", + "common": "Ungheria" + }, + "jpn": { + "official": "ハンガリー", + "common": "ハンガリー" + }, + "kor": { + "official": "헝가리", + "common": "헝가리" + }, + "nld": { + "official": "Hongarije", + "common": "Hongarije" + }, + "per": { + "official": "مجارستان", + "common": "مجارستان" + }, + "pol": { + "official": "Węgry", + "common": "Węgry" + }, + "por": { + "official": "Hungria", + "common": "Hungria" + }, + "rus": { + "official": "Венгрия", + "common": "Венгрия" + }, + "slk": { + "official": "Maďarsko", + "common": "Maďarsko" + }, + "spa": { + "official": "Hungría", + "common": "Hungría" + }, + "srp": { + "official": "Мађарска", + "common": "Мађарска" + }, + "swe": { + "official": "Ungern", + "common": "Ungern" + }, + "tur": { + "official": "Macaristan", + "common": "Macaristan" + }, + "urd": { + "official": "مجارستان", + "common": "مجارستان" + }, + "zho": { + "official": "匈牙利", + "common": "匈牙利" + } + }, + "flag": "🇭🇺", + "maps": { + "googleMaps": "https://goo.gl/maps/9gfPupm5bffixiFJ6", + "openStreetMaps": "https://www.openstreetmap.org/relation/21335" + }, + "population": 9539502, + "gini": { + "2018": 29.6 + }, + "fifa": "HUN", + "car": { + "signs": [ + "H" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/hu.png", + "svg": "https://flagcdn.com/hu.svg", + "alt": "The flag of Hungary is composed of three equal horizontal bands of red, white and green." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/hu.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/hu.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 47.5, + 19.08 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Åland Islands", + "official": "Åland Islands", + "nativeName": { + "swe": { + "official": "Landskapet Åland", + "common": "Åland" + } + } + }, + "tld": [ + ".ax" + ], + "cca2": "AX", + "ccn3": "248", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "5818" + ] + }, + "capital": [ + "Mariehamn" + ], + "altSpellings": [ + "AX", + "Aaland", + "Aland", + "Ahvenanmaa" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "swe": "Swedish" + }, + "latlng": [ + 60.116667, + 19.9 + ], + "landlocked": false, + "area": 1580.0, + "demonyms": { + "eng": { + "f": "Ålandish", + "m": "Ålandish" + }, + "fra": { + "f": "Ålandaise", + "m": "Ålandais" + } + }, + "cca3": "ALA", + "translations": { + "ara": { + "official": "جزر أولاند", + "common": "جزر أولاند" + }, + "bre": { + "official": "Inizi Åland", + "common": "Åland" + }, + "ces": { + "official": "Ålandské ostrovy", + "common": "Ålandy" + }, + "cym": { + "official": "Åland Islands", + "common": "Åland Islands" + }, + "deu": { + "official": "Åland-Inseln", + "common": "Åland" + }, + "est": { + "official": "Ahvenamaa maakond", + "common": "Ahvenamaa" + }, + "fin": { + "official": "Ahvenanmaan maakunta", + "common": "Ahvenanmaa" + }, + "fra": { + "official": "Ahvenanmaa", + "common": "Ahvenanmaa" + }, + "hrv": { + "official": "Aland Islands", + "common": "Ålandski otoci" + }, + "hun": { + "official": "Åland-szigetek", + "common": "Åland-szigetek" + }, + "ind": { + "official": "Kepulauan Åland", + "common": "Aland" + }, + "ita": { + "official": "Isole Åland", + "common": "Isole Aland" + }, + "jpn": { + "official": "オーランド諸島", + "common": "オーランド諸島" + }, + "kor": { + "official": "올란드 제도", + "common": "올란드 제도" + }, + "nld": { + "official": "Åland eilanden", + "common": "Ålandeilanden" + }, + "per": { + "official": "جزایر الند", + "common": "جزایر الند" + }, + "pol": { + "official": "Wyspy Alandzkie", + "common": "Wyspy Alandzkie" + }, + "por": { + "official": "Ilhas Åland", + "common": "Alândia" + }, + "rus": { + "official": "Аландские острова", + "common": "Аландские острова" + }, + "slk": { + "official": "Alandské ostrovy", + "common": "Alandy" + }, + "spa": { + "official": "Islas Åland", + "common": "Alandia" + }, + "srp": { + "official": "Оландска Острва", + "common": "Оландска Острва" + }, + "swe": { + "official": "Åland", + "common": "Åland" + }, + "tur": { + "official": "Åland Adaları", + "common": "Åland" + }, + "urd": { + "official": "جزائر اولند", + "common": "جزائر اولند" + }, + "zho": { + "official": "奥兰群岛", + "common": "奥兰群岛" + } + }, + "flag": "🇦🇽", + "maps": { + "googleMaps": "https://goo.gl/maps/ewFb3vYsfUmVCoSb8", + "openStreetMaps": "https://www.openstreetmap.org/relation/1650407" + }, + "population": 30654, + "car": { + "signs": [ + "" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ax.png", + "svg": "https://flagcdn.com/ax.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ax.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ax.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 60.12, + 19.9 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Germany", + "official": "Federal Republic of Germany", + "nativeName": { + "deu": { + "official": "Bundesrepublik Deutschland", + "common": "Deutschland" + } + } + }, + "tld": [ + ".de" + ], + "cca2": "DE", + "ccn3": "276", + "cioc": "GER", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "9" + ] + }, + "capital": [ + "Berlin" + ], + "altSpellings": [ + "DE", + "Federal Republic of Germany", + "Bundesrepublik Deutschland" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "deu": "German" + }, + "latlng": [ + 51.0, + 9.0 + ], + "landlocked": false, + "borders": [ + "AUT", + "BEL", + "CZE", + "DNK", + "FRA", + "LUX", + "NLD", + "POL", + "CHE" + ], + "area": 357114.0, + "demonyms": { + "eng": { + "f": "German", + "m": "German" + }, + "fra": { + "f": "Allemande", + "m": "Allemand" + } + }, + "cca3": "DEU", + "translations": { + "ara": { + "official": "جمهورية ألمانيا الاتحادية", + "common": "ألمانيا" + }, + "bre": { + "official": "Republik Kevreadel Alamagn", + "common": "Alamagn" + }, + "ces": { + "official": "Spolková republika Německo", + "common": "Německo" + }, + "cym": { + "official": "Federal Republic of Germany", + "common": "Germany" + }, + "deu": { + "official": "Bundesrepublik Deutschland", + "common": "Deutschland" + }, + "est": { + "official": "Saksamaa Liitvabariik", + "common": "Saksamaa" + }, + "fin": { + "official": "Saksan liittotasavalta", + "common": "Saksa" + }, + "fra": { + "official": "République fédérale d'Allemagne", + "common": "Allemagne" + }, + "hrv": { + "official": "Njemačka Federativna Republika", + "common": "Njemačka" + }, + "hun": { + "official": "Német Szövetségi Köztársaság", + "common": "Németország" + }, + "ind": { + "official": "Republik Federal Jerman", + "common": "Jerman" + }, + "ita": { + "official": "Repubblica federale di Germania", + "common": "Germania" + }, + "jpn": { + "official": "ドイツ連邦共和国", + "common": "ドイツ" + }, + "kor": { + "official": "독일 연방 공화국", + "common": "독일" + }, + "nld": { + "official": "Bondsrepubliek Duitsland", + "common": "Duitsland" + }, + "per": { + "official": "جمهوری فدرال آلمان", + "common": "آلمان" + }, + "pol": { + "official": "Republika Federalna Niemiec", + "common": "Niemcy" + }, + "por": { + "official": "República Federal da Alemanha", + "common": "Alemanha" + }, + "rus": { + "official": "Федеративная Республика Германия", + "common": "Германия" + }, + "slk": { + "official": "Nemecká spolková republika", + "common": "Nemecko" + }, + "spa": { + "official": "República Federal de Alemania", + "common": "Alemania" + }, + "srp": { + "official": "Савезна Република Немачка", + "common": "Немачка" + }, + "swe": { + "official": "Förbundsrepubliken Tyskland", + "common": "Tyskland" + }, + "tur": { + "official": "Almanya Federal Cumhuriyeti", + "common": "Almanya" + }, + "urd": { + "official": "وفاقی جمہوریہ جرمنی", + "common": "جرمنی" + }, + "zho": { + "official": "德意志联邦共和国", + "common": "德国" + } + }, + "flag": "🇩🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/mD9FBMq1nvXUBrkv6", + "openStreetMaps": "https://www.openstreetmap.org/relation/51477" + }, + "population": 83491249, + "gini": { + "2016": 31.9 + }, + "fifa": "GER", + "car": { + "signs": [ + "DY" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/de.png", + "svg": "https://flagcdn.com/de.svg", + "alt": "The flag of Germany is composed of three equal horizontal bands of black, red and gold." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/de.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/de.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 52.52, + 13.4 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Denmark", + "official": "Kingdom of Denmark", + "nativeName": { + "dan": { + "official": "Kongeriget Danmark", + "common": "Danmark" + } + } + }, + "tld": [ + ".dk" + ], + "cca2": "DK", + "ccn3": "208", + "cioc": "DEN", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "DKK": { + "symbol": "kr", + "name": "Danish krone" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "5" + ] + }, + "capital": [ + "Copenhagen" + ], + "altSpellings": [ + "DK", + "Danmark", + "Kingdom of Denmark", + "Kongeriget Danmark" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "dan": "Danish" + }, + "latlng": [ + 56.0, + 10.0 + ], + "landlocked": false, + "borders": [ + "DEU" + ], + "area": 43094.0, + "demonyms": { + "eng": { + "f": "Danish", + "m": "Danish" + }, + "fra": { + "f": "Danoise", + "m": "Danois" + } + }, + "cca3": "DNK", + "translations": { + "ara": { + "official": "مملكة الدنمارك", + "common": "الدنمارك" + }, + "bre": { + "official": "Rouantelezh Danmark", + "common": "Danmark" + }, + "ces": { + "official": "Dánské království", + "common": "Dánsko" + }, + "cym": { + "official": "Teyrnas Denmarc", + "common": "Denmarc" + }, + "deu": { + "official": "Königreich Dänemark", + "common": "Dänemark" + }, + "est": { + "official": "Taani Kuningriik", + "common": "Taani" + }, + "fin": { + "official": "Tanskan kuningaskunta", + "common": "Tanska" + }, + "fra": { + "official": "Royaume du Danemark", + "common": "Danemark" + }, + "hrv": { + "official": "Kraljevina Danska", + "common": "Danska" + }, + "hun": { + "official": "Dán Királyság", + "common": "Dánia" + }, + "ind": { + "official": "Kerajaan Denmark", + "common": "Denmark" + }, + "ita": { + "official": "Regno di Danimarca", + "common": "Danimarca" + }, + "jpn": { + "official": "デンマーク王国", + "common": "デンマーク" + }, + "kor": { + "official": "덴마크 왕국", + "common": "덴마크" + }, + "nld": { + "official": "Koninkrijk Denemarken", + "common": "Denemarken" + }, + "per": { + "official": "پادشاهی دانمارک", + "common": "دانمارک" + }, + "pol": { + "official": "Królestwo Danii", + "common": "Dania" + }, + "por": { + "official": "Reino da Dinamarca", + "common": "Dinamarca" + }, + "rus": { + "official": "Королевство Дания", + "common": "Дания" + }, + "slk": { + "official": "Dánske kráľovstvo", + "common": "Dánsko" + }, + "spa": { + "official": "Reino de Dinamarca", + "common": "Dinamarca" + }, + "srp": { + "official": "Краљевина Данска", + "common": "Данска" + }, + "swe": { + "official": "Konungariket Danmark", + "common": "Danmark" + }, + "tur": { + "official": "Danimarka Krallığı", + "common": "Danimarka" + }, + "urd": { + "official": "مملکتِ ڈنمارک", + "common": "ڈنمارک" + }, + "zho": { + "official": "丹麦王国", + "common": "丹麦" + } + }, + "flag": "🇩🇰", + "maps": { + "googleMaps": "https://goo.gl/maps/UddGPN7hAyrtpFiT6", + "openStreetMaps": "https://www.openstreetmap.org/relation/50046" + }, + "population": 6011488, + "gini": { + "2018": 28.2 + }, + "fifa": "DEN", + "car": { + "signs": [ + "DK" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00", + "UTC-03:00", + "UTC-01:00", + "UTC", + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/dk.png", + "svg": "https://flagcdn.com/dk.svg", + "alt": "The flag of Denmark has a red field with a large white cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/dk.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/dk.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 55.67, + 12.58 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Iceland", + "official": "Iceland", + "nativeName": { + "isl": { + "official": "Ísland", + "common": "Ísland" + } + } + }, + "tld": [ + ".is" + ], + "cca2": "IS", + "ccn3": "352", + "cioc": "ISL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "ISK": { + "symbol": "kr", + "name": "Icelandic króna" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "54" + ] + }, + "capital": [ + "Reykjavik" + ], + "altSpellings": [ + "IS", + "Island", + "Republic of Iceland", + "Lýðveldið Ísland" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "isl": "Icelandic" + }, + "latlng": [ + 65.0, + -18.0 + ], + "landlocked": false, + "area": 103000.0, + "demonyms": { + "eng": { + "f": "Icelander", + "m": "Icelander" + }, + "fra": { + "f": "Islandaise", + "m": "Islandais" + } + }, + "cca3": "ISL", + "translations": { + "ara": { + "official": "آيسلندا", + "common": "آيسلندا" + }, + "bre": { + "official": "Island", + "common": "Island" + }, + "ces": { + "official": "Island", + "common": "Island" + }, + "cym": { + "official": "Iceland", + "common": "Iceland" + }, + "deu": { + "official": "Island", + "common": "Island" + }, + "est": { + "official": "Islandi Vabariik", + "common": "Island" + }, + "fin": { + "official": "Islanti", + "common": "Islanti" + }, + "fra": { + "official": "République d'Islande", + "common": "Islande" + }, + "hrv": { + "official": "Island", + "common": "Island" + }, + "hun": { + "official": "Izland", + "common": "Izland" + }, + "ind": { + "official": "Islandia", + "common": "Islandia" + }, + "ita": { + "official": "Islanda", + "common": "Islanda" + }, + "jpn": { + "official": "アイスランド", + "common": "アイスランド" + }, + "kor": { + "official": "아이슬란드 공화국", + "common": "아이슬란드" + }, + "nld": { + "official": "IJsland", + "common": "IJsland" + }, + "per": { + "official": "جمهوری ایسلند", + "common": "ایسلند" + }, + "pol": { + "official": "Republika Islandii", + "common": "Islandia" + }, + "por": { + "official": "Islândia", + "common": "Islândia" + }, + "rus": { + "official": "Исландия", + "common": "Исландия" + }, + "slk": { + "official": "Islandská republika", + "common": "Island" + }, + "spa": { + "official": "Islandia", + "common": "Islandia" + }, + "srp": { + "official": "Исланд", + "common": "Исланд" + }, + "swe": { + "official": "Island", + "common": "Island" + }, + "tur": { + "official": "İzlanda", + "common": "İzlanda" + }, + "urd": { + "official": "آئس لینڈ", + "common": "آئس لینڈ" + }, + "zho": { + "official": "冰岛", + "common": "冰岛" + } + }, + "flag": "🇮🇸", + "maps": { + "googleMaps": "https://goo.gl/maps/WxFWSQuc3oamNxoE6", + "openStreetMaps": "https://www.openstreetmap.org/relation/299133" + }, + "population": 391810, + "gini": { + "2017": 26.1 + }, + "fifa": "ISL", + "car": { + "signs": [ + "IS" + ], + "side": "right" + }, + "timezones": [ + "UTC" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/is.png", + "svg": "https://flagcdn.com/is.svg", + "alt": "The flag of Iceland has a blue field with a large white-edged red cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/is.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/is.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 64.15, + -21.95 + ] + }, + "postalCode": { + "format": "###", + "regex": "^(\\d{3})$" + } + }, + { + "name": { + "common": "Poland", + "official": "Republic of Poland", + "nativeName": { + "pol": { + "official": "Rzeczpospolita Polska", + "common": "Polska" + } + } + }, + "tld": [ + ".pl" + ], + "cca2": "PL", + "ccn3": "616", + "cioc": "POL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "PLN": { + "symbol": "zł", + "name": "Polish złoty" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "8" + ] + }, + "capital": [ + "Warsaw" + ], + "altSpellings": [ + "PL", + "Republic of Poland", + "Rzeczpospolita Polska" + ], + "region": "Europe", + "subregion": "Central Europe", + "languages": { + "pol": "Polish" + }, + "latlng": [ + 52.0, + 20.0 + ], + "landlocked": false, + "borders": [ + "BLR", + "CZE", + "DEU", + "LTU", + "RUS", + "SVK", + "UKR" + ], + "area": 312679.0, + "demonyms": { + "eng": { + "f": "Polish", + "m": "Polish" + }, + "fra": { + "f": "Polonaise", + "m": "Polonais" + } + }, + "cca3": "POL", + "translations": { + "ara": { + "official": "الجمهورية البولندية", + "common": "بولندا" + }, + "bre": { + "official": "Republik Polonia", + "common": "Polonia" + }, + "ces": { + "official": "Polská republika", + "common": "Polsko" + }, + "cym": { + "official": "Republic of Poland", + "common": "Poland" + }, + "deu": { + "official": "Republik Polen", + "common": "Polen" + }, + "est": { + "official": "Poola Vabariik", + "common": "Poola" + }, + "fin": { + "official": "Puolan tasavalta", + "common": "Puola" + }, + "fra": { + "official": "République de Pologne", + "common": "Pologne" + }, + "hrv": { + "official": "Republika Poljska", + "common": "Poljska" + }, + "hun": { + "official": "Lengyel Köztársaság", + "common": "Lengyelország" + }, + "ind": { + "official": "Republik Polandia", + "common": "Polandia" + }, + "ita": { + "official": "Repubblica di Polonia", + "common": "Polonia" + }, + "jpn": { + "official": "ポーランド共和国", + "common": "ポーランド" + }, + "kor": { + "official": "폴란드 공화국", + "common": "폴란드" + }, + "nld": { + "official": "Republiek Polen", + "common": "Polen" + }, + "per": { + "official": "جمهوری لهستان", + "common": "لهستان" + }, + "pol": { + "official": "Rzeczpospolita Polska", + "common": "Polska" + }, + "por": { + "official": "República da Polónia", + "common": "Polónia" + }, + "rus": { + "official": "Республика Польша", + "common": "Польша" + }, + "slk": { + "official": "Poľská republika", + "common": "Poľsko" + }, + "spa": { + "official": "República de Polonia", + "common": "Polonia" + }, + "srp": { + "official": "Република Пољска", + "common": "Пољска" + }, + "swe": { + "official": "Republiken Polen", + "common": "Polen" + }, + "tur": { + "official": "Polonya Cumhuriyeti", + "common": "Polonya" + }, + "urd": { + "official": "جمہوریہ پولینڈ", + "common": "پولینڈ" + }, + "zho": { + "official": "波兰共和国", + "common": "波兰" + } + }, + "flag": "🇵🇱", + "maps": { + "googleMaps": "https://goo.gl/maps/gY9Xw4Sf4415P4949", + "openStreetMaps": "https://www.openstreetmap.org/relation/49715" + }, + "population": 37392000, + "gini": { + "2018": 30.2 + }, + "fifa": "POL", + "car": { + "signs": [ + "PL" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/pl.png", + "svg": "https://flagcdn.com/pl.svg", + "alt": "The flag of Poland is composed of two equal horizontal bands of white and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/pl.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/pl.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 52.25, + 21.0 + ] + }, + "postalCode": { + "format": "##-###", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Faroe Islands", + "official": "Faroe Islands", + "nativeName": { + "dan": { + "official": "Færøerne", + "common": "Færøerne" + }, + "fao": { + "official": "Føroyar", + "common": "Føroyar" + } + } + }, + "tld": [ + ".fo" + ], + "cca2": "FO", + "ccn3": "234", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "DKK": { + "symbol": "kr", + "name": "Danish krone" + }, + "FOK": { + "symbol": "kr", + "name": "Faroese króna" + } + }, + "idd": { + "root": "+2", + "suffixes": [ + "98" + ] + }, + "capital": [ + "Tórshavn" + ], + "altSpellings": [ + "FO", + "Føroyar", + "Færøerne" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "dan": "Danish", + "fao": "Faroese" + }, + "latlng": [ + 62.0, + -7.0 + ], + "landlocked": false, + "area": 1393.0, + "demonyms": { + "eng": { + "f": "Faroese", + "m": "Faroese" + }, + "fra": { + "f": "Féroïenne", + "m": "Féroïen" + } + }, + "cca3": "FRO", + "translations": { + "ara": { + "official": "جزر فارو", + "common": "جزر فارو" + }, + "bre": { + "official": "Inizi Faero", + "common": "Inizi Faero" + }, + "ces": { + "official": "Faerské ostrovy", + "common": "Faerské ostrovy" + }, + "cym": { + "official": "Faroe Islands", + "common": "Faroe Islands" + }, + "deu": { + "official": "Färöer", + "common": "Färöer-Inseln" + }, + "est": { + "official": "Fääri saared", + "common": "Fääri saared" + }, + "fin": { + "official": "Färsaaret", + "common": "Färsaaret" + }, + "fra": { + "official": "Îles Féroé", + "common": "Îles Féroé" + }, + "hrv": { + "official": "Farski Otoci", + "common": "Farski Otoci" + }, + "hun": { + "official": "Feröer", + "common": "Feröer" + }, + "ind": { + "official": "Kepulauan Faroe", + "common": "Kepulauan Faroe" + }, + "ita": { + "official": "Isole Faroe", + "common": "Isole Far Oer" + }, + "jpn": { + "official": "フェロー諸島", + "common": "フェロー諸島" + }, + "kor": { + "official": "페로 제도", + "common": "페로 제도" + }, + "nld": { + "official": "Faeröer", + "common": "Faeröer" + }, + "per": { + "official": "جزایر فاروئه", + "common": "جزایر فاروئه" + }, + "pol": { + "official": "Wyspy Owcze", + "common": "Wyspy Owcze" + }, + "por": { + "official": "Ilhas Faroe", + "common": "Ilhas Faroé" + }, + "rus": { + "official": "Фарерские острова", + "common": "Фарерские острова" + }, + "slk": { + "official": "Faerské ostrovy", + "common": "Faerské ostrovy" + }, + "spa": { + "official": "Islas Feroe", + "common": "Islas Faroe" + }, + "srp": { + "official": "Фарска острва", + "common": "Фарска острва" + }, + "swe": { + "official": "Färöarna", + "common": "Färöarna" + }, + "tur": { + "official": "Faroe Adaları", + "common": "Faroe Adaları" + }, + "urd": { + "official": "جزائر فارو", + "common": "جزائر فارو" + }, + "zho": { + "official": "法罗群岛", + "common": "法罗群岛" + } + }, + "flag": "🇫🇴", + "maps": { + "googleMaps": "https://goo.gl/maps/6sTru4SmHdEVcNkM6", + "openStreetMaps": "https://www.openstreetmap.org/relation/52939" + }, + "population": 54885, + "fifa": "FRO", + "car": { + "signs": [ + "FO" + ], + "side": "right" + }, + "timezones": [ + "UTC+00:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/fo.png", + "svg": "https://flagcdn.com/fo.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/fo.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/fo.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 62.01, + -6.77 + ] + }, + "postalCode": { + "format": "FO-###", + "regex": "^(?:FO)*(\\d{3})$" + } + }, + { + "name": { + "common": "United Kingdom", + "official": "United Kingdom of Great Britain and Northern Ireland", + "nativeName": { + "eng": { + "official": "United Kingdom of Great Britain and Northern Ireland", + "common": "United Kingdom" + } + } + }, + "tld": [ + ".uk" + ], + "cca2": "GB", + "ccn3": "826", + "cioc": "GBR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "GBP": { + "symbol": "£", + "name": "British pound" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "4" + ] + }, + "capital": [ + "London" + ], + "altSpellings": [ + "GB", + "UK", + "Great Britain" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "eng": "English" + }, + "latlng": [ + 54.0, + -2.0 + ], + "landlocked": false, + "borders": [ + "IRL" + ], + "area": 244376.0, + "demonyms": { + "eng": { + "f": "British", + "m": "British" + }, + "fra": { + "f": "Britannique", + "m": "Britannique" + } + }, + "cca3": "GBR", + "translations": { + "ara": { + "official": "المملكة المتحدة لبريطانيا العظمى وايرلندا الشمالية", + "common": "المملكة المتحدة" + }, + "bre": { + "official": "Rouantelezh-Unanet Breizh-Veur ha Norzhiwerzhon", + "common": "Rouantelezh-Unanet" + }, + "ces": { + "official": "Spojené království Velké Británie a Severního Irska", + "common": "Spojené království" + }, + "cym": { + "official": "United Kingdom of Great Britain and Northern Ireland", + "common": "United Kingdom" + }, + "deu": { + "official": "Vereinigtes Königreich Großbritannien und Nordirland", + "common": "Vereinigtes Königreich" + }, + "est": { + "official": "Suurbritannia ja Põhja-Iiri Ühendkuningriik", + "common": "Suurbritannia" + }, + "fin": { + "official": "Ison-Britannian ja Pohjois-Irlannin yhdistynyt kuningaskunta", + "common": "Yhdistynyt kuningaskunta" + }, + "fra": { + "official": "Royaume-Uni de Grande-Bretagne et d'Irlande du Nord", + "common": "Royaume-Uni" + }, + "hrv": { + "official": "Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske", + "common": "Ujedinjeno Kraljevstvo" + }, + "hun": { + "official": "Nagy-Britannia és Észak-Írország Egyesült Királysága", + "common": "Egyesült Királyság" + }, + "ind": { + "official": "Perserikatan Kerajaan Britania Raya dan Irlandia Utara", + "common": "Britania Raya" + }, + "ita": { + "official": "Regno Unito di Gran Bretagna e Irlanda del Nord", + "common": "Regno Unito" + }, + "jpn": { + "official": "グレート·ブリテンおよび北アイルランド連合王国", + "common": "イギリス" + }, + "kor": { + "official": "그레이트브리튼 북아일랜드 연합 왕국", + "common": "영국" + }, + "nld": { + "official": "Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland", + "common": "Verenigd Koninkrijk" + }, + "per": { + "official": "پادشاهی متحد بریتانیای کبیر و ایرلند شمالی", + "common": "انگلیس" + }, + "pol": { + "official": "Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej", + "common": "Zjednoczone Królestwo" + }, + "por": { + "official": "Reino Unido da Grã-Bretanha e Irlanda do Norte", + "common": "Reino Unido" + }, + "rus": { + "official": "Соединенное Королевство Великобритании и Северной Ирландии", + "common": "Великобритания" + }, + "slk": { + "official": "Spojené kráľovstvo Veľkej Británie a SevernéhoÌrska", + "common": "Veľká Británia (Spojené kráľovstvo)" + }, + "spa": { + "official": "Reino Unido de Gran Bretaña e Irlanda del Norte", + "common": "Reino Unido" + }, + "srp": { + "official": "Уједињено Краљевство Велике Британије и Северне Ирске", + "common": "Уједињено Краљевство" + }, + "swe": { + "official": "Förenade konungariket Storbritannien och Nordirland", + "common": "Storbritannien" + }, + "tur": { + "official": "Büyük Britanya ve Kuzey İrlanda Birleşik Krallığı", + "common": "Birleşik Krallık" + }, + "urd": { + "official": "مملکتِ متحدہ برطانیہ عظمی و شمالی آئرلینڈ", + "common": "مملکتِ متحدہ" + }, + "zho": { + "official": "大不列颠及北爱尔兰联合王国", + "common": "英国" + } + }, + "flag": "🇬🇧", + "maps": { + "googleMaps": "https://goo.gl/maps/FoDtc3UKMkFsXAjHA", + "openStreetMaps": "https://www.openstreetmap.org/relation/62149" + }, + "population": 69281437, + "gini": { + "2017": 35.1 + }, + "car": { + "signs": [ + "GB" + ], + "side": "left" + }, + "timezones": [ + "UTC-08:00", + "UTC-05:00", + "UTC-04:00", + "UTC-03:00", + "UTC-02:00", + "UTC", + "UTC+01:00", + "UTC+02:00", + "UTC+06:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/gb.png", + "svg": "https://flagcdn.com/gb.svg", + "alt": "The flag of the United Kingdom — the Union Jack — has a blue field. It features the white-edged red cross of Saint George superimposed on the diagonal red cross of Saint Patrick which is superimposed on the diagonal white cross of Saint Andrew." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gb.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gb.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 51.5, + -0.08 + ] + }, + "postalCode": { + "format": "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA", + "regex": "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$" + } + }, + { + "name": { + "common": "Vatican City", + "official": "Vatican City State", + "nativeName": { + "ita": { + "official": "Stato della Città del Vaticano", + "common": "Vaticano" + }, + "lat": { + "official": "Status Civitatis Vaticanæ", + "common": "Vaticanæ" + } + } + }, + "tld": [ + ".va" + ], + "cca2": "VA", + "ccn3": "336", + "independent": true, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "906698", + "79" + ] + }, + "capital": [ + "Vatican City" + ], + "altSpellings": [ + "VA", + "Holy See (Vatican City State)", + "Vatican City State", + "Stato della Città del Vaticano" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "ita": "Italian", + "lat": "Latin" + }, + "latlng": [ + 41.9, + 12.45 + ], + "landlocked": true, + "borders": [ + "ITA" + ], + "area": 0.49, + "demonyms": { + "eng": { + "f": "Vatican", + "m": "Vatican" + }, + "fra": { + "f": "Vaticane", + "m": "Vatican" + } + }, + "cca3": "VAT", + "translations": { + "ara": { + "official": "دولة مدينة الفاتيكان", + "common": "مدينة الفاتيكان" + }, + "bre": { + "official": "Riez Keoded ar Vatikan", + "common": "Vatikan" + }, + "ces": { + "official": "Městský stát Vatikán", + "common": "Vatikán" + }, + "cym": { + "official": "Vatican City State", + "common": "Vatican City" + }, + "deu": { + "official": "Staat Vatikanstadt", + "common": "Vatikanstadt" + }, + "est": { + "official": "Vatikani Linnriik", + "common": "Vatikan" + }, + "fin": { + "official": "Vatikaanin kaupunkivaltio", + "common": "Vatikaani" + }, + "fra": { + "official": "Cité du Vatican", + "common": "Cité du Vatican" + }, + "hrv": { + "official": "Vatikan", + "common": "Vatikan" + }, + "hun": { + "official": "Vatikán Állam", + "common": "Vatikán" + }, + "ind": { + "official": "Negara Kota Vatikan", + "common": "Vatikan" + }, + "ita": { + "official": "Città del Vaticano", + "common": "Città del Vaticano" + }, + "jpn": { + "official": "バチカン市国の状態", + "common": "バチカン市国" + }, + "kor": { + "official": "바티칸 시국", + "common": "바티칸" + }, + "nld": { + "official": "Vaticaanstad", + "common": "Vaticaanstad" + }, + "per": { + "official": "دولت‌شهر واتیکان", + "common": "واتیکان" + }, + "pol": { + "official": "Państwo Watykańskie", + "common": "Watykan" + }, + "por": { + "official": "Cidade do Vaticano", + "common": "Cidade do Vaticano" + }, + "rus": { + "official": "Город-государство Ватикан", + "common": "Ватикан" + }, + "slk": { + "official": "Svätá stolica (Vatikánsky mestský štát", + "common": "Vatikán" + }, + "spa": { + "official": "Ciudad del Vaticano", + "common": "Ciudad del Vaticano" + }, + "srp": { + "official": "Град Ватикан", + "common": "Ватикан" + }, + "swe": { + "official": "Vatikanstaten", + "common": "Vatikanstaten" + }, + "tur": { + "official": "Vatikan Şehir Devleti", + "common": "Vatikan" + }, + "urd": { + "official": "ویٹیکن سٹی", + "common": "ویٹیکن سٹی" + }, + "zho": { + "official": "梵蒂冈城国", + "common": "梵蒂冈" + } + }, + "flag": "🇻🇦", + "maps": { + "googleMaps": "https://goo.gl/maps/DTKvw5Bd1QZaDZmE8", + "openStreetMaps": "https://www.openstreetmap.org/relation/36989" + }, + "population": 882, + "car": { + "signs": [ + "V" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/va.png", + "svg": "https://flagcdn.com/va.svg", + "alt": "The flag of Vatican City is square shaped. It is composed of two equal vertical bands of yellow and white, with national coat of arms centered in the white band. The national coat of arms comprises the Papal Tiara superimposed on two crossed keys." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/va.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/va.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 41.9, + 12.45 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "San Marino", + "official": "Republic of San Marino", + "nativeName": { + "ita": { + "official": "Repubblica di San Marino", + "common": "San Marino" + } + } + }, + "tld": [ + ".sm" + ], + "cca2": "SM", + "ccn3": "674", + "cioc": "SMR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "78" + ] + }, + "capital": [ + "City of San Marino" + ], + "altSpellings": [ + "SM", + "Republic of San Marino", + "Repubblica di San Marino" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "ita": "Italian" + }, + "latlng": [ + 43.76666666, + 12.41666666 + ], + "landlocked": true, + "borders": [ + "ITA" + ], + "area": 61.0, + "demonyms": { + "eng": { + "f": "Sammarinese", + "m": "Sammarinese" + }, + "fra": { + "f": "Saint-Marinaise", + "m": "Saint-Marinais" + } + }, + "cca3": "SMR", + "translations": { + "ara": { + "official": "جمهورية سان مارينو", + "common": "سان مارينو" + }, + "bre": { + "official": "Republik San Marino", + "common": "San Marino" + }, + "ces": { + "official": "Republika San Marino", + "common": "San Marino" + }, + "cym": { + "official": "Republic of San Marino", + "common": "San Marino" + }, + "deu": { + "official": "Republik San Marino", + "common": "San Marino" + }, + "est": { + "official": "San Marino Vabariik", + "common": "San Marino" + }, + "fin": { + "official": "San Marinon seesteinen tasavalta", + "common": "San Marino" + }, + "fra": { + "official": "République de Saint-Marin", + "common": "Saint-Marin" + }, + "hrv": { + "official": "Većina Serene Republika San Marino", + "common": "San Marino" + }, + "hun": { + "official": "San Marino Köztársaság", + "common": "San Marino" + }, + "ind": { + "official": "Republik San Marino", + "common": "San Marino" + }, + "ita": { + "official": "Serenissima Repubblica di San Marino", + "common": "San Marino" + }, + "jpn": { + "official": "サンマリノのほとんどセリーヌ共和国", + "common": "サンマリノ" + }, + "kor": { + "official": "산마리노 공화국", + "common": "산마리노" + }, + "nld": { + "official": "Meest Serene Republiek San Marino", + "common": "San Marino" + }, + "per": { + "official": "جمهوری سان مارینو", + "common": "سان مارینو" + }, + "pol": { + "official": "Republika San Marino", + "common": "San Marino" + }, + "por": { + "official": "Sereníssima República de San Marino", + "common": "San Marino" + }, + "rus": { + "official": "Большинство Serene Республика Сан-Марино", + "common": "Сан-Марино" + }, + "slk": { + "official": "Sanmarínska republika", + "common": "San Maríno" + }, + "spa": { + "official": "Serenísima República de San Marino", + "common": "San Marino" + }, + "srp": { + "official": "Најузвишенија Република Сан Марино", + "common": "Сан Марино" + }, + "swe": { + "official": "Republiken San Marino", + "common": "San Marino" + }, + "tur": { + "official": "San Marino Cumhuriyeti", + "common": "San Marino" + }, + "urd": { + "official": "جمہوریہ سان مارینو", + "common": "سان مارینو" + }, + "zho": { + "official": "圣马力诺共和国", + "common": "圣马力诺" + } + }, + "flag": "🇸🇲", + "maps": { + "googleMaps": "https://goo.gl/maps/rxCVJjm8dVY93RPY8", + "openStreetMaps": "https://www.openstreetmap.org/relation/54624" + }, + "population": 34132, + "fifa": "SMR", + "car": { + "signs": [ + "RSM" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/sm.png", + "svg": "https://flagcdn.com/sm.svg", + "alt": "The flag of San Marino is composed of two equal horizontal bands of white and light blue, with the national coat of arms superimposed in the center." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/sm.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/sm.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 43.94, + 12.45 + ] + }, + "postalCode": { + "format": "4789#", + "regex": "^(4789\\d)$" + } + }, + { + "name": { + "common": "Cyprus", + "official": "Republic of Cyprus", + "nativeName": { + "ell": { + "official": "Δημοκρατία της Κύπρος", + "common": "Κύπρος" + }, + "tur": { + "official": "Kıbrıs Cumhuriyeti", + "common": "Kıbrıs" + } + } + }, + "tld": [ + ".cy" + ], + "cca2": "CY", + "ccn3": "196", + "cioc": "CYP", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "57" + ] + }, + "capital": [ + "Nicosia" + ], + "altSpellings": [ + "CY", + "Kýpros", + "Kıbrıs", + "Republic of Cyprus", + "Κυπριακή Δημοκρατία", + "Kıbrıs Cumhuriyeti" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "ell": "Greek", + "tur": "Turkish" + }, + "latlng": [ + 35.0, + 33.0 + ], + "landlocked": false, + "area": 9251.0, + "demonyms": { + "eng": { + "f": "Cypriot", + "m": "Cypriot" + }, + "fra": { + "f": "Chypriote", + "m": "Chypriote" + } + }, + "cca3": "CYP", + "translations": { + "ara": { + "official": "جمهورية قبرص", + "common": "قبرص" + }, + "bre": { + "official": "Republik Kiprenez", + "common": "Kiprenez" + }, + "ces": { + "official": "Kyperská republika", + "common": "Kypr" + }, + "cym": { + "official": "Gweriniaeth Cyprus", + "common": "Cyprus" + }, + "deu": { + "official": "Republik Zypern", + "common": "Zypern" + }, + "est": { + "official": "Küprose Vabariik", + "common": "Küpros" + }, + "fin": { + "official": "Kyproksen tasavalta", + "common": "Kypros" + }, + "fra": { + "official": "République de Chypre", + "common": "Chypre" + }, + "hrv": { + "official": "Republika Cipar", + "common": "Cipar" + }, + "hun": { + "official": "Ciprusi Köztársaság", + "common": "Ciprus" + }, + "ind": { + "official": "Republik Siprus", + "common": "Siprus" + }, + "ita": { + "official": "Repubblica di Cipro", + "common": "Cipro" + }, + "jpn": { + "official": "キプロス共和国", + "common": "キプロス" + }, + "kor": { + "official": "키프로스 공화국", + "common": "키프로스" + }, + "nld": { + "official": "Republiek Cyprus", + "common": "Cyprus" + }, + "per": { + "official": "جمهوری قبرس", + "common": "قِبرِس" + }, + "pol": { + "official": "Republika Cypryjska", + "common": "Cypr" + }, + "por": { + "official": "República de Chipre", + "common": "Chipre" + }, + "rus": { + "official": "Республика Кипр", + "common": "Кипр" + }, + "slk": { + "official": "Cyperská republika", + "common": "Cyprus" + }, + "spa": { + "official": "República de Chipre", + "common": "Chipre" + }, + "srp": { + "official": "Кипарска Република", + "common": "Кипар" + }, + "swe": { + "official": "Republiken Cypern", + "common": "Cypern" + }, + "tur": { + "official": "Kıbrıs Cumhuriyeti", + "common": "Kıbrıs" + }, + "urd": { + "official": "جمہوریہ قبرص", + "common": "قبرص" + }, + "zho": { + "official": "塞浦路斯共和国", + "common": "塞浦路斯" + } + }, + "flag": "🇨🇾", + "maps": { + "googleMaps": "https://goo.gl/maps/77hPBRdLid8yD5Bm7", + "openStreetMaps": "https://www.openstreetmap.org/relation/307787" + }, + "population": 1442614, + "gini": { + "2018": 32.7 + }, + "fifa": "CYP", + "car": { + "signs": [ + "CY" + ], + "side": "left" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/cy.png", + "svg": "https://flagcdn.com/cy.svg", + "alt": "The flag of Cyprus has a white field, at the center of which is a copper-colored silhouette of the Island of Cyprus above two green olive branches crossed at the stem." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/cy.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/cy.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 35.17, + 33.37 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Malta", + "official": "Republic of Malta", + "nativeName": { + "eng": { + "official": "Republic of Malta", + "common": "Malta" + }, + "mlt": { + "official": "Repubblika ta ' Malta", + "common": "Malta" + } + } + }, + "tld": [ + ".mt" + ], + "cca2": "MT", + "ccn3": "470", + "cioc": "MLT", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "56" + ] + }, + "capital": [ + "Valletta" + ], + "altSpellings": [ + "MT", + "Republic of Malta", + "Repubblika ta' Malta" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "eng": "English", + "mlt": "Maltese" + }, + "latlng": [ + 35.9375, + 14.3754 + ], + "landlocked": false, + "area": 316.0, + "demonyms": { + "eng": { + "f": "Maltese", + "m": "Maltese" + }, + "fra": { + "f": "Maltaise", + "m": "Maltais" + } + }, + "cca3": "MLT", + "translations": { + "ara": { + "official": "جمهورية مالطا", + "common": "مالطا" + }, + "bre": { + "official": "Republik Malta", + "common": "Malta" + }, + "ces": { + "official": "Maltská republika", + "common": "Malta" + }, + "cym": { + "official": "Republic of Malta", + "common": "Malta" + }, + "deu": { + "official": "Republik Malta", + "common": "Malta" + }, + "est": { + "official": "Malta Vabariik", + "common": "Malta" + }, + "fin": { + "official": "Maltan tasavalta", + "common": "Malta" + }, + "fra": { + "official": "République de Malte", + "common": "Malte" + }, + "hrv": { + "official": "Republika Malta", + "common": "Malta" + }, + "hun": { + "official": "Máltai Köztársaság", + "common": "Málta" + }, + "ind": { + "official": "Republik Malta", + "common": "Malta" + }, + "ita": { + "official": "Repubblica di Malta", + "common": "Malta" + }, + "jpn": { + "official": "マルタ共和国", + "common": "マルタ" + }, + "kor": { + "official": "몰타 공화국", + "common": "몰타" + }, + "nld": { + "official": "Republiek Malta", + "common": "Malta" + }, + "per": { + "official": "جمهوری مالت", + "common": "مالت" + }, + "pol": { + "official": "Republika Malty", + "common": "Malta" + }, + "por": { + "official": "República de Malta", + "common": "Malta" + }, + "rus": { + "official": "Республика Мальта", + "common": "Мальта" + }, + "slk": { + "official": "Maltská republika", + "common": "Malta" + }, + "spa": { + "official": "República de Malta", + "common": "Malta" + }, + "srp": { + "official": " Република Малта", + "common": "Малта" + }, + "swe": { + "official": "Republiken Malta", + "common": "Malta" + }, + "tur": { + "official": "Malta Cumhuriyeti", + "common": "Malta" + }, + "urd": { + "official": "جمہوریہ مالٹا", + "common": "مالٹا" + }, + "zho": { + "official": "马耳他共和国", + "common": "马耳他" + } + }, + "flag": "🇲🇹", + "maps": { + "googleMaps": "https://goo.gl/maps/skXCqguxDxxEKVk47", + "openStreetMaps": "https://www.openstreetmap.org/relation/365307" + }, + "population": 574250, + "gini": { + "2018": 28.7 + }, + "fifa": "MLT", + "car": { + "signs": [ + "M" + ], + "side": "left" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/mt.png", + "svg": "https://flagcdn.com/mt.svg", + "alt": "The flag of Malta is composed of two equal vertical bands of white and red. A representation of the George cross edged in red is situated on the upper hoist-side corner of the white band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/mt.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/mt.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 35.88, + 14.5 + ] + }, + "postalCode": { + "format": "@@@ ###|@@@ ##", + "regex": "^([A-Z]{3}\\d{2}\\d?)$" + } + }, + { + "name": { + "common": "Sweden", + "official": "Kingdom of Sweden", + "nativeName": { + "swe": { + "official": "Konungariket Sverige", + "common": "Sverige" + } + } + }, + "tld": [ + ".se" + ], + "cca2": "SE", + "ccn3": "752", + "cioc": "SWE", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "SEK": { + "symbol": "kr", + "name": "Swedish krona" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "6" + ] + }, + "capital": [ + "Stockholm" + ], + "altSpellings": [ + "SE", + "Kingdom of Sweden", + "Konungariket Sverige" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "swe": "Swedish" + }, + "latlng": [ + 62.0, + 15.0 + ], + "landlocked": false, + "borders": [ + "FIN", + "NOR" + ], + "area": 450295.0, + "demonyms": { + "eng": { + "f": "Swedish", + "m": "Swedish" + }, + "fra": { + "f": "Suédoise", + "m": "Suédois" + } + }, + "cca3": "SWE", + "translations": { + "ara": { + "official": "مملكة السويد", + "common": "السويد" + }, + "bre": { + "official": "Rouantelezh Sveden", + "common": "Sveden" + }, + "ces": { + "official": "Švédské království", + "common": "Švédsko" + }, + "cym": { + "official": "Kingdom of Sweden", + "common": "Sweden" + }, + "deu": { + "official": "Königreich Schweden", + "common": "Schweden" + }, + "est": { + "official": "Rootsi Kuningriik", + "common": "Rootsi" + }, + "fin": { + "official": "Ruotsin kuningaskunta", + "common": "Ruotsi" + }, + "fra": { + "official": "Royaume de Suède", + "common": "Suède" + }, + "hrv": { + "official": "Kraljevina Švedska", + "common": "Švedska" + }, + "hun": { + "official": "Svéd Királyság", + "common": "Svédország" + }, + "ind": { + "official": "Kerajaan Swedia", + "common": "Swedia" + }, + "ita": { + "official": "Regno di Svezia", + "common": "Svezia" + }, + "jpn": { + "official": "スウェーデン王国", + "common": "スウェーデン" + }, + "kor": { + "official": "스웨덴 왕국", + "common": "스웨덴" + }, + "nld": { + "official": "Koninkrijk Zweden", + "common": "Zweden" + }, + "per": { + "official": "پادشاهی سوئد", + "common": "سوئد" + }, + "pol": { + "official": "Królestwo Szwecji", + "common": "Szwecja" + }, + "por": { + "official": "Reino da Suécia", + "common": "Suécia" + }, + "rus": { + "official": "Королевство Швеция", + "common": "Швеция" + }, + "slk": { + "official": "Švédske kráľovstvo", + "common": "Švédsko" + }, + "spa": { + "official": "Reino de Suecia", + "common": "Suecia" + }, + "srp": { + "official": "Краљевина Шведска", + "common": "Шведска" + }, + "swe": { + "official": "Konungariket Sverige", + "common": "Sverige" + }, + "tur": { + "official": "İsveç Krallığı", + "common": "İsveç" + }, + "urd": { + "official": "مملکتِ سویڈن", + "common": "سویڈن" + }, + "zho": { + "official": "瑞典王国", + "common": "瑞典" + } + }, + "flag": "🇸🇪", + "maps": { + "googleMaps": "https://goo.gl/maps/iqygE491ADVgnBW39", + "openStreetMaps": "https://www.openstreetmap.org/relation/52822" + }, + "population": 10605098, + "gini": { + "2018": 30.0 + }, + "fifa": "SWE", + "car": { + "signs": [ + "S" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/se.png", + "svg": "https://flagcdn.com/se.svg", + "alt": "The flag of Sweden has a blue field with a large golden-yellow cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/se.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/se.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 59.33, + 18.05 + ] + }, + "postalCode": { + "format": "SE-### ##", + "regex": "^(?:SE)*(\\d{5})$" + } + }, + { + "name": { + "common": "Austria", + "official": "Republic of Austria", + "nativeName": { + "bar": { + "official": "Republik Österreich", + "common": "Österreich" + } + } + }, + "tld": [ + ".at" + ], + "cca2": "AT", + "ccn3": "040", + "cioc": "AUT", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "3" + ] + }, + "capital": [ + "Vienna" + ], + "altSpellings": [ + "AT", + "Osterreich", + "Oesterreich" + ], + "region": "Europe", + "subregion": "Central Europe", + "languages": { + "deu": "German" + }, + "latlng": [ + 47.33333333, + 13.33333333 + ], + "landlocked": true, + "borders": [ + "CZE", + "DEU", + "HUN", + "ITA", + "LIE", + "SVK", + "SVN", + "CHE" + ], + "area": 83871.0, + "demonyms": { + "eng": { + "f": "Austrian", + "m": "Austrian" + }, + "fra": { + "f": "Autrichienne", + "m": "Autrichien" + } + }, + "cca3": "AUT", + "translations": { + "ara": { + "official": "جمهورية النمسا", + "common": "النمسا" + }, + "bre": { + "official": "Republik Aostria", + "common": "Aostria" + }, + "ces": { + "official": "Rakouská republika", + "common": "Rakousko" + }, + "cym": { + "official": "Gweriniaeth Awstria", + "common": "Awstria" + }, + "deu": { + "official": "Republik Österreich", + "common": "Österreich" + }, + "est": { + "official": "Austria Vabariik", + "common": "Austria" + }, + "fin": { + "official": "Itävallan tasavalta", + "common": "Itävalta" + }, + "fra": { + "official": "République d'Autriche", + "common": "Autriche" + }, + "hrv": { + "official": "Republika Austrija", + "common": "Austrija" + }, + "hun": { + "official": "Ausztria", + "common": "Ausztria" + }, + "ind": { + "official": "Republik Austria", + "common": "Austria" + }, + "ita": { + "official": "Repubblica d'Austria", + "common": "Austria" + }, + "jpn": { + "official": "オーストリア共和国", + "common": "オーストリア" + }, + "kor": { + "official": "오스트리아 공화국", + "common": "오스트리아" + }, + "nld": { + "official": "Republiek Oostenrijk", + "common": "Oostenrijk" + }, + "per": { + "official": "جمهوری اتریش", + "common": "اتریش" + }, + "pol": { + "official": "Republika Austrii", + "common": "Austria" + }, + "por": { + "official": "República da Áustria", + "common": "Áustria" + }, + "rus": { + "official": "Австрийская Республика", + "common": "Австрия" + }, + "slk": { + "official": "Rakúska republika", + "common": "Rakúsko" + }, + "spa": { + "official": "República de Austria", + "common": "Austria" + }, + "srp": { + "official": "Република Аустрија", + "common": "Аустрија" + }, + "swe": { + "official": "Republiken Österrike", + "common": "Österrike" + }, + "tur": { + "official": "Avusturya Cumhuriyeti", + "common": "Avusturya" + }, + "urd": { + "official": "جمہوریہ آسٹریا", + "common": "آسٹریا" + }, + "zho": { + "official": "奥地利共和国", + "common": "奥地利" + } + }, + "flag": "🇦🇹", + "maps": { + "googleMaps": "https://goo.gl/maps/pCWpWQhznHyRzQcu9", + "openStreetMaps": "https://www.openstreetmap.org/relation/16239" + }, + "population": 9200931, + "gini": { + "2018": 30.8 + }, + "fifa": "AUT", + "car": { + "signs": [ + "A" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/at.png", + "svg": "https://flagcdn.com/at.svg", + "alt": "The flag of Austria is composed of three equal horizontal bands of red, white and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/at.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/at.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 48.2, + 16.37 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Croatia", + "official": "Republic of Croatia", + "nativeName": { + "hrv": { + "official": "Republika Hrvatska", + "common": "Hrvatska" + } + } + }, + "tld": [ + ".hr" + ], + "cca2": "HR", + "ccn3": "191", + "cioc": "CRO", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "85" + ] + }, + "capital": [ + "Zagreb" + ], + "altSpellings": [ + "HR", + "Hrvatska", + "Republic of Croatia", + "Republika Hrvatska" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "hrv": "Croatian" + }, + "latlng": [ + 45.16666666, + 15.5 + ], + "landlocked": false, + "borders": [ + "BIH", + "HUN", + "MNE", + "SRB", + "SVN" + ], + "area": 56594.0, + "demonyms": { + "eng": { + "f": "Croatian", + "m": "Croatian" + }, + "fra": { + "f": "Croate", + "m": "Croate" + } + }, + "cca3": "HRV", + "translations": { + "ara": { + "official": "جمهورية كرواتيا", + "common": "كرواتيا" + }, + "bre": { + "official": "Republik Kroatia", + "common": "Kroatia" + }, + "ces": { + "official": "Chorvatská republika", + "common": "Chorvatsko" + }, + "cym": { + "official": "Gweriniaeth Croatia", + "common": "Croatia" + }, + "deu": { + "official": "Republik Kroatien", + "common": "Kroatien" + }, + "est": { + "official": "Horvaatia Vabariik", + "common": "Horvaatia" + }, + "fin": { + "official": "Kroatian tasavalta", + "common": "Kroatia" + }, + "fra": { + "official": "République de Croatie", + "common": "Croatie" + }, + "hrv": { + "official": "Republika Hrvatska", + "common": "Hrvatska" + }, + "hun": { + "official": "Horvát Köztársaság", + "common": "Horvátország" + }, + "ind": { + "official": "Republik Kroasia", + "common": "Kroasia" + }, + "ita": { + "official": "Repubblica di Croazia", + "common": "Croazia" + }, + "jpn": { + "official": "クロアチア共和国", + "common": "クロアチア" + }, + "kor": { + "official": "크로아티아 공화국", + "common": "크로아티아" + }, + "nld": { + "official": "Republiek Kroatië", + "common": "Kroatië" + }, + "per": { + "official": "جمهوری کرواسی", + "common": "کرُواسی" + }, + "pol": { + "official": "Republika Chorwacji", + "common": "Chorwacja" + }, + "por": { + "official": "República da Croácia", + "common": "Croácia" + }, + "rus": { + "official": "Республика Хорватия", + "common": "Хорватия" + }, + "slk": { + "official": "Chorvátska republika", + "common": "Chorvátsko" + }, + "spa": { + "official": "República de Croacia", + "common": "Croacia" + }, + "srp": { + "official": "Република Хрватска", + "common": "Хрватска" + }, + "swe": { + "official": "Republiken Kroatien", + "common": "Kroatien" + }, + "tur": { + "official": "Hırvatistan Cumhuriyeti", + "common": "Hırvatistan" + }, + "urd": { + "official": "جمہوریہ کرویئشا", + "common": "کرویئشا" + }, + "zho": { + "official": "克罗地亚共和国", + "common": "克罗地亚" + } + }, + "flag": "🇭🇷", + "maps": { + "googleMaps": "https://goo.gl/maps/qSG6xTKUmrYpwmGQ6", + "openStreetMaps": "https://www.openstreetmap.org/relation/214885" + }, + "population": 3866233, + "gini": { + "2018": 29.7 + }, + "fifa": "CRO", + "car": { + "signs": [ + "HR" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/hr.png", + "svg": "https://flagcdn.com/hr.svg", + "alt": "The flag of Croatia is composed of three equal horizontal bands of red, white and blue, with the coat of arms of Croatia superimposed in the center." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/hr.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/hr.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 45.8, + 16.0 + ] + }, + "postalCode": { + "format": "HR-#####", + "regex": "^(?:HR)*(\\d{5})$" + } + }, + { + "name": { + "common": "Spain", + "official": "Kingdom of Spain", + "nativeName": { + "spa": { + "official": "Reino de España", + "common": "España" + } + } + }, + "tld": [ + ".es" + ], + "cca2": "ES", + "ccn3": "724", + "cioc": "ESP", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "4" + ] + }, + "capital": [ + "Madrid" + ], + "altSpellings": [ + "ES", + "Kingdom of Spain", + "Reino de España" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "spa": "Spanish", + "cat": "Catalan", + "eus": "Basque", + "glc": "Galician" + }, + "latlng": [ + 40.0, + -4.0 + ], + "landlocked": false, + "borders": [ + "AND", + "FRA", + "GIB", + "PRT", + "MAR" + ], + "area": 505992.0, + "demonyms": { + "eng": { + "f": "Spanish", + "m": "Spanish" + }, + "fra": { + "f": "Espagnole", + "m": "Espagnol" + } + }, + "cca3": "ESP", + "translations": { + "ara": { + "official": "مملكة إسبانيا", + "common": "إسبانيا" + }, + "bre": { + "official": "Rouantelezh Spagn", + "common": "Spagn" + }, + "ces": { + "official": "Španělské království", + "common": "Španělsko" + }, + "cym": { + "official": "Kingdom of Spain", + "common": "Spain" + }, + "deu": { + "official": "Königreich Spanien", + "common": "Spanien" + }, + "est": { + "official": "Hispaania Kuningriik", + "common": "Hispaania" + }, + "fin": { + "official": "Espanjan kuningaskunta", + "common": "Espanja" + }, + "fra": { + "official": "Royaume d'Espagne", + "common": "Espagne" + }, + "hrv": { + "official": "Kraljevina Španjolska", + "common": "Španjolska" + }, + "hun": { + "official": "Spanyol Királyság", + "common": "Spanyolország" + }, + "ind": { + "official": "Kerajaan Spanyol", + "common": "Spanyol" + }, + "ita": { + "official": "Regno di Spagna", + "common": "Spagna" + }, + "jpn": { + "official": "スペイン王国", + "common": "スペイン" + }, + "kor": { + "official": "에스파냐 왕국", + "common": "스페인" + }, + "nld": { + "official": "Koninkrijk Spanje", + "common": "Spanje" + }, + "per": { + "official": "پادشاهی اسپانیا", + "common": "اسپانیا" + }, + "pol": { + "official": "Królestwo Hiszpanii ", + "common": "Hiszpania" + }, + "por": { + "official": "Reino de Espanha", + "common": "Espanha" + }, + "rus": { + "official": "Королевство Испания", + "common": "Испания" + }, + "slk": { + "official": "Španielske kráľovstvo", + "common": "Španielsko" + }, + "spa": { + "official": "Reino de España", + "common": "España" + }, + "srp": { + "official": "Краљевина Шпанија", + "common": "Шпанија" + }, + "swe": { + "official": "Konungariket Spanien", + "common": "Spanien" + }, + "tur": { + "official": "İspanya Krallığı", + "common": "İspanya" + }, + "urd": { + "official": "مملکتِ ہسپانیہ", + "common": "ہسپانیہ" + }, + "zho": { + "official": "西班牙王国", + "common": "西班牙" + } + }, + "flag": "🇪🇸", + "maps": { + "googleMaps": "https://goo.gl/maps/138JaXW8EZzRVitY9", + "openStreetMaps": "https://www.openstreetmap.org/relation/1311341" + }, + "population": 49315949, + "gini": { + "2018": 34.7 + }, + "fifa": "ESP", + "car": { + "signs": [ + "E" + ], + "side": "right" + }, + "timezones": [ + "UTC", + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/es.png", + "svg": "https://flagcdn.com/es.svg", + "alt": "The flag of Spain is composed of three horizontal bands of red, yellow and red, with the yellow band twice the height of the red bands. In the yellow band is the national coat of arms offset slightly towards the hoist side of center." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/es.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/es.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 40.4, + -3.68 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Switzerland", + "official": "Swiss Confederation", + "nativeName": { + "fra": { + "official": "Confédération suisse", + "common": "Suisse" + }, + "gsw": { + "official": "Schweizerische Eidgenossenschaft", + "common": "Schweiz" + }, + "ita": { + "official": "Confederazione Svizzera", + "common": "Svizzera" + }, + "roh": { + "official": "Confederaziun svizra", + "common": "Svizra" + } + } + }, + "tld": [ + ".ch" + ], + "cca2": "CH", + "ccn3": "756", + "cioc": "SUI", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "CHF": { + "symbol": "Fr.", + "name": "Swiss franc" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "1" + ] + }, + "capital": [ + "Bern" + ], + "altSpellings": [ + "CH", + "Swiss Confederation", + "Schweiz", + "Suisse", + "Svizzera", + "Svizra" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "fra": "French", + "gsw": "Swiss German", + "ita": "Italian", + "roh": "Romansh" + }, + "latlng": [ + 47.0, + 8.0 + ], + "landlocked": true, + "borders": [ + "AUT", + "FRA", + "ITA", + "LIE", + "DEU" + ], + "area": 41284.0, + "demonyms": { + "eng": { + "f": "Swiss", + "m": "Swiss" + }, + "fra": { + "f": "Suisse", + "m": "Suisse" + } + }, + "cca3": "CHE", + "translations": { + "ara": { + "official": "الاتحاد السويسري", + "common": "سويسرا" + }, + "bre": { + "official": "Kengevredad Suis", + "common": "Suis" + }, + "ces": { + "official": "Švýcarská konfederace", + "common": "Švýcarsko" + }, + "cym": { + "official": "Swiss Confederation", + "common": "Switzerland" + }, + "deu": { + "official": "Schweizerische Eidgenossenschaft", + "common": "Schweiz" + }, + "est": { + "official": "Šveitsi Konföderatsioon", + "common": "Šveits" + }, + "fin": { + "official": "Sveitsin valaliitto", + "common": "Sveitsi" + }, + "fra": { + "official": "Confédération suisse", + "common": "Suisse" + }, + "hrv": { + "official": "švicarska Konfederacija", + "common": "Švicarska" + }, + "hun": { + "official": "Svájc", + "common": "Svájc" + }, + "ind": { + "official": "Konfederasi Swiss", + "common": "Swiss" + }, + "ita": { + "official": "Confederazione svizzera", + "common": "Svizzera" + }, + "jpn": { + "official": "スイス連邦", + "common": "スイス" + }, + "kor": { + "official": "스위스 연방", + "common": "스위스" + }, + "nld": { + "official": "Zwitserse Confederatie", + "common": "Zwitserland" + }, + "per": { + "official": "کنفدراسیون سوئیس", + "common": "سوئیس" + }, + "pol": { + "official": "Konfederacja Szwajcarska", + "common": "Szwajcaria" + }, + "por": { + "official": "Confederação Suíça", + "common": "Suíça" + }, + "rus": { + "official": "Швейцарская Конфедерация", + "common": "Швейцария" + }, + "slk": { + "official": "Švajčiarska konfederácia", + "common": "Švajčiarsko" + }, + "spa": { + "official": "Confederación Suiza", + "common": "Suiza" + }, + "srp": { + "official": "Швајцарска Конфедерација", + "common": "Швајцарска" + }, + "swe": { + "official": "Schweiziska edsförbundet", + "common": "Schweiz" + }, + "tur": { + "official": "İsviçre Konfederasyonu", + "common": "İsviçre" + }, + "urd": { + "official": "سوئیس متحدہ", + "common": "سویٹذرلینڈ" + }, + "zho": { + "official": "瑞士联邦", + "common": "瑞士" + } + }, + "flag": "🇨🇭", + "maps": { + "googleMaps": "https://goo.gl/maps/uVuZcXaxSx5jLyEC9", + "openStreetMaps": "https://www.openstreetmap.org/relation/51701" + }, + "population": 9082848, + "gini": { + "2018": 33.1 + }, + "fifa": "SUI", + "car": { + "signs": [ + "CH" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ch.png", + "svg": "https://flagcdn.com/ch.svg", + "alt": "The flag of Switzerland is square shaped. It features a white Swiss cross centered on a red field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ch.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ch.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 46.92, + 7.47 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Norway", + "official": "Kingdom of Norway", + "nativeName": { + "nno": { + "official": "Kongeriket Noreg", + "common": "Noreg" + }, + "nob": { + "official": "Kongeriket Norge", + "common": "Norge" + }, + "smi": { + "official": "Norgga gonagasriika", + "common": "Norgga" + } + } + }, + "tld": [ + ".no" + ], + "cca2": "NO", + "ccn3": "578", + "cioc": "NOR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "NOK": { + "symbol": "kr", + "name": "Norwegian krone" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "7" + ] + }, + "capital": [ + "Oslo" + ], + "altSpellings": [ + "NO", + "Norge", + "Noreg", + "Kingdom of Norway", + "Kongeriket Norge", + "Kongeriket Noreg" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "nno": "Norwegian Nynorsk", + "nob": "Norwegian Bokmål", + "smi": "Sami" + }, + "latlng": [ + 62.0, + 10.0 + ], + "landlocked": false, + "borders": [ + "FIN", + "SWE", + "RUS" + ], + "area": 386224.0, + "demonyms": { + "eng": { + "f": "Norwegian", + "m": "Norwegian" + }, + "fra": { + "f": "Norvégienne", + "m": "Norvégien" + } + }, + "cca3": "NOR", + "translations": { + "ara": { + "official": "مملكة النرويج", + "common": "النرويج" + }, + "bre": { + "official": "Rouantelezh Norvegia", + "common": "Norvegia" + }, + "ces": { + "official": "Norské království", + "common": "Norsko" + }, + "cym": { + "official": "Kingdom of Norway", + "common": "Norway" + }, + "deu": { + "official": "Königreich Norwegen", + "common": "Norwegen" + }, + "est": { + "official": "Norra Kuningriik", + "common": "Norra" + }, + "fin": { + "official": "Norjan kuningaskunta", + "common": "Norja" + }, + "fra": { + "official": "Royaume de Norvège", + "common": "Norvège" + }, + "hrv": { + "official": "Kraljevina Norveška", + "common": "Norveška" + }, + "hun": { + "official": "Norvég Királyság", + "common": "Norvégia" + }, + "ind": { + "official": "Kerajaan Norwegia", + "common": "Norwegia" + }, + "ita": { + "official": "Regno di Norvegia", + "common": "Norvegia" + }, + "jpn": { + "official": "ノルウェー王国", + "common": "ノルウェー" + }, + "kor": { + "official": "노르웨이 왕국", + "common": "노르웨이" + }, + "nld": { + "official": "Koninkrijk Noorwegen", + "common": "Noorwegen" + }, + "per": { + "official": "پادشاهی نروژ", + "common": "نروژ" + }, + "pol": { + "official": "Królestwo Norwegii", + "common": "Norwegia" + }, + "por": { + "official": "Reino da Noruega", + "common": "Noruega" + }, + "rus": { + "official": "Королевство Норвегия", + "common": "Норвегия" + }, + "slk": { + "official": "Nórske kráľovstvo", + "common": "Nórsko" + }, + "spa": { + "official": "Reino de Noruega", + "common": "Noruega" + }, + "srp": { + "official": "Краљевина Норвешка", + "common": "Норвешка" + }, + "swe": { + "official": "Konungariket Norge", + "common": "Norge" + }, + "tur": { + "official": "Norveç Krallığı", + "common": "Norveç" + }, + "urd": { + "official": "مملکتِ ناروے", + "common": "ناروے" + }, + "zho": { + "official": "挪威王国", + "common": "挪威" + } + }, + "flag": "🇳🇴", + "maps": { + "googleMaps": "https://goo.gl/maps/htWRrphA7vNgQNdSA", + "openStreetMaps": "https://www.openstreetmap.org/relation/2978650" + }, + "population": 5606944, + "gini": { + "2018": 27.6 + }, + "fifa": "NOR", + "car": { + "signs": [ + "N" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/no.png", + "svg": "https://flagcdn.com/no.svg", + "alt": "The flag of Norway has a red field with a large white-edged navy blue cross that extends to the edges of the field. The vertical part of this cross is offset towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/no.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/no.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 59.92, + 10.75 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Luxembourg", + "official": "Grand Duchy of Luxembourg", + "nativeName": { + "deu": { + "official": "Großherzogtum Luxemburg", + "common": "Luxemburg" + }, + "fra": { + "official": "Grand-Duché de Luxembourg", + "common": "Luxembourg" + }, + "ltz": { + "official": "Groussherzogtum Lëtzebuerg", + "common": "Lëtzebuerg" + } + } + }, + "tld": [ + ".lu" + ], + "cca2": "LU", + "ccn3": "442", + "cioc": "LUX", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "52" + ] + }, + "capital": [ + "Luxembourg" + ], + "altSpellings": [ + "LU", + "Grand Duchy of Luxembourg", + "Grand-Duché de Luxembourg", + "Großherzogtum Luxemburg", + "Groussherzogtum Lëtzebuerg" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "deu": "German", + "fra": "French", + "ltz": "Luxembourgish" + }, + "latlng": [ + 49.75, + 6.16666666 + ], + "landlocked": true, + "borders": [ + "BEL", + "FRA", + "DEU" + ], + "area": 2586.0, + "demonyms": { + "eng": { + "f": "Luxembourger", + "m": "Luxembourger" + }, + "fra": { + "f": "Luxembourgeoise", + "m": "Luxembourgeois" + } + }, + "cca3": "LUX", + "translations": { + "ara": { + "official": "دوقية لوكسمبورغ", + "common": "لوكسمبورغ" + }, + "bre": { + "official": "Dugelezh Veur Luksembourg", + "common": "Luksembourg" + }, + "ces": { + "official": "Lucemburské velkovévodství", + "common": "Lucembursko" + }, + "cym": { + "official": "Grand Duchy of Luxembourg", + "common": "Luxembourg" + }, + "deu": { + "official": "Großherzogtum Luxemburg,", + "common": "Luxemburg" + }, + "est": { + "official": "Luksemburgi Suurhertsogiriik", + "common": "Luksemburg" + }, + "fin": { + "official": "Luxemburgin suurherttuakunta", + "common": "Luxemburg" + }, + "fra": { + "official": "Grand-Duché de Luxembourg", + "common": "Luxembourg" + }, + "hrv": { + "official": "Veliko Vojvodstvo Luksemburg", + "common": "Luksemburg" + }, + "hun": { + "official": "Luxemburgi Nagyhercegség", + "common": "Luxemburg" + }, + "ind": { + "official": "Keharyapatihan Luksemburg", + "common": "Luksemburg" + }, + "ita": { + "official": "Granducato di Lussemburgo", + "common": "Lussemburgo" + }, + "jpn": { + "official": "ルクセンブルク大公国", + "common": "ルクセンブルク" + }, + "kor": { + "official": "룩셈부르크 대공국", + "common": "룩셈부르크" + }, + "nld": { + "official": "Groothertogdom Luxemburg", + "common": "Luxemburg" + }, + "per": { + "official": "دوک‌نشین لوکزامبورگ", + "common": "لوکزامبورگ" + }, + "pol": { + "official": "Wielkie Księstwo Luksemburga", + "common": "Luksemburg" + }, + "por": { + "official": "Grão-Ducado do Luxemburgo", + "common": "Luxemburgo" + }, + "rus": { + "official": "Великое Герцогство Люксембург", + "common": "Люксембург" + }, + "slk": { + "official": "Luxemburské veľkovojvodstvo", + "common": "Luxembursko" + }, + "spa": { + "official": "Gran Ducado de Luxemburgo", + "common": "Luxemburgo" + }, + "srp": { + "official": "Велико Војводство Луксембург", + "common": "Луксембург" + }, + "swe": { + "official": "Storhertigdömet Luxemburg", + "common": "Luxemburg" + }, + "tur": { + "official": "Lüksemburg Büyük Dükalığı", + "common": "Lüksemburg" + }, + "urd": { + "official": "دوقیہ کبیرلکسمبرگ", + "common": "لکسمبرگ" + }, + "zho": { + "official": "卢森堡大公国", + "common": "卢森堡" + } + }, + "flag": "🇱🇺", + "maps": { + "googleMaps": "https://goo.gl/maps/L6b2AgndgHprt2Ko9", + "openStreetMaps": "https://www.openstreetmap.org/relation/2171347#map=10/49.8167/6.1335" + }, + "population": 681973, + "gini": { + "2018": 35.4 + }, + "fifa": "LUX", + "car": { + "signs": [ + "L" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/lu.png", + "svg": "https://flagcdn.com/lu.svg", + "alt": "The flag of Luxembourg is composed of three equal horizontal bands of red, white and light blue." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/lu.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/lu.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 49.6, + 6.12 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Svalbard and Jan Mayen", + "official": "Svalbard og Jan Mayen", + "nativeName": { + "nor": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard og Jan Mayen" + } + } + }, + "tld": [ + ".sj" + ], + "cca2": "SJ", + "ccn3": "744", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "NOK": { + "symbol": "kr", + "name": "krone" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "779" + ] + }, + "capital": [ + "Longyearbyen" + ], + "altSpellings": [ + "SJ", + "Svalbard and Jan Mayen Islands" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "nor": "Norwegian" + }, + "latlng": [ + 78.0, + 20.0 + ], + "landlocked": false, + "area": 61399.0, + "demonyms": { + "eng": { + "f": "Norwegian", + "m": "Norwegian" + }, + "fra": { + "f": "", + "m": "" + } + }, + "cca3": "SJM", + "translations": { + "ara": { + "official": "سفالبارد ويان ماين", + "common": "سفالبارد ويان ماين" + }, + "bre": { + "official": "Svalbard ha Jan Mayen", + "common": "Svalbard ha Jan Mayen" + }, + "ces": { + "official": "Špicberky a Jan Mayen", + "common": "Špicberky a Jan Mayen" + }, + "cym": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard and Jan Mayen" + }, + "deu": { + "official": "Spitzbergen und Jan Mayen", + "common": "Spitzbergen und Jan Mayen" + }, + "est": { + "official": "Svalbard", + "common": "Svalbard" + }, + "fin": { + "official": "Huippuvuoret", + "common": "Huippuvuoret" + }, + "fra": { + "official": "Jan Mayen Svalbard", + "common": "Svalbard et Jan Mayen" + }, + "hrv": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard i Jan Mayen" + }, + "hun": { + "official": "Svalbard és Jan Mayen", + "common": "Svalbard és Jan Mayen" + }, + "ind": { + "official": "Svalbard dan Jan Mayen", + "common": "Svalbard dan Jan Mayen" + }, + "ita": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard e Jan Mayen" + }, + "jpn": { + "official": "スバールバル諸島OGヤンマイエン", + "common": "スヴァールバル諸島およびヤンマイエン島" + }, + "kor": { + "official": "스발바르 얀마옌 제도", + "common": "스발바르 얀마옌 제도" + }, + "nld": { + "official": "Svalbard og Jan Mayen", + "common": "Svalbard en Jan Mayen" + }, + "per": { + "official": "سوالبارد و یان ماین", + "common": "سوالبارد و یان ماین" + }, + "pol": { + "official": "Svalbard i Jan Mayen", + "common": "Svalbard i Jan Mayen" + }, + "por": { + "official": "Svalbard og Jan Mayen", + "common": "Ilhas Svalbard e Jan Mayen" + }, + "rus": { + "official": "Свальбарда ог Ян-Майен", + "common": "Шпицберген и Ян-Майен" + }, + "slk": { + "official": "Svalbard a Jan Mayen", + "common": "Svalbard a Jan Mayen" + }, + "spa": { + "official": "Svalbard og Jan Mayen", + "common": "Islas Svalbard y Jan Mayen" + }, + "srp": { + "official": "Свалбард и Јан Мајен", + "common": "Свалбард и Јан Мајен" + }, + "swe": { + "official": "Svalbard och Jan Mayen", + "common": "Svalbard och Jan Mayen" + }, + "tur": { + "official": "Svalbard ve Jan Mayen", + "common": "Svalbard ve Jan Mayen" + }, + "urd": { + "official": "سوالبارڈ اور جان میئن", + "common": "سوالبارڈ اور جان میئن" + }, + "zho": { + "official": "斯瓦尔巴特", + "common": "斯瓦尔巴特" + } + }, + "flag": "🇸🇯", + "maps": { + "googleMaps": "https://goo.gl/maps/L2wyyn3cQ16PzQ5J8", + "openStreetMaps": "https://www.openstreetmap.org/relation/1337397" + }, + "population": 2530, + "car": { + "signs": [ + "N" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/sj.png", + "svg": "https://flagcdn.com/sj.svg" + }, + "coatOfArms": {}, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 78.22, + 15.63 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "Italy", + "official": "Italian Republic", + "nativeName": { + "ita": { + "official": "Repubblica italiana", + "common": "Italia" + } + } + }, + "tld": [ + ".it" + ], + "cca2": "IT", + "ccn3": "380", + "cioc": "ITA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "9" + ] + }, + "capital": [ + "Rome" + ], + "altSpellings": [ + "IT", + "Italian Republic", + "Repubblica italiana" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "ita": "Italian", + "cat": "Catalan" + }, + "latlng": [ + 42.83333333, + 12.83333333 + ], + "landlocked": false, + "borders": [ + "AUT", + "FRA", + "SMR", + "SVN", + "CHE", + "VAT" + ], + "area": 301336.0, + "demonyms": { + "eng": { + "f": "Italian", + "m": "Italian" + }, + "fra": { + "f": "Italienne", + "m": "Italien" + } + }, + "cca3": "ITA", + "translations": { + "ara": { + "official": "الجمهورية الإيطالية", + "common": "إيطاليا" + }, + "bre": { + "official": "Republik Italia", + "common": "Italia" + }, + "ces": { + "official": "Italská republika", + "common": "Itálie" + }, + "cym": { + "official": "Italian Republic", + "common": "Italy" + }, + "deu": { + "official": "Italienische Republik", + "common": "Italien" + }, + "est": { + "official": "Itaalia Vabariik", + "common": "Itaalia" + }, + "fin": { + "official": "Italian tasavalta", + "common": "Italia" + }, + "fra": { + "official": "République italienne", + "common": "Italie" + }, + "hrv": { + "official": "talijanska Republika", + "common": "Italija" + }, + "hun": { + "official": "Olasz Köztársaság", + "common": "Olaszország" + }, + "ind": { + "official": "Republik Italia", + "common": "Italia" + }, + "ita": { + "official": "Repubblica italiana", + "common": "Italia" + }, + "jpn": { + "official": "イタリア共和国", + "common": "イタリア" + }, + "kor": { + "official": "이탈리아 공화국", + "common": "이탈리아" + }, + "nld": { + "official": "Italiaanse Republiek", + "common": "Italië" + }, + "per": { + "official": "جمهوری ایتالیا", + "common": "ایتالیا" + }, + "pol": { + "official": "Republika Włoska", + "common": "Włochy" + }, + "por": { + "official": "República Italiana", + "common": "Itália" + }, + "rus": { + "official": "итальянская Республика", + "common": "Италия" + }, + "slk": { + "official": "Talianska republika", + "common": "Taliansko" + }, + "spa": { + "official": "República Italiana", + "common": "Italia" + }, + "srp": { + "official": "Италијанска Република", + "common": "Италија" + }, + "swe": { + "official": "Republiken Italien", + "common": "Italien" + }, + "tur": { + "official": "İtalyan Cumhuriyeti", + "common": "İtalya" + }, + "urd": { + "official": "جمہوریہ اطالیہ", + "common": "اطالیہ" + }, + "zho": { + "official": "意大利共和国", + "common": "意大利" + } + }, + "flag": "🇮🇹", + "maps": { + "googleMaps": "https://goo.gl/maps/8M1K27TDj7StTRTq8", + "openStreetMaps": "https://www.openstreetmap.org/relation/365331" + }, + "population": 58927633, + "gini": { + "2017": 35.9 + }, + "fifa": "ITA", + "car": { + "signs": [ + "I" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/it.png", + "svg": "https://flagcdn.com/it.svg", + "alt": "The flag of Italy is composed of three equal vertical bands of green, white and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/it.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/it.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 41.9, + 12.48 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Andorra", + "official": "Principality of Andorra", + "nativeName": { + "cat": { + "official": "Principat d'Andorra", + "common": "Andorra" + } + } + }, + "tld": [ + ".ad" + ], + "cca2": "AD", + "ccn3": "020", + "cioc": "AND", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "76" + ] + }, + "capital": [ + "Andorra la Vella" + ], + "altSpellings": [ + "AD", + "Principality of Andorra", + "Principat d'Andorra" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "cat": "Catalan" + }, + "latlng": [ + 42.5, + 1.5 + ], + "landlocked": true, + "borders": [ + "FRA", + "ESP" + ], + "area": 468.0, + "demonyms": { + "eng": { + "f": "Andorran", + "m": "Andorran" + }, + "fra": { + "f": "Andorrane", + "m": "Andorran" + } + }, + "cca3": "AND", + "translations": { + "ara": { + "official": "إمارة أندورا", + "common": "أندورا" + }, + "bre": { + "official": "Priñselezh Andorra", + "common": "Andorra" + }, + "ces": { + "official": "Andorrské knížectví", + "common": "Andorra" + }, + "cym": { + "official": "Tywysogaeth Andorra", + "common": "Andorra" + }, + "deu": { + "official": "Fürstentum Andorra", + "common": "Andorra" + }, + "est": { + "official": "Andorra Vürstiriik", + "common": "Andorra" + }, + "fin": { + "official": "Andorran ruhtinaskunta", + "common": "Andorra" + }, + "fra": { + "official": "Principauté d'Andorre", + "common": "Andorre" + }, + "hrv": { + "official": "Kneževina Andora", + "common": "Andora" + }, + "hun": { + "official": "Andorra", + "common": "Andorra" + }, + "ind": { + "official": "Kepangeranan Andorra", + "common": "Andorra" + }, + "ita": { + "official": "Principato di Andorra", + "common": "Andorra" + }, + "jpn": { + "official": "アンドラ公国", + "common": "アンドラ" + }, + "kor": { + "official": "안도라 공국", + "common": "안도라" + }, + "nld": { + "official": "Prinsdom Andorra", + "common": "Andorra" + }, + "per": { + "official": "شاهزاده‌نشین آندورا", + "common": "آندورا" + }, + "pol": { + "official": "Księstwo Andory", + "common": "Andora" + }, + "por": { + "official": "Principado de Andorra", + "common": "Andorra" + }, + "rus": { + "official": "Княжество Андорра", + "common": "Андорра" + }, + "slk": { + "official": "Andorrské kniežatstvo", + "common": "Andorra" + }, + "spa": { + "official": "Principado de Andorra", + "common": "Andorra" + }, + "srp": { + "official": "Кнежевина Андора", + "common": "Андора" + }, + "swe": { + "official": "Furstendömet Andorra", + "common": "Andorra" + }, + "tur": { + "official": "Andorra Prensliği", + "common": "Andorra" + }, + "urd": { + "official": "اماراتِ انڈورا", + "common": "انڈورا" + }, + "zho": { + "official": "安道尔公国", + "common": "安道尔" + } + }, + "flag": "🇦🇩", + "maps": { + "googleMaps": "https://goo.gl/maps/JqAnacWE2qEznKgw7", + "openStreetMaps": "https://www.openstreetmap.org/relation/9407" + }, + "population": 88406, + "fifa": "AND", + "car": { + "signs": [ + "AND" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ad.png", + "svg": "https://flagcdn.com/ad.svg", + "alt": "The flag of Andorra features three equal vertical bands of blue, yellow and red, with the coat of arms of Andorra centered in the yellow band." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ad.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ad.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 42.5, + 1.52 + ] + }, + "postalCode": { + "format": "AD###", + "regex": "^(?:AD)*(\\d{3})$" + } + }, + { + "name": { + "common": "Isle of Man", + "official": "Isle of Man", + "nativeName": { + "eng": { + "official": "Isle of Man", + "common": "Isle of Man" + }, + "glv": { + "official": "Ellan Vannin or Mannin", + "common": "Mannin" + } + } + }, + "tld": [ + ".im" + ], + "cca2": "IM", + "ccn3": "833", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "GBP": { + "symbol": "£", + "name": "British pound" + }, + "IMP": { + "symbol": "£", + "name": "Manx pound" + } + }, + "idd": { + "root": "+4", + "suffixes": [ + "4" + ] + }, + "capital": [ + "Douglas" + ], + "altSpellings": [ + "IM", + "Ellan Vannin", + "Mann", + "Mannin" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "eng": "English", + "glv": "Manx" + }, + "latlng": [ + 54.25, + -4.5 + ], + "landlocked": false, + "area": 572.0, + "demonyms": { + "eng": { + "f": "Manx", + "m": "Manx" + }, + "fra": { + "f": "", + "m": "" + } + }, + "cca3": "IMN", + "translations": { + "ara": { + "official": "جزيرة مان", + "common": "جزيرة مان" + }, + "bre": { + "official": "Enez Vanav", + "common": "Enez Vanav" + }, + "ces": { + "official": "Ostrov Man", + "common": "Ostrov Man" + }, + "cym": { + "official": "Isle of Man", + "common": "Isle of Man" + }, + "deu": { + "official": "Isle of Man", + "common": "Insel Man" + }, + "est": { + "official": "Mani saar", + "common": "Mani saar" + }, + "fin": { + "official": "Mansaari", + "common": "Mansaari" + }, + "fra": { + "official": "Isle of Man", + "common": "Île de Man" + }, + "hrv": { + "official": "Mana ostrvo", + "common": "Otok Man" + }, + "hun": { + "official": "Man", + "common": "Man" + }, + "ind": { + "official": "Pulau Man", + "common": "Pulau Man" + }, + "ita": { + "official": "Isola di Man", + "common": "Isola di Man" + }, + "jpn": { + "official": "マン島", + "common": "マン島" + }, + "kor": { + "official": "맨섬", + "common": "맨섬" + }, + "nld": { + "official": "Isle of Man", + "common": "Isle of Man" + }, + "per": { + "official": "جزیرهٔ مَن", + "common": "جزیرهٔ مَن" + }, + "pol": { + "official": "Wyspa Man", + "common": "Wyspa Man" + }, + "por": { + "official": "Isle of Man", + "common": "Ilha de Man" + }, + "rus": { + "official": "Остров Мэн", + "common": "Остров Мэн" + }, + "slk": { + "official": "Ostrov Man", + "common": "Man" + }, + "spa": { + "official": "Isla de Man", + "common": "Isla de Man" + }, + "srp": { + "official": "Острво Мен", + "common": "Острво Мен" + }, + "swe": { + "official": "Isle of Man", + "common": "Isle of Man" + }, + "tur": { + "official": "Man Adası", + "common": "Man Adası" + }, + "urd": { + "official": "آئل آف مین", + "common": "آئل آف مین" + }, + "zho": { + "official": "马恩岛", + "common": "马恩岛" + } + }, + "flag": "🇮🇲", + "maps": { + "googleMaps": "https://goo.gl/maps/4DqVHDgVaFgnh8ZV8", + "openStreetMaps": "https://www.openstreetmap.org/relation/62269" + }, + "population": 84530, + "car": { + "signs": [ + "GBM" + ], + "side": "left" + }, + "timezones": [ + "UTC+00:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/im.png", + "svg": "https://flagcdn.com/im.svg" + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/im.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/im.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 54.15, + -4.48 + ] + }, + "postalCode": { + "format": "@# #@@|@## #@@|@@# #@@|@@## #@@|@#@ #@@|@@#@ #@@|GIR0AA", + "regex": "^(([A-Z]\\d{2}[A-Z]{2})|([A-Z]\\d{3}[A-Z]{2})|([A-Z]{2}\\d{2}[A-Z]{2})|([A-Z]{2}\\d{3}[A-Z]{2})|([A-Z]\\d[A-Z]\\d[A-Z]{2})|([A-Z]{2}\\d[A-Z]\\d[A-Z]{2})|(GIR0AA))$" + } + }, + { + "name": { + "common": "Latvia", + "official": "Republic of Latvia", + "nativeName": { + "lav": { + "official": "Latvijas Republikas", + "common": "Latvija" + } + } + }, + "tld": [ + ".lv" + ], + "cca2": "LV", + "ccn3": "428", + "cioc": "LAT", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "71" + ] + }, + "capital": [ + "Riga" + ], + "altSpellings": [ + "LV", + "Republic of Latvia", + "Latvijas Republika" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "lav": "Latvian" + }, + "latlng": [ + 57.0, + 25.0 + ], + "landlocked": false, + "borders": [ + "BLR", + "EST", + "LTU", + "RUS" + ], + "area": 64559.0, + "demonyms": { + "eng": { + "f": "Latvian", + "m": "Latvian" + }, + "fra": { + "f": "Lettone", + "m": "Letton" + } + }, + "cca3": "LVA", + "translations": { + "ara": { + "official": "جمهورية لاتفيا", + "common": "لاتفيا" + }, + "bre": { + "official": "Republik Latvia", + "common": "Latvia" + }, + "ces": { + "official": "Lotyšská republika", + "common": "Lotyšsko" + }, + "cym": { + "official": "Republic of Latvia", + "common": "Latvia" + }, + "deu": { + "official": "Republik Lettland", + "common": "Lettland" + }, + "est": { + "official": "Läti Vabariik", + "common": "Läti" + }, + "fin": { + "official": "Latvian tasavalta", + "common": "Latvia" + }, + "fra": { + "official": "République de Lettonie", + "common": "Lettonie" + }, + "hrv": { + "official": "Republika Latvija", + "common": "Latvija" + }, + "hun": { + "official": "Lett Köztársaság", + "common": "Lettország" + }, + "ind": { + "official": "Republik Latvia", + "common": "Latvia" + }, + "ita": { + "official": "Repubblica di Lettonia", + "common": "Lettonia" + }, + "jpn": { + "official": "ラトビア共和国", + "common": "ラトビア" + }, + "kor": { + "official": "라트비아 공화국", + "common": "라트비아" + }, + "nld": { + "official": "Republiek Letland", + "common": "Letland" + }, + "per": { + "official": "جمهوری لتونی", + "common": "لتونی" + }, + "pol": { + "official": "Republika Łotewska", + "common": "Łotwa" + }, + "por": { + "official": "República da Letónia", + "common": "Letónia" + }, + "rus": { + "official": "Латвийская Республика", + "common": "Латвия" + }, + "slk": { + "official": "Lotyšská republika", + "common": "Lotyšsko" + }, + "spa": { + "official": "República de Letonia", + "common": "Letonia" + }, + "srp": { + "official": "Летонска Република", + "common": "Летонија" + }, + "swe": { + "official": "Republiken Lettland", + "common": "Lettland" + }, + "tur": { + "official": "Letonya Cumhuriyeti", + "common": "Letonya" + }, + "urd": { + "official": "جمہوریہ لٹویا", + "common": "لٹویا" + }, + "zho": { + "official": "拉脱维亚共和国", + "common": "拉脱维亚" + } + }, + "flag": "🇱🇻", + "maps": { + "googleMaps": "https://goo.gl/maps/iQpUkH7ghq31ZtXe9", + "openStreetMaps": "https://www.openstreetmap.org/relation/72594" + }, + "population": 1829000, + "gini": { + "2018": 35.1 + }, + "fifa": "LVA", + "car": { + "signs": [ + "LV" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/lv.png", + "svg": "https://flagcdn.com/lv.svg", + "alt": "The flag of Latvia has a carmine-red field with a thin white horizontal band across the middle of the field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/lv.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/lv.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 56.95, + 24.1 + ] + }, + "postalCode": { + "format": "LV-####", + "regex": "^(?:LV)*(\\d{4})$" + } + }, + { + "name": { + "common": "Portugal", + "official": "Portuguese Republic", + "nativeName": { + "por": { + "official": "República Portuguesa", + "common": "Portugal" + } + } + }, + "tld": [ + ".pt" + ], + "cca2": "PT", + "ccn3": "620", + "cioc": "POR", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "51" + ] + }, + "capital": [ + "Lisbon" + ], + "altSpellings": [ + "PT", + "Portuguesa", + "Portuguese Republic", + "República Portuguesa" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "por": "Portuguese" + }, + "latlng": [ + 39.5, + -8.0 + ], + "landlocked": false, + "borders": [ + "ESP" + ], + "area": 92090.0, + "demonyms": { + "eng": { + "f": "Portuguese", + "m": "Portuguese" + }, + "fra": { + "f": "Portugaise", + "m": "Portugais" + } + }, + "cca3": "PRT", + "translations": { + "ara": { + "official": "الجمهورية البرتغالية", + "common": "البرتغال" + }, + "bre": { + "official": "Republik Portugalat", + "common": "Portugal" + }, + "ces": { + "official": "Portugalská republika", + "common": "Portugalsko" + }, + "cym": { + "official": "Portuguese Republic", + "common": "Portugal" + }, + "deu": { + "official": "Portugiesische Republik", + "common": "Portugal" + }, + "est": { + "official": "Portugali Vabariik", + "common": "Portugal" + }, + "fin": { + "official": "Portugalin tasavalta", + "common": "Portugali" + }, + "fra": { + "official": "République portugaise", + "common": "Portugal" + }, + "hrv": { + "official": "Portugalska Republika", + "common": "Portugal" + }, + "hun": { + "official": "Portugál Köztársaság", + "common": "Portugália" + }, + "ind": { + "official": "Republik Portugal", + "common": "Portugal" + }, + "ita": { + "official": "Repubblica portoghese", + "common": "Portogallo" + }, + "jpn": { + "official": "ポルトガル共和国", + "common": "ポルトガル" + }, + "kor": { + "official": "포르투갈 공화국", + "common": "포르투갈" + }, + "nld": { + "official": "Portugese Republiek", + "common": "Portugal" + }, + "per": { + "official": "جمهوری پرتغال", + "common": "پرتغال" + }, + "pol": { + "official": "Republika Portugalska", + "common": "Portugalia" + }, + "por": { + "official": "República português", + "common": "Portugal" + }, + "rus": { + "official": "Португальская Республика", + "common": "Португалия" + }, + "slk": { + "official": "Portugalská republika", + "common": "Portugalsko" + }, + "spa": { + "official": "República Portuguesa", + "common": "Portugal" + }, + "srp": { + "official": "Португалска Република", + "common": "Португал" + }, + "swe": { + "official": "Republiken Portugal", + "common": "Portugal" + }, + "tur": { + "official": "Portekiz Cumhuriyeti", + "common": "Portekiz" + }, + "urd": { + "official": "جمہوریہ پرتگال", + "common": "پرتگال" + }, + "zho": { + "official": "葡萄牙共和国", + "common": "葡萄牙" + } + }, + "flag": "🇵🇹", + "maps": { + "googleMaps": "https://goo.gl/maps/BaTBSyc4GWMmbAKB8", + "openStreetMaps": "https://www.openstreetmap.org/relation/295480" + }, + "population": 10749635, + "gini": { + "2018": 33.5 + }, + "fifa": "POR", + "car": { + "signs": [ + "P" + ], + "side": "right" + }, + "timezones": [ + "UTC-01:00", + "UTC" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/pt.png", + "svg": "https://flagcdn.com/pt.svg", + "alt": "The flag of Portugal is composed of two vertical bands of green and red in the ratio of 2:3, with the coat of arms of Portugal centered over the two-color boundary." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/pt.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/pt.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 38.72, + -9.13 + ] + }, + "postalCode": { + "format": "####-###", + "regex": "^(\\d{7})$" + } + }, + { + "name": { + "common": "Finland", + "official": "Republic of Finland", + "nativeName": { + "fin": { + "official": "Suomen tasavalta", + "common": "Suomi" + }, + "swe": { + "official": "Republiken Finland", + "common": "Finland" + } + } + }, + "tld": [ + ".fi" + ], + "cca2": "FI", + "ccn3": "246", + "cioc": "FIN", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "58" + ] + }, + "capital": [ + "Helsinki" + ], + "altSpellings": [ + "FI", + "Suomi", + "Republic of Finland", + "Suomen tasavalta", + "Republiken Finland" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "fin": "Finnish", + "swe": "Swedish" + }, + "latlng": [ + 64.0, + 26.0 + ], + "landlocked": false, + "borders": [ + "NOR", + "SWE", + "RUS" + ], + "area": 338455.0, + "demonyms": { + "eng": { + "f": "Finnish", + "m": "Finnish" + }, + "fra": { + "f": "Finlandaise", + "m": "Finlandais" + } + }, + "cca3": "FIN", + "translations": { + "ara": { + "official": "جمهورية فنلندا", + "common": "فنلندا" + }, + "bre": { + "official": "Republik Finland", + "common": "Finland" + }, + "ces": { + "official": "Finská republika", + "common": "Finsko" + }, + "cym": { + "official": "Republic of Finland", + "common": "Finland" + }, + "deu": { + "official": "Republik Finnland", + "common": "Finnland" + }, + "est": { + "official": "Soome Vabariik", + "common": "Soome" + }, + "fin": { + "official": "Suomen tasavalta", + "common": "Suomi" + }, + "fra": { + "official": "République de Finlande", + "common": "Finlande" + }, + "hrv": { + "official": "Republika Finska", + "common": "Finska" + }, + "hun": { + "official": "Finn Köztársaság", + "common": "Finnország" + }, + "ind": { + "official": "Republik Finlandia", + "common": "Finlandia" + }, + "ita": { + "official": "Repubblica di Finlandia", + "common": "Finlandia" + }, + "jpn": { + "official": "フィンランド共和国", + "common": "フィンランド" + }, + "kor": { + "official": "핀란드 공화국", + "common": "핀란드" + }, + "nld": { + "official": "Republiek Finland", + "common": "Finland" + }, + "per": { + "official": "جمهوری فنلاند", + "common": "فنلاند" + }, + "pol": { + "official": "Republika Finlandii", + "common": "Finlandia" + }, + "por": { + "official": "República da Finlândia", + "common": "Finlândia" + }, + "rus": { + "official": "Финляндская Республика", + "common": "Финляндия" + }, + "slk": { + "official": "Fínska republika", + "common": "Fínsko" + }, + "spa": { + "official": "República de Finlandia", + "common": "Finlandia" + }, + "srp": { + "official": "Република Финска", + "common": "Финска" + }, + "swe": { + "official": "Republiken Finland", + "common": "Finland" + }, + "tur": { + "official": "Finlandiya Cumhuriyeti", + "common": "Finlandiya" + }, + "urd": { + "official": "جمہوریہ فن لینڈ", + "common": "فن لینڈ" + }, + "zho": { + "official": "芬兰共和国", + "common": "芬兰" + } + }, + "flag": "🇫🇮", + "maps": { + "googleMaps": "https://goo.gl/maps/HjgWDCNKRAYHrkMn8", + "openStreetMaps": "openstreetmap.org/relation/54224" + }, + "population": 5650325, + "gini": { + "2018": 27.3 + }, + "fifa": "FIN", + "car": { + "signs": [ + "FIN" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/fi.png", + "svg": "https://flagcdn.com/fi.svg", + "alt": "The flag of Finland has a white field with a large blue cross that extend to the edges of the field. The vertical part of this cross is offset towards the hoist side." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/fi.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/fi.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 60.17, + 24.93 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(?:FI)*(\\d{5})$" + } + }, + { + "name": { + "common": "Monaco", + "official": "Principality of Monaco", + "nativeName": { + "fra": { + "official": "Principauté de Monaco", + "common": "Monaco" + } + } + }, + "tld": [ + ".mc" + ], + "cca2": "MC", + "ccn3": "492", + "cioc": "MON", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "77" + ] + }, + "capital": [ + "Monaco" + ], + "altSpellings": [ + "MC", + "Principality of Monaco", + "Principauté de Monaco" + ], + "region": "Europe", + "subregion": "Western Europe", + "languages": { + "fra": "French" + }, + "latlng": [ + 43.73333333, + 7.4 + ], + "landlocked": false, + "borders": [ + "FRA" + ], + "area": 2.02, + "demonyms": { + "eng": { + "f": "Monegasque", + "m": "Monegasque" + }, + "fra": { + "f": "Monégasque", + "m": "Monégasque" + } + }, + "cca3": "MCO", + "translations": { + "ara": { + "official": "إمارة موناكو", + "common": "موناكو" + }, + "bre": { + "official": "Priñselezh Monako", + "common": "Monako" + }, + "ces": { + "official": "Monacké knížectví", + "common": "Monako" + }, + "cym": { + "official": "Principality of Monaco", + "common": "Monaco" + }, + "deu": { + "official": "Fürstentum Monaco", + "common": "Monaco" + }, + "est": { + "official": "Monaco Vürstiriik", + "common": "Monaco" + }, + "fin": { + "official": "Monacon ruhtinaskunta", + "common": "Monaco" + }, + "fra": { + "official": "Principauté de Monaco", + "common": "Monaco" + }, + "hrv": { + "official": "Kneževina Monako", + "common": "Monako" + }, + "hun": { + "official": "Monacói Hercegség", + "common": "Monaco" + }, + "ind": { + "official": "Kepangeranan Monako", + "common": "Monako" + }, + "ita": { + "official": "Principato di Monaco", + "common": "Principato di Monaco" + }, + "jpn": { + "official": "モナコ公国", + "common": "モナコ" + }, + "kor": { + "official": "모나코 공국", + "common": "모나코" + }, + "nld": { + "official": "Vorstendom Monaco", + "common": "Monaco" + }, + "per": { + "official": "شاهزاده‌نشین موناکو", + "common": "موناکو" + }, + "pol": { + "official": "Księstwo Monako", + "common": "Monako" + }, + "por": { + "official": "Principado do Mónaco", + "common": "Mónaco" + }, + "rus": { + "official": "Княжество Монако", + "common": "Монако" + }, + "slk": { + "official": "Monacké kniežatstvo", + "common": "Monako" + }, + "spa": { + "official": "Principado de Mónaco", + "common": "Mónaco" + }, + "srp": { + "official": "Кнежевина Монако", + "common": "Монако" + }, + "swe": { + "official": "Furstendömet Monaco", + "common": "Monaco" + }, + "tur": { + "official": "Monako Prensliği", + "common": "Monako" + }, + "urd": { + "official": "جمہوریہ مناکو", + "common": "موناکو" + }, + "zho": { + "official": "摩纳哥公国", + "common": "摩纳哥" + } + }, + "flag": "🇲🇨", + "maps": { + "googleMaps": "https://goo.gl/maps/DGpndDot28bYdXYn7", + "openStreetMaps": "https://www.openstreetmap.org/relation/1124039" + }, + "population": 38423, + "car": { + "signs": [ + "MC" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/mc.png", + "svg": "https://flagcdn.com/mc.svg", + "alt": "The flag of Monaco is composed of two equal horizontal bands of red and white." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/mc.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/mc.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 43.73, + 7.42 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Russia", + "official": "Russian Federation", + "nativeName": { + "rus": { + "official": "Российская Федерация", + "common": "Россия" + } + } + }, + "tld": [ + ".ru", + ".su", + ".рф" + ], + "cca2": "RU", + "ccn3": "643", + "cioc": "RUS", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "RUB": { + "symbol": "₽", + "name": "Russian ruble" + } + }, + "idd": { + "root": "+7", + "suffixes": [ + "3", + "4", + "5", + "8", + "9" + ] + }, + "capital": [ + "Moscow" + ], + "altSpellings": [ + "RU", + "Russian Federation", + "Российская Федерация" + ], + "region": "Europe", + "subregion": "Eastern Europe", + "languages": { + "rus": "Russian" + }, + "latlng": [ + 60.0, + 100.0 + ], + "landlocked": false, + "borders": [ + "AZE", + "BLR", + "CHN", + "EST", + "FIN", + "GEO", + "KAZ", + "PRK", + "LVA", + "LTU", + "MNG", + "NOR", + "POL", + "UKR" + ], + "area": 17098246.0, + "demonyms": { + "eng": { + "f": "Russian", + "m": "Russian" + }, + "fra": { + "f": "Russe", + "m": "Russe" + } + }, + "cca3": "RUS", + "translations": { + "ara": { + "official": "روسيا الاتحادية", + "common": "روسيا" + }, + "bre": { + "official": "Kevread Rusia", + "common": "Rusia" + }, + "ces": { + "official": "Ruská federace", + "common": "Rusko" + }, + "cym": { + "official": "Russian Federation", + "common": "Russia" + }, + "deu": { + "official": "Russische Föderation", + "common": "Russland" + }, + "est": { + "official": "Venemaa Föderatsioon", + "common": "Venemaa" + }, + "fin": { + "official": "Venäjän federaatio", + "common": "Venäjä" + }, + "fra": { + "official": "Fédération de Russie", + "common": "Russie" + }, + "hrv": { + "official": "Ruska Federacija", + "common": "Rusija" + }, + "hun": { + "official": "Oroszországi Föderáció", + "common": "Oroszország" + }, + "ind": { + "official": "Federasi Rusia", + "common": "Rusia" + }, + "ita": { + "official": "Federazione russa", + "common": "Russia" + }, + "jpn": { + "official": "ロシア連邦", + "common": "ロシア連邦" + }, + "kor": { + "official": "러시아 연방", + "common": "러시아" + }, + "nld": { + "official": "Russische Federatie", + "common": "Rusland" + }, + "per": { + "official": "فدراسیون روسیه", + "common": "روسیه" + }, + "pol": { + "official": "Federacja Rosyjska", + "common": "Rosja" + }, + "por": { + "official": "Federação Russa", + "common": "Rússia" + }, + "rus": { + "official": "Российская Федерация", + "common": "Россия" + }, + "slk": { + "official": "Ruská federácia", + "common": "Rusko" + }, + "spa": { + "official": "Federación de Rusia", + "common": "Rusia" + }, + "srp": { + "official": "Руска Федерација", + "common": "Русија" + }, + "swe": { + "official": "Ryska federationen", + "common": "Ryssland" + }, + "tur": { + "official": "Rusya Federasyonu", + "common": "Rusya" + }, + "urd": { + "official": "روسی وفاق", + "common": "روس" + }, + "zho": { + "official": "俄罗斯联邦", + "common": "俄罗斯" + } + }, + "flag": "🇷🇺", + "maps": { + "googleMaps": "https://goo.gl/maps/4F4PpDhGJgVvLby57", + "openStreetMaps": "https://www.openstreetmap.org/relation/60189#map=3/65.15/105.29" + }, + "population": 146028325, + "gini": { + "2018": 37.5 + }, + "fifa": "RUS", + "car": { + "signs": [ + "RUS" + ], + "side": "right" + }, + "timezones": [ + "UTC+03:00", + "UTC+04:00", + "UTC+06:00", + "UTC+07:00", + "UTC+08:00", + "UTC+09:00", + "UTC+10:00", + "UTC+11:00", + "UTC+12:00" + ], + "continents": [ + "Europe", + "Asia" + ], + "flags": { + "png": "https://flagcdn.com/w320/ru.png", + "svg": "https://flagcdn.com/ru.svg", + "alt": "The flag of Russia is composed of three equal horizontal bands of white, blue and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ru.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ru.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 55.75, + 37.6 + ] + }, + "postalCode": { + "format": "######", + "regex": "^(\\d{6})$" + } + }, + { + "name": { + "common": "Bulgaria", + "official": "Republic of Bulgaria", + "nativeName": { + "bul": { + "official": "Република България", + "common": "България" + } + } + }, + "tld": [ + ".bg" + ], + "cca2": "BG", + "ccn3": "100", + "cioc": "BUL", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "BGN": { + "symbol": "лв", + "name": "Bulgarian lev" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "59" + ] + }, + "capital": [ + "Sofia" + ], + "altSpellings": [ + "BG", + "Republic of Bulgaria", + "Република България" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "bul": "Bulgarian" + }, + "latlng": [ + 43.0, + 25.0 + ], + "landlocked": false, + "borders": [ + "GRC", + "MKD", + "ROU", + "SRB", + "TUR" + ], + "area": 110879.0, + "demonyms": { + "eng": { + "f": "Bulgarian", + "m": "Bulgarian" + }, + "fra": { + "f": "Bulgare", + "m": "Bulgare" + } + }, + "cca3": "BGR", + "translations": { + "ara": { + "official": "جمهورية بلغاريا", + "common": "بلغاريا" + }, + "bre": { + "official": "Republik Bulgaria", + "common": "Bulgaria" + }, + "ces": { + "official": "Bulharská republika", + "common": "Bulharsko" + }, + "cym": { + "official": "Gweriniaeth Bwlgaria", + "common": "Bwlgaria" + }, + "deu": { + "official": "Republik Bulgarien", + "common": "Bulgarien" + }, + "est": { + "official": "Bulgaaria Vabariik", + "common": "Bulgaaria" + }, + "fin": { + "official": "Bulgarian tasavalta", + "common": "Bulgaria" + }, + "fra": { + "official": "République de Bulgarie", + "common": "Bulgarie" + }, + "hrv": { + "official": "Republika Bugarska", + "common": "Bugarska" + }, + "hun": { + "official": "Bolgár Köztársaság", + "common": "Bulgária" + }, + "ind": { + "official": "Republik Bulgaria", + "common": "Bulgaria" + }, + "ita": { + "official": "Repubblica di Bulgaria", + "common": "Bulgaria" + }, + "jpn": { + "official": "ブルガリア共和国", + "common": "ブルガリア" + }, + "kor": { + "official": "불가리아 공화국", + "common": "불가리아" + }, + "nld": { + "official": "Republiek Bulgarije", + "common": "Bulgarije" + }, + "per": { + "official": "جمهوری بلغارستان", + "common": "بلغارستان" + }, + "pol": { + "official": "Republika Bułgarii", + "common": "Bułgaria" + }, + "por": { + "official": "República da Bulgária", + "common": "Bulgária" + }, + "rus": { + "official": "Республика Болгария", + "common": "Болгария" + }, + "slk": { + "official": "Bulharská republika", + "common": "Bulharsko" + }, + "spa": { + "official": "República de Bulgaria", + "common": "Bulgaria" + }, + "srp": { + "official": "Република Бугарска", + "common": "Бугарска" + }, + "swe": { + "official": "Republiken Bulgarien", + "common": "Bulgarien" + }, + "tur": { + "official": "Bulgaristan Cumhuriyeti", + "common": "Bulgaristan" + }, + "urd": { + "official": "جمہوریہ بلغاریہ", + "common": "بلغاریہ" + }, + "zho": { + "official": "保加利亚共和国", + "common": "保加利亚" + } + }, + "flag": "🇧🇬", + "maps": { + "googleMaps": "https://goo.gl/maps/F5uAhDGWzc3BrHfm9", + "openStreetMaps": "https://www.openstreetmap.org/relation/186382" + }, + "population": 6437360, + "gini": { + "2018": 41.3 + }, + "fifa": "BUL", + "car": { + "signs": [ + "BG" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/bg.png", + "svg": "https://flagcdn.com/bg.svg", + "alt": "The flag of Bulgaria is composed of three equal horizontal bands of white, green and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/bg.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/bg.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 42.68, + 23.32 + ] + }, + "postalCode": { + "format": "####", + "regex": "^(\\d{4})$" + } + }, + { + "name": { + "common": "Lithuania", + "official": "Republic of Lithuania", + "nativeName": { + "lit": { + "official": "Lietuvos Respublikos", + "common": "Lietuva" + } + } + }, + "tld": [ + ".lt" + ], + "cca2": "LT", + "ccn3": "440", + "cioc": "LTU", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "70" + ] + }, + "capital": [ + "Vilnius" + ], + "altSpellings": [ + "LT", + "Republic of Lithuania", + "Lietuvos Respublika" + ], + "region": "Europe", + "subregion": "Northern Europe", + "languages": { + "lit": "Lithuanian" + }, + "latlng": [ + 56.0, + 24.0 + ], + "landlocked": false, + "borders": [ + "BLR", + "LVA", + "POL", + "RUS" + ], + "area": 65300.0, + "demonyms": { + "eng": { + "f": "Lithuanian", + "m": "Lithuanian" + }, + "fra": { + "f": "Lituanienne", + "m": "Lituanien" + } + }, + "cca3": "LTU", + "translations": { + "ara": { + "official": "جمهورية ليتوانيا", + "common": "ليتوانيا" + }, + "bre": { + "official": "Republik Lituania", + "common": "Lituania" + }, + "ces": { + "official": "Litevská republika", + "common": "Litva" + }, + "cym": { + "official": "Republic of Lithuania", + "common": "Lithuania" + }, + "deu": { + "official": "Republik Litauen", + "common": "Litauen" + }, + "est": { + "official": "Leedu Vabariik", + "common": "Leedu" + }, + "fin": { + "official": "Liettuan tasavalta", + "common": "Liettua" + }, + "fra": { + "official": "République de Lituanie", + "common": "Lituanie" + }, + "hrv": { + "official": "Republika Litva", + "common": "Litva" + }, + "hun": { + "official": "Litván Köztársaság", + "common": "Litvánia" + }, + "ind": { + "official": "Republik Lithuania", + "common": "Lithuania" + }, + "ita": { + "official": "Repubblica di Lituania", + "common": "Lituania" + }, + "jpn": { + "official": "リトアニア共和国", + "common": "リトアニア" + }, + "kor": { + "official": "리투아니아 공화국", + "common": "리투아니아" + }, + "nld": { + "official": "Republiek Litouwen", + "common": "Litouwen" + }, + "per": { + "official": "لیتوانیایی‌ها", + "common": "لیتوانیایی‌ها" + }, + "pol": { + "official": "Republika Litewska", + "common": "Litwa" + }, + "por": { + "official": "República da Lituânia", + "common": "Lituânia" + }, + "rus": { + "official": "Литовская Республика", + "common": "Литва" + }, + "slk": { + "official": "Litovská republika", + "common": "Litva" + }, + "spa": { + "official": "República de Lituania", + "common": "Lituania" + }, + "srp": { + "official": "Литванска Република", + "common": "Литванија" + }, + "swe": { + "official": "Republiken Litauen", + "common": "Litauen" + }, + "tur": { + "official": "Litvanya Cumhuriyeti", + "common": "Litvanya" + }, + "urd": { + "official": "جمہوریہ لتھووینیا", + "common": "لتھووینیا" + }, + "zho": { + "official": "立陶宛共和国", + "common": "立陶宛" + } + }, + "flag": "🇱🇹", + "maps": { + "googleMaps": "https://goo.gl/maps/dd1s9rrLjrK2G8yY6", + "openStreetMaps": "https://www.openstreetmap.org/relation/72596" + }, + "population": 2894886, + "gini": { + "2018": 35.7 + }, + "fifa": "LTU", + "car": { + "signs": [ + "LT" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/lt.png", + "svg": "https://flagcdn.com/lt.svg", + "alt": "The flag of Lithuania is composed of three equal horizontal bands of yellow, green and red." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/lt.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/lt.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 54.68, + 25.32 + ] + }, + "postalCode": { + "format": "LT-#####", + "regex": "^(?:LT)*(\\d{5})$" + } + }, + { + "name": { + "common": "Bosnia and Herzegovina", + "official": "Bosnia and Herzegovina", + "nativeName": { + "bos": { + "official": "Bosna i Hercegovina", + "common": "Bosna i Hercegovina" + }, + "hrv": { + "official": "Bosna i Hercegovina", + "common": "Bosna i Hercegovina" + }, + "srp": { + "official": "Босна и Херцеговина", + "common": "Босна и Херцеговина" + } + } + }, + "tld": [ + ".ba" + ], + "cca2": "BA", + "ccn3": "070", + "cioc": "BIH", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "BAM": { + "symbol": "KM", + "name": "Bosnia and Herzegovina convertible mark" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "87" + ] + }, + "capital": [ + "Sarajevo" + ], + "altSpellings": [ + "BA", + "Bosnia-Herzegovina", + "Босна и Херцеговина" + ], + "region": "Europe", + "subregion": "Southeast Europe", + "languages": { + "bos": "Bosnian", + "hrv": "Croatian", + "srp": "Serbian" + }, + "latlng": [ + 44.0, + 18.0 + ], + "landlocked": false, + "borders": [ + "HRV", + "MNE", + "SRB" + ], + "area": 51209.0, + "demonyms": { + "eng": { + "f": "Bosnian, Herzegovinian", + "m": "Bosnian, Herzegovinian" + }, + "fra": { + "f": "Bosnienne", + "m": "Bosnien" + } + }, + "cca3": "BIH", + "translations": { + "ara": { + "official": "جمهورية البوسنة والهرسك", + "common": "البوسنة والهرسك" + }, + "bre": { + "official": "Bosnia-ha-Herzegovina", + "common": "Bosnia-ha-Herzegovina" + }, + "ces": { + "official": "Bosna a Hercegovina", + "common": "Bosna a Hercegovina" + }, + "cym": { + "official": "Bosnia a Hercegovina", + "common": "Bosnia a Hercegovina" + }, + "deu": { + "official": "Bosnien und Herzegowina", + "common": "Bosnien und Herzegowina" + }, + "est": { + "official": "Bosnia ja Hertsegoviina", + "common": "Bosnia ja Hertsegoviina" + }, + "fin": { + "official": "Bosnia ja Hertsegovina", + "common": "Bosnia ja Hertsegovina" + }, + "fra": { + "official": "Bosnie-et-Herzégovine", + "common": "Bosnie-Herzégovine" + }, + "hrv": { + "official": "Bosna i Hercegovina", + "common": "Bosna i Hercegovina" + }, + "hun": { + "official": "Bosznia-Hercegovina", + "common": "Bosznia-Hercegovina" + }, + "ind": { + "official": "Bosnia dan Herzegovina", + "common": "Bosnia dan Herzegovina" + }, + "ita": { + "official": "Bosnia-Erzegovina", + "common": "Bosnia ed Erzegovina" + }, + "jpn": { + "official": "ボスニア·ヘルツェゴビナ", + "common": "ボスニア・ヘルツェゴビナ" + }, + "kor": { + "official": "보스니아 헤르체고비나", + "common": "보스니아 헤르체고비나" + }, + "nld": { + "official": "Bosnië-Herzegovina", + "common": "Bosnië en Herzegovina" + }, + "per": { + "official": "بوسنی و هرزگوین", + "common": "بوسنی و هرزگوین" + }, + "pol": { + "official": "Bośnia i Hercegowina", + "common": "Bośnia i Hercegowina" + }, + "por": { + "official": "Bósnia e Herzegovina", + "common": "Bósnia e Herzegovina" + }, + "rus": { + "official": "Босния и Герцеговина", + "common": "Босния и Герцеговина" + }, + "slk": { + "official": "Republika Bosny a Hercegoviny", + "common": "Bosna a Hercegovina" + }, + "spa": { + "official": "Bosnia y Herzegovina", + "common": "Bosnia y Herzegovina" + }, + "srp": { + "official": "Босна и Херцеговина", + "common": "Босна и Херцеговина" + }, + "swe": { + "official": "Bosnien och Hercegovina", + "common": "Bosnien och Hercegovina" + }, + "tur": { + "official": "Bosna ve Hersek", + "common": "Bosna-Hersek" + }, + "urd": { + "official": "بوسنیا و ہرزیگووینا", + "common": "بوسنیا و ہرزیگووینا" + }, + "zho": { + "official": "波斯尼亚和黑塞哥维那", + "common": "波斯尼亚和黑塞哥维那" + } + }, + "flag": "🇧🇦", + "maps": { + "googleMaps": "https://www.google.com/maps/place/Bosnia+and+Herzegovina", + "openStreetMaps": "https://www.openstreetmap.org/relation/2528142" + }, + "population": 3422000, + "gini": { + "2011": 33.0 + }, + "fifa": "BIH", + "car": { + "signs": [ + "BIH" + ], + "side": "right" + }, + "timezones": [ + "UTC+01:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/ba.png", + "svg": "https://flagcdn.com/ba.svg", + "alt": "The flag of Bosnia and Herzegovina has a blue field, at the center of which is a large yellow hoist-side facing right-angled triangle that is based on the top edge and spans the height of the field. Adjacent to the hypotenuse of this triangle are nine adjoining five-pointed white stars with the top and bottom stars cut in half by the edges of the field." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/ba.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/ba.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 43.87, + 18.42 + ] + }, + "postalCode": { + "format": "#####", + "regex": "^(\\d{5})$" + } + }, + { + "name": { + "common": "Greece", + "official": "Hellenic Republic", + "nativeName": { + "ell": { + "official": "Ελληνική Δημοκρατία", + "common": "Ελλάδα" + } + } + }, + "tld": [ + ".gr" + ], + "cca2": "GR", + "ccn3": "300", + "cioc": "GRE", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "EUR": { + "symbol": "€", + "name": "Euro" + } + }, + "idd": { + "root": "+3", + "suffixes": [ + "0" + ] + }, + "capital": [ + "Athens" + ], + "altSpellings": [ + "GR", + "Elláda", + "Hellenic Republic", + "Ελληνική Δημοκρατία" + ], + "region": "Europe", + "subregion": "Southern Europe", + "languages": { + "ell": "Greek" + }, + "latlng": [ + 39.0, + 22.0 + ], + "landlocked": false, + "borders": [ + "ALB", + "BGR", + "TUR", + "MKD" + ], + "area": 131990.0, + "demonyms": { + "eng": { + "f": "Greek", + "m": "Greek" + }, + "fra": { + "f": "Grecque", + "m": "Grec" + } + }, + "cca3": "GRC", + "translations": { + "ara": { + "official": "الجمهورية الهيلينية", + "common": "اليونان" + }, + "bre": { + "official": "Republik Hellenek", + "common": "Gres" + }, + "ces": { + "official": "Řecká republika", + "common": "Řecko" + }, + "cym": { + "official": "Hellenic Republic", + "common": "Greece" + }, + "deu": { + "official": "Hellenische Republik", + "common": "Griechenland" + }, + "est": { + "official": "Kreeka Vabariik", + "common": "Kreeka" + }, + "fin": { + "official": "Helleenien tasavalta", + "common": "Kreikka" + }, + "fra": { + "official": "République hellénique", + "common": "Grèce" + }, + "hrv": { + "official": "Helenska Republika", + "common": "Grčka" + }, + "hun": { + "official": "Görög Köztársaság", + "common": "Görögország" + }, + "ind": { + "official": "Republik Yunani", + "common": "Yunani" + }, + "ita": { + "official": "Repubblica ellenica", + "common": "Grecia" + }, + "jpn": { + "official": "ギリシャ共和国", + "common": "ギリシャ" + }, + "kor": { + "official": "그리스 공화국", + "common": "그리스" + }, + "nld": { + "official": "Helleense Republiek", + "common": "Griekenland" + }, + "per": { + "official": "جمهوری یونان", + "common": "یونان" + }, + "pol": { + "official": "Republika Grecka", + "common": "Grecja" + }, + "por": { + "official": "República Helénica", + "common": "Grécia" + }, + "rus": { + "official": "Греческая Республика", + "common": "Греция" + }, + "slk": { + "official": "Grécka republika", + "common": "Greécko" + }, + "spa": { + "official": "República Helénica", + "common": "Grecia" + }, + "srp": { + "official": "Хеленска Република", + "common": "Грчка" + }, + "swe": { + "official": "Republiken Grekland", + "common": "Grekland" + }, + "tur": { + "official": "Helen Cumhuriyeti", + "common": "Yunanistan" + }, + "urd": { + "official": "جمہوریہ ہیلینیہ", + "common": "یونان" + }, + "zho": { + "official": "希腊共和国", + "common": "希腊" + } + }, + "flag": "🇬🇷", + "maps": { + "googleMaps": "https://goo.gl/maps/LHGcAvuRyD2iKECC6", + "openStreetMaps": "https://www.openstreetmap.org/relation/192307" + }, + "population": 10400720, + "gini": { + "2018": 32.9 + }, + "fifa": "GRE", + "car": { + "signs": [ + "GR" + ], + "side": "right" + }, + "timezones": [ + "UTC+02:00" + ], + "continents": [ + "Europe" + ], + "flags": { + "png": "https://flagcdn.com/w320/gr.png", + "svg": "https://flagcdn.com/gr.svg", + "alt": "The flag of Greece is composed of nine equal horizontal bands of blue alternating with white. A blue square bearing a white cross is superimposed in the canton." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/gr.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/gr.svg" + }, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 37.98, + 23.73 + ] + }, + "postalCode": { + "format": "### ##", + "regex": "^(\\d{5})$" + } + } +] \ No newline at end of file diff --git a/public_apis/countries_region_europe.metadata.json b/public_apis/countries_region_europe.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..f1eee04b46198166900e99dff167da4c65eb58ef --- /dev/null +++ b/public_apis/countries_region_europe.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_countries_region_europe", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:25.238821", + "size_bytes": 263474, + "description": "European countries", + "url": "https://restcountries.com/v3.1/region/europe" +} \ No newline at end of file diff --git a/public_apis/countries_usa.json b/public_apis/countries_usa.json new file mode 100644 index 0000000000000000000000000000000000000000..ff884578e61d42f246f74995d3b9635030ac4d2d --- /dev/null +++ b/public_apis/countries_usa.json @@ -0,0 +1,943 @@ +[ + { + "name": { + "common": "United States Minor Outlying Islands", + "official": "United States Minor Outlying Islands", + "nativeName": { + "eng": { + "official": "United States Minor Outlying Islands", + "common": "United States Minor Outlying Islands" + } + } + }, + "tld": [ + ".us" + ], + "cca2": "UM", + "ccn3": "581", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+2", + "suffixes": [ + "68" + ] + }, + "capital": [ + "Washington DC" + ], + "altSpellings": [ + "UM" + ], + "region": "Americas", + "subregion": "North America", + "languages": { + "eng": "English" + }, + "latlng": [ + 19.3, + 166.633333 + ], + "landlocked": false, + "area": 34.2, + "demonyms": { + "eng": { + "f": "American Islander", + "m": "American Islander" + }, + "fra": { + "f": "", + "m": "" + } + }, + "cca3": "UMI", + "translations": { + "ara": { + "official": "جزر الولايات المتحدة الصغيرة النائية", + "common": "جزر الولايات المتحدة الصغيرة النائية" + }, + "bre": { + "official": "Inizi Minor A-bell Stadoù-Unanet", + "common": "Inizi Minor A-bell Stadoù-Unanet" + }, + "ces": { + "official": "Menší odlehlé ostrovy Spojených států amerických", + "common": "Menší odlehlé ostrovy USA" + }, + "cym": { + "official": "United States Minor Outlying Islands", + "common": "United States Minor Outlying Islands" + }, + "deu": { + "official": "USA, kleinere ausgelagerte Inseln", + "common": "Kleinere Inselbesitzungen der Vereinigten Staaten" + }, + "est": { + "official": "Ühendriikide väikesed hajasaared", + "common": "Ühendriikide hajasaared" + }, + "fin": { + "official": "Yhdysvaltain asumattomat saaret", + "common": "Yhdysvaltain asumattomat saaret" + }, + "fra": { + "official": "Îles mineures éloignées des États-Unis", + "common": "Îles mineures éloignées des États-Unis" + }, + "hrv": { + "official": "Mali udaljeni otoci SAD-a", + "common": "Mali udaljeni otoci SAD-a" + }, + "hun": { + "official": "Az Amerikai Egyesült Államok lakatlan külbirtokai", + "common": "Az Amerikai Egyesült Államok lakatlan külbirtokai" + }, + "ind": { + "official": "Kepulauan Terluar Kecil Amerika Serikat", + "common": "Kepulauan Terluar Kecil Amerika Serikat" + }, + "ita": { + "official": "Stati Uniti Isole Minori", + "common": "Isole minori esterne degli Stati Uniti d'America" + }, + "jpn": { + "official": "アメリカ合衆国外諸島", + "common": "合衆国領有小離島" + }, + "kor": { + "official": "미국령 군소 제도", + "common": "미국령 군소 제도" + }, + "nld": { + "official": "Kleine afgelegen eilanden van de Verenigde Staten", + "common": "Kleine afgelegen eilanden van de Verenigde Staten" + }, + "per": { + "official": "جزایر کوچک حاشیه‌ای ایالات متحده آمریکا", + "common": "جزایر کوچک حاشیه‌ای ایالات متحده آمریکا" + }, + "pol": { + "official": "Dalekie Wyspy Mniejsze Stanów Zjednoczonych", + "common": "Dalekie Wyspy Mniejsze Stanów Zjednoczonych" + }, + "por": { + "official": "Estados Unidos Ilhas Menores Distantes", + "common": "Ilhas Menores Distantes dos Estados Unidos" + }, + "rus": { + "official": "Внешние малые острова США", + "common": "Внешние малые острова США" + }, + "slk": { + "official": "Menšie odľahlé ostrovy Spjoených štátov", + "common": "Menšie odľahlé ostrovy USA" + }, + "spa": { + "official": "Estados Unidos Islas menores alejadas de", + "common": "Islas Ultramarinas Menores de Estados Unidos" + }, + "srp": { + "official": "Мала спољна острва Сједињених Америчких Држава", + "common": "Мала спољна острва Сједињених Америчких Држава" + }, + "swe": { + "official": "Förenta staternas mindre öar i Oceanien och Västindien", + "common": "Förenta staternas mindre öar i Oceanien och Västindien" + }, + "tur": { + "official": "Amerika Birleşik Devletleri Küçük Dış Adaları", + "common": "Amerika Birleşik Devletleri Küçük Dış Adaları" + }, + "urd": { + "official": "امریکی چھوٹے بیرونی جزائر", + "common": "امریکی چھوٹے بیرونی جزائر" + }, + "zho": { + "official": "美国本土外小岛屿", + "common": "美国本土外小岛屿" + } + }, + "flag": "🇺🇲", + "maps": { + "googleMaps": "https://goo.gl/maps/hZKnrzgeK69dDyPF8", + "openStreetMaps": "https://www.openstreetmap.org/relation/6430384" + }, + "population": 0, + "car": { + "signs": [ + "" + ], + "side": "right" + }, + "timezones": [ + "UTC-11:00", + "UTC-10:00", + "UTC+12:00" + ], + "continents": [ + "Oceania" + ], + "flags": { + "png": "https://flagcdn.com/w320/um.png", + "svg": "https://flagcdn.com/um.svg" + }, + "coatOfArms": {}, + "startOfWeek": "monday", + "capitalInfo": {}, + "postalCode": { + "format": null, + "regex": null + } + }, + { + "name": { + "common": "United States", + "official": "United States of America", + "nativeName": { + "eng": { + "official": "United States of America", + "common": "United States" + } + } + }, + "tld": [ + ".us" + ], + "cca2": "US", + "ccn3": "840", + "cioc": "USA", + "independent": true, + "status": "officially-assigned", + "unMember": true, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+1", + "suffixes": [ + "201", + "202", + "203", + "205", + "206", + "207", + "208", + "209", + "210", + "212", + "213", + "214", + "215", + "216", + "217", + "218", + "219", + "220", + "224", + "225", + "227", + "228", + "229", + "231", + "234", + "239", + "240", + "248", + "251", + "252", + "253", + "254", + "256", + "260", + "262", + "267", + "269", + "270", + "272", + "274", + "276", + "281", + "283", + "301", + "302", + "303", + "304", + "305", + "307", + "308", + "309", + "310", + "312", + "313", + "314", + "315", + "316", + "317", + "318", + "319", + "320", + "321", + "323", + "325", + "327", + "330", + "331", + "334", + "336", + "337", + "339", + "346", + "347", + "351", + "352", + "360", + "361", + "364", + "380", + "385", + "386", + "401", + "402", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "412", + "413", + "414", + "415", + "417", + "419", + "423", + "424", + "425", + "430", + "432", + "434", + "435", + "440", + "442", + "443", + "447", + "458", + "463", + "464", + "469", + "470", + "475", + "478", + "479", + "480", + "484", + "501", + "502", + "503", + "504", + "505", + "507", + "508", + "509", + "510", + "512", + "513", + "515", + "516", + "517", + "518", + "520", + "530", + "531", + "534", + "539", + "540", + "541", + "551", + "559", + "561", + "562", + "563", + "564", + "567", + "570", + "571", + "573", + "574", + "575", + "580", + "585", + "586", + "601", + "602", + "603", + "605", + "606", + "607", + "608", + "609", + "610", + "612", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "623", + "626", + "628", + "629", + "630", + "631", + "636", + "641", + "646", + "650", + "651", + "657", + "660", + "661", + "662", + "667", + "669", + "678", + "681", + "682", + "701", + "702", + "703", + "704", + "706", + "707", + "708", + "712", + "713", + "714", + "715", + "716", + "717", + "718", + "719", + "720", + "724", + "725", + "727", + "730", + "731", + "732", + "734", + "737", + "740", + "743", + "747", + "754", + "757", + "760", + "762", + "763", + "765", + "769", + "770", + "772", + "773", + "774", + "775", + "779", + "781", + "785", + "786", + "801", + "802", + "803", + "804", + "805", + "806", + "808", + "810", + "812", + "813", + "814", + "815", + "816", + "817", + "818", + "828", + "830", + "831", + "832", + "843", + "845", + "847", + "848", + "850", + "854", + "856", + "857", + "858", + "859", + "860", + "862", + "863", + "864", + "865", + "870", + "872", + "878", + "901", + "903", + "904", + "906", + "907", + "908", + "909", + "910", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "919", + "920", + "925", + "928", + "929", + "930", + "931", + "934", + "936", + "937", + "938", + "940", + "941", + "947", + "949", + "951", + "952", + "954", + "956", + "959", + "970", + "971", + "972", + "973", + "975", + "978", + "979", + "980", + "984", + "985", + "989" + ] + }, + "capital": [ + "Washington, D.C." + ], + "altSpellings": [ + "US", + "USA", + "United States of America" + ], + "region": "Americas", + "subregion": "North America", + "languages": { + "eng": "English" + }, + "latlng": [ + 38.0, + -97.0 + ], + "landlocked": false, + "borders": [ + "CAN", + "MEX" + ], + "area": 9525067.0, + "demonyms": { + "eng": { + "f": "American", + "m": "American" + }, + "fra": { + "f": "Américaine", + "m": "Américain" + } + }, + "cca3": "USA", + "translations": { + "ara": { + "official": "الولايات المتحدة الامريكية", + "common": "الولايات المتحدة" + }, + "bre": { + "official": "Stadoù-Unanet Amerika", + "common": "Stadoù-Unanet" + }, + "ces": { + "official": "Spojené státy americké", + "common": "Spojené státy" + }, + "cym": { + "official": "United States of America", + "common": "United States" + }, + "deu": { + "official": "Vereinigte Staaten von Amerika", + "common": "Vereinigte Staaten" + }, + "est": { + "official": "Ameerika Ühendriigid", + "common": "Ameerika Ühendriigid" + }, + "fin": { + "official": "Amerikan yhdysvallat", + "common": "Yhdysvallat" + }, + "fra": { + "official": "Les états-unis d'Amérique", + "common": "États-Unis" + }, + "hrv": { + "official": "Sjedinjene Države Amerike", + "common": "Sjedinjene Američke Države" + }, + "hun": { + "official": "Amerikai Egyesült Államok", + "common": "Amerikai Egyesült Államok" + }, + "ind": { + "official": "Amerika Serikat", + "common": "Amerika" + }, + "ita": { + "official": "Stati Uniti d'America", + "common": "Stati Uniti d'America" + }, + "jpn": { + "official": "アメリカ合衆国", + "common": "アメリカ合衆国" + }, + "kor": { + "official": "아메리카 합중국", + "common": "미국" + }, + "nld": { + "official": "Verenigde Staten van Amerika", + "common": "Verenigde Staten" + }, + "per": { + "official": "ایالات متحده آمریکا", + "common": "ایالات متحده آمریکا" + }, + "pol": { + "official": "Stany Zjednoczone Ameryki", + "common": "Stany Zjednoczone" + }, + "por": { + "official": "Estados Unidos da América", + "common": "Estados Unidos" + }, + "rus": { + "official": "Соединенные Штаты Америки", + "common": "Соединённые Штаты Америки" + }, + "slk": { + "official": "Spojené štáty Americké", + "common": "Spojené štáty americké" + }, + "spa": { + "official": "Estados Unidos de América", + "common": "Estados Unidos" + }, + "srp": { + "official": "Сједињене Америчке Државе", + "common": "Сједињене Америчке Државе" + }, + "swe": { + "official": "Amerikas förenta stater", + "common": "USA" + }, + "tur": { + "official": "Amerika Birleşik Devletleri", + "common": "Amerika Birleşik Devletleri" + }, + "urd": { + "official": "ریاستہائے متحدہ امریکا", + "common": "ریاستہائے متحدہ" + }, + "zho": { + "official": "美利坚合众国", + "common": "美国" + } + }, + "flag": "🇺🇸", + "maps": { + "googleMaps": "https://goo.gl/maps/e8M246zY4BSjkjAv6", + "openStreetMaps": "https://www.openstreetmap.org/relation/148838#map=2/20.6/-85.8" + }, + "population": 340110988, + "gini": { + "2018": 41.4 + }, + "fifa": "USA", + "car": { + "signs": [ + "USA" + ], + "side": "right" + }, + "timezones": [ + "UTC-12:00", + "UTC-11:00", + "UTC-10:00", + "UTC-09:00", + "UTC-08:00", + "UTC-07:00", + "UTC-06:00", + "UTC-05:00", + "UTC-04:00", + "UTC+10:00", + "UTC+12:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/us.png", + "svg": "https://flagcdn.com/us.svg", + "alt": "The flag of the United States of America is composed of thirteen equal horizontal bands of red alternating with white. A blue rectangle, bearing fifty small five-pointed white stars arranged in nine rows where rows of six stars alternate with rows of five stars, is superimposed in the canton." + }, + "coatOfArms": { + "png": "https://mainfacts.com/media/images/coats_of_arms/us.png", + "svg": "https://mainfacts.com/media/images/coats_of_arms/us.svg" + }, + "startOfWeek": "sunday", + "capitalInfo": { + "latlng": [ + 38.89, + -77.05 + ] + }, + "postalCode": { + "format": "#####-####", + "regex": "^\\d{5}(-\\d{4})?$" + } + }, + { + "name": { + "common": "United States Virgin Islands", + "official": "Virgin Islands of the United States", + "nativeName": { + "eng": { + "official": "Virgin Islands of the United States", + "common": "United States Virgin Islands" + } + } + }, + "tld": [ + ".vi" + ], + "cca2": "VI", + "ccn3": "850", + "cioc": "ISV", + "independent": false, + "status": "officially-assigned", + "unMember": false, + "currencies": { + "USD": { + "symbol": "$", + "name": "United States dollar" + } + }, + "idd": { + "root": "+1", + "suffixes": [ + "340" + ] + }, + "capital": [ + "Charlotte Amalie" + ], + "altSpellings": [ + "VI", + "Virgin Islands, U.S." + ], + "region": "Americas", + "subregion": "Caribbean", + "languages": { + "eng": "English" + }, + "latlng": [ + 18.35, + -64.933333 + ], + "landlocked": false, + "area": 347.0, + "demonyms": { + "eng": { + "f": "Virgin Islander", + "m": "Virgin Islander" + }, + "fra": { + "f": "", + "m": "" + } + }, + "cca3": "VIR", + "translations": { + "ara": { + "official": "جزر العذراء الامريكية", + "common": "جزر العذراء الامريكية" + }, + "bre": { + "official": "Inizi Gwerc'h ar Stadoù-Unanet", + "common": "Inizi Gwerc'h ar Stadoù-Unanet" + }, + "ces": { + "official": "Americké Panenské ostrovy", + "common": "Americké Panenské ostrovy" + }, + "cym": { + "official": "Virgin Islands of the United States", + "common": "United States Virgin Islands" + }, + "deu": { + "official": "Amerikanische Jungferninseln", + "common": "Amerikanische Jungferninseln" + }, + "est": { + "official": "Ühendriikide Neitsisaared", + "common": "Neitsisaared, USA" + }, + "fin": { + "official": "Yhdysvaltain Neitsytsaaret", + "common": "Neitsytsaaret" + }, + "fra": { + "official": "Îles Vierges des États-Unis", + "common": "Îles Vierges des États-Unis" + }, + "hrv": { + "official": "Djevičanski Otoci SAD", + "common": "Američki Djevičanski Otoci" + }, + "hun": { + "official": "Amerikai Virgin-szigetek", + "common": "Amerikai Virgin-szigetek" + }, + "ind": { + "official": "Kepulauan Virgin Amerika Serikat", + "common": "Kepulauan Virgin Amerika Serikat" + }, + "ita": { + "official": "Isole Vergini degli Stati Uniti", + "common": "Isole Vergini americane" + }, + "jpn": { + "official": "米国のバージン諸島", + "common": "アメリカ領ヴァージン諸島" + }, + "kor": { + "official": "미국령 버진아일랜드", + "common": "미국령 버진아일랜드" + }, + "nld": { + "official": "Maagdeneilanden van de Verenigde Staten", + "common": "Amerikaanse Maagdeneilanden" + }, + "per": { + "official": "جزایر ویرجین ایالات متحده آمریکا", + "common": "جزایر ویرجین ایالات متحده آمریکا" + }, + "pol": { + "official": "Wyspy Dziewicze Stanów Zjednoczonych", + "common": "Wyspy Dziewicze Stanów Zjednoczonych" + }, + "por": { + "official": "Ilhas Virgens dos Estados Unidos", + "common": "Ilhas Virgens dos Estados Unidos" + }, + "rus": { + "official": "Виргинские острова Соединенных Штатов", + "common": "Виргинские Острова" + }, + "slk": { + "official": "Americké Panenské ostrovy", + "common": "Americké Panenské ostrovy" + }, + "spa": { + "official": "Islas Vírgenes de los Estados Unidos", + "common": "Islas Vírgenes de los Estados Unidos" + }, + "srp": { + "official": "Америчка Девичанска Острва", + "common": "Америчка Девичанска Острва" + }, + "swe": { + "official": "Amerikanska Jungfruöarna", + "common": "Amerikanska Jungfruöarna" + }, + "tur": { + "official": "Amerika Birleşik Devletleri Virjin Adaları", + "common": "ABD Virjin Adaları" + }, + "urd": { + "official": "امریکی جزائر ورجن", + "common": "امریکی جزائر ورجن" + }, + "zho": { + "official": "美属维尔京群岛", + "common": "美属维尔京群岛" + } + }, + "flag": "🇻🇮", + "maps": { + "googleMaps": "https://goo.gl/maps/mBfreywj8dor6q4m9", + "openStreetMaps": "openstreetmap.org/relation/286898" + }, + "population": 87146, + "fifa": "VIR", + "car": { + "signs": [ + "USA" + ], + "side": "right" + }, + "timezones": [ + "UTC-04:00" + ], + "continents": [ + "North America" + ], + "flags": { + "png": "https://flagcdn.com/w320/vi.png", + "svg": "https://flagcdn.com/vi.svg" + }, + "coatOfArms": {}, + "startOfWeek": "monday", + "capitalInfo": { + "latlng": [ + 18.35, + -64.93 + ] + }, + "postalCode": { + "format": null, + "regex": null + } + } +] \ No newline at end of file diff --git a/public_apis/countries_usa.metadata.json b/public_apis/countries_usa.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..bc326cebbd3e4318029a757f37604bba6d6e54c1 --- /dev/null +++ b/public_apis/countries_usa.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_countries_usa", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:24.128884", + "size_bytes": 21712, + "description": "USA country data", + "url": "https://restcountries.com/v3.1/name/united%20states" +} \ No newline at end of file diff --git a/public_apis/crypto_bitcoin.json b/public_apis/crypto_bitcoin.json new file mode 100644 index 0000000000000000000000000000000000000000..9693b04371842d96cf2febd242e6b3406e5f33d0 --- /dev/null +++ b/public_apis/crypto_bitcoin.json @@ -0,0 +1,4969 @@ +{ + "id": "bitcoin", + "symbol": "btc", + "name": "Bitcoin", + "web_slug": "bitcoin", + "asset_platform_id": null, + "platforms": { + "": "" + }, + "detail_platforms": { + "": { + "decimal_place": null, + "contract_address": "" + } + }, + "block_time_in_minutes": 10, + "hashing_algorithm": "SHA-256", + "categories": [ + "Smart Contract Platform", + "Layer 1 (L1)", + "FTX Holdings", + "Proof of Work (PoW)", + "Bitcoin Ecosystem", + "GMCI 30 Index", + "GMCI Index", + "Coinbase 50 Index" + ], + "preview_listing": false, + "public_notice": null, + "additional_notices": [], + "localization": { + "en": "Bitcoin", + "zh": "比特币", + "zh-tw": "比特幣", + "de": "Bitcoin", + "fr": "Bitcoin", + "es": "Bitcoin", + "ja": "ビットコイン", + "id": "Bitcoin", + "ru": "Биткоин", + "ko": "비트코인", + "ar": "بيتكوين", + "th": "บิตคอยน์", + "vi": "Bitcoin", + "it": "Bitcoin", + "pl": "Bitcoin", + "tr": "Bitcoin", + "hu": "Bitcoin", + "nl": "Bitcoin", + "ro": "Bitcoin", + "sv": "", + "cs": "", + "da": "", + "el": "", + "hi": "", + "no": "", + "sk": "", + "uk": "Bitcoin", + "he": "", + "fi": "", + "bg": "", + "hr": "", + "lt": "", + "sl": "", + "pt": "Bitcoin" + }, + "description": { + "en": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority and banks.\r\n\r\nBitcoin is designed to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the SHA-256 hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as Litecoin, Peercoin, Primecoin, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by Ethereum which led to the development of other amazing projects such as EOS, Tron, and even crypto-collectibles such as CryptoKitties.", + "zh": "", + "zh-tw": "", + "de": "", + "fr": "", + "es": "", + "ja": "", + "id": "", + "ru": "", + "ko": "비트코인은 2009년 나카모토 사토시가 만든 디지털 통화로, 통화를 발행하고 관리하는 중앙 장치가 존재하지 않는 구조를 가지고 있다. 대신, 비트코인의 거래는 P2P 기반 분산 데이터베이스에 의해 이루어지며, 공개 키 암호 방식 기반으로 거래를 수행한다. 비트코인은 공개성을 가지고 있다. 비트코인은 지갑 파일의 형태로 저장되며, 이 지갑에는 각각의 고유 주소가 부여되며, 그 주소를 기반으로 비트코인의 거래가 이루어진다. 비트코인은 1998년 웨이따이가 사이버펑크 메일링 리스트에 올린 암호통화란 구상을 최초로 구현한 것 중의 하나이다.\r\n\r\n비트코인은 최초로 구현된 가상화폐입니다. 발행 및 유통을 관리하는 중앙권력이나 중간상인 없이, P2P 네트워크 기술을 이용하여 네트워크에 참여하는 사용자들이 주체적으로 화폐를 발행하고 이체내용을 공동으로 관리합니다. 이를 가능하게 한 블록체인 기술을 처음으로 코인에 도입한 것이 바로 비트코인입니다.\r\n\r\n비트코인을 사용하는 개인과 사업자의 수는 꾸준히 증가하고 있으며, 여기에는 식당, 아파트, 법률사무소, 온라인 서비스를 비롯한 소매상들이 포함됩니다. 비트코인은 새로운 사회 현상이지만 아주 빠르게 성장하고 있습니다. 이를 바탕으로 가치 증대는 물론, 매일 수백만 달러의 비트코인이 교환되고 있습니다. \r\n\r\n비트코인은 가상화폐 시장에서 현재 유통시가총액과 코인의 가치가 가장 크고, 거래량 또한 안정적입니다. 이더리움이 빠르게 추격하고 있지만 아직은 가장 견고한 가상화폐라고 볼 수 있습니다. \r\n\r\n코인 특징\r\n1. 중앙주체 없이 사용자들에 의해 거래내용이 관리될 수 있는 비트코인의 운영 시스템은 블록체인 기술에서 기인합니다. 블록체인은 쉽게 말해 다 같이 장부를 공유하고, 항상 서로의 컴퓨터에 있는 장부 파일을 비교함으로써 같은 내용만 인정하는 방식으로 운영됩니다. 따라서 전통적인 금융기관에서 장부에 대한 접근을 튼튼하게 방어하던 것과는 정반대의 작업을 통해 보안을 달성합니다. 장부를 해킹하려면 51%의 장부를 동시에 조작해야 하는데, 이는 사실상 불가능합니다. 왜냐하면, 이를 실행하기 위해서는 컴퓨팅 파워가 어마어마하게 소요되고, 이것이 가능한 슈퍼컴퓨터는 세상에 존재하지 않기 때문입니다. 또한, 장부의 자료들은 줄글로 기록되는 것이 아니라 암호화 해시 함수형태로 블록에 저장되고, 이 블록들은 서로 연결되어 있어서 더 강력한 보안을 제공합니다. \r\n\r\n2. 비트코인은 블록발행보상을 채굴자에게 지급하는 방식으로 신규 코인을 발행합니다. 블록발행보상은 매 21만 블록(약 4년)을 기준으로 발행량이 절반으로 줄어듭니다. 처음에는 50비트코인씩 발행이 되었고, 4년마다 계속 반으로 감소하고 있습니다. 코인의 총량이 2,100만 개에 도달하면 신규 발행은 종료되고, 이후에는 거래 수수료만을 통해 시스템이 지탱될 것입니다. \r\n\r\n핵심 가치\r\n(키워드: 통화로 사용될 수 있는 보편성 및 편의성)\r\n\r\n1. 다양한 알트코인들의 등장에 앞서 비트코인은 가상화폐 시장에서 독보적이었기 때문에, 현재 가장 보편적인 결제수단으로 사용됩니다. 실생활에서 이를 활용할 수 있는 가맹점이 알트코인들보다 압도적으로 많을 뿐만 아니라, 이 또한 증가하고 있습니다. 일례로 일본 업체들이 비트코인 결제 시스템을 도입하면서 곧 비트코인을 오프라인 점포 26만 곳에서 이용할 수 있게 될 것입니다. \r\n\r\n2. 여러 나라에서 비트코인을 정식 결제 수단으로 인정하면서, 실물화폐와 가상화폐를 거래할 때 더는 부가가치세가 부과되지 않게 된다고 합니다. 실제로 일본과 호주에서는 이미 비트코인을 합법적 결제 수단으로 인정하면서 제도권 안으로 들여오고 있고, 미국에서는 비트코인 ETF 승인 노력도 진행되고 있습니다. 각국에 비트코인을 기반으로 한 ATM 기계도 설치되었다고 합니다. ", + "ar": "", + "th": "", + "vi": "", + "it": "", + "pl": "", + "tr": "", + "hu": "", + "nl": "", + "ro": "", + "sv": "", + "cs": "", + "da": "", + "el": "", + "hi": "", + "no": "", + "sk": "", + "uk": "", + "he": "", + "fi": "", + "bg": "", + "hr": "", + "lt": "", + "sl": "", + "pt": "" + }, + "links": { + "homepage": [ + "http://www.bitcoin.org" + ], + "whitepaper": "https://bitcoin.org/bitcoin.pdf", + "blockchain_site": [ + "https://mempool.space/", + "https://platform.arkhamintelligence.com/explorer/token/bitcoin", + "https://blockchair.com/bitcoin/", + "https://btc.com/", + "https://btc.tokenview.io/", + "https://www.oklink.com/btc", + "https://3xpl.com/bitcoin" + ], + "official_forum_url": [ + "https://bitcointalk.org/" + ], + "chat_url": [], + "announcement_url": [], + "snapshot_url": null, + "twitter_screen_name": "bitcoin", + "facebook_username": "bitcoins", + "bitcointalk_thread_identifier": null, + "telegram_channel_identifier": "", + "subreddit_url": "https://www.reddit.com/r/Bitcoin/", + "repos_url": { + "github": [ + "https://github.com/bitcoin/bitcoin", + "https://github.com/bitcoin/bips" + ], + "bitbucket": [] + } + }, + "image": { + "thumb": "https://coin-images.coingecko.com/coins/images/1/thumb/bitcoin.png?1696501400", + "small": "https://coin-images.coingecko.com/coins/images/1/small/bitcoin.png?1696501400", + "large": "https://coin-images.coingecko.com/coins/images/1/large/bitcoin.png?1696501400" + }, + "country_origin": "", + "genesis_date": "2009-01-03", + "sentiment_votes_up_percentage": 73.39, + "sentiment_votes_down_percentage": 26.61, + "watchlist_portfolio_users": 2237579, + "market_cap_rank": 1, + "market_data": { + "current_price": { + "aed": 380656, + "ars": 150356304, + "aud": 159145, + "bch": 212.88, + "bdt": 12630909, + "bhd": 39073, + "bmd": 103650, + "bnb": 107.682, + "brl": 555690, + "btc": 1.0, + "cad": 146177, + "chf": 83885, + "clp": 97897707, + "cny": 738436, + "czk": 2195707, + "dkk": 672399, + "dot": 38887, + "eos": 407509, + "eth": 30.144111, + "eur": 90073, + "gbp": 79334, + "gel": 281411, + "hkd": 805917, + "huf": 34847130, + "idr": 1730959980, + "ils": 337693, + "inr": 9183314, + "jpy": 15950537, + "krw": 149895069, + "kwd": 31835, + "lkr": 31571882, + "ltc": 1169, + "mmk": 217634531, + "mxn": 1926812, + "myr": 433517, + "ngn": 149477205, + "nok": 1057911, + "nzd": 183009, + "php": 6100804, + "pkr": 29295176, + "pln": 383347, + "rub": 8431953, + "sar": 388746, + "sek": 990318, + "sgd": 135323, + "sol": 638.694, + "thb": 3364428, + "try": 4364279, + "twd": 3205766, + "uah": 4360025, + "usd": 103650, + "vef": 10378.5, + "vnd": 2728594101, + "xag": 2152.21, + "xau": 26.0, + "xdr": 73462, + "xlm": 370827, + "xrp": 43892, + "yfi": 23.263065, + "zar": 1802078, + "bits": 999822, + "link": 6844, + "sats": 99982205 + }, + "total_value_locked": null, + "mcap_to_tvl_ratio": null, + "fdv_to_tvl_ratio": null, + "roi": null, + "ath": { + "aed": 463091, + "ars": 180895872, + "aud": 190538, + "bch": 321.134, + "bdt": 15348355, + "bhd": 47521, + "bmd": 126080, + "bnb": 143062, + "brl": 685780, + "btc": 1.003301, + "cad": 175909, + "chf": 100293, + "clp": 121335501, + "cny": 897632, + "czk": 2665950, + "dkk": 803670, + "dot": 48411, + "eos": 434181, + "eth": 624.203, + "eur": 107662, + "gbp": 93529, + "gel": 343568, + "hkd": 981248, + "huf": 43582313, + "idr": 2091468459, + "ils": 419533, + "inr": 11187013, + "jpy": 18962715, + "krw": 177854395, + "kwd": 38595, + "lkr": 38111562, + "ltc": 1311, + "mmk": 264704723, + "mxn": 2313345, + "myr": 531427, + "ngn": 190337940, + "nok": 1264020, + "nzd": 215848, + "php": 7342136, + "pkr": 35564865, + "pln": 458038, + "rub": 11257762, + "sar": 472886, + "sek": 1213099, + "sgd": 162824, + "sol": 786.339, + "thb": 4084988, + "try": 5256017, + "twd": 3845411, + "uah": 5206318, + "usd": 126080, + "vef": 8618768857, + "vnd": 3324014949, + "xag": 3588.1, + "xau": 41.01, + "xdr": 87785, + "xlm": 789420, + "xrp": 159288, + "yfi": 25.320661, + "zar": 2198146, + "bits": 1058236, + "link": 74906, + "sats": 105823579 + }, + "ath_change_percentage": { + "aed": -17.72515, + "ars": -16.79716, + "aud": -16.37831, + "bch": -33.65292, + "bdt": -17.62902, + "bhd": -17.70238, + "bmd": -17.71395, + "bnb": -99.92467, + "brl": -18.89621, + "btc": -0.32896, + "cad": -16.82481, + "chf": -16.29471, + "clp": -19.2419, + "cny": -17.66021, + "czk": -17.56189, + "dkk": -16.25329, + "dot": -19.62906, + "eos": -6.18958, + "eth": -95.16745, + "eur": -16.25733, + "gbp": -15.09181, + "gel": -18.01592, + "hkd": -17.79543, + "huf": -19.96126, + "idr": -17.1282, + "ils": -19.4331, + "inr": -17.8698, + "jpy": -15.83061, + "krw": -15.65282, + "kwd": -17.4395, + "lkr": -17.08269, + "ltc": -10.81215, + "mmk": -17.70611, + "mxn": -16.62701, + "myr": -18.31914, + "ngn": -21.41501, + "nok": -16.22469, + "nzd": -15.1276, + "php": -16.84212, + "pkr": -17.5527, + "pln": -16.23492, + "rub": -25.03139, + "sar": -17.71685, + "sek": -18.28718, + "sgd": -16.81599, + "sol": -18.65031, + "thb": -17.55776, + "try": -16.88925, + "twd": -16.57219, + "uah": -16.17766, + "usd": -17.71395, + "vef": -99.99988, + "vnd": -17.8331, + "xag": -39.99454, + "xau": -36.57356, + "xdr": -16.23845, + "xlm": -52.98059, + "xrp": -72.40835, + "yfi": -8.02128, + "zar": -17.94555, + "bits": -5.48777, + "link": -90.85068, + "sats": -5.48777 + }, + "ath_date": { + "aed": "2025-10-06T18:57:42.558Z", + "ars": "2025-10-09T13:25:33.789Z", + "aud": "2025-10-06T18:57:42.558Z", + "bch": "2025-02-03T04:45:48.593Z", + "bdt": "2025-10-06T18:57:42.558Z", + "bhd": "2025-10-06T18:57:42.558Z", + "bmd": "2025-10-06T18:57:42.558Z", + "bnb": "2017-10-19T00:00:00.000Z", + "brl": "2025-07-14T07:56:01.937Z", + "btc": "2019-10-15T16:00:56.136Z", + "cad": "2025-10-06T18:57:42.558Z", + "chf": "2025-10-06T18:57:42.558Z", + "clp": "2025-10-06T18:57:42.558Z", + "cny": "2025-10-06T18:57:42.558Z", + "czk": "2025-01-20T07:16:25.271Z", + "dkk": "2025-10-06T18:57:42.558Z", + "dot": "2025-10-10T21:25:33.048Z", + "eos": "2025-11-03T16:15:16.146Z", + "eth": "2015-10-20T00:00:00.000Z", + "eur": "2025-10-06T18:57:42.558Z", + "gbp": "2025-10-06T18:57:42.558Z", + "gel": "2025-10-06T18:57:42.558Z", + "hkd": "2025-10-06T18:57:42.558Z", + "huf": "2025-01-20T09:11:54.494Z", + "idr": "2025-10-06T18:57:42.558Z", + "ils": "2025-08-14T00:37:02.582Z", + "inr": "2025-10-06T18:57:42.558Z", + "jpy": "2025-10-08T17:56:44.224Z", + "krw": "2025-10-06T18:57:42.558Z", + "kwd": "2025-10-06T18:57:42.558Z", + "lkr": "2025-10-06T18:57:42.558Z", + "ltc": "2025-10-10T21:32:21.923Z", + "mmk": "2025-10-06T18:57:42.558Z", + "mxn": "2025-10-06T18:57:42.558Z", + "myr": "2025-10-06T18:57:42.558Z", + "ngn": "2025-08-14T00:37:02.582Z", + "nok": "2025-08-14T00:37:02.582Z", + "nzd": "2025-10-06T18:57:42.558Z", + "php": "2025-10-06T18:57:42.558Z", + "pkr": "2025-10-06T17:13:13.056Z", + "pln": "2025-10-06T18:57:42.558Z", + "rub": "2024-12-17T18:10:38.805Z", + "sar": "2025-10-06T18:57:42.558Z", + "sek": "2025-01-20T07:16:25.271Z", + "sgd": "2025-10-06T18:57:42.558Z", + "sol": "2025-06-22T13:45:40.146Z", + "thb": "2025-10-06T18:57:42.558Z", + "try": "2025-10-06T18:57:42.558Z", + "twd": "2025-10-06T18:57:42.558Z", + "uah": "2025-10-06T18:57:42.558Z", + "usd": "2025-10-06T18:57:42.558Z", + "vef": "2021-01-03T12:04:17.372Z", + "vnd": "2025-10-06T18:57:42.558Z", + "xag": "2025-01-20T09:11:54.494Z", + "xau": "2024-12-17T15:02:41.429Z", + "xdr": "2025-10-06T18:57:42.558Z", + "xlm": "2024-11-06T21:02:03.767Z", + "xrp": "2021-01-03T07:54:40.240Z", + "yfi": "2025-10-10T22:42:26.769Z", + "zar": "2025-07-14T06:25:35.128Z", + "bits": "2021-05-19T16:00:11.072Z", + "link": "2017-12-12T00:00:00.000Z", + "sats": "2021-05-19T16:00:11.072Z" + }, + "atl": { + "aed": 632.31, + "ars": 1478.98, + "aud": 72.61, + "bch": 3.513889, + "bdt": 9390.25, + "bhd": 45.91, + "bmd": 121.77, + "bnb": 52.17, + "brl": 149.66, + "btc": 0.99895134, + "cad": 69.81, + "chf": 63.26, + "clp": 107408, + "cny": 407.23, + "czk": 4101.56, + "dkk": 382.47, + "dot": 991.882, + "eos": 908.141, + "eth": 6.779735, + "eur": 51.3, + "gbp": 43.9, + "gel": 102272, + "hkd": 514.37, + "huf": 46598, + "idr": 658780, + "ils": 672.18, + "inr": 3993.42, + "jpy": 6641.83, + "krw": 75594, + "kwd": 50.61, + "lkr": 22646, + "ltc": 20.707835, + "mmk": 117588, + "mxn": 859.32, + "myr": 211.18, + "ngn": 10932.64, + "nok": 1316.03, + "nzd": 84.85, + "php": 2880.5, + "pkr": 17315.84, + "pln": 220.11, + "rub": 2206.43, + "sar": 646.04, + "sek": 443.81, + "sgd": 84.47, + "sol": 465.205, + "thb": 5644.35, + "try": 392.91, + "twd": 1998.66, + "uah": 553.37, + "usd": 67.81, + "vef": 766.19, + "vnd": 3672339, + "xag": 3.37, + "xau": 0.0531, + "xdr": 44.39, + "xlm": 21608, + "xrp": 9908, + "yfi": 0.23958075, + "zar": 666.26, + "bits": 950993, + "link": 598.477, + "sats": 95099268 + }, + "atl_change_percentage": { + "aed": 60156.09665, + "ars": 10176561.70864, + "aud": 219335.57903, + "bch": 5963.44878, + "bdt": 134535.2214, + "bhd": 85079.92445, + "bmd": 85098.45327, + "bnb": 106.57393, + "brl": 371541.78438, + "btc": 0.10498, + "cad": 209497.80728, + "chf": 132604.75082, + "clp": 91129.75844, + "cny": 181398.63687, + "czk": 53483.5087, + "dkk": 175874.93495, + "dot": 3822.71129, + "eos": 44750.58955, + "eth": 344.92734, + "eur": 175653.49313, + "gbp": 180787.12922, + "gel": 175.41453, + "hkd": 156717.70864, + "huf": 74758.79276, + "idr": 262998.08404, + "ils": 50184.59057, + "inr": 229976.4152, + "jpy": 240207.21882, + "krw": 198349.0498, + "kwd": 62859.24718, + "lkr": 139441.92876, + "ltc": 5547.12735, + "mmk": 185153.4977, + "mxn": 224345.85452, + "myr": 205450.78181, + "ngn": 1368069.30818, + "nok": 80364.72144, + "nzd": 215793.79763, + "php": 211861.81481, + "pkr": 169237.79774, + "pln": 174209.76256, + "rub": 382408.18879, + "sar": 60129.40239, + "sek": 223254.01444, + "sgd": 160253.02469, + "sol": 37.50598, + "thb": 59565.9911, + "try": 1111686.95238, + "twd": 160415.0394, + "uah": 788535.83754, + "usd": 152897.62059, + "vef": 1255.81375, + "vnd": 74273.30625, + "xag": 63794.63376, + "xau": 48885.37923, + "xdr": 165540.39083, + "xlm": 1617.77018, + "xrp": 343.58376, + "yfi": 9620.98937, + "zar": 270614.75589, + "bits": 5.17034, + "link": 1045.14176, + "sats": 5.17034 + }, + "atl_date": { + "aed": "2015-01-14T00:00:00.000Z", + "ars": "2015-01-14T00:00:00.000Z", + "aud": "2013-07-05T00:00:00.000Z", + "bch": "2017-08-02T00:00:00.000Z", + "bdt": "2013-09-08T00:00:00.000Z", + "bhd": "2013-09-08T00:00:00.000Z", + "bmd": "2013-09-08T00:00:00.000Z", + "bnb": "2022-11-27T02:35:06.345Z", + "brl": "2013-07-05T00:00:00.000Z", + "btc": "2019-10-21T00:00:00.000Z", + "cad": "2013-07-05T00:00:00.000Z", + "chf": "2013-07-05T00:00:00.000Z", + "clp": "2015-01-14T00:00:00.000Z", + "cny": "2013-07-05T00:00:00.000Z", + "czk": "2015-01-14T00:00:00.000Z", + "dkk": "2013-07-05T00:00:00.000Z", + "dot": "2021-05-19T11:04:48.978Z", + "eos": "2019-04-11T00:00:00.000Z", + "eth": "2017-06-12T00:00:00.000Z", + "eur": "2013-07-05T00:00:00.000Z", + "gbp": "2013-07-05T00:00:00.000Z", + "gel": "2024-01-23T14:25:15.024Z", + "hkd": "2013-07-05T00:00:00.000Z", + "huf": "2015-01-14T00:00:00.000Z", + "idr": "2013-07-05T00:00:00.000Z", + "ils": "2015-01-14T00:00:00.000Z", + "inr": "2013-07-05T00:00:00.000Z", + "jpy": "2013-07-05T00:00:00.000Z", + "krw": "2013-07-05T00:00:00.000Z", + "kwd": "2015-01-14T00:00:00.000Z", + "lkr": "2015-01-14T00:00:00.000Z", + "ltc": "2013-11-28T00:00:00.000Z", + "mmk": "2013-09-08T00:00:00.000Z", + "mxn": "2013-07-05T00:00:00.000Z", + "myr": "2013-07-05T00:00:00.000Z", + "ngn": "2013-07-06T00:00:00.000Z", + "nok": "2015-01-14T00:00:00.000Z", + "nzd": "2013-07-05T00:00:00.000Z", + "php": "2013-07-05T00:00:00.000Z", + "pkr": "2015-01-14T00:00:00.000Z", + "pln": "2013-07-05T00:00:00.000Z", + "rub": "2013-07-05T00:00:00.000Z", + "sar": "2015-01-14T00:00:00.000Z", + "sek": "2013-07-05T00:00:00.000Z", + "sgd": "2013-07-05T00:00:00.000Z", + "sol": "2025-09-14T03:07:21.064Z", + "thb": "2015-01-14T00:00:00.000Z", + "try": "2015-01-14T00:00:00.000Z", + "twd": "2013-07-05T00:00:00.000Z", + "uah": "2013-07-06T00:00:00.000Z", + "usd": "2013-07-06T00:00:00.000Z", + "vef": "2013-09-08T00:00:00.000Z", + "vnd": "2015-01-14T00:00:00.000Z", + "xag": "2013-07-05T00:00:00.000Z", + "xau": "2013-07-05T00:00:00.000Z", + "xdr": "2013-07-05T00:00:00.000Z", + "xlm": "2018-11-20T00:00:00.000Z", + "xrp": "2018-12-25T00:00:00.000Z", + "yfi": "2020-09-12T20:09:36.122Z", + "zar": "2013-07-05T00:00:00.000Z", + "bits": "2021-05-19T13:14:13.071Z", + "link": "2020-08-16T08:13:13.338Z", + "sats": "2021-05-19T13:14:13.071Z" + }, + "market_cap": { + "aed": 7593204009241, + "ars": 2999548393662644, + "aud": 3175050960469, + "bch": 4248098242, + "bdt": 251957507284430, + "bhd": 779411119333, + "bmd": 2067584481754, + "bnb": 2148835198, + "brl": 11084733923578, + "btc": 19944128, + "cad": 2915924732540, + "chf": 1673207214951, + "clp": 1952833543016381, + "cny": 14730505640254, + "czk": 43802190762849, + "dkk": 13413495677067, + "dot": 775305478901, + "eos": 8120660718312, + "eth": 601296057, + "eur": 1796826023530, + "gbp": 1582640811896, + "gel": 5613491867961, + "hkd": 16076399758652, + "huf": 695176921188657, + "idr": 34542146594771332, + "ils": 6736190241554, + "inr": 183230562850612, + "jpy": 318161623032437, + "krw": 2989919073807462, + "kwd": 635031694972, + "lkr": 629786251750441, + "ltc": 23310544018, + "mmk": 4341307136338266, + "mxn": 38435979931321, + "myr": 8647672094935, + "ngn": 2980960602413230, + "nok": 21103489518652, + "nzd": 3650944813050, + "php": 121696976398276, + "pkr": 584371229307093, + "pln": 7647147288369, + "rub": 168192903062501, + "sar": 7754581045626, + "sek": 19755201137424, + "sgd": 2699380407012, + "sol": 12743828036, + "thb": 67106555732039, + "try": 87062676459062, + "twd": 63936533137030, + "uah": 86972451207448, + "usd": 2067584481754, + "vef": 207027234158, + "vnd": 54424440161272696, + "xag": 42897415794, + "xau": 518488160, + "xdr": 1465400501443, + "xlm": 7398086765873, + "xrp": 876175398522, + "yfi": 463925028, + "zar": 35947255369232, + "bits": 19938765492909, + "link": 136606656036, + "sats": 1993876549290938 + }, + "market_cap_rank": 1, + "fully_diluted_valuation": { + "aed": 7593204009241, + "ars": 2999548393662644, + "aud": 3175050960469, + "bch": 4248098242, + "bdt": 251957507284430, + "bhd": 779411119333, + "bmd": 2067584481754, + "bnb": 2148835198, + "brl": 11084733923578, + "btc": 19944128, + "cad": 2915924732540, + "chf": 1673207214951, + "clp": 1952833543016381, + "cny": 14730505640254, + "czk": 43802190762849, + "dkk": 13413495677067, + "dot": 775305478901, + "eos": 8120660718312, + "eth": 601296057, + "eur": 1796826023530, + "gbp": 1582640811896, + "gel": 5613491867961, + "hkd": 16076399758652, + "huf": 695176921188657, + "idr": 34542146594771332, + "ils": 6736190241554, + "inr": 183230562850612, + "jpy": 318161623032437, + "krw": 2989919073807462, + "kwd": 635031694972, + "lkr": 629786251750441, + "ltc": 23310544018, + "mmk": 4341307136338266, + "mxn": 38435979931321, + "myr": 8647672094935, + "ngn": 2980960602413230, + "nok": 21103489518652, + "nzd": 3650944813050, + "php": 121696976398276, + "pkr": 584371229307093, + "pln": 7647147288369, + "rub": 168192903062501, + "sar": 7754581045626, + "sek": 19755201137424, + "sgd": 2699380407012, + "sol": 12743828036, + "thb": 67106555732039, + "try": 87062676459062, + "twd": 63936533137030, + "uah": 86972451207448, + "usd": 2067584481754, + "vef": 207027234158, + "vnd": 54424440161272696, + "xag": 42897415794, + "xau": 518488160, + "xdr": 1465400501443, + "xlm": 7398086765873, + "xrp": 876175398522, + "yfi": 463925028, + "zar": 35947255369232, + "bits": 19938765492909, + "link": 136606656036, + "sats": 1993876549290938 + }, + "market_cap_fdv_ratio": 1.0, + "total_volume": { + "aed": 245715633430, + "ars": 97055928934414, + "aud": 102728872313, + "bch": 137415581, + "bdt": 8153330059942, + "bhd": 25221697805, + "bmd": 66906911758, + "bnb": 69509466, + "brl": 358701335315, + "btc": 645391, + "cad": 94357947862, + "chf": 54148098220, + "clp": 63193578155083, + "cny": 476664911435, + "czk": 1417342637291, + "dkk": 434037848885, + "dot": 25101574679, + "eos": 263049741131, + "eth": 19458211, + "eur": 58142507759, + "gbp": 51210817887, + "gel": 181652265422, + "hkd": 520224656335, + "huf": 22494038833211, + "idr": 1117345426352444, + "ils": 217982718506, + "inr": 5927886545325, + "jpy": 10296170836558, + "krw": 96758198864180, + "kwd": 20549588157, + "lkr": 20379845923537, + "ltc": 754826340, + "mmk": 140484442617499, + "mxn": 1243769381464, + "myr": 279838158426, + "ngn": 96488464653033, + "nok": 682888405665, + "nzd": 118133185141, + "php": 3938106971157, + "pkr": 18910218478611, + "pln": 247452804487, + "rub": 5442877940552, + "sar": 250937784799, + "sek": 639256401301, + "sgd": 87352125132, + "sol": 412281123, + "thb": 2171759215109, + "try": 2817168911271, + "twd": 2069341660657, + "uah": 2814423386147, + "usd": 66906911758, + "vef": 6699389074, + "vnd": 1761324452019647, + "xag": 1389261806, + "xau": 16780923, + "xdr": 47420273708, + "xlm": 239370915050, + "xrp": 28332832323, + "yfi": 15016453, + "zar": 1163252265717, + "bits": 645391345109, + "link": 4417802260, + "sats": 64539134510918 + }, + "high_24h": { + "aed": 383504, + "ars": 151474628, + "aud": 160410, + "bch": 213.435, + "bdt": 12723695, + "bhd": 39363, + "bmd": 104412, + "bnb": 108.93, + "brl": 559782, + "btc": 1.0, + "cad": 147323, + "chf": 84609, + "clp": 98668946, + "cny": 744116, + "czk": 2213166, + "dkk": 678464, + "dot": 39941, + "eos": 415817, + "eth": 30.933578, + "eur": 90892, + "gbp": 80014, + "gel": 284522, + "hkd": 811806, + "huf": 35145521, + "idr": 1741818492, + "ils": 340173, + "inr": 9245850, + "jpy": 16088586, + "krw": 150435292, + "kwd": 32079, + "lkr": 31803807, + "ltc": 1190, + "mmk": 219233264, + "mxn": 1940948, + "myr": 437642, + "ngn": 150623286, + "nok": 1066415, + "nzd": 184307, + "php": 6129698, + "pkr": 29510377, + "pln": 386736, + "rub": 8493749, + "sar": 391596, + "sek": 998505, + "sgd": 136434, + "sol": 656.874, + "thb": 3389723, + "try": 4394699, + "twd": 3224821, + "uah": 4392054, + "usd": 104412, + "vef": 10454.74, + "vnd": 2748399800, + "xag": 2168.65, + "xau": 26.2, + "xdr": 74002, + "xlm": 376418, + "xrp": 45870, + "yfi": 23.390619, + "zar": 1816381, + "bits": 1001315, + "link": 6961, + "sats": 100131535 + }, + "low_24h": { + "aed": 371818, + "ars": 147590140, + "aud": 155919, + "bch": 208.529, + "bdt": 12342803, + "bhd": 38169, + "bmd": 101244, + "bnb": 106.772, + "brl": 546555, + "btc": 1.0, + "cad": 142860, + "chf": 81954, + "clp": 95866779, + "cny": 721443, + "czk": 2146329, + "dkk": 657690, + "dot": 38766, + "eos": 406171, + "eth": 30.001698, + "eur": 88100, + "gbp": 77668, + "gel": 275383, + "hkd": 787055, + "huf": 34140384, + "idr": 1693192275, + "ils": 331177, + "inr": 8973342, + "jpy": 15549535, + "krw": 146398264, + "kwd": 31112, + "lkr": 30854356, + "ltc": 1157, + "mmk": 212581689, + "mxn": 1888386, + "myr": 424414, + "ngn": 145985516, + "nok": 1032698, + "nzd": 178984, + "php": 5950759, + "pkr": 28625312, + "pln": 375076, + "rub": 8205526, + "sar": 379701, + "sek": 969997, + "sgd": 132232, + "sol": 637.122, + "thb": 3294576, + "try": 4263069, + "twd": 3129273, + "uah": 4261148, + "usd": 101244, + "vef": 10137.55, + "vnd": 2664662213, + "xag": 2117.02, + "xau": 25.43, + "xdr": 71757, + "xlm": 367779, + "xrp": 43402, + "yfi": 22.994358, + "zar": 1768188, + "bits": 998640, + "link": 6788, + "sats": 99863963 + }, + "price_change_24h": 1545, + "price_change_percentage_24h": 1.51361, + "price_change_percentage_7d": -6.34257, + "price_change_percentage_14d": -4.16975, + "price_change_percentage_30d": -16.72467, + "price_change_percentage_60d": -6.26816, + "price_change_percentage_200d": 21.54163, + "price_change_percentage_1y": 45.88616, + "market_cap_change_24h": 28990030638, + "market_cap_change_percentage_24h": 1.42206, + "price_change_24h_in_currency": { + "aed": 5675.73, + "ars": 1512979, + "aud": 1852.89, + "bch": 3.37696, + "bdt": 183141, + "bhd": 582.69, + "bmd": 1545.47, + "bnb": 0.13603674, + "brl": 4599.48, + "btc": 0.0, + "cad": 2098.48, + "chf": 1204.4, + "clp": 1215665, + "cny": 10601.96, + "czk": 26832, + "dkk": 8916.38, + "dot": -867.603578053735, + "eos": 253.904, + "eth": -0.4555546788797926, + "eur": 1196.71, + "gbp": 900.59, + "gel": 3685.42, + "hkd": 12091.61, + "huf": 325805, + "idr": 23770210, + "ils": 3922.2, + "inr": 122624, + "jpy": 272873, + "krw": 2416003, + "kwd": 465.99, + "lkr": 455137, + "ltc": -3.817996820267126, + "mmk": 3245021, + "mxn": 19441.61, + "myr": 5187.61, + "ngn": 2166483, + "nok": 15542.02, + "nzd": 2436.0, + "php": 103217, + "pkr": 426431, + "pln": 4675.72, + "rub": 161677, + "sar": 5821.99, + "sek": 12767.76, + "sgd": 1879.07, + "sol": -13.17139664880176, + "thb": 40916, + "try": 66931, + "twd": 47817, + "uah": 62640, + "usd": 1545.47, + "vef": 154.75, + "vnd": 40917626, + "xag": 12.03, + "xau": 0.244672, + "xdr": 1095.35, + "xlm": -873.5067213485017, + "xrp": -1519.9298599749018, + "yfi": -0.026784305515967333, + "zar": 16437.67, + "bits": 413.25, + "link": -39.19727904996125, + "sats": 41325 + }, + "price_change_percentage_1h_in_currency": { + "aed": 0.11907, + "ars": 0.10864, + "aud": 0.06921, + "bch": 0.36587, + "bdt": 0.11907, + "bhd": 0.11137, + "bmd": 0.11907, + "bnb": -0.42976, + "brl": 0.15083, + "btc": 0.0, + "cad": 0.1114, + "chf": 0.11746, + "clp": 0.18059, + "cny": 0.10502, + "czk": 0.08742, + "dkk": 0.08582, + "dot": 0.30069, + "eos": -0.55662, + "eth": -0.21875, + "eur": 0.08993, + "gbp": 0.06665, + "gel": 0.11907, + "hkd": 0.13034, + "huf": 0.08246, + "idr": 0.09389, + "ils": 0.11907, + "inr": 0.08618, + "jpy": 0.06738, + "krw": 0.12684, + "kwd": 0.1106, + "lkr": 0.11907, + "ltc": 0.25032, + "mmk": 0.11907, + "mxn": 0.07035, + "myr": 0.08318, + "ngn": 0.11005, + "nok": 0.10725, + "nzd": 0.14318, + "php": 0.15396, + "pkr": 0.11907, + "pln": 0.09563, + "rub": 0.12125, + "sar": 0.12521, + "sek": 0.09231, + "sgd": 0.09086, + "sol": -0.06026, + "thb": 0.11727, + "try": 0.11693, + "twd": 0.04846, + "uah": 0.11907, + "usd": 0.11907, + "vef": 0.11907, + "vnd": 0.12776, + "xag": -0.24059, + "xau": -0.00054, + "xdr": 0.11907, + "xlm": 0.45968, + "xrp": 0.88247, + "yfi": 0.26515, + "zar": 0.07233, + "bits": -0.039, + "link": 0.05209, + "sats": -0.039 + }, + "price_change_percentage_24h_in_currency": { + "aed": 1.51361, + "ars": 1.01649, + "aud": 1.178, + "bch": 1.61189, + "bdt": 1.47127, + "bhd": 1.51388, + "bmd": 1.51361, + "bnb": 0.12649, + "brl": 0.83461, + "btc": 0.0, + "cad": 1.45649, + "chf": 1.4567, + "clp": 1.25738, + "cny": 1.45665, + "czk": 1.23715, + "dkk": 1.34388, + "dot": -2.18242, + "eos": 0.06235, + "eth": -1.48876, + "eur": 1.34649, + "gbp": 1.14821, + "gel": 1.327, + "hkd": 1.52321, + "huf": 0.94378, + "idr": 1.39236, + "ils": 1.17512, + "inr": 1.35336, + "jpy": 1.74052, + "krw": 1.6382, + "kwd": 1.48552, + "lkr": 1.46267, + "ltc": -0.32544, + "mmk": 1.51361, + "mxn": 1.01929, + "myr": 1.21113, + "ngn": 1.47069, + "nok": 1.49103, + "nzd": 1.34904, + "php": 1.72098, + "pkr": 1.47714, + "pln": 1.23477, + "rub": 1.95492, + "sar": 1.5204, + "sek": 1.3061, + "sgd": 1.40813, + "sol": -2.02057, + "thb": 1.2311, + "try": 1.5575, + "twd": 1.51416, + "uah": 1.45763, + "usd": 1.51361, + "vef": 1.51361, + "vnd": 1.52242, + "xag": 0.56214, + "xau": 0.95012, + "xdr": 1.51361, + "xlm": -0.235, + "xrp": -3.34695, + "yfi": -0.115, + "zar": 0.92055, + "bits": 0.04135, + "link": -0.56947, + "sats": 0.04135 + }, + "price_change_percentage_7d_in_currency": { + "aed": -6.34257, + "ars": -5.48865, + "aud": -5.3009, + "bch": 8.1077, + "bdt": -6.63403, + "bhd": -6.34207, + "bmd": -6.34257, + "bnb": 8.73107, + "brl": -6.32335, + "btc": 0.0, + "cad": -5.236, + "chf": -5.17463, + "clp": -5.93523, + "cny": -5.98892, + "czk": -5.4463, + "dkk": -5.51652, + "dot": 9.13085, + "eos": 4.19182, + "eth": 7.04372, + "eur": -5.47927, + "gbp": -5.33195, + "gel": -6.68626, + "hkd": -6.27616, + "huf": -5.96276, + "idr": -5.59325, + "ils": -6.14798, + "inr": -6.0965, + "jpy": -5.50583, + "krw": -4.84884, + "kwd": -6.25772, + "lkr": -6.29572, + "ltc": 4.732, + "mmk": -6.3024, + "mxn": -5.72739, + "myr": -6.67726, + "ngn": -7.04322, + "nok": -4.50554, + "nzd": -4.52084, + "php": -5.94388, + "pkr": -6.23919, + "pln": -5.16274, + "rub": -4.76209, + "sar": -6.3358, + "sek": -4.79834, + "sgd": -5.70977, + "sol": 12.61437, + "thb": -6.17568, + "try": -6.11737, + "twd": -5.5462, + "uah": -6.31288, + "usd": -6.34257, + "vef": -6.34257, + "vnd": -6.38375, + "xag": -7.29409, + "xau": -7.23028, + "xdr": -5.23236, + "xlm": 6.31513, + "xrp": 2.26016, + "yfi": -0.50116, + "zar": -5.1896, + "bits": -0.02168, + "link": 12.12724, + "sats": -0.02168 + }, + "price_change_percentage_14d_in_currency": { + "aed": -4.16975, + "ars": -4.6083, + "aud": -4.56679, + "bch": -6.21766, + "bdt": -4.34983, + "bhd": -4.17127, + "bmd": -4.16975, + "bnb": 7.8993, + "brl": -4.88472, + "btc": 0.0, + "cad": -3.4527, + "chf": -2.69692, + "clp": -4.74962, + "cny": -4.17109, + "czk": -3.10704, + "dkk": -3.46611, + "dot": 5.39079, + "eos": 5.06186, + "eth": 6.50412, + "eur": -3.41608, + "gbp": -2.15716, + "gel": -3.81547, + "hkd": -4.11134, + "huf": -4.06616, + "idr": -3.7373, + "ils": -5.28895, + "inr": -3.36994, + "jpy": -3.24494, + "krw": -3.43253, + "kwd": -4.00816, + "lkr": -3.6197, + "ltc": -0.1238, + "mmk": -4.12865, + "mxn": -3.43117, + "myr": -5.26825, + "ngn": -5.53808, + "nok": -2.48907, + "nzd": -2.97365, + "php": -3.76181, + "pkr": -4.23764, + "pln": -2.93974, + "rub": -4.35021, + "sar": -4.16737, + "sek": -2.81905, + "sgd": -3.70508, + "sol": 7.3577, + "thb": -5.27745, + "try": -3.89645, + "twd": -3.75472, + "uah": -3.35082, + "usd": -4.16975, + "vef": -4.16975, + "vnd": -4.22068, + "xag": -4.04928, + "xau": -2.10099, + "xdr": -3.37892, + "xlm": 6.4889, + "xrp": -3.78386, + "yfi": 1.21079, + "zar": -4.44721, + "bits": -0.00403, + "link": 9.25059, + "sats": -0.00403 + }, + "price_change_percentage_30d_in_currency": { + "aed": -16.72467, + "ars": -15.50889, + "aud": -15.36043, + "bch": 1.86629, + "bdt": -16.34796, + "bhd": -16.73528, + "bmd": -16.72467, + "bnb": 5.82506, + "brl": -15.95496, + "btc": 0.0, + "cad": -15.80191, + "chf": -15.28027, + "clp": -18.23361, + "cny": -16.66853, + "czk": -15.08275, + "dkk": -15.29847, + "dot": 36.68877, + "eos": 33.76391, + "eth": 13.39425, + "eur": -15.29731, + "gbp": -14.09316, + "gel": -17.18223, + "hkd": -16.80171, + "huf": -15.68638, + "idr": -16.04314, + "ils": -17.16504, + "inr": -16.83388, + "jpy": -14.8369, + "krw": -14.66956, + "kwd": -16.45866, + "lkr": -15.79313, + "ltc": 10.88416, + "mmk": -16.71674, + "mxn": -15.56252, + "myr": -17.35697, + "ngn": -18.05824, + "nok": -14.32544, + "nzd": -14.21096, + "php": -15.81504, + "pkr": -16.31466, + "pln": -15.26118, + "rub": -18.37945, + "sar": -16.72856, + "sek": -15.16654, + "sgd": -15.7855, + "sol": 19.75597, + "thb": -16.85425, + "try": -15.93022, + "twd": -15.1411, + "uah": -14.87401, + "usd": -16.72467, + "vef": -16.72467, + "vnd": -16.82706, + "xag": -16.05091, + "xau": -17.15737, + "xdr": -15.29044, + "xlm": 21.14013, + "xrp": 5.23997, + "yfi": 3.82586, + "zar": -15.73483, + "bits": -0.01263, + "link": 28.80173, + "sats": -0.01263 + }, + "price_change_percentage_60d_in_currency": { + "aed": -6.26816, + "ars": -0.30043, + "aud": -5.64874, + "bch": 14.50128, + "bdt": -5.8984, + "bhd": -6.1833, + "bmd": -6.26816, + "bnb": -15.95445, + "brl": -7.18314, + "btc": 0.0, + "cad": -4.47061, + "chf": -4.95459, + "clp": -8.23463, + "cny": -6.38052, + "czk": -4.58221, + "dkk": -4.56024, + "dot": 35.49287, + "eos": 71.82439, + "eth": 17.18786, + "eur": -4.56495, + "gbp": -3.08993, + "gel": -5.74743, + "hkd": -6.51764, + "huf": -5.91487, + "idr": -4.42943, + "ils": -8.73645, + "inr": -5.82971, + "jpy": -2.14374, + "krw": -2.23486, + "kwd": -5.68904, + "lkr": -5.49763, + "ltc": 19.31363, + "mmk": -6.23691, + "mxn": -6.89746, + "myr": -7.20005, + "ngn": -11.65131, + "nok": -4.77735, + "nzd": -2.47311, + "php": -2.69826, + "pkr": -6.39498, + "pln": -4.41506, + "rub": -6.07232, + "sar": -6.26024, + "sek": -4.68076, + "sgd": -4.78203, + "sol": 17.24458, + "thb": -5.07431, + "try": -4.21325, + "twd": -4.93521, + "uah": -4.39811, + "usd": -6.26816, + "vef": -6.26816, + "vnd": -6.54387, + "xag": -20.18692, + "xau": -15.67833, + "xdr": -4.54108, + "xlm": 20.27482, + "xrp": 12.04445, + "yfi": 9.42053, + "zar": -7.34757, + "bits": -0.0094, + "link": 38.35636, + "sats": -0.0094 + }, + "price_change_percentage_200d_in_currency": { + "aed": 21.52558, + "ars": 54.93349, + "aud": 19.22165, + "bch": -15.09384, + "bdt": 21.97478, + "bhd": 21.56582, + "bmd": 21.54163, + "bnb": -25.17211, + "brl": 12.19163, + "btc": 0.0, + "cad": 23.83797, + "chf": 20.17888, + "clp": 18.63265, + "cny": 18.68459, + "czk": 16.82523, + "dkk": 20.09222, + "dot": 77.37553, + "eos": 209.16501, + "eth": -42.83874, + "eur": 20.11587, + "gbp": 23.40561, + "gel": 19.95112, + "hkd": 21.72652, + "huf": 13.79163, + "idr": 20.35669, + "ils": 7.42664, + "inr": 26.11877, + "jpy": 31.35345, + "krw": 23.92137, + "kwd": 21.75451, + "lkr": 24.11754, + "ltc": 4.6944, + "mmk": 21.64012, + "mxn": 14.578, + "myr": 15.33701, + "ngn": 9.33198, + "nok": 18.45499, + "nzd": 28.19346, + "php": 26.18295, + "pkr": 22.51348, + "pln": 19.48156, + "rub": 20.32244, + "sar": 21.49444, + "sek": 20.70701, + "sgd": 21.06159, + "sol": 4.47461, + "thb": 18.2714, + "try": 34.60254, + "twd": 15.58346, + "uah": 23.82019, + "usd": 21.54163, + "vef": 21.54163, + "vnd": 23.59988, + "xag": -17.94395, + "xau": 1.18787, + "xdr": 19.95877, + "xlm": 7.38237, + "xrp": 7.53743, + "yfi": 25.32973, + "zar": 12.2749, + "bits": -0.00806, + "link": 4.00779, + "sats": -0.00806 + }, + "price_change_percentage_1y_in_currency": { + "aed": 45.86626, + "ars": 113.16742, + "aud": 47.62742, + "bch": 4.50451, + "bdt": 48.73164, + "bhd": 45.94811, + "bmd": 45.88616, + "bnb": -13.2416, + "brl": 34.7887, + "btc": 0.0, + "cad": 48.12075, + "chf": 35.80044, + "clp": 44.04386, + "cny": 46.3257, + "czk": 32.10127, + "dkk": 37.46494, + "dot": 114.74953, + "eos": 148.10773, + "eth": 5.24557, + "eur": 37.32617, + "gbp": 44.70981, + "gel": 45.88616, + "hkd": 45.91018, + "huf": 29.91758, + "idr": 53.9861, + "ils": 26.86024, + "inr": 53.55766, + "jpy": 46.76645, + "krw": 51.98758, + "kwd": 46.24662, + "lkr": 51.60108, + "ltc": 10.29856, + "mmk": 46.00437, + "mxn": 32.67498, + "myr": 39.9149, + "ngn": 26.60786, + "nok": 34.77459, + "nzd": 53.80712, + "php": 46.64354, + "pkr": 48.35929, + "pln": 34.02233, + "rub": 21.09281, + "sar": 45.66397, + "sek": 29.18546, + "sgd": 44.13108, + "sol": 49.93027, + "thb": 40.13315, + "try": 79.10602, + "twd": 40.84577, + "uah": 47.92524, + "usd": 45.88616, + "vef": 45.88616, + "vnd": 51.52502, + "xag": -1.49514, + "xau": 0.48805, + "xdr": 37.9763, + "xlm": -50.57194, + "xrp": -67.88702, + "yfi": 52.44634, + "zar": 44.2815, + "bits": 0.03762, + "link": 7.0087, + "sats": 0.03762 + }, + "market_cap_change_24h_in_currency": { + "aed": 106465887520, + "ars": 27864595279005, + "aud": 33970360029, + "bch": 68371079, + "bdt": 3429096106714, + "bhd": 10930323474, + "bmd": 28990030638, + "bnb": 2898525, + "brl": 82235811464, + "btc": 0.0, + "cad": 39249832410, + "chf": 22734645600, + "clp": 22508843199808, + "cny": 197977376589, + "czk": 501853428769, + "dkk": 167324589244, + "dot": -17760976674.508667, + "eos": -4993866411.603516, + "eth": -9004209.56375432, + "eur": 22455837818, + "gbp": 16896305123, + "gel": 68514960928, + "hkd": 226980251455, + "huf": 5936807408773, + "idr": 445291699368392, + "ils": 72228840303, + "inr": 2282167267108, + "jpy": 5324728558468, + "krw": 44188515374060, + "kwd": 8730630512, + "lkr": 8518636000065, + "ltc": -94017143.82152939, + "mmk": 60870367331458, + "mxn": 341173142219, + "myr": 95768372506, + "ngn": 39798844011134, + "nok": 293019944621, + "nzd": 45558017613, + "php": 1975916148853, + "pkr": 7986503608821, + "pln": 87085001431, + "rub": 3066758637945, + "sar": 109240275608, + "sek": 232713499013, + "sgd": 34819220926, + "sol": -262797494.31166077, + "thb": 735832327633, + "try": 1263334536341, + "twd": 863338187025, + "uah": 1172140952362, + "usd": 28990030638, + "vef": 2902771768, + "vnd": 761499127338952, + "xag": 123198915, + "xau": 3641132, + "xdr": 20546684215, + "xlm": -17601662122.447266, + "xrp": -29784921319.815796, + "yfi": -761120.6723766923, + "zar": 295773342004, + "bits": -2203036470.3515625, + "link": -695981268.0417938, + "sats": -220303647035.5 + }, + "market_cap_change_percentage_24h_in_currency": { + "aed": 1.42206, + "ars": 0.93767, + "aud": 1.08149, + "bch": 1.63578, + "bdt": 1.37976, + "bhd": 1.42233, + "bmd": 1.42206, + "bnb": 0.13507, + "brl": 0.74743, + "btc": 0.0, + "cad": 1.36442, + "chf": 1.37746, + "clp": 1.16607, + "cny": 1.36231, + "czk": 1.15901, + "dkk": 1.26319, + "dot": -2.23953, + "eos": -0.06146, + "eth": -1.47537, + "eur": 1.26557, + "gbp": 1.07912, + "gel": 1.23562, + "hkd": 1.4321, + "huf": 0.86136, + "idr": 1.30596, + "ils": 1.08387, + "inr": 1.26123, + "jpy": 1.70208, + "krw": 1.50009, + "kwd": 1.394, + "lkr": 1.37117, + "ltc": -0.4017, + "mmk": 1.42206, + "mxn": 0.89559, + "myr": 1.11985, + "ngn": 1.35317, + "nok": 1.40804, + "nzd": 1.26361, + "php": 1.65043, + "pkr": 1.38562, + "pln": 1.15191, + "rub": 1.85722, + "sar": 1.42885, + "sek": 1.19203, + "sgd": 1.30675, + "sol": -2.02049, + "thb": 1.10867, + "try": 1.47243, + "twd": 1.36879, + "uah": 1.36613, + "usd": 1.42206, + "vef": 1.42206, + "vnd": 1.41904, + "xag": 0.28802, + "xau": 0.70723, + "xdr": 1.42206, + "xlm": -0.23736, + "xrp": -3.28766, + "yfi": -0.16379, + "zar": 0.82962, + "bits": -0.01105, + "link": -0.5069, + "sats": -0.01105 + }, + "total_supply": 19944128.0, + "max_supply": 21000000.0, + "max_supply_infinite": false, + "circulating_supply": 19944128.0, + "last_updated": "2025-11-06T03:50:52.410Z" + }, + "community_data": { + "facebook_likes": null, + "reddit_average_posts_48h": 0.0, + "reddit_average_comments_48h": 0.0, + "reddit_subscribers": 0, + "reddit_accounts_active_48h": 0, + "telegram_channel_user_count": null + }, + "developer_data": { + "forks": 36426, + "stars": 73168, + "subscribers": 3967, + "total_issues": 7743, + "closed_issues": 7380, + "pull_requests_merged": 11215, + "pull_request_contributors": 846, + "code_additions_deletions_4_weeks": { + "additions": 1570, + "deletions": -1948 + }, + "commit_count_4_weeks": 108, + "last_4_weeks_commit_activity_series": [] + }, + "status_updates": [], + "last_updated": "2025-11-06T03:50:52.410Z", + "tickers": [ + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 103641.58, + "volume": 27428.0764, + "converted_last": { + "btc": 0.99963165, + "eth": 30.13844, + "usd": 103625 + }, + "converted_volume": { + "btc": 27418, + "eth": 826639, + "usd": 2842226121 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:48:09+00:00", + "last_traded_at": "2025-11-06T03:48:09+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BTC_USDT?ref=37754157", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Toobit", + "identifier": "toobit", + "has_trading_incentive": false + }, + "last": 103652.89, + "volume": 24006.544914, + "converted_last": { + "btc": 0.99974074, + "eth": 30.141729, + "usd": 103636 + }, + "converted_volume": { + "btc": 23827, + "eth": 718377, + "usd": 2469987411 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.toobit.com/en-US/spot/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "FDUSD", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 103966.85, + "volume": 24420.85088, + "converted_last": { + "btc": 0.99999258, + "eth": 30.149321, + "usd": 103662 + }, + "converted_volume": { + "btc": 24421, + "eth": 736272, + "usd": 2531516986 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013387, + "timestamp": "2025-11-06T03:48:37+00:00", + "last_traded_at": "2025-11-06T03:48:37+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BTC_FDUSD?ref=37754157", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "first-digital-usd", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "LBank", + "identifier": "lbank", + "has_trading_incentive": false + }, + "last": 103672.77, + "volume": 14081.0924, + "converted_last": { + "btc": 0.99993248, + "eth": 30.14751, + "usd": 103656 + }, + "converted_volume": { + "btc": 14080, + "eth": 424510, + "usd": 1459588059 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.lbank.com/trade/btc_usdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "MEXC", + "identifier": "mxc", + "has_trading_incentive": false + }, + "last": 103669.88, + "volume": 14104.21563726, + "converted_last": { + "btc": 0.99990461, + "eth": 30.146669, + "usd": 103653 + }, + "converted_volume": { + "btc": 13998, + "eth": 422036, + "usd": 1451080753 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010154, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.mexc.com/exchange/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Biconomy.com", + "identifier": "biconomy", + "has_trading_incentive": false + }, + "last": 103641.57, + "volume": 12154.78098, + "converted_last": { + "btc": 0.99963155, + "eth": 30.138437, + "usd": 103625 + }, + "converted_volume": { + "btc": 12060, + "eth": 363607, + "usd": 1250187678 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010029, + "timestamp": "2025-11-06T03:48:35+00:00", + "last_traded_at": "2025-11-06T03:48:35+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.biconomy.com/exchange/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Gate", + "identifier": "gate", + "has_trading_incentive": false + }, + "last": 103683.2, + "volume": 11828.616656, + "converted_last": { + "btc": 1.000033, + "eth": 30.150543, + "usd": 103666 + }, + "converted_volume": { + "btc": 11740, + "eth": 353967, + "usd": 1217040856 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.gate.com/trade/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "Crypto.com Exchange", + "identifier": "crypto_com", + "has_trading_incentive": false + }, + "last": 103707.11, + "volume": 11491.9448, + "converted_last": { + "btc": 1.000427, + "eth": 30.162409, + "usd": 103707 + }, + "converted_volume": { + "btc": 11497, + "eth": 346625, + "usd": 1191796383 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:48:36+00:00", + "last_traded_at": "2025-11-06T03:48:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://crypto.com/exchange/trade/spot/BTC_USD", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "KuCoin", + "identifier": "kucoin", + "has_trading_incentive": false + }, + "last": 103653.1, + "volume": 0.0, + "converted_last": { + "btc": 0.99974276, + "eth": 30.14179, + "usd": 103636 + }, + "converted_volume": { + "btc": 11044, + "eth": 332967, + "usd": 1144837836 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kucoin.com/trade/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 103695.31, + "volume": 9113.10687424, + "converted_last": { + "btc": 1.000313, + "eth": 30.158977, + "usd": 103695 + }, + "converted_volume": { + "btc": 9116, + "eth": 274842, + "usd": 944986442 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:48:36+00:00", + "last_traded_at": "2025-11-06T03:48:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/BTC-USD", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Tapbit", + "identifier": "tapbit", + "has_trading_incentive": false + }, + "last": 103674.33, + "volume": 12411.2832, + "converted_last": { + "btc": 0.99994753, + "eth": 30.147963, + "usd": 103657 + }, + "converted_volume": { + "btc": 12319, + "eth": 371412, + "usd": 1277021423 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013507, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.tapbit.com/spot/exchange/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "XT.COM", + "identifier": "xt", + "has_trading_incentive": false + }, + "last": 103660.65, + "volume": 9726.01018, + "converted_last": { + "btc": 0.99981558, + "eth": 30.143985, + "usd": 103644 + }, + "converted_volume": { + "btc": 9652, + "eth": 291007, + "usd": 1000565284 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.011003, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.xt.com/en/trade/btc_usdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Bybit", + "identifier": "bybit_spot", + "has_trading_incentive": false + }, + "last": 103655.2, + "volume": 9007.446791, + "converted_last": { + "btc": 0.99976302, + "eth": 30.1424, + "usd": 103638 + }, + "converted_volume": { + "btc": 8941, + "eth": 269568, + "usd": 926854518 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:48:07+00:00", + "last_traded_at": "2025-11-06T03:48:07+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.com/trade/spot/BTC/USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Hibt", + "identifier": "hibt", + "has_trading_incentive": false + }, + "last": 103670.4, + "volume": 8608.367468850003, + "converted_last": { + "btc": 0.99990962, + "eth": 30.14682, + "usd": 103654 + }, + "converted_volume": { + "btc": 8543, + "eth": 257570, + "usd": 885599160 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010675, + "timestamp": "2025-11-06T03:49:07+00:00", + "last_traded_at": "2025-11-06T03:49:07+00:00", + "last_fetch_at": "2025-11-06T03:49:37+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://hibt.com/trade/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BitDelta", + "identifier": "bitdelta", + "has_trading_incentive": false + }, + "last": 103675.26, + "volume": 10379.22713, + "converted_last": { + "btc": 0.9999565, + "eth": 30.148234, + "usd": 103658 + }, + "converted_volume": { + "btc": 10301, + "eth": 310562, + "usd": 1067800802 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.012807, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitdelta.com/en/trade/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 103693.0639, + "volume": 7781.60298491, + "converted_last": { + "btc": 1.000096, + "eth": 30.152431, + "usd": 103673 + }, + "converted_volume": { + "btc": 7740, + "eth": 233349, + "usd": 802320242 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "OKX", + "identifier": "okex", + "has_trading_incentive": false + }, + "last": 103717.7, + "volume": 7675.27087111, + "converted_last": { + "btc": 1.000529, + "eth": 30.165489, + "usd": 103718 + }, + "converted_volume": { + "btc": 7679, + "eth": 231528, + "usd": 796061442 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:48:36+00:00", + "last_traded_at": "2025-11-06T03:48:36+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.okx.com/trade-spot/btc-usdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Crypto.com Exchange", + "identifier": "crypto_com", + "has_trading_incentive": false + }, + "last": 103687.2, + "volume": 6555.1088, + "converted_last": { + "btc": 1.000275, + "eth": 30.157824, + "usd": 103691 + }, + "converted_volume": { + "btc": 6557, + "eth": 197688, + "usd": 679708064 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:02+00:00", + "last_traded_at": "2025-11-06T03:49:02+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://crypto.com/exchange/trade/spot/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "P2B", + "identifier": "p2pb2b", + "has_trading_incentive": false + }, + "last": 103662.89, + "volume": 6351.139315, + "converted_last": { + "btc": 1.0, + "eth": 30.149548, + "usd": 103663 + }, + "converted_volume": { + "btc": 6351, + "eth": 191484, + "usd": 658377456 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:08+00:00", + "last_traded_at": "2025-11-06T03:49:08+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": null, + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "DigiFinex", + "identifier": "digifinex", + "has_trading_incentive": false + }, + "last": 103672.42, + "volume": 11788.817055, + "converted_last": { + "btc": 0.9999291, + "eth": 30.147408, + "usd": 103656 + }, + "converted_volume": { + "btc": 11788, + "eth": 355402, + "usd": 1221976110 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.019401, + "timestamp": "2025-11-06T03:49:14+00:00", + "last_traded_at": "2025-11-06T03:49:14+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.digifinex.com/en-ww/trade/USDT/BTC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 103642.99, + "volume": 5906.51785, + "converted_last": { + "btc": 0.99961278, + "eth": 30.137871, + "usd": 103623 + }, + "converted_volume": { + "btc": 5904, + "eth": 178010, + "usd": 612049571 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:48:12+00:00", + "last_traded_at": "2025-11-06T03:48:12+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BTC_USDC?ref=37754157", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Bitget", + "identifier": "bitget", + "has_trading_incentive": false + }, + "last": 103672.69, + "volume": 5424.335458, + "converted_last": { + "btc": 0.99993171, + "eth": 30.147486, + "usd": 103656 + }, + "converted_volume": { + "btc": 5384, + "eth": 162313, + "usd": 558078246 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:26+00:00", + "last_traded_at": "2025-11-06T03:49:26+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitget.com/spot/BTCUSDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "P2B", + "identifier": "p2pb2b", + "has_trading_incentive": false + }, + "last": 103662.88, + "volume": 6542.009595, + "converted_last": { + "btc": 0.99983709, + "eth": 30.144634, + "usd": 103646 + }, + "converted_volume": { + "btc": 6541, + "eth": 197206, + "usd": 678053088 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.012546, + "timestamp": "2025-11-06T03:49:08+00:00", + "last_traded_at": "2025-11-06T03:49:08+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": null, + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "AscendEX (BitMax)", + "identifier": "bitmax", + "has_trading_incentive": false + }, + "last": 103680.32, + "volume": 5520.28671, + "converted_last": { + "btc": 1.000568, + "eth": 30.166679, + "usd": 103722 + }, + "converted_volume": { + "btc": 5523, + "eth": 166529, + "usd": 572574031 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013106, + "timestamp": "2025-11-06T03:49:08+00:00", + "last_traded_at": "2025-11-06T03:49:08+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://ascendex.com/en/cashtrade-spottrading/usdt/btc", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "CoinW", + "identifier": "coinw", + "has_trading_incentive": false + }, + "last": 103683.67, + "volume": 41163.4837, + "converted_last": { + "btc": 1.000039, + "eth": 30.151633, + "usd": 103667 + }, + "converted_volume": { + "btc": 41165, + "eth": 1241146, + "usd": 4267285837 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010473, + "timestamp": "2025-11-06T03:49:33+00:00", + "last_traded_at": "2025-11-06T03:49:33+00:00", + "last_fetch_at": "2025-11-06T03:49:33+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinw.com/spot/btcusdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BingX", + "identifier": "bingx", + "has_trading_incentive": false + }, + "last": 103676.7, + "volume": 3501.738205, + "converted_last": { + "btc": 0.99997039, + "eth": 30.148652, + "usd": 103660 + }, + "converted_volume": { + "btc": 3476, + "eth": 104795, + "usd": 360315627 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010019, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bingx.com/en-us/spot/BTCUSDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Bitrue", + "identifier": "bitrue", + "has_trading_incentive": false + }, + "last": 103670.46, + "volume": 5106.87153, + "converted_last": { + "btc": 0.9999102, + "eth": 30.146838, + "usd": 103654 + }, + "converted_volume": { + "btc": 5106, + "eth": 153956, + "usd": 529345480 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013809, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitrue.com/trade/btc_usdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Zoomex", + "identifier": "zoomex", + "has_trading_incentive": false + }, + "last": 103674.4, + "volume": 3600.667802, + "converted_last": { + "btc": 0.9999482, + "eth": 30.147984, + "usd": 103658 + }, + "converted_volume": { + "btc": 3574, + "eth": 107759, + "usd": 370508332 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:08+00:00", + "last_traded_at": "2025-11-06T03:49:08+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.zoomex.com/trade/spot/BTC/USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "WhiteBIT", + "identifier": "whitebit", + "has_trading_incentive": false + }, + "last": 103662.15, + "volume": 3294.780405, + "converted_last": { + "btc": 0.99983005, + "eth": 30.144421, + "usd": 103645 + }, + "converted_volume": { + "btc": 3294, + "eth": 99319, + "usd": 341488386 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://whitebit.com/trade/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Bitunix", + "identifier": "bitunix", + "has_trading_incentive": false + }, + "last": 103670.45, + "volume": 3094.68893, + "converted_last": { + "btc": 0.9999101, + "eth": 30.146835, + "usd": 103654 + }, + "converted_volume": { + "btc": 3094, + "eth": 93295, + "usd": 320775533 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:15+00:00", + "last_traded_at": "2025-11-06T03:49:15+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitunix.com/spot-trade/BTCUSDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "HTX", + "identifier": "huobi", + "has_trading_incentive": false + }, + "last": 103668.53, + "volume": 2826.66683442047, + "converted_last": { + "btc": 0.99989158, + "eth": 30.146277, + "usd": 103652 + }, + "converted_volume": { + "btc": 2805, + "eth": 84566, + "usd": 290761531 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:10+00:00", + "last_traded_at": "2025-11-06T03:49:10+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.huobi.com/en-us/exchange/btc_usdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "KCEX", + "identifier": "kcex", + "has_trading_incentive": false + }, + "last": 103662.89, + "volume": 26309.90086, + "converted_last": { + "btc": 0.99983719, + "eth": 30.144637, + "usd": 103646 + }, + "converted_volume": { + "btc": 26103, + "eth": 786999, + "usd": 2705930769 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kcex.com/exchange/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "WEEX", + "identifier": "weex", + "has_trading_incentive": false + }, + "last": 103653.7, + "volume": 25573.266132, + "converted_last": { + "btc": 0.99974855, + "eth": 30.141964, + "usd": 103637 + }, + "converted_volume": { + "btc": 25093, + "eth": 756535, + "usd": 2601186607 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010289, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.weex.com/spot/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BTSE", + "identifier": "btse", + "has_trading_incentive": false + }, + "last": 103681.6598758052, + "volume": 2316.48507994041, + "converted_last": { + "btc": 1.000018, + "eth": 30.150095, + "usd": 103665 + }, + "converted_volume": { + "btc": 2317, + "eth": 69842, + "usd": 240137895 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010386, + "timestamp": "2025-11-06T03:49:11+00:00", + "last_traded_at": "2025-11-06T03:49:11+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.btse.com/en/trading/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "Bitstamp", + "identifier": "bitstamp", + "has_trading_incentive": false + }, + "last": 103670.0, + "volume": 2397.88377964, + "converted_last": { + "btc": 1.000069, + "eth": 30.151616, + "usd": 103670 + }, + "converted_volume": { + "btc": 2398, + "eth": 72300, + "usd": 248588611 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010965, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitstamp.net/markets/btc/usd/", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "XBT", + "target": "USD", + "market": { + "name": "Kraken", + "identifier": "kraken", + "has_trading_incentive": false + }, + "last": 103615.0, + "volume": 1991.41861791, + "converted_last": { + "btc": 0.9995381, + "eth": 30.135619, + "usd": 103615 + }, + "converted_volume": { + "btc": 1990, + "eth": 60013, + "usd": 206340840 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010097, + "timestamp": "2025-11-06T03:47:47+00:00", + "last_traded_at": "2025-11-06T03:47:47+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.kraken.com/app/trade/XBT-USD", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Phemex", + "identifier": "phemex", + "has_trading_incentive": false + }, + "last": 103676.71, + "volume": 2123.274034, + "converted_last": { + "btc": 0.99997223, + "eth": 30.149609, + "usd": 103660 + }, + "converted_volume": { + "btc": 2123, + "eth": 64016, + "usd": 220098208 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:25+00:00", + "last_traded_at": "2025-11-06T03:49:25+00:00", + "last_fetch_at": "2025-11-06T03:49:25+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://phemex.com/spot/trade/BTCUSDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Toobit", + "identifier": "toobit", + "has_trading_incentive": false + }, + "last": 103655.3, + "volume": 2951.96254, + "converted_last": { + "btc": 0.99973151, + "eth": 30.14145, + "usd": 103635 + }, + "converted_volume": { + "btc": 2932, + "eth": 88412, + "usd": 303985176 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.015653, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.toobit.com/en-US/spot/BTC_USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Tapbit", + "identifier": "tapbit", + "has_trading_incentive": false + }, + "last": 103679.56, + "volume": 1458.99866, + "converted_last": { + "btc": 0.99996549, + "eth": 30.148505, + "usd": 103659 + }, + "converted_volume": { + "btc": 1450, + "eth": 43708, + "usd": 150280886 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010009, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.tapbit.com/spot/exchange/BTC_USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "LBank", + "identifier": "lbank", + "has_trading_incentive": false + }, + "last": 103676.9, + "volume": 1496.9196, + "converted_last": { + "btc": 0.99993983, + "eth": 30.147731, + "usd": 103657 + }, + "converted_volume": { + "btc": 1497, + "eth": 45129, + "usd": 155165663 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.lbank.com/trade/btc_usdc", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 103659.2, + "volume": 1456.93742442, + "converted_last": { + "btc": 0.99976449, + "eth": 30.142445, + "usd": 103638 + }, + "converted_volume": { + "btc": 1449, + "eth": 43680, + "usd": 150184199 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BloFin", + "identifier": "blofin_spot", + "has_trading_incentive": false + }, + "last": 103673.84, + "volume": 1833.47781, + "converted_last": { + "btc": 0.9999428, + "eth": 30.147821, + "usd": 103657 + }, + "converted_volume": { + "btc": 1821, + "eth": 54896, + "usd": 188747675 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013617, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://blofin.com/spot/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BigONE", + "identifier": "bigone", + "has_trading_incentive": false + }, + "last": 103689.69, + "volume": 3162.518209, + "converted_last": { + "btc": 1.000096, + "eth": 30.15243, + "usd": 103673 + }, + "converted_volume": { + "btc": 3163, + "eth": 95358, + "usd": 327867117 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.022706, + "timestamp": "2025-11-06T03:48:45+00:00", + "last_traded_at": "2025-11-06T03:48:45+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://big.one/trade/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BVOX", + "identifier": "bitvenus_spot", + "has_trading_incentive": false + }, + "last": 103652.9, + "volume": 11379.25701, + "converted_last": { + "btc": 0.99974083, + "eth": 30.141731, + "usd": 103636 + }, + "converted_volume": { + "btc": 11281, + "eth": 340119, + "usd": 1169428560 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitvenus.me/exchange/BTC/USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "GroveX", + "identifier": "grovex", + "has_trading_incentive": false + }, + "last": 103643.77, + "volume": 12901.0057288, + "converted_last": { + "btc": 0.99965277, + "eth": 30.139077, + "usd": 103627 + }, + "converted_volume": { + "btc": 12897, + "eth": 388824, + "usd": 1336891065 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:45:13+00:00", + "last_traded_at": "2025-11-06T03:45:13+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.grovex.io/en_US/trade/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "KuCoin", + "identifier": "kucoin", + "has_trading_incentive": false + }, + "last": 103646.5, + "volume": 0.0, + "converted_last": { + "btc": 0.99964663, + "eth": 30.138891, + "usd": 103626 + }, + "converted_volume": { + "btc": 1323, + "eth": 39889, + "usd": 137148975 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kucoin.com/trade/BTC-USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Coinstore", + "identifier": "coinstore", + "has_trading_incentive": false + }, + "last": 103633.95, + "volume": 13507.003182, + "converted_last": { + "btc": 0.99955806, + "eth": 30.136221, + "usd": 103617 + }, + "converted_volume": { + "btc": 13398, + "eth": 403946, + "usd": 1388882549 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010289, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinstore.com/#/spot/BTCUSDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 103672.45, + "volume": 1067.09576039, + "converted_last": { + "btc": 1.000092, + "eth": 30.152328, + "usd": 103672 + }, + "converted_volume": { + "btc": 1060, + "eth": 31967, + "usd": 109912049 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BYDFi", + "identifier": "bydfi", + "has_trading_incentive": false + }, + "last": 103669.23, + "volume": 1100.7873, + "converted_last": { + "btc": 0.99989834, + "eth": 30.14648, + "usd": 103652 + }, + "converted_volume": { + "btc": 1101, + "eth": 33185, + "usd": 114099183 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010039, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bydfi.com/en/spot/btc_usdt", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Bybit", + "identifier": "bybit_spot", + "has_trading_incentive": false + }, + "last": 103664.8, + "volume": 1015.483722, + "converted_last": { + "btc": 0.99982313, + "eth": 30.144213, + "usd": 103645 + }, + "converted_volume": { + "btc": 1008, + "eth": 30391, + "usd": 104492126 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:48:07+00:00", + "last_traded_at": "2025-11-06T03:48:07+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.com/trade/spot/BTC/USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Ourbit", + "identifier": "ourbit", + "has_trading_incentive": false + }, + "last": 103700.0, + "volume": 9894.737942, + "converted_last": { + "btc": 1.000195, + "eth": 30.155428, + "usd": 103683 + }, + "converted_volume": { + "btc": 9811, + "eth": 295806, + "usd": 1017065275 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.ourbit.com/exchange/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "LATOKEN", + "identifier": "latoken", + "has_trading_incentive": false + }, + "last": 103678.0, + "volume": 1260.8386907664103, + "converted_last": { + "btc": 0.99998292, + "eth": 30.14903, + "usd": 103661 + }, + "converted_volume": { + "btc": 1261, + "eth": 38013, + "usd": 130699940 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013106, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://latoken.com/exchange/USDT-BTC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Biconomy.com", + "identifier": "biconomy", + "has_trading_incentive": false + }, + "last": 103642.99, + "volume": 905.39, + "converted_last": { + "btc": 0.99961278, + "eth": 30.137871, + "usd": 103623 + }, + "converted_volume": { + "btc": 899.515, + "eth": 27120, + "usd": 93246294 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010029, + "timestamp": "2025-11-06T03:48:35+00:00", + "last_traded_at": "2025-11-06T03:48:35+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.biconomy.com/exchange/BTC_USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "HashKey Exchange", + "identifier": "hashkey_exchange", + "has_trading_incentive": false + }, + "last": 103659.49, + "volume": 828.58171, + "converted_last": { + "btc": 0.99996728, + "eth": 30.148559, + "usd": 103659 + }, + "converted_volume": { + "btc": 822.062, + "eth": 24785, + "usd": 85217296 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.hashkey.com/en-US/spot/BTC_USD", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BitMart", + "identifier": "bitmart", + "has_trading_incentive": false + }, + "last": 103654.13, + "volume": 7506.69512, + "converted_last": { + "btc": 0.9997527, + "eth": 30.142089, + "usd": 103637 + }, + "converted_volume": { + "btc": 7505, + "eth": 226267, + "usd": 777973205 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:45:06+00:00", + "last_traded_at": "2025-11-06T03:45:06+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitmart.com/trade/en?symbol=BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "XBT", + "target": "EUR", + "market": { + "name": "Kraken", + "identifier": "kraken", + "has_trading_incentive": false + }, + "last": 90142.0, + "volume": 582.11173682, + "converted_last": { + "btc": 1.0006, + "eth": 30.167627, + "usd": 103725 + }, + "converted_volume": { + "btc": 582.461, + "eth": 17561, + "usd": 60379571 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010111, + "timestamp": "2025-11-06T03:48:46+00:00", + "last_traded_at": "2025-11-06T03:48:46+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.kraken.com/app/trade/XBT-EUR", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Bit2Me", + "identifier": "bit2me", + "has_trading_incentive": false + }, + "last": 103685.97, + "volume": 649.2535643, + "converted_last": { + "btc": 1.000027, + "eth": 30.150369, + "usd": 103666 + }, + "converted_volume": { + "btc": 644.945, + "eth": 19445, + "usd": 66856880 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.bit2me.com/exchange/BTC-USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "OKX", + "identifier": "okex", + "has_trading_incentive": false + }, + "last": 103699.4, + "volume": 632.54446548, + "converted_last": { + "btc": 1.000352, + "eth": 30.160166, + "usd": 103699 + }, + "converted_volume": { + "btc": 632.767, + "eth": 19078, + "usd": 65594482 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:48:43+00:00", + "last_traded_at": "2025-11-06T03:48:43+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.okx.com/trade-spot/btc-usd", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Bit2Me", + "identifier": "bit2me", + "has_trading_incentive": false + }, + "last": 90121.0, + "volume": 570.469757648, + "converted_last": { + "btc": 1.000367, + "eth": 30.160599, + "usd": 103701 + }, + "converted_volume": { + "btc": 567.436, + "eth": 17108, + "usd": 58822063 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010111, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.bit2me.com/exchange/BTC-EUR", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Tothemoon", + "identifier": "cryptology", + "has_trading_incentive": false + }, + "last": 103642.69, + "volume": 1260.0509229344643, + "converted_last": { + "btc": 0.99960457, + "eth": 30.137623, + "usd": 103622 + }, + "converted_volume": { + "btc": 1260, + "eth": 37975, + "usd": 130568858 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020014, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://tothemoon.com/trading/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "PYUSD", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 103659.74999999, + "volume": 545.98841305, + "converted_last": { + "btc": 0.99974121, + "eth": 30.141743, + "usd": 103636 + }, + "converted_volume": { + "btc": 543.059, + "eth": 16373, + "usd": 56295091 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010193, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "paypal-usd", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "CoinEx", + "identifier": "coinex", + "has_trading_incentive": false + }, + "last": 103685.0, + "volume": 538.9489012, + "converted_last": { + "btc": 1.00005, + "eth": 30.151066, + "usd": 103668 + }, + "converted_volume": { + "btc": 534.408, + "eth": 16112, + "usd": 55398291 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010965, + "timestamp": "2025-11-06T03:49:13+00:00", + "last_traded_at": "2025-11-06T03:49:13+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinex.com/en/exchange/btc-usdt?", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "DigiFinex", + "identifier": "digifinex", + "has_trading_incentive": false + }, + "last": 103677.0, + "volume": 352.11295, + "converted_last": { + "btc": 0.9999408, + "eth": 30.14776, + "usd": 103657 + }, + "converted_volume": { + "btc": 352.092, + "eth": 10615, + "usd": 36498882 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010145, + "timestamp": "2025-11-06T03:49:16+00:00", + "last_traded_at": "2025-11-06T03:49:16+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.digifinex.com/en-ww/trade/USDC/BTC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "Tothemoon", + "identifier": "cryptology", + "has_trading_incentive": false + }, + "last": 103621.89, + "volume": 935.5885024150045, + "converted_last": { + "btc": 0.99960457, + "eth": 30.137623, + "usd": 103622 + }, + "converted_volume": { + "btc": 935.219, + "eth": 28196, + "usd": 96947449 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020087, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://tothemoon.com/trading/BTC_USD", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Bitvavo", + "identifier": "bitvavo", + "has_trading_incentive": false + }, + "last": 90140.0, + "volume": 899.71085952, + "converted_last": { + "btc": 1.000578, + "eth": 30.166958, + "usd": 103723 + }, + "converted_volume": { + "btc": 900.23, + "eth": 27142, + "usd": 93320486 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.019986, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://account.bitvavo.com/markets/BTC-EUR", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 90129.79, + "volume": 371.57876, + "converted_last": { + "btc": 1.000464, + "eth": 30.163541, + "usd": 103711 + }, + "converted_volume": { + "btc": 371.751, + "eth": 11208, + "usd": 38536806 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010011, + "timestamp": "2025-11-06T03:49:08+00:00", + "last_traded_at": "2025-11-06T03:49:08+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BTC_EUR?ref=37754157", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "BitKan", + "identifier": "bitkan", + "has_trading_incentive": false + }, + "last": 103686.91, + "volume": 289.9033, + "converted_last": { + "btc": 1.000069, + "eth": 30.151621, + "usd": 103670 + }, + "converted_volume": { + "btc": 289.923, + "eth": 8741, + "usd": 30054281 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:15+00:00", + "last_traded_at": "2025-11-06T03:49:15+00:00", + "last_fetch_at": "2025-11-06T03:49:46+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitkan.com/trade/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 103621.5, + "volume": 257.37102687, + "converted_last": { + "btc": 0.99964079, + "eth": 30.138715, + "usd": 103626 + }, + "converted_volume": { + "btc": 257.279, + "eth": 7757, + "usd": 26670239 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:47:42+00:00", + "last_traded_at": "2025-11-06T03:47:42+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/BTC-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "WBTC", + "target": "BTC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 0.9992, + "volume": 138.69207, + "converted_last": { + "btc": 0.99969678, + "eth": 30.140403, + "usd": 103631 + }, + "converted_volume": { + "btc": 138.539, + "eth": 4177, + "usd": 14361362 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010007, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/WBTC_BTC?ref=37754157", + "token_info_url": null, + "coin_id": "wrapped-bitcoin", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 13147126945.236067 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "BingX", + "identifier": "bingx", + "has_trading_incentive": false + }, + "last": 103685.97, + "volume": 218.89054, + "converted_last": { + "btc": 1.000027, + "eth": 30.150369, + "usd": 103666 + }, + "converted_volume": { + "btc": 217.404, + "eth": 6555, + "usd": 22536748 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01001, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bingx.com/en-us/spot/BTCUSDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "QMall", + "identifier": "qmall", + "has_trading_incentive": false + }, + "last": 103676.7, + "volume": 514.1480221, + "converted_last": { + "btc": 0.99997039, + "eth": 30.148652, + "usd": 103660 + }, + "converted_volume": { + "btc": 510.328, + "eth": 15386, + "usd": 52902121 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020008, + "timestamp": "2025-11-06T03:49:41+00:00", + "last_traded_at": "2025-11-06T03:49:41+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://qmall.io/trade/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 0.03317, + "volume": 22892.4575, + "converted_last": { + "btc": 0.99969678, + "eth": 30.140403, + "usd": 103631 + }, + "converted_volume": { + "btc": 759.113, + "eth": 22887, + "usd": 78691796 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.030139, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_BTC?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Tothemoon", + "identifier": "cryptology", + "has_trading_incentive": false + }, + "last": 90074.02, + "volume": 516.1532085400731, + "converted_last": { + "btc": 0.99984515, + "eth": 30.144877, + "usd": 103647 + }, + "converted_volume": { + "btc": 516.073, + "eth": 15559, + "usd": 53497644 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020105, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://tothemoon.com/trading/BTC_EUR", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "WEEX", + "identifier": "weex", + "has_trading_incentive": false + }, + "last": 103655.0, + "volume": 2422.002073, + "converted_last": { + "btc": 0.99972861, + "eth": 30.141363, + "usd": 103635 + }, + "converted_volume": { + "btc": 2421, + "eth": 73002, + "usd": 251003577 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:49:34+00:00", + "last_traded_at": "2025-11-06T03:49:34+00:00", + "last_fetch_at": "2025-11-06T03:49:34+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.weex.com/spot/BTC-USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "Gemini", + "identifier": "gemini", + "has_trading_incentive": false + }, + "last": 103673.65, + "volume": 381.1296424, + "converted_last": { + "btc": 1.000104, + "eth": 30.152677, + "usd": 103674 + }, + "converted_volume": { + "btc": 381.169, + "eth": 11492, + "usd": 39513101 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.018993, + "timestamp": "2025-11-06T03:47:51+00:00", + "last_traded_at": "2025-11-06T03:47:51+00:00", + "last_fetch_at": "2025-11-06T03:49:46+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://exchange.gemini.com/trade/BTCUSD", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "XBT", + "target": "USDC", + "market": { + "name": "Kraken", + "identifier": "kraken", + "has_trading_incentive": false + }, + "last": 103653.53, + "volume": 199.5755155, + "converted_last": { + "btc": 0.99971443, + "eth": 30.140936, + "usd": 103633 + }, + "converted_volume": { + "btc": 199.519, + "eth": 6015, + "usd": 20682665 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.011602, + "timestamp": "2025-11-06T03:43:42+00:00", + "last_traded_at": "2025-11-06T03:43:42+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.kraken.com/app/trade/XBT-USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "Pionex", + "identifier": "pionex", + "has_trading_incentive": false + }, + "last": 0.033165, + "volume": 18250.2587, + "converted_last": { + "btc": 0.99954785, + "eth": 30.136814, + "usd": 103616 + }, + "converted_volume": { + "btc": 597.989, + "eth": 18030, + "usd": 61989198 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.030148, + "timestamp": "2025-11-06T03:49:33+00:00", + "last_traded_at": "2025-11-06T03:49:33+00:00", + "last_fetch_at": "2025-11-06T03:49:33+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.pionex.com/en/trade/ETH_BTC/Bot", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "FMFW.io", + "identifier": "bitcoin_com", + "has_trading_incentive": false + }, + "last": 103628.38, + "volume": 806.82431, + "converted_last": { + "btc": 0.99950433, + "eth": 30.134601, + "usd": 103611 + }, + "converted_volume": { + "btc": 806.424, + "eth": 24313, + "usd": 83596277 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.046604, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://fmfw.io/BTC-to-USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 90141.51, + "volume": 362.70935146, + "converted_last": { + "btc": 1.000594, + "eth": 30.167463, + "usd": 103724 + }, + "converted_volume": { + "btc": 362.925, + "eth": 10942, + "usd": 37621842 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.019695, + "timestamp": "2025-11-06T03:48:36+00:00", + "last_traded_at": "2025-11-06T03:48:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/BTC-EUR", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "XT.COM", + "identifier": "xt", + "has_trading_incentive": false + }, + "last": 103669.56, + "volume": 176.81179, + "converted_last": { + "btc": 0.99986904, + "eth": 30.145597, + "usd": 103649 + }, + "converted_volume": { + "btc": 175.64, + "eth": 5295, + "usd": 18207370 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010018, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.xt.com/en/trade/btc_usdc", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "JPY", + "market": { + "name": "bitFlyer", + "identifier": "bitflyer", + "has_trading_incentive": false + }, + "last": 15980506.0, + "volume": 972.89648775, + "converted_last": { + "btc": 1.001802, + "eth": 30.203879, + "usd": 103850 + }, + "converted_volume": { + "btc": 974.65, + "eth": 29385, + "usd": 101035007 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.052871, + "timestamp": "2025-11-06T03:48:47+00:00", + "last_traded_at": "2025-11-06T03:48:47+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitflyer.com/en-jp/ex/simpleex", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 90086.74964525, + "volume": 219.63692767, + "converted_last": { + "btc": 0.99998646, + "eth": 30.149137, + "usd": 103661 + }, + "converted_volume": { + "btc": 218.537, + "eth": 6589, + "usd": 22654174 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013884, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "TRY", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 4366170.0, + "volume": 141.97645, + "converted_last": { + "btc": 1.000248, + "eth": 30.157034, + "usd": 103689 + }, + "converted_volume": { + "btc": 142.012, + "eth": 4282, + "usd": 14721344 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010023, + "timestamp": "2025-11-06T03:48:37+00:00", + "last_traded_at": "2025-11-06T03:48:37+00:00", + "last_fetch_at": "2025-11-06T03:49:37+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BTC_TRY?ref=37754157", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Backpack Exchange ", + "identifier": "backpack_exchange", + "has_trading_incentive": false + }, + "last": 103647.7, + "volume": 136.28261, + "converted_last": { + "btc": 0.99999826, + "eth": 30.149493, + "usd": 103663 + }, + "converted_volume": { + "btc": 135.318, + "eth": 4080, + "usd": 14027411 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010096, + "timestamp": "2025-11-06T03:48:17+00:00", + "last_traded_at": "2025-11-06T03:48:17+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://backpack.exchange/trade/BTC_USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "Bybit", + "identifier": "bybit_spot", + "has_trading_incentive": false + }, + "last": 0.033174, + "volume": 4958.4987, + "converted_last": { + "btc": 0.99987768, + "eth": 30.145857, + "usd": 103650 + }, + "converted_volume": { + "btc": 162.611, + "eth": 4903, + "usd": 16856725 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013014, + "timestamp": "2025-11-06T03:48:07+00:00", + "last_traded_at": "2025-11-06T03:48:07+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.com/trade/spot/ETH/BTC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "CoinCatch", + "identifier": "coincatch", + "has_trading_incentive": false + }, + "last": 103675.66, + "volume": 109.44845, + "converted_last": { + "btc": 0.99996035, + "eth": 30.14835, + "usd": 103659 + }, + "converted_volume": { + "btc": 108.614, + "eth": 3275, + "usd": 11259218 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.011148, + "timestamp": "2025-11-06T03:49:17+00:00", + "last_traded_at": "2025-11-06T03:49:17+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coincatch.com/en/spot/BTCUSDT_SPBL", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "BRL", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 556314.0, + "volume": 133.88193, + "converted_last": { + "btc": 1.001, + "eth": 30.179686, + "usd": 103767 + }, + "converted_volume": { + "btc": 134.016, + "eth": 4041, + "usd": 13892461 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01018, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BTC_BRL?ref=37754157", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USD", + "market": { + "name": "itBit", + "identifier": "itbit", + "has_trading_incentive": false + }, + "last": 103647.0, + "volume": 125.86966587, + "converted_last": { + "btc": 0.99984679, + "eth": 30.144926, + "usd": 103647 + }, + "converted_volume": { + "btc": 125.85, + "eth": 3794, + "usd": 13046013 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010241, + "timestamp": "2025-11-06T03:48:51+00:00", + "last_traded_at": "2025-11-06T03:48:51+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": null, + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "SOL", + "target": "BTC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 0.0015656, + "volume": 118406.824, + "converted_last": { + "btc": 0.99969678, + "eth": 30.140403, + "usd": 103631 + }, + "converted_volume": { + "btc": 185.322, + "eth": 5587, + "usd": 19210962 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.016383, + "timestamp": "2025-11-06T03:48:10+00:00", + "last_traded_at": "2025-11-06T03:48:10+00:00", + "last_fetch_at": "2025-11-06T03:49:37+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/SOL_BTC?ref=37754157", + "token_info_url": null, + "coin_id": "solana", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 89670654801.98328 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Gate", + "identifier": "gate", + "has_trading_incentive": false + }, + "last": 103709.2, + "volume": 144.084619, + "converted_last": { + "btc": 1.000251, + "eth": 30.157124, + "usd": 103689 + }, + "converted_volume": { + "btc": 143.112, + "eth": 4315, + "usd": 14835401 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.012935, + "timestamp": "2025-11-06T03:49:36+00:00", + "last_traded_at": "2025-11-06T03:49:36+00:00", + "last_fetch_at": "2025-11-06T03:49:36+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.gate.com/trade/BTC_USDC", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EURCV", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 90124.704665, + "volume": 99.92798652, + "converted_last": { + "btc": 0.99974121, + "eth": 30.141743, + "usd": 103636 + }, + "converted_volume": { + "btc": 99.309, + "eth": 2994, + "usd": 10294643 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010222, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "societe-generale-forge-eurcv", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "CoinUp.io", + "identifier": "coinup", + "has_trading_incentive": false + }, + "last": 103689.6, + "volume": 8825.88809, + "converted_last": { + "btc": 1.000095, + "eth": 30.152404, + "usd": 103673 + }, + "converted_volume": { + "btc": 8757, + "eth": 264016, + "usd": 907765102 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010029, + "timestamp": "2025-11-06T03:49:06+00:00", + "last_traded_at": "2025-11-06T03:49:06+00:00", + "last_fetch_at": "2025-11-06T03:49:37+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinup.io/en_US/trade/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "Dex-Trade", + "identifier": "dextrade", + "has_trading_incentive": false + }, + "last": 103670.36, + "volume": 1382.92947776, + "converted_last": { + "btc": 0.99990924, + "eth": 30.146809, + "usd": 103653 + }, + "converted_volume": { + "btc": 1383, + "eth": 41691, + "usd": 143345443 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.14715, + "timestamp": "2025-11-06T03:47:47+00:00", + "last_traded_at": "2025-11-06T03:47:47+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://dex-trade.com/spot/trading/BTCUSDT?interface=classic", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "BRL", + "market": { + "name": "Foxbit", + "identifier": "foxbit", + "has_trading_incentive": false + }, + "last": 556537.0, + "volume": 65.61456789, + "converted_last": { + "btc": 1.001401, + "eth": 30.191783, + "usd": 103808 + }, + "converted_volume": { + "btc": 65.532, + "eth": 1976, + "usd": 6793279 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01132, + "timestamp": "2025-11-06T03:48:18+00:00", + "last_traded_at": "2025-11-06T03:48:18+00:00", + "last_fetch_at": "2025-11-06T03:49:49+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://foxbit.com.br/grafico-bitcoin/", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "EUR", + "market": { + "name": "Bitstamp", + "identifier": "bitstamp", + "has_trading_incentive": false + }, + "last": 90107.0, + "volume": 142.36148809, + "converted_last": { + "btc": 1.000211, + "eth": 30.155914, + "usd": 103685 + }, + "converted_volume": { + "btc": 142.392, + "eth": 4293, + "usd": 14760719 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.019988, + "timestamp": "2025-11-06T03:48:36+00:00", + "last_traded_at": "2025-11-06T03:48:36+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitstamp.net/markets/btc/eur/", + "token_info_url": null, + "coin_id": "bitcoin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BNB", + "target": "BTC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 0.009285, + "volume": 8768.249, + "converted_last": { + "btc": 0.99999826, + "eth": 30.149493, + "usd": 103663 + }, + "converted_volume": { + "btc": 81.413, + "eth": 2455, + "usd": 8439511 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010769, + "timestamp": "2025-11-06T03:49:06+00:00", + "last_traded_at": "2025-11-06T03:49:06+00:00", + "last_fetch_at": "2025-11-06T03:49:35+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/BNB_BTC?ref=37754157", + "token_info_url": null, + "coin_id": "binancecoin", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 132508194491.7986 + }, + { + "base": "BTC", + "target": "USDT", + "market": { + "name": "bitcastle", + "identifier": "bitcastle", + "has_trading_incentive": false + }, + "last": 103670.45, + "volume": 323.240996, + "converted_last": { + "btc": 0.9999101, + "eth": 30.146835, + "usd": 103654 + }, + "converted_volume": { + "btc": 320.868, + "eth": 9674, + "usd": 33262121 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.04067, + "timestamp": "2025-11-06T03:49:14+00:00", + "last_traded_at": "2025-11-06T03:49:14+00:00", + "last_fetch_at": "2025-11-06T03:49:46+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitcastle.io/en/exchange/BTC_USDT", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "tether", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "BTC", + "target": "USDC", + "market": { + "name": "Bitrue", + "identifier": "bitrue", + "has_trading_incentive": false + }, + "last": 103677.0, + "volume": 73.819365, + "converted_last": { + "btc": 0.9999408, + "eth": 30.14776, + "usd": 103657 + }, + "converted_volume": { + "btc": 73.815, + "eth": 2225, + "usd": 7651875 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010222, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitrue.com/trade/btc_usdc", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 2067584481753.7092 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "OKX", + "identifier": "okex", + "has_trading_incentive": false + }, + "last": 0.03317, + "volume": 6441.844563, + "converted_last": { + "btc": 1.000352, + "eth": 30.160166, + "usd": 103699 + }, + "converted_volume": { + "btc": 213.751, + "eth": 6445, + "usd": 22158071 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.030139, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.okx.com/trade-spot/eth-btc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "BTC", + "target": "USD1", + "market": { + "name": "Bitrue", + "identifier": "bitrue", + "has_trading_incentive": false + }, + "last": 103775.29, + "volume": 152.607744, + "converted_last": { + "btc": 0.99954763, + "eth": 30.135907, + "usd": 103616 + }, + "converted_volume": { + "btc": 152.539, + "eth": 4599, + "usd": 15812602 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020077, + "timestamp": "2025-11-06T03:49:08+00:00", + "last_traded_at": "2025-11-06T03:49:08+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitrue.com/trade/btc_usd1", + "token_info_url": null, + "coin_id": "bitcoin", + "target_coin_id": "usd1-wlfi", + "coin_mcap_usd": 2067584481753.7092 + } + ] +} \ No newline at end of file diff --git a/public_apis/crypto_bitcoin.metadata.json b/public_apis/crypto_bitcoin.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..1c53084a948eeb43d518bd50db162db3486a3ca4 --- /dev/null +++ b/public_apis/crypto_bitcoin.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_crypto_bitcoin", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:27.583537", + "size_bytes": 140474, + "description": "Bitcoin data", + "url": "https://api.coingecko.com/api/v3/coins/bitcoin" +} \ No newline at end of file diff --git a/public_apis/crypto_coins_list.json b/public_apis/crypto_coins_list.json new file mode 100644 index 0000000000000000000000000000000000000000..be5d9e21065a77f0e14a326fd065d76730dff96c --- /dev/null +++ b/public_apis/crypto_coins_list.json @@ -0,0 +1,97067 @@ +[ + { + "id": "_", + "symbol": "gib", + "name": "༼ つ ◕_◕ ༽つ" + }, + { + "id": "000-capital", + "symbol": "000", + "name": "000 Capital" + }, + { + "id": "01111010011110000110001001110100-token", + "symbol": "01111010011110000110001001110100", + "name": "01111010011110000110001001110100" + }, + { + "id": "01-token", + "symbol": "01", + "name": "01" + }, + { + "id": "0chain", + "symbol": "zcn", + "name": "Zus" + }, + { + "id": "0vix-protocol", + "symbol": "vix", + "name": "0VIX Protocol" + }, + { + "id": "0x", + "symbol": "zrx", + "name": "0x Protocol" + }, + { + "id": "0x0-ai-ai-smart-contract", + "symbol": "0x0", + "name": "0x0.ai: AI Smart Contract" + }, + { + "id": "0x678-landwolf-1933", + "symbol": "wolf", + "name": "Landwolf" + }, + { + "id": "0xgasless-2", + "symbol": "0xgas", + "name": "0xGasless" + }, + { + "id": "0xgen", + "symbol": "xgn", + "name": "0xGen" + }, + { + "id": "0x-leverage", + "symbol": "oxl", + "name": "0x Leverage" + }, + { + "id": "0xlsd", + "symbol": "0xlsd", + "name": "0xLSD" + }, + { + "id": "0xmonk", + "symbol": "monk", + "name": "0xMonk by Virtuals" + }, + { + "id": "0xshadow", + "symbol": "0xs", + "name": "0xShadow" + }, + { + "id": "0xsim-by-virtuals", + "symbol": "sage", + "name": "0xsim by Virtuals" + }, + { + "id": "0xy", + "symbol": "0xy", + "name": "0xy" + }, + { + "id": "-10", + "symbol": "loong", + "name": "龙" + }, + { + "id": "1000bonk", + "symbol": "1000bonk", + "name": "1000BONK" + }, + { + "id": "1000btt", + "symbol": "1000btt", + "name": "1000BTT" + }, + { + "id": "1000cat", + "symbol": "1000cat", + "name": "1000CAT" + }, + { + "id": "1000chems", + "symbol": "1000cheems", + "name": "1000CHEMS" + }, + { + "id": "1000mog", + "symbol": "1000mog", + "name": "1000MOG" + }, + { + "id": "1000rats", + "symbol": "1000rats", + "name": "1000RATS" + }, + { + "id": "1000sats-ordinals", + "symbol": "1000sats", + "name": "1000SATS (Ordinals)" + }, + { + "id": "1000shib", + "symbol": "1000shib", + "name": "1000SHIB" + }, + { + "id": "1000x-by-virtuals", + "symbol": "1000x", + "name": "1000x by Virtuals" + }, + { + "id": "100-token", + "symbol": "100¥", + "name": "100¥" + }, + { + "id": "100xdarren", + "symbol": "100x", + "name": "100xDarren" + }, + { + "id": "10-figs", + "symbol": "figs", + "name": "10 figs" + }, + { + "id": "-11", + "symbol": "赵长娥", + "name": "赵长娥" + }, + { + "id": "1984-token", + "symbol": "1984", + "name": "1984" + }, + { + "id": "1art", + "symbol": "1art", + "name": "OneArt" + }, + { + "id": "1-coin-can-change-your-life", + "symbol": "1-coin-can-change-your-life", + "name": "1 Coin Can Change Your Life" + }, + { + "id": "1dev", + "symbol": "1dev", + "name": "1DEV" + }, + { + "id": "1-dog-can-change-your-life", + "symbol": "1dog", + "name": "1 dog can change your life" + }, + { + "id": "1-dollar-sol-coin", + "symbol": "$1", + "name": "$1" + }, + { + "id": "1guy", + "symbol": "1guy", + "name": "1GUY" + }, + { + "id": "1hive-water", + "symbol": "water", + "name": "1Hive Water" + }, + { + "id": "1hub-ai", + "symbol": "1hub", + "name": "1Hub.ai" + }, + { + "id": "1inch", + "symbol": "1inch", + "name": "1INCH" + }, + { + "id": "1inch-yvault", + "symbol": "yv1inch", + "name": "1INCH yVault" + }, + { + "id": "1intro", + "symbol": "chef", + "name": "CoinChef" + }, + { + "id": "1mbabydoge", + "symbol": "1mbabydoge", + "name": "1MBABYDOGE" + }, + { + "id": "1mdc", + "symbol": "1mdc", + "name": "1MDC" + }, + { + "id": "1million-nfts", + "symbol": "1mil", + "name": "1MillionNFTs" + }, + { + "id": "1move-token", + "symbol": "1mt", + "name": "1Move Token" + }, + { + "id": "1-one", + "symbol": "one", + "name": "1 (one)" + }, + { + "id": "1-percent", + "symbol": "1%", + "name": "1%" + }, + { + "id": "1rus-btc25", + "symbol": "@btc25", + "name": "@BTC25" + }, + { + "id": "1rus-dao", + "symbol": "1rusd", + "name": "1RUS DAO" + }, + { + "id": "1-squirrel", + "symbol": "peanut", + "name": "OG Peanut" + }, + { + "id": "1-token", + "symbol": "1", + "name": "1" + }, + { + "id": "2004-pepe", + "symbol": "bog", + "name": "2004 PEPE" + }, + { + "id": "2025-token", + "symbol": "2025", + "name": "2025 TOKEN" + }, + { + "id": "2077-code", + "symbol": "2077", + "name": "2077 CODE" + }, + { + "id": "2080", + "symbol": "2080", + "name": "2080" + }, + { + "id": "21million", + "symbol": "21m", + "name": "21Million" + }, + { + "id": "23-turtles", + "symbol": "ai23t", + "name": "23 Turtles" + }, + { + "id": "24k-gold-pepe", + "symbol": "goldpepe", + "name": "24K Gold PEPE" + }, + { + "id": "2dai-io", + "symbol": "2dai", + "name": "2DAI.io[Old]" + }, + { + "id": "2dai-io-2", + "symbol": "2dai", + "name": "2DAI.io" + }, + { + "id": "2g-carbon-coin", + "symbol": "2gcc", + "name": "2G Carbon Coin" + }, + { + "id": "2moon", + "symbol": "moon", + "name": "2MOON" + }, + { + "id": "2-token", + "symbol": "2", + "name": "2" + }, + { + "id": "-3", + "symbol": "meow", + "name": "Meow Meow Coin" + }, + { + "id": "3000-token", + "symbol": "3000", + "name": "3000" + }, + { + "id": "360noscope420blazeit", + "symbol": "mlg", + "name": "360noscope420blazeit" + }, + { + "id": "375ai", + "symbol": "eat", + "name": "375ai" + }, + { + "id": "39a-fun", + "symbol": "39a", + "name": "39a.fun" + }, + { + "id": "3a-lending-protocol", + "symbol": "a3a", + "name": "3A" + }, + { + "id": "3bubu", + "symbol": "3bubu", + "name": "3BuBu" + }, + { + "id": "3dpass", + "symbol": "p3d", + "name": "3DPass" + }, + { + "id": "3space-art", + "symbol": "pace", + "name": "3SPACE ART" + }, + { + "id": "4", + "symbol": "four", + "name": "4" + }, + { + "id": "401jk", + "symbol": "401jk", + "name": "401jK" + }, + { + "id": "401k", + "symbol": "401k", + "name": "401K" + }, + { + "id": "404-gen", + "symbol": "sn17", + "name": "404—GEN" + }, + { + "id": "4-2", + "symbol": "4", + "name": "4" + }, + { + "id": "42069coin", + "symbol": "42069coin", + "name": "42069COIN" + }, + { + "id": "4-2-aminoethyl-benzene-1-2-diol", + "symbol": "dopamine", + "name": "4-(2-Aminoethyl)benzene-1,2-diol" + }, + { + "id": "42-coin", + "symbol": "42", + "name": "42-coin" + }, + { + "id": "4444-token", + "symbol": "4444", + "name": "4444" + }, + { + "id": "4547-token", + "symbol": "4547", + "name": "4547" + }, + { + "id": "47th-potus", + "symbol": "trump47", + "name": "47th POTUS" + }, + { + "id": "4chan", + "symbol": "4chan", + "name": "4Chan" + }, + { + "id": "4everland", + "symbol": "4ever", + "name": "4EVERLAND" + }, + { + "id": "4gentic", + "symbol": "4gs", + "name": "4GENTIC" + }, + { + "id": "4-next-unicorn", + "symbol": "nxtu", + "name": "4 Next Unicorn" + }, + { + "id": "4nonswap", + "symbol": "4non", + "name": "4nonSwap" + }, + { + "id": "4tb-coin", + "symbol": "4tb", + "name": "4TB Coin" + }, + { + "id": "4tool-ai", + "symbol": "4tool", + "name": "4TOOL.ai" + }, + { + "id": "4trump", + "symbol": "4win", + "name": "4TRUMP" + }, + { + "id": "4-way-mirror-money", + "symbol": "4wmm", + "name": "4-Way Mirror Money" + }, + { + "id": "-5", + "symbol": "🟥🟩", + "name": "🟥🟪🟦🟩🟨🟧" + }, + { + "id": "500m-piece-of-paper", + "symbol": "paper", + "name": "$500M piece of paper" + }, + { + "id": "501-token", + "symbol": "501", + "name": "501" + }, + { + "id": "589-token", + "symbol": "589", + "name": "589" + }, + { + "id": "5ire", + "symbol": "5ire", + "name": "5ire" + }, + { + "id": "5mc", + "symbol": "5mc", + "name": "5mc" + }, + { + "id": "5tars", + "symbol": "5tars", + "name": "5TARS" + }, + { + "id": "5th-scape", + "symbol": "$5scape", + "name": "5th Scape" + }, + { + "id": "-6", + "symbol": "\" \"", + "name": "\" \"" + }, + { + "id": "666-token", + "symbol": "666", + "name": "666" + }, + { + "id": "67coin", + "symbol": "67", + "name": "67COIN" + }, + { + "id": "69420", + "symbol": "69420", + "name": "69420" + }, + { + "id": "-7", + "symbol": "∅", + "name": "Voidify" + }, + { + "id": "717ai-by-virtuals", + "symbol": "wire", + "name": "717ai by Virtuals" + }, + { + "id": "777fuckilluminatiworldwid", + "symbol": "fiw", + "name": "777FuckIlluminatiWorldwid" + }, + { + "id": "-8", + "symbol": "🔶", + "name": "🔶" + }, + { + "id": "8004-dog", + "symbol": "dog8004", + "name": "8004 Dog" + }, + { + "id": "8008-token", + "symbol": "8008", + "name": "8008" + }, + { + "id": "888coin", + "symbol": "發發發", + "name": "888Coin" + }, + { + "id": "888-token", + "symbol": "888", + "name": "888" + }, + { + "id": "88mph", + "symbol": "mph", + "name": "88mph" + }, + { + "id": "8-ball", + "symbol": "sn125", + "name": "8 Ball" + }, + { + "id": "8-bit-coin", + "symbol": "coin", + "name": "8-Bit Coin" + }, + { + "id": "8chan", + "symbol": "8chan", + "name": "8chan" + }, + { + "id": "8pay", + "symbol": "8pay", + "name": "8Pay" + }, + { + "id": "8-token", + "symbol": "8", + "name": "8" + }, + { + "id": "-9", + "symbol": "∑", + "name": "∑" + }, + { + "id": "9-5", + "symbol": "9-5", + "name": "9to5" + }, + { + "id": "99-bitcoins", + "symbol": "99btc", + "name": "99 Bitcoins" + }, + { + "id": "99starz", + "symbol": "stz", + "name": "99Starz" + }, + { + "id": "9inch", + "symbol": "9inch", + "name": "9inch" + }, + { + "id": "9mm", + "symbol": "9mm", + "name": "9mm" + }, + { + "id": "9to5io", + "symbol": "9to5", + "name": "9to5io" + }, + { + "id": "a0x", + "symbol": "a0x", + "name": "A0x" + }, + { + "id": "a16gems", + "symbol": "a16g", + "name": "a16gems" + }, + { + "id": "a16z-ai-dog", + "symbol": "tilly", + "name": "a16z AI Dog" + }, + { + "id": "a51-finance", + "symbol": "a51", + "name": "A51 Finance" + }, + { + "id": "a7a5", + "symbol": "a7a5", + "name": "A7A5" + }, + { + "id": "aaa-cat", + "symbol": "aaa", + "name": "aaa cat" + }, + { + "id": "aaai_agent-by-virtuals", + "symbol": "aaai", + "name": "AAAI_agent by Virtuals" + }, + { + "id": "aada-finance", + "symbol": "lenfi", + "name": "Lenfi" + }, + { + "id": "aadex-finance", + "symbol": "ade", + "name": "AADex Finance" + }, + { + "id": "aagent-ai", + "symbol": "aai", + "name": "Aagent.ai" + }, + { + "id": "aag-ventures", + "symbol": "aag", + "name": "AAG" + }, + { + "id": "aardvark-2", + "symbol": "vark", + "name": "Aardvark" + }, + { + "id": "aark-digital", + "symbol": "aark", + "name": "Aark Digital" + }, + { + "id": "aarna-afi-802v2", + "symbol": "afi 802v2", + "name": "aarna afi 802v2" + }, + { + "id": "aarna-atv111", + "symbol": "atv111", + "name": "aarna atv111" + }, + { + "id": "aarna-atv111-arbitrum", + "symbol": "atv111", + "name": "aarna atv111 (Arbitrum)" + }, + { + "id": "aarna-atv111-sonic", + "symbol": "atv111", + "name": "aarna atv111 (Sonic)" + }, + { + "id": "aarna-atv-808", + "symbol": "atv808", + "name": "aarna atv 808" + }, + { + "id": "aarna-atv-usdc", + "symbol": "atvusdc", + "name": "aarna atv USDC (Arbitrum)" + }, + { + "id": "aarna-atv-usdc-ethereum", + "symbol": "atvusdc", + "name": "aarna atv USDC (Ethereum)" + }, + { + "id": "aastoken", + "symbol": "aast", + "name": "AASToken" + }, + { + "id": "aave", + "symbol": "aave", + "name": "Aave" + }, + { + "id": "aave-aave", + "symbol": "aaave", + "name": "Aave AAVE" + }, + { + "id": "aave-amm-bptbalweth", + "symbol": "aammbptbalweth", + "name": "Aave AMM BptBALWETH" + }, + { + "id": "aave-amm-bptwbtcweth", + "symbol": "aammbptwbtcweth", + "name": "Aave AMM BptWBTCWETH" + }, + { + "id": "aave-amm-dai", + "symbol": "aammdai", + "name": "Aave AMM DAI" + }, + { + "id": "aave-amm-uniaaveweth", + "symbol": "aammuniaaveweth", + "name": "Aave AMM UniAAVEWETH" + }, + { + "id": "aave-amm-unibatweth", + "symbol": "aammunibatweth", + "name": "Aave AMM UniBATWETH" + }, + { + "id": "aave-amm-unicrvweth", + "symbol": "aammunicrvweth", + "name": "Aave AMM UniCRVWETH" + }, + { + "id": "aave-amm-unidaiusdc", + "symbol": "aammunidaiusdc", + "name": "Aave AMM UniDAIUSDC" + }, + { + "id": "aave-amm-unidaiweth", + "symbol": "aammunidaiweth", + "name": "Aave AMM UniDAIWETH" + }, + { + "id": "aave-amm-unilinkweth", + "symbol": "aammunilinkweth", + "name": "Aave AMM UniLINKWETH" + }, + { + "id": "aave-amm-unimkrweth", + "symbol": "aammunimkrweth", + "name": "Aave AMM UniMKRWETH" + }, + { + "id": "aave-amm-unirenweth", + "symbol": "aammunirenweth", + "name": "Aave AMM UniRENWETH" + }, + { + "id": "aave-amm-unisnxweth", + "symbol": "aammunisnxweth", + "name": "Aave AMM UniSNXWETH" + }, + { + "id": "aave-amm-uniuniweth", + "symbol": "aammuniuniweth", + "name": "Aave AMM UniUNIWETH" + }, + { + "id": "aave-amm-uniusdcweth", + "symbol": "aammuniusdcweth", + "name": "Aave AMM UniUSDCWETH" + }, + { + "id": "aave-amm-uniwbtcusdc", + "symbol": "aammuniwbtcusdc", + "name": "Aave AMM UniWBTCUSDC" + }, + { + "id": "aave-amm-uniwbtcweth", + "symbol": "aammuniwbtcweth", + "name": "Aave AMM UniWBTCWETH" + }, + { + "id": "aave-amm-uniyfiweth", + "symbol": "aammuniyfiweth", + "name": "Aave AMM UniYFIWETH" + }, + { + "id": "aave-amm-usdc", + "symbol": "aammusdc", + "name": "Aave AMM USDC" + }, + { + "id": "aave-amm-usdt", + "symbol": "aammusdt", + "name": "Aave AMM USDT" + }, + { + "id": "aave-amm-wbtc", + "symbol": "aammwbtc", + "name": "Aave AMM WBTC" + }, + { + "id": "aave-amm-weth", + "symbol": "aammweth", + "name": "Aave AMM WETH" + }, + { + "id": "aave-bal", + "symbol": "abal", + "name": "Aave BAL" + }, + { + "id": "aave-balancer-pool-token", + "symbol": "abpt", + "name": "Aave Balancer Pool Token" + }, + { + "id": "aave-bat", + "symbol": "abat", + "name": "Aave BAT" + }, + { + "id": "aave-bat-v1", + "symbol": "abat", + "name": "Aave BAT v1" + }, + { + "id": "aave-busd", + "symbol": "abusd", + "name": "Aave BUSD" + }, + { + "id": "aave-busd-v1", + "symbol": "abusd", + "name": "Aave BUSD v1" + }, + { + "id": "aave-crv", + "symbol": "acrv", + "name": "Aave CRV" + }, + { + "id": "aave-dai", + "symbol": "adai", + "name": "Aave DAI" + }, + { + "id": "aave-dai-v1", + "symbol": "adai", + "name": "Aave DAI v1" + }, + { + "id": "aave-enj", + "symbol": "aenj", + "name": "Aave ENJ" + }, + { + "id": "aave-enj-v1", + "symbol": "aenj", + "name": "Aave ENJ v1" + }, + { + "id": "aave-eth-v1", + "symbol": "aeth", + "name": "Aave ETH v1" + }, + { + "id": "aavegotchi", + "symbol": "ghst", + "name": "Aavegotchi" + }, + { + "id": "aavegotchi-alpha", + "symbol": "alpha", + "name": "Aavegotchi ALPHA" + }, + { + "id": "aavegotchi-fomo", + "symbol": "fomo", + "name": "Aavegotchi FOMO" + }, + { + "id": "aavegotchi-fud", + "symbol": "fud", + "name": "Aavegotchi FUD" + }, + { + "id": "aavegotchi-kek", + "symbol": "kek", + "name": "Aavegotchi KEK" + }, + { + "id": "aave-gusd", + "symbol": "agusd", + "name": "Aave GUSD" + }, + { + "id": "aave-interest-bearing-steth", + "symbol": "asteth", + "name": "Aave Interest Bearing STETH" + }, + { + "id": "aave-knc", + "symbol": "aknc", + "name": "Aave KNC" + }, + { + "id": "aave-knc-v1", + "symbol": "aknc", + "name": "Aave KNC v1" + }, + { + "id": "aave-link", + "symbol": "alink", + "name": "Aave LINK" + }, + { + "id": "aave-link-v1", + "symbol": "alink", + "name": "Aave LINK v1" + }, + { + "id": "aave-mana", + "symbol": "amana", + "name": "Aave MANA" + }, + { + "id": "aave-mana-v1", + "symbol": "amana", + "name": "Aave MANA v1" + }, + { + "id": "aave-mkr", + "symbol": "amkr", + "name": "Aave MKR" + }, + { + "id": "aave-mkr-v1", + "symbol": "amkr", + "name": "Aave MKR v1" + }, + { + "id": "aave-polygon-aave", + "symbol": "amaave", + "name": "Aave Polygon AAVE" + }, + { + "id": "aave-polygon-dai", + "symbol": "amdai", + "name": "Aave Polygon DAI" + }, + { + "id": "aave-polygon-usdc", + "symbol": "amusdc", + "name": "Aave Polygon USDC" + }, + { + "id": "aave-polygon-usdt", + "symbol": "amusdt", + "name": "Aave Polygon USDT" + }, + { + "id": "aave-polygon-wbtc", + "symbol": "amwbtc", + "name": "Aave Polygon WBTC" + }, + { + "id": "aave-polygon-weth", + "symbol": "amweth", + "name": "Aave Polygon WETH" + }, + { + "id": "aave-polygon-wmatic", + "symbol": "amwmatic", + "name": "Aave Polygon WMATIC" + }, + { + "id": "aave-rai", + "symbol": "arai", + "name": "Aave RAI" + }, + { + "id": "aave-ren", + "symbol": "aren", + "name": "Aave REN" + }, + { + "id": "aave-ren-v1", + "symbol": "aren", + "name": "Aave REN v1" + }, + { + "id": "aave-snx", + "symbol": "asnx", + "name": "Aave SNX" + }, + { + "id": "aave-snx-v1", + "symbol": "asnx", + "name": "Aave SNX v1" + }, + { + "id": "aave-stkgho", + "symbol": "stkgho", + "name": "Aave stkGHO" + }, + { + "id": "aave-susd", + "symbol": "asusd", + "name": "Aave SUSD" + }, + { + "id": "aave-susd-v1", + "symbol": "asusd", + "name": "Aave SUSD v1" + }, + { + "id": "aave-tusd", + "symbol": "atusd", + "name": "Aave TUSD" + }, + { + "id": "aave-tusd-v1", + "symbol": "atusd", + "name": "Aave TUSD v1" + }, + { + "id": "aave-uni", + "symbol": "auni", + "name": "Aave UNI" + }, + { + "id": "aave-usdc", + "symbol": "ausdc", + "name": "Aave v2 USDC" + }, + { + "id": "aave-usdc-linea", + "symbol": "alinusdc", + "name": "Aave USDC (Linea)" + }, + { + "id": "aave-usdc-sonic", + "symbol": "asonusdc", + "name": "Aave USDC (Sonic)" + }, + { + "id": "aave-usdc-v1", + "symbol": "ausdc", + "name": "Aave v1 USDC" + }, + { + "id": "aave-usdt", + "symbol": "ausdt", + "name": "Aave USDT" + }, + { + "id": "aave-usdt-v1", + "symbol": "ausdt", + "name": "Aave USDT v1" + }, + { + "id": "aave-v3-1inch", + "symbol": "a1inch", + "name": "Aave v3 1INCH" + }, + { + "id": "aave-v3-aave", + "symbol": "aaave", + "name": "Aave v3 AAVE" + }, + { + "id": "aave-v3-ageur", + "symbol": "aageur", + "name": "Aave v3 agEUR" + }, + { + "id": "aave-v3-arb", + "symbol": "aarb", + "name": "Aave v3 ARB" + }, + { + "id": "aave-v3-bal", + "symbol": "abal", + "name": "Aave v3 BAL" + }, + { + "id": "aave-v3-btc-b", + "symbol": "abtc.b", + "name": "Aave v3 BTC.b" + }, + { + "id": "aave-v3-cbeth", + "symbol": "acbeth", + "name": "Aave v3 cbETH" + }, + { + "id": "aave-v3-crv", + "symbol": "acrv", + "name": "Aave v3 CRV" + }, + { + "id": "aave-v3-dai", + "symbol": "adai", + "name": "Aave v3 DAI" + }, + { + "id": "aave-v3-dpi", + "symbol": "adpi", + "name": "Aave v3 DPI" + }, + { + "id": "aave-v3-ens", + "symbol": "aens", + "name": "Aave v3 ENS" + }, + { + "id": "aave-v3-eure", + "symbol": "aeure", + "name": "Aave v3 EURe" + }, + { + "id": "aave-v3-eurs", + "symbol": "aeurs", + "name": "Aave v3 EURS" + }, + { + "id": "aave-v3-frax", + "symbol": "afrax", + "name": "Aave v3 FRAX" + }, + { + "id": "aave-v3-ghst", + "symbol": "aghst", + "name": "Aave v3 GHST" + }, + { + "id": "aave-v3-gno", + "symbol": "agno", + "name": "Aave v3 GNO" + }, + { + "id": "aave-v3-knc", + "symbol": "aknc", + "name": "Aave v3 KNC" + }, + { + "id": "aave-v3-ldo", + "symbol": "aldo", + "name": "Aave v3 LDO" + }, + { + "id": "aave-v3-link", + "symbol": "alink", + "name": "Aave v3 LINK" + }, + { + "id": "aave-v3-lusd", + "symbol": "alusd", + "name": "Aave v3 LUSD" + }, + { + "id": "aave-v3-mai", + "symbol": "amai", + "name": "Aave v3 MAI" + }, + { + "id": "aave-v3-maticx", + "symbol": "amaticx", + "name": "Aave v3 MaticX" + }, + { + "id": "aave-v3-metis", + "symbol": "ametis", + "name": "Aave v3 Metis" + }, + { + "id": "aave-v3-mkr", + "symbol": "amkr", + "name": "Aave v3 MKR" + }, + { + "id": "aave-v3-op", + "symbol": "aop", + "name": "Aave v3 OP" + }, + { + "id": "aave-v3-reth", + "symbol": "areth", + "name": "Aave v3 rETH" + }, + { + "id": "aave-v3-rpl", + "symbol": "arpl", + "name": "Aave v3 RPL" + }, + { + "id": "aave-v3-savax", + "symbol": "asavax", + "name": "Aave v3 sAVAX" + }, + { + "id": "aave-v3-sdai", + "symbol": "asdai", + "name": "Aave v3 sDAI" + }, + { + "id": "aave-v3-snx", + "symbol": "asnx", + "name": "Aave v3 SNX" + }, + { + "id": "aave-v3-stg", + "symbol": "astg", + "name": "Aave v3 STG" + }, + { + "id": "aave-v3-stmatic", + "symbol": "astmatic", + "name": "Aave v3 stMATIC" + }, + { + "id": "aave-v3-susd", + "symbol": "asusd", + "name": "Aave v3 sUSD" + }, + { + "id": "aave-v3-sushi", + "symbol": "asushi", + "name": "Aave v3 SUSHI" + }, + { + "id": "aave-v3-uni", + "symbol": "auni", + "name": "Aave v3 UNI" + }, + { + "id": "aave-v3-usdbc", + "symbol": "abasusdbc", + "name": "Aave v3 aBasUSDbC" + }, + { + "id": "aave-v3-usdc", + "symbol": "ausdc", + "name": "Aave v3 USDC" + }, + { + "id": "aave-v3-usdc-e", + "symbol": "ausdc.e", + "name": "Aave v3 USDC.e" + }, + { + "id": "aave-v3-usdt", + "symbol": "ausdt", + "name": "Aave v3 USDT" + }, + { + "id": "aave-v3-wavax", + "symbol": "awavax", + "name": "Aave v3 WAVAX" + }, + { + "id": "aave-v3-wbtc", + "symbol": "awbtc", + "name": "Aave v3 WBTC" + }, + { + "id": "aave-v3-weth", + "symbol": "aweth", + "name": "Aave v3 WETH" + }, + { + "id": "aave-v3-wmatic", + "symbol": "awmatic", + "name": "Aave v3 WMATIC" + }, + { + "id": "aave-v3-wsteth", + "symbol": "awsteth", + "name": "Aave v3 wstETH" + }, + { + "id": "aave-wbtc", + "symbol": "awbtc", + "name": "Aave WBTC" + }, + { + "id": "aave-wbtc-v1", + "symbol": "awbtc", + "name": "Aave WBTC v1" + }, + { + "id": "aave-weth", + "symbol": "aweth", + "name": "Aave WETH" + }, + { + "id": "aave-xsushi", + "symbol": "axsushi", + "name": "Aave XSUSHI" + }, + { + "id": "aave-yfi", + "symbol": "ayfi", + "name": "Aave YFI" + }, + { + "id": "aave-yvault", + "symbol": "yvaave", + "name": "Aave yVault" + }, + { + "id": "aave-zrx", + "symbol": "azrx", + "name": "Aave ZRX" + }, + { + "id": "aave-zrx-v1", + "symbol": "azrx", + "name": "Aave ZRX v1" + }, + { + "id": "ab4ad-antibodies-for-alzheimer-s-disease", + "symbol": "ab4ad", + "name": "AB4AD (Antibodies for Alzheimer's Disease)" + }, + { + "id": "abax", + "symbol": "abax", + "name": "Abax" + }, + { + "id": "abble", + "symbol": "aabl", + "name": "Abble" + }, + { + "id": "abbott-ondo-tokenized-stock", + "symbol": "abton", + "name": "Abbott (Ondo Tokenized Stock)" + }, + { + "id": "abbott-xstock", + "symbol": "abtx", + "name": "Abbott xStock" + }, + { + "id": "abbvie-xstock", + "symbol": "abbvx", + "name": "AbbVie xStock" + }, + { + "id": "abc", + "symbol": "abc", + "name": "ABC" + }, + { + "id": "abcde-coin", + "symbol": "abcde", + "name": "abcde coin" + }, + { + "id": "abcnuri", + "symbol": "abcnuri", + "name": "abcNURI" + }, + { + "id": "abcphar", + "symbol": "abcphar", + "name": "abcPHAR" + }, + { + "id": "abc-pos-pool", + "symbol": "abc", + "name": "ABC PoS Pool" + }, + { + "id": "abds-token", + "symbol": "abds", + "name": "ABDS Token" + }, + { + "id": "abdulrozik-s-camel", + "symbol": "burgiir", + "name": "Abdulrozik's Camel" + }, + { + "id": "abe", + "symbol": "abe", + "name": "ABE" + }, + { + "id": "abe-2", + "symbol": "abe", + "name": "Abe" + }, + { + "id": "abe-cto", + "symbol": "abe", + "name": "ABE CTO" + }, + { + "id": "abel-finance", + "symbol": "abel", + "name": "ABEL Finance" + }, + { + "id": "abelian", + "symbol": "abel", + "name": "Abelian" + }, + { + "id": "abey", + "symbol": "abey", + "name": "Abey" + }, + { + "id": "ab-group", + "symbol": "abg", + "name": "AB Group" + }, + { + "id": "abi", + "symbol": "abi", + "name": "Abi" + }, + { + "id": "able-finance", + "symbol": "able", + "name": "Able Finance" + }, + { + "id": "aboard", + "symbol": "abe", + "name": "Aboard" + }, + { + "id": "aboat-token-2", + "symbol": "aboat", + "name": "Aboat Token" + }, + { + "id": "abond", + "symbol": "abond", + "name": "ApeBond" + }, + { + "id": "aborean", + "symbol": "abx", + "name": "Aborean" + }, + { + "id": "abschad", + "symbol": "chad", + "name": "ABSCHAD" + }, + { + "id": "absglorp", + "symbol": "glorp", + "name": "ABSGLORP" + }, + { + "id": "abster", + "symbol": "abster", + "name": "Abster" + }, + { + "id": "absters-girl", + "symbol": "abby", + "name": "Absters Girl" + }, + { + "id": "abstract-bridged-usdt-abstract", + "symbol": "usdt", + "name": "Abstract Bridged USDT (Abstract)" + }, + { + "id": "abstract-liquid-staked-eth", + "symbol": "abseth", + "name": "Abstract Liquid Staked ETH" + }, + { + "id": "abtc", + "symbol": "abtc", + "name": "aBTC" + }, + { + "id": "abuwtiyuw", + "symbol": "abu", + "name": "Abuwtiyuw" + }, + { + "id": "abyss-world", + "symbol": "awt", + "name": "Abyss World" + }, + { + "id": "acala", + "symbol": "aca", + "name": "Acala" + }, + { + "id": "accel-finance-coin", + "symbol": "afc", + "name": "Accel Finance Coin" + }, + { + "id": "accenture-ondo-tokenized-stock", + "symbol": "acnon", + "name": "Accenture (Ondo Tokenized Stock)" + }, + { + "id": "accenture-xstock", + "symbol": "acnx", + "name": "Accenture xStock" + }, + { + "id": "access-protocol", + "symbol": "acs", + "name": "Access Protocol" + }, + { + "id": "accumulated-finance", + "symbol": "acfi", + "name": "Accumulated Finance" + }, + { + "id": "accumulated-finance-staked-manta", + "symbol": "stmanta", + "name": "Accumulated Finance Staked MANTA" + }, + { + "id": "accumulated-finance-staked-rose", + "symbol": "strose", + "name": "Accumulated Finance Staked ROSE" + }, + { + "id": "accumulated-finance-staked-zeta", + "symbol": "stzeta", + "name": "Accumulated Finance Staked ZETA" + }, + { + "id": "ace-data-cloud", + "symbol": "$ace", + "name": "Ace Data Cloud" + }, + { + "id": "acent", + "symbol": "ace", + "name": "Acent" + }, + { + "id": "aces-fun", + "symbol": "aces", + "name": "ACES.fun" + }, + { + "id": "acet-token", + "symbol": "act", + "name": "Acet" + }, + { + "id": "achain", + "symbol": "act", + "name": "Achain" + }, + { + "id": "achi", + "symbol": "achi", + "name": "achi" + }, + { + "id": "achi-inu", + "symbol": "achi", + "name": "ACHI INU" + }, + { + "id": "acid-ai", + "symbol": "acid", + "name": "Acid AI" + }, + { + "id": "acid-toad", + "symbol": "toad", + "name": "Acid Toad" + }, + { + "id": "acki-nacki", + "symbol": "nackl", + "name": "Acki Nacki" + }, + { + "id": "acmfinance", + "symbol": "acm", + "name": "acmFinance" + }, + { + "id": "ac-milan-fan-token", + "symbol": "acm", + "name": "AC Milan Fan Token" + }, + { + "id": "a-coin", + "symbol": "coin", + "name": "a coin" + }, + { + "id": "acolyte-by-virtuals", + "symbol": "acolyt", + "name": "Acolyt" + }, + { + "id": "acore-ai-token", + "symbol": "acore", + "name": "ACORE AI Token" + }, + { + "id": "acquire-fi", + "symbol": "acq", + "name": "Acquire.Fi" + }, + { + "id": "across-protocol", + "symbol": "acx", + "name": "Across Protocol" + }, + { + "id": "acryptos", + "symbol": "acs", + "name": "ACryptoS [OLD]" + }, + { + "id": "acryptos-2", + "symbol": "acs", + "name": "ACryptoS" + }, + { + "id": "act-b-the-bonk-prophecy", + "symbol": "act b", + "name": "ACT B : The Bonk Prophecy" + }, + { + "id": "act-ii-the-ai-obesity", + "symbol": "actii", + "name": "Act II : The AI Obesity" + }, + { + "id": "act-ii-the-peanut-prophecy", + "symbol": "actp", + "name": "Act II: The Peanut Prophecy" + }, + { + "id": "action-figure", + "symbol": "figure", + "name": "Action Figure" + }, + { + "id": "act-i-the-ai-prophecy", + "symbol": "act", + "name": "Act I The AI Prophecy" + }, + { + "id": "active-token", + "symbol": "active", + "name": "Active Token" + }, + { + "id": "actual", + "symbol": "actual", + "name": "ACTUAL" + }, + { + "id": "acurast", + "symbol": "acu", + "name": "Acurast" + }, + { + "id": "adacash", + "symbol": "adacash", + "name": "ADAcash" + }, + { + "id": "adadao", + "symbol": "adao", + "name": "ADADao" + }, + { + "id": "adamant", + "symbol": "addy", + "name": "Adamant" + }, + { + "id": "adamant-messenger", + "symbol": "adm", + "name": "ADAMANT Messenger" + }, + { + "id": "adapad", + "symbol": "adapad", + "name": "ADAPad" + }, + { + "id": "ada-peepos", + "symbol": "fren", + "name": "FREN" + }, + { + "id": "adappter-token", + "symbol": "adp", + "name": "Adappter" + }, + { + "id": "adapt3r-digital-treasury-bill-fund", + "symbol": "tfbill", + "name": "Adapt3r Digital Treasury Bill Fund" + }, + { + "id": "ada-the-dog", + "symbol": "adasol", + "name": "ADA" + }, + { + "id": "add-finance", + "symbol": "add", + "name": "Add Finance" + }, + { + "id": "addickted", + "symbol": "dic", + "name": "adDICted" + }, + { + "id": "addon-ai", + "symbol": "addon", + "name": "AddOn Ai" + }, + { + "id": "adex", + "symbol": "adx", + "name": "AdEx" + }, + { + "id": "adillo", + "symbol": "adillo", + "name": "Adillo" + }, + { + "id": "adi-token", + "symbol": "adi", + "name": "ADI Token" + }, + { + "id": "adix", + "symbol": "adix", + "name": "Adix" + }, + { + "id": "adobe-ondo-tokenized-stock", + "symbol": "adbeon", + "name": "Adobe (Ondo Tokenized Stock)" + }, + { + "id": "adobe-xstock", + "symbol": "adbex", + "name": "Adobe xStock" + }, + { + "id": "ado-network", + "symbol": "ado", + "name": "ADO Protocol" + }, + { + "id": "adonis-2", + "symbol": "adon", + "name": "Adonis" + }, + { + "id": "adopt", + "symbol": "adopt", + "name": "ADOPT" + }, + { + "id": "adrena", + "symbol": "adx", + "name": "Adrena" + }, + { + "id": "adreward", + "symbol": "ad", + "name": "ADreward" + }, + { + "id": "adroverse", + "symbol": "adr", + "name": "Adroverse" + }, + { + "id": "adshares", + "symbol": "ads", + "name": "Adshares" + }, + { + "id": "adult-playground", + "symbol": "adult", + "name": "Adult Playground" + }, + { + "id": "advanced-mortgage-and-reserve", + "symbol": "amr", + "name": "Advanced Mortgage & Reserve" + }, + { + "id": "advanced-united-continent", + "symbol": "auc", + "name": "Advanced United Continent" + }, + { + "id": "adventure-gold", + "symbol": "agld", + "name": "Adventure Gold" + }, + { + "id": "advertise-coin", + "symbol": "adco", + "name": "Advertise Coin" + }, + { + "id": "adzilla", + "symbol": "adzilla", + "name": "AdZilla" + }, + { + "id": "aegents", + "symbol": "aegnt", + "name": "Aegents" + }, + { + "id": "aegis-ai", + "symbol": "aegis", + "name": "Aegis Ai" + }, + { + "id": "aegis-yusd", + "symbol": "yusd", + "name": "Aegis YUSD" + }, + { + "id": "aegon", + "symbol": "aegon", + "name": "AEGON by Virtuals" + }, + { + "id": "aejo", + "symbol": "aejo", + "name": "Aejo" + }, + { + "id": "aelf", + "symbol": "elf", + "name": "aelf" + }, + { + "id": "aelin", + "symbol": "aelin", + "name": "Aelin" + }, + { + "id": "aeonix-network", + "symbol": "onix", + "name": "Aeonix Network" + }, + { + "id": "aergo", + "symbol": "aergo", + "name": "Aergo" + }, + { + "id": "aerobud", + "symbol": "aerobud", + "name": "AEROBUD" + }, + { + "id": "aerodrome-finance", + "symbol": "aero", + "name": "Aerodrome Finance" + }, + { + "id": "aeron", + "symbol": "arnx", + "name": "Aeron" + }, + { + "id": "aerosol", + "symbol": "aerosol", + "name": "aeroSOL" + }, + { + "id": "aesirx", + "symbol": "aesirx", + "name": "AesirX" + }, + { + "id": "aesoperator", + "symbol": "aesoperator", + "name": "Aesoperator" + }, + { + "id": "aeternity", + "symbol": "ae", + "name": "Aeternity" + }, + { + "id": "aether-ai", + "symbol": "aethr", + "name": "Aether AI" + }, + { + "id": "aether-collective", + "symbol": "aether", + "name": "aether collective" + }, + { + "id": "aether-games", + "symbol": "aeg", + "name": "Aether Games" + }, + { + "id": "aetherius-infinite-chain", + "symbol": "aic", + "name": "Aetherius Infinite Chain" + }, + { + "id": "aethernet", + "symbol": "aether", + "name": "Aethernet" + }, + { + "id": "aethir", + "symbol": "ath", + "name": "Aethir" + }, + { + "id": "aethra-ai", + "symbol": "aethra", + "name": "Aethra AI" + }, + { + "id": "aeusd", + "symbol": "aeusd", + "name": "aeUSD" + }, + { + "id": "aevo-exchange", + "symbol": "aevo", + "name": "Aevo" + }, + { + "id": "aevum-ore", + "symbol": "aevum", + "name": "Aevum" + }, + { + "id": "aexys-dollar", + "symbol": "axd", + "name": "Aesyx Dollar" + }, + { + "id": "afen-blockchain", + "symbol": "afen", + "name": "AFEN Blockchain" + }, + { + "id": "affine", + "symbol": "sn120", + "name": "affine" + }, + { + "id": "affi-network", + "symbol": "affi", + "name": "Affi Network" + }, + { + "id": "affinity", + "symbol": "afnty", + "name": "Affinity" + }, + { + "id": "affyn", + "symbol": "fyn", + "name": "Affyn" + }, + { + "id": "afreum", + "symbol": "afr", + "name": "Afreum" + }, + { + "id": "africa-kids-token", + "symbol": "akids", + "name": "Africa Kids Token" + }, + { + "id": "africarare", + "symbol": "ubu", + "name": "Africarare" + }, + { + "id": "afrostar", + "symbol": "afro", + "name": "Afrostar" + }, + { + "id": "afterhour", + "symbol": "ah", + "name": "AfterHour" + }, + { + "id": "aftermath-staked-sui", + "symbol": "afsui", + "name": "Aftermath Staked SUI" + }, + { + "id": "a-fund-baby", + "symbol": "baby", + "name": "A Fund Baby" + }, + { + "id": "aga-rewards", + "symbol": "edc", + "name": "Edcoin" + }, + { + "id": "agatech", + "symbol": "agata", + "name": "Agatech" + }, + { + "id": "aga-token", + "symbol": "aga", + "name": "AGA" + }, + { + "id": "agave-token", + "symbol": "agve", + "name": "Agave" + }, + { + "id": "agawa", + "symbol": "agawa", + "name": "AGAWA" + }, + { + "id": "agenda-47", + "symbol": "a47", + "name": "AGENDA 47" + }, + { + "id": "agenius", + "symbol": "agns", + "name": "Agenius" + }, + { + "id": "agent2025", + "symbol": "agent2025", + "name": "Agent2025" + }, + { + "id": "agent4x", + "symbol": "agent4x", + "name": "Agent4X" + }, + { + "id": "agentaigo", + "symbol": "agent", + "name": "AgentAlgo" + }, + { + "id": "agent-arena-by-masa", + "symbol": "sn59", + "name": "Agent Arena by Masa" + }, + { + "id": "agentbank-x402-protocol", + "symbol": "agentbank", + "name": "AgentBank x402 Protocol" + }, + { + "id": "agent-bapo", + "symbol": "bapo", + "name": "AGENT BAPO" + }, + { + "id": "agentcoin-tv", + "symbol": "aitv", + "name": "AITV" + }, + { + "id": "agent-daredevil", + "symbol": "dare", + "name": "Agent Daredevil" + }, + { + "id": "agent-doge-by-virtuals", + "symbol": "aidoge", + "name": "AGENT DOGE by Virtuals" + }, + { + "id": "agent-dora", + "symbol": "ad", + "name": "Agent DORA" + }, + { + "id": "agentforge", + "symbol": "age", + "name": "AgentForge" + }, + { + "id": "agentfun-ai", + "symbol": "agentfun", + "name": "AgentFun.AI" + }, + { + "id": "agent-gecko-tv", + "symbol": "gecko", + "name": "Agent Gecko TV" + }, + { + "id": "agenthub", + "symbol": "dira", + "name": "AgentHub" + }, + { + "id": "agent-hustle", + "symbol": "hustle", + "name": "Agent Hustle" + }, + { + "id": "agentic-open-economy", + "symbol": "aoe", + "name": "Agentic Open Economy" + }, + { + "id": "agentic-studio", + "symbol": "agentic", + "name": "Agentic Studio" + }, + { + "id": "agentify-ai", + "symbol": "agf", + "name": "Agentify AI" + }, + { + "id": "agentik-dex", + "symbol": "agentik", + "name": "Agentik DEX" + }, + { + "id": "agentipy", + "symbol": "apy", + "name": "AgentiPy" + }, + { + "id": "agentlauncher-token-cvai", + "symbol": "cvai", + "name": "Agentlauncher" + }, + { + "id": "agentlayer", + "symbol": "agent", + "name": "AgentLayer" + }, + { + "id": "agently", + "symbol": "agi", + "name": "Agently" + }, + { + "id": "a-gently-used-2001-honda", + "symbol": "usedcar", + "name": "A Gently Used 2001 Honda" + }, + { + "id": "a-gently-used-couch", + "symbol": "$couch", + "name": "A Gently Used Couch" + }, + { + "id": "a-gently-used-nokia-3310", + "symbol": "usedphone", + "name": "A Gently Used Nokia 3310" + }, + { + "id": "agentme", + "symbol": "agme", + "name": "AgentMe" + }, + { + "id": "agentory", + "symbol": "agnt", + "name": "Agentory" + }, + { + "id": "agent-rogue", + "symbol": "rogue", + "name": "Agent Rogue" + }, + { + "id": "agent-s", + "symbol": "s", + "name": "Agent S" + }, + { + "id": "agents-ai", + "symbol": "agent", + "name": "Agents AI" + }, + { + "id": "agentsgpt", + "symbol": "aigpt", + "name": "AgentsGPT" + }, + { + "id": "agent-smith", + "symbol": "smith", + "name": "Agent Smith" + }, + { + "id": "agentsys-ai", + "symbol": "agsys", + "name": "AGENTSYS AI" + }, + { + "id": "agenttank", + "symbol": "tank", + "name": "AgentTank" + }, + { + "id": "agent-ted", + "symbol": "ted", + "name": "Agent Ted" + }, + { + "id": "agent-vilady-tv", + "symbol": "vilady", + "name": "Agent Vilady TV" + }, + { + "id": "agent-virtual-machine", + "symbol": "avm", + "name": "Agent Virtual Machine" + }, + { + "id": "agentwood", + "symbol": "aws", + "name": "Agentwood" + }, + { + "id": "agentxbt", + "symbol": "agxbt", + "name": "AgentXBT" + }, + { + "id": "agent-yp-by-virtuals", + "symbol": "aiyp", + "name": "Agent YP by Virtuals" + }, + { + "id": "agent-zeek-by-virtuals", + "symbol": "zeek", + "name": "Agent Zeek by Virtuals" + }, + { + "id": "agent-zero", + "symbol": "$wsb", + "name": "Agent Zero" + }, + { + "id": "agent-zero-by-virtuals", + "symbol": "zero", + "name": "Agent Zero by Virtuals" + }, + { + "id": "agent-zero-token", + "symbol": "a0t", + "name": "Agent Zero Token" + }, + { + "id": "ageofgods", + "symbol": "aog", + "name": "AgeOfGods" + }, + { + "id": "ageur", + "symbol": "eura", + "name": "EURA" + }, + { + "id": "agi-alpha-agent", + "symbol": "agialpha", + "name": "AGI ALPHA AGENT" + }, + { + "id": "agi-cult", + "symbol": "agi", + "name": "AGI cult" + }, + { + "id": "agii", + "symbol": "agii", + "name": "AGII" + }, + { + "id": "agility", + "symbol": "agi", + "name": "Agility" + }, + { + "id": "agio", + "symbol": "agio", + "name": "Agio" + }, + { + "id": "agistry", + "symbol": "agi", + "name": "AGISTRY" + }, + { + "id": "agixbt-by-virtuals", + "symbol": "agixbt", + "name": "AGIXBT by Virtuals" + }, + { + "id": "agixt", + "symbol": "agixt", + "name": "AGiXT" + }, + { + "id": "agnus-ai", + "symbol": "agn", + "name": "Agnus AI" + }, + { + "id": "ago", + "symbol": "ago", + "name": "ago" + }, + { + "id": "agok", + "symbol": "agok", + "name": "Agok" + }, + { + "id": "agora-by-virtuals", + "symbol": "agora", + "name": "Agora by Virtuals" + }, + { + "id": "agora-dollar", + "symbol": "ausd", + "name": "AUSD" + }, + { + "id": "agorahub", + "symbol": "aga", + "name": "AgoraHub" + }, + { + "id": "agoras-currency-of-tau", + "symbol": "agrs", + "name": "Agoras: Tau Net" + }, + { + "id": "agoric", + "symbol": "bld", + "name": "Agoric" + }, + { + "id": "agridex-governance-token", + "symbol": "agri", + "name": "AgriDex" + }, + { + "id": "agri-future-token", + "symbol": "agrf", + "name": "AGRI FUTURE TOKEN" + }, + { + "id": "agro-global", + "symbol": "agro", + "name": "Agro Global Token" + }, + { + "id": "aguri-chan", + "symbol": "aguri", + "name": "Aguri-Chan" + }, + { + "id": "agus", + "symbol": "agus", + "name": "AGUS" + }, + { + "id": "a-hathor", + "symbol": "ahtr", + "name": "a-Hathor" + }, + { + "id": "ahatoken", + "symbol": "aht", + "name": "AhaToken" + }, + { + "id": "a-hunters-dream", + "symbol": "caw", + "name": "A Hunters Dream" + }, + { + "id": "ai", + "symbol": "ai4", + "name": "AI⁴" + }, + { + "id": "ai16z", + "symbol": "ai16z", + "name": "ai16z" + }, + { + "id": "ai16zeliza", + "symbol": "eliza", + "name": "ai16zeliza" + }, + { + "id": "ai16zterminalfartarczerellmswarm", + "symbol": "gudtek", + "name": "ai16zterminalfartARCzereLLMswarm" + }, + { + "id": "ai20x-ai", + "symbol": "ai20x", + "name": "Ai20x.ai" + }, + { + "id": "ai404", + "symbol": "$error", + "name": "AI404" + }, + { + "id": "ai69x", + "symbol": "ai69x", + "name": "ai69x" + }, + { + "id": "ai9000", + "symbol": "ai9000", + "name": "ai9000" + }, + { + "id": "ai99x", + "symbol": "ai99x", + "name": "ai99x" + }, + { + "id": "aia", + "symbol": "aia", + "name": "DeAgentAI" + }, + { + "id": "ai-agent-factory", + "symbol": "aiaf", + "name": "AI Agent Factory" + }, + { + "id": "a-i-agent-kaia", + "symbol": "kaia", + "name": "A.I Agent kAia" + }, + { + "id": "ai-agent-layer", + "symbol": "aifun", + "name": "AI Agent Layer" + }, + { + "id": "ai-analysis-token", + "symbol": "aiat", + "name": "AI Analysis Token" + }, + { + "id": "aiapis", + "symbol": "apis", + "name": "aiAPIS" + }, + { + "id": "ai-auctions", + "symbol": "auc", + "name": "AI Auctions" + }, + { + "id": "aibeats", + "symbol": "aibeats", + "name": "aibeats" + }, + { + "id": "aibot-iyi", + "symbol": "aib", + "name": "$AIBOT IYI" + }, + { + "id": "aibrk", + "symbol": "aibrk", + "name": "aibrk" + }, + { + "id": "aicat", + "symbol": "aicat", + "name": "AICAT" + }, + { + "id": "aiccelerate", + "symbol": "aicc", + "name": "Aiccelerate" + }, + { + "id": "aicean", + "symbol": "aice", + "name": "Aicean" + }, + { + "id": "aicell", + "symbol": "aicell", + "name": "AICell" + }, + { + "id": "aichain", + "symbol": "ait", + "name": "AICHAIN" + }, + { + "id": "aicm-marketplace", + "symbol": "aicm", + "name": "AICM Marketplace" + }, + { + "id": "ai-code", + "symbol": "aicode", + "name": "AI CODE" + }, + { + "id": "aicoin-2", + "symbol": "ai", + "name": "AICoin" + }, + { + "id": "aicoin-3", + "symbol": "aicoin", + "name": "AICOIN" + }, + { + "id": "ai-com", + "symbol": "ai.com", + "name": "AI.COM" + }, + { + "id": "ai-community", + "symbol": "ai", + "name": "AI Community" + }, + { + "id": "ai-companions", + "symbol": "aic", + "name": "AI Companions" + }, + { + "id": "aicre8", + "symbol": "aicre8", + "name": "AICre8" + }, + { + "id": "aicrew", + "symbol": "aicr", + "name": "AICrew" + }, + { + "id": "aicrostrategy", + "symbol": "aistr", + "name": "AicroStrategy [Old]" + }, + { + "id": "aicrostrategy-2", + "symbol": "aistr", + "name": "AicroStrategy" + }, + { + "id": "ai-crystal-node", + "symbol": "aicrynode", + "name": "AI Crystal Node" + }, + { + "id": "aid", + "symbol": "aid", + "name": "AID" + }, + { + "id": "aida", + "symbol": "aida", + "name": "AIDA" + }, + { + "id": "aidaovc", + "symbol": "aidaovc", + "name": "aiDAOvc" + }, + { + "id": "ai-dev-agent", + "symbol": "aidev", + "name": "AI Dev Agent" + }, + { + "id": "aidi-finance-2", + "symbol": "aidi", + "name": "Aidi Finance" + }, + { + "id": "ai-factory", + "symbol": "sn80", + "name": "AI Factory" + }, + { + "id": "aiflow-token", + "symbol": "aft", + "name": "AIFlow Token" + }, + { + "id": "ai-gcr", + "symbol": "$aigcr", + "name": "Ai GCR" + }, + { + "id": "aigentx", + "symbol": "agx", + "name": "AGIX" + }, + { + "id": "aigg", + "symbol": "$aigg", + "name": "AIGG" + }, + { + "id": "ai-god", + "symbol": "aig", + "name": "AI GOD" + }, + { + "id": "aigov", + "symbol": "olivia", + "name": "AIGOV" + }, + { + "id": "ai-inu", + "symbol": "aiinu", + "name": "AI INU" + }, + { + "id": "aiiy", + "symbol": "aiiy", + "name": "AIIY" + }, + { + "id": "ai-judge-companion", + "symbol": "ajc", + "name": "AI Judge Companion" + }, + { + "id": "aiki", + "symbol": "aiki", + "name": "Aiki" + }, + { + "id": "ailayer-token", + "symbol": "ail", + "name": "AILayer Token" + }, + { + "id": "ailive", + "symbol": "ailive", + "name": "ailive" + }, + { + "id": "aimalls", + "symbol": "ait", + "name": "AiMalls" + }, + { + "id": "ai-market-compass", + "symbol": "aim", + "name": "AI Market Compass" + }, + { + "id": "aimbot", + "symbol": "aimbot", + "name": "Aimbot AI" + }, + { + "id": "aimedis-new", + "symbol": "aimx", + "name": "AIMX" + }, + { + "id": "aimerica", + "symbol": "uai", + "name": "AIMERICA" + }, + { + "id": "ai-meta-club", + "symbol": "amc", + "name": "AI Meta Club" + }, + { + "id": "aimonica-brands", + "symbol": "aimonica", + "name": "Aimonica Brands" + }, + { + "id": "ainalyst", + "symbol": "ain", + "name": "AInalyst" + }, + { + "id": "ainalyzr", + "symbol": "ainal", + "name": "AInalyzr" + }, + { + "id": "ainara", + "symbol": "ainara", + "name": "Ainara" + }, + { + "id": "ai-network", + "symbol": "ain", + "name": "AI Network" + }, + { + "id": "ai-nexus", + "symbol": "a1x", + "name": "AI Nexus" + }, + { + "id": "aintivirus", + "symbol": "ainti", + "name": "AIntivirus" + }, + { + "id": "aintivirus-2", + "symbol": "ainti", + "name": "AIntivirus" + }, + { + "id": "ainu-token", + "symbol": "ainu", + "name": "Ainu" + }, + { + "id": "aion", + "symbol": "aion", + "name": "Aion" + }, + { + "id": "aion-5100", + "symbol": "aion", + "name": "AION 5100" + }, + { + "id": "aionix-the-hub-of-ai", + "symbol": "aionix", + "name": "Aionix, the Hub of AI" + }, + { + "id": "aios-foundation", + "symbol": "aios", + "name": "AIOS Foundation" + }, + { + "id": "aioz-network", + "symbol": "aioz", + "name": "AIOZ Network" + }, + { + "id": "aipad", + "symbol": "aipad", + "name": "AIPad" + }, + { + "id": "ai-pepe-king", + "symbol": "aipepe", + "name": "AI PEPE KING" + }, + { + "id": "aipets", + "symbol": "aipets", + "name": "Aipets" + }, + { + "id": "ai-pin", + "symbol": "ai", + "name": "AI PIN" + }, + { + "id": "aipocalypto", + "symbol": "aipo", + "name": "Aipocalypto" + }, + { + "id": "ai-powered-cmp", + "symbol": "aicmp", + "name": "AI-Powered CMP" + }, + { + "id": "ai-power-grid", + "symbol": "aipg", + "name": "AI Power Grid" + }, + { + "id": "ai-powers", + "symbol": "aip", + "name": "AI Powers" + }, + { + "id": "ai-protocol-2", + "symbol": "ai", + "name": "AI Protocol" + }, + { + "id": "aiptp", + "symbol": "atmt", + "name": "AiPTP" + }, + { + "id": "aipump", + "symbol": "aipump", + "name": "aiPump" + }, + { + "id": "aiquant-fun", + "symbol": "aiq", + "name": "AIQuant.fun" + }, + { + "id": "air3-airewardrop", + "symbol": "air3", + "name": "AIR3 AIRewardrop" + }, + { + "id": "airbnb-ondo-tokenized-stock", + "symbol": "abnbon", + "name": "Airbnb (Ondo Tokenized Stock)" + }, + { + "id": "airbtc", + "symbol": "airbtc", + "name": "AirBTC" + }, + { + "id": "air-coin", + "symbol": "空气币 /", + "name": "air coin" + }, + { + "id": "aircoin-3", + "symbol": "aircoin", + "name": "aircoin" + }, + { + "id": "aircoin-4", + "symbol": "aircoin", + "name": "Aircoin" + }, + { + "id": "airdao-bridged-usdc-airdao", + "symbol": "usdc", + "name": "AirDAO bridged USDC (AirDAO)" + }, + { + "id": "airena", + "symbol": "airena", + "name": "AIrena" + }, + { + "id": "airene", + "symbol": "airene", + "name": "AIRENE by Virtuals" + }, + { + "id": "airian", + "symbol": "air", + "name": "AIRian" + }, + { + "id": "ai-rig-complex", + "symbol": "arc", + "name": "AI Rig Complex" + }, + { + "id": "airight", + "symbol": "airi", + "name": "aiRight" + }, + { + "id": "airina-bolgur", + "symbol": "bolgur", + "name": "Airina Bolgur" + }, + { + "id": "airi-virtual-companion", + "symbol": "airi", + "name": "Airi Virtual Companion" + }, + { + "id": "airnft-token", + "symbol": "airt", + "name": "AirNFT" + }, + { + "id": "ai-rocket-by-virtuals", + "symbol": "rocket", + "name": "AI ROCKET by Virtuals" + }, + { + "id": "ai-router-protocol", + "symbol": "$air", + "name": "Ai Router Protocol" + }, + { + "id": "airpuff", + "symbol": "apuff", + "name": "Airpuff" + }, + { + "id": "airswap", + "symbol": "ast", + "name": "AirSwap" + }, + { + "id": "airtok-2", + "symbol": "airtok", + "name": "Airtok" + }, + { + "id": "airtor-protocol", + "symbol": "anyone", + "name": "ANyONe Protocol" + }, + { + "id": "aiscii", + "symbol": "aiscii", + "name": "AISCII" + }, + { + "id": "aishare", + "symbol": "aishare", + "name": "AIShare" + }, + { + "id": "ai-shell-nova", + "symbol": "nova", + "name": "AI Shell NOVA" + }, + { + "id": "aishiba", + "symbol": "shibai", + "name": "AiShiba" + }, + { + "id": "aisignal", + "symbol": "aisig", + "name": "AISignal" + }, + { + "id": "aisi-space", + "symbol": "aisi", + "name": "AISI SPACE" + }, + { + "id": "ai-slop", + "symbol": "aislop", + "name": "AI Slop" + }, + { + "id": "aism-faith-token", + "symbol": "aism", + "name": "AISM FAITH TOKEN" + }, + { + "id": "aisui", + "symbol": "suiagent", + "name": "aiSUI" + }, + { + "id": "aitaxbot", + "symbol": "aitax", + "name": "AITaxBot" + }, + { + "id": "ait-protocol", + "symbol": "ait", + "name": "AIT Protocol" + }, + { + "id": "ai-trader-agent", + "symbol": "ait", + "name": "AI Trader Agent" + }, + { + "id": "aitradeusmaximus", + "symbol": "aim", + "name": "AiTradeusMaximus" + }, + { + "id": "aiva", + "symbol": "aiva", + "name": "AIVA" + }, + { + "id": "aivalanche-defai-agents", + "symbol": "avaxai", + "name": "AIvalanche DeFAI Agents" + }, + { + "id": "aiveronica", + "symbol": "aiv", + "name": "AIVeronica by Virtuals" + }, + { + "id": "ai-vertex-by-virtuals", + "symbol": "vertex", + "name": "AI VERTEX by Virtuals" + }, + { + "id": "aiville-governance-token", + "symbol": "aiv", + "name": "AIVille Governance Token" + }, + { + "id": "ai-virtual-agents", + "symbol": "aivia", + "name": "AI Virtual Agents" + }, + { + "id": "ai-voice-agents", + "symbol": "aiva", + "name": "AI Voice Agents" + }, + { + "id": "ai-waifu-2", + "symbol": "wai", + "name": "AI Waifu" + }, + { + "id": "aiwarper-token", + "symbol": "warper", + "name": "AIWarper Token" + }, + { + "id": "aiwithdaddyissues", + "symbol": "shegen", + "name": "Aiwithdaddyissues" + }, + { + "id": "aiws", + "symbol": "aiws", + "name": "aiws" + }, + { + "id": "ai-x", + "symbol": "x", + "name": "AI-X" + }, + { + "id": "aixbet", + "symbol": "$axb", + "name": "AIxBET" + }, + { + "id": "aixbt", + "symbol": "aixbt", + "name": "aixbt" + }, + { + "id": "aixcb-by-virtuals", + "symbol": "aixcb", + "name": "aixCB by Virtuals" + }, + { + "id": "aixexchange", + "symbol": "aix", + "name": "AIXexchange" + }, + { + "id": "aix-network", + "symbol": "aix", + "name": "AIX Network" + }, + { + "id": "ai-xovia", + "symbol": "aix", + "name": "AI XOVIA" + }, + { + "id": "aixrp", + "symbol": "aixrp", + "name": "aixrp" + }, + { + "id": "aix-wallet", + "symbol": "aix", + "name": "AIX Wallet" + }, + { + "id": "ajna-protocol", + "symbol": "ajna", + "name": "Ajna Protocol" + }, + { + "id": "ajuna-network-2", + "symbol": "ajun", + "name": "Ajuna Network" + }, + { + "id": "aka", + "symbol": "aka", + "name": "AKA" + }, + { + "id": "akachi", + "symbol": "akachi", + "name": "AKACHI" + }, + { + "id": "akas", + "symbol": "as", + "name": "AKAS" + }, + { + "id": "akashalife", + "symbol": "ak1111", + "name": "Akashalife" + }, + { + "id": "akash-network", + "symbol": "akt", + "name": "Akash Network" + }, + { + "id": "akedo", + "symbol": "ake", + "name": "Akedo" + }, + { + "id": "akio", + "symbol": "akio", + "name": "Akio" + }, + { + "id": "aki-protocol", + "symbol": "aki", + "name": "Aki Network" + }, + { + "id": "akira-labs", + "symbol": "akira", + "name": "AKIRA LABS" + }, + { + "id": "akita-bsc", + "symbol": "akita", + "name": "AKITA-BSC" + }, + { + "id": "akita-inu", + "symbol": "akita", + "name": "Akita Inu" + }, + { + "id": "akita-inu-2", + "symbol": "akt", + "name": "Akita Inu" + }, + { + "id": "akita-inu-3", + "symbol": "akita", + "name": "Akita Inu" + }, + { + "id": "akita-inu-asa", + "symbol": "akta", + "name": "Akita Inu ASA" + }, + { + "id": "akitavax", + "symbol": "akitax", + "name": "Akitavax" + }, + { + "id": "akropolis", + "symbol": "kaon", + "name": "Kaon" + }, + { + "id": "aktionariat-axelra-early-stage-ag-tokenized-shares", + "symbol": "axras", + "name": "Aktionariat Axelra Early Stage AG Tokenized Shares" + }, + { + "id": "aktionariat-bee-digital-growth-ag-tokenized-shares", + "symbol": "bees", + "name": "Aktionariat BEE Digital Growth AG Tokenized Shares" + }, + { + "id": "aktionariat-carnault-ag-tokenized-shares", + "symbol": "cas", + "name": "Aktionariat Carnault AG Tokenized Shares" + }, + { + "id": "aktionariat-clever-forever-education-ag-tokenized-shares", + "symbol": "cfes", + "name": "Aktionariat Clever Forever Education AG Tokenized Shares" + }, + { + "id": "aktionariat-ddc-schweiz-ag-tokenized-shares", + "symbol": "ddcs", + "name": "Aktionariat DDC Schweiz AG Tokenized Shares" + }, + { + "id": "aktionariat-fieldoo-ag-tokenized-shares", + "symbol": "fdos", + "name": "Aktionariat Fieldoo AG Tokenized Shares" + }, + { + "id": "aktionariat-finelli-studios-ag-tokenized-shares", + "symbol": "fnls", + "name": "Aktionariat Finelli Studios AG Tokenized Shares" + }, + { + "id": "aktionariat-green-consensus-ag-tokenized-shares", + "symbol": "dgcs", + "name": "Aktionariat Green Consensus AG Tokenized Shares" + }, + { + "id": "aktionariat-green-monkey-club-ag-tokenized-shares", + "symbol": "gmcs", + "name": "Aktionariat Green Monkey Club AG Tokenized Shares" + }, + { + "id": "aktionariat-sia-swiss-influencer-award-ag-tokenized-shares", + "symbol": "sias", + "name": "Aktionariat SIA Swiss Influencer Award AG Tokenized Shares" + }, + { + "id": "aktionariat-sportsparadise-switzerland-ag-tokenized-shares", + "symbol": "spos", + "name": "Aktionariat Sportsparadise Switzerland AG Tokenized Shares" + }, + { + "id": "aktionariat-tbo-co-comon-accelerator-holding-ag-tokenized-shares", + "symbol": "tbos", + "name": "Aktionariat TBo c/o Comon Accelerator Holding AG Tokenized Shares" + }, + { + "id": "aktionariat-tv-plus-ag-tokenized-shares", + "symbol": "tvpls", + "name": "Aktionariat TV PLUS AG Tokenized Shares" + }, + { + "id": "aktionariat-vereign-ag-tokenized-shares", + "symbol": "vrgns", + "name": "Aktionariat Vereign AG Tokenized Shares" + }, + { + "id": "akuma-inu", + "symbol": "akuma", + "name": "Akuma Inu" + }, + { + "id": "aladdin-dao", + "symbol": "ald", + "name": "Aladdin DAO" + }, + { + "id": "aladdin-rusd", + "symbol": "arusd", + "name": "Aladdin rUSD" + }, + { + "id": "aladdin-sdcrv", + "symbol": "asdcrv", + "name": "Aladdin sdCRV" + }, + { + "id": "alan-the-alien", + "symbol": "alan", + "name": "Alan the Alien" + }, + { + "id": "alanyaspor-fan-token", + "symbol": "ala", + "name": "Alanyaspor Fan Token" + }, + { + "id": "alaska", + "symbol": "alaska", + "name": "Alaska" + }, + { + "id": "alaska-gold-rush", + "symbol": "carat", + "name": "Alaska Gold Rush" + }, + { + "id": "alaunchai", + "symbol": "alai", + "name": "AlaunchAI" + }, + { + "id": "alaya-ai", + "symbol": "agt", + "name": "Alaya AI" + }, + { + "id": "albemarle-meme-token", + "symbol": "albemarle", + "name": "Albemarle Meme Token" + }, + { + "id": "albert", + "symbol": "albert", + "name": "Albert" + }, + { + "id": "alchemist", + "symbol": "mist", + "name": "Alchemist" + }, + { + "id": "alchemist-accelerate", + "symbol": "alch", + "name": "Alchemist Accelerate" + }, + { + "id": "alchemist-ai", + "symbol": "alch", + "name": "Alchemist AI" + }, + { + "id": "alchemix", + "symbol": "alcx", + "name": "Alchemix" + }, + { + "id": "alchemix-eth", + "symbol": "aleth", + "name": "Alchemix ETH" + }, + { + "id": "alchemix-usd", + "symbol": "alusd", + "name": "Alchemix USD" + }, + { + "id": "alchemy-pay", + "symbol": "ach", + "name": "Alchemy Pay" + }, + { + "id": "alcor-ibc-bridged-usdt-wax", + "symbol": "usdt", + "name": "Alcor IBC Bridged USDT (WAX)" + }, + { + "id": "aldrin", + "symbol": "rin", + "name": "Aldrin" + }, + { + "id": "alea", + "symbol": "alea", + "name": "Alea" + }, + { + "id": "aleo", + "symbol": "aleo", + "name": "ALEO" + }, + { + "id": "aleph", + "symbol": "aleph", + "name": "Aleph Cloud" + }, + { + "id": "aleph-im-wormhole", + "symbol": "aleph", + "name": "Aleph.im (Wormhole)" + }, + { + "id": "alephium", + "symbol": "alph", + "name": "Alephium" + }, + { + "id": "aleph-zero", + "symbol": "azero", + "name": "Aleph Zero" + }, + { + "id": "alethea-artificial-liquid-intelligence-token", + "symbol": "ali", + "name": "Artificial Liquid Intelligence" + }, + { + "id": "aletheia", + "symbol": "aletheia", + "name": "Aletheia" + }, + { + "id": "alexanderelorenzo", + "symbol": "alexanderelorenzo", + "name": "alexanderelorenzo" + }, + { + "id": "alexgo", + "symbol": "alex", + "name": "ALEX Lab" + }, + { + "id": "alexis", + "symbol": "alexis", + "name": "ALEXIS" + }, + { + "id": "alex-wrapped-usdt", + "symbol": "susdt", + "name": "Bridged Tether (Alex Bridge)" + }, + { + "id": "alf", + "symbol": "alf", + "name": "ALF" + }, + { + "id": "alfa-romeo-racing-orlen-fan-token", + "symbol": "sauber", + "name": "Alfa Romeo Racing ORLEN Fan Token" + }, + { + "id": "alf-token", + "symbol": "alf", + "name": "ALF TOKEN" + }, + { + "id": "algo-casino-chips", + "symbol": "chip", + "name": "Algo-Casino Chips" + }, + { + "id": "algonfx", + "symbol": "alg", + "name": "AlgonFX" + }, + { + "id": "algorand", + "symbol": "algo", + "name": "Algorand" + }, + { + "id": "algoritha-a-i", + "symbol": "algoai", + "name": "Algoritha A.I" + }, + { + "id": "algorix-alor", + "symbol": "alor", + "name": "Algorix (ALOR)" + }, + { + "id": "algostable", + "symbol": "stbl", + "name": "AlgoStable" + }, + { + "id": "algotrade", + "symbol": "algt", + "name": "AlgoTrade" + }, + { + "id": "alibabacoin", + "symbol": "abbc", + "name": "ABBC" + }, + { + "id": "alibaba-ondo-tokenized-stock", + "symbol": "babaon", + "name": "Alibaba (Ondo Tokenized Stock)" + }, + { + "id": "alibaba-tokenized-stock-defichain", + "symbol": "dbaba", + "name": "Alibaba Tokenized Stock Defichain" + }, + { + "id": "alice", + "symbol": "alice", + "name": "Alice" + }, + { + "id": "alice-2", + "symbol": "alice", + "name": "Alice" + }, + { + "id": "alice-3", + "symbol": "alice", + "name": "Alice" + }, + { + "id": "alice-4", + "symbol": "alice", + "name": "AdaptLearnIntellectCompanyEngine" + }, + { + "id": "alickshundra-occasional-cortex", + "symbol": "aoc", + "name": "Alickshundra Occasional-Cortex" + }, + { + "id": "alien", + "symbol": "alien", + "name": "Alien" + }, + { + "id": "alienbase", + "symbol": "alb", + "name": "Alien Base" + }, + { + "id": "aliens", + "symbol": "aliens", + "name": "Aliens" + }, + { + "id": "alienswap", + "symbol": "alien", + "name": "AlienSwap" + }, + { + "id": "alien-worlds", + "symbol": "tlm", + "name": "Alien Worlds" + }, + { + "id": "alienxchain", + "symbol": "aix", + "name": "AlienXChain" + }, + { + "id": "alif-coin", + "symbol": "alif", + "name": "AliF Coin" + }, + { + "id": "ali-for-fx-protocol-by-virtuals", + "symbol": "fx", + "name": "Ali for fx protocol by Virtuals" + }, + { + "id": "aligned", + "symbol": "align", + "name": "Aligned" + }, + { + "id": "alina-ai", + "symbol": "alinaintel", + "name": "ALINA AI" + }, + { + "id": "alink-ai", + "symbol": "alink", + "name": "ALINK AI" + }, + { + "id": "alita", + "symbol": "ali", + "name": "Alita" + }, + { + "id": "alita-2", + "symbol": "alme", + "name": "ALITA" + }, + { + "id": "alitaai", + "symbol": "alita", + "name": "AlitaAI" + }, + { + "id": "alitas", + "symbol": "alt", + "name": "Alitas" + }, + { + "id": "alium-finance", + "symbol": "alm", + "name": "Alium Finance" + }, + { + "id": "alkimi", + "symbol": "$ads", + "name": "Alkimi [OLD]" + }, + { + "id": "alkimi-2", + "symbol": "alkimi", + "name": "ALKIMI" + }, + { + "id": "all-art", + "symbol": "aart", + "name": "ALL.ART" + }, + { + "id": "allbridge", + "symbol": "abr", + "name": "Allbridge" + }, + { + "id": "allbridge-bridged-sol-near-protocol", + "symbol": "sol", + "name": "Allbridge Bridged SOL (Near Protocol)" + }, + { + "id": "allbridge-bridged-usdc-stacks", + "symbol": "aeusdc", + "name": "Allbridge Bridged USDC (Stacks)" + }, + { + "id": "alldomains", + "symbol": "all-old", + "name": "Legacy Community Token" + }, + { + "id": "alldomains-name-service", + "symbol": "adns", + "name": "AllDomains Name Service" + }, + { + "id": "allianceblock-nexera", + "symbol": "nxra", + "name": "Nexera" + }, + { + "id": "alliance-fan-token", + "symbol": "all", + "name": "Alliance Fan Token" + }, + { + "id": "alliance-games", + "symbol": "coa", + "name": "Alliance Games" + }, + { + "id": "alliewai", + "symbol": "awai", + "name": "Alliewai by Virtuals" + }, + { + "id": "alligator-alcatraz", + "symbol": "ice", + "name": "Alligator Alcatraz" + }, + { + "id": "all-in", + "symbol": "allin", + "name": "All In" + }, + { + "id": "allindoge", + "symbol": "allindoge", + "name": "ALLINDOGE" + }, + { + "id": "all-in-dollo", + "symbol": "dollo", + "name": "All in Dollo" + }, + { + "id": "all-in-one-wallet", + "symbol": "aio", + "name": "All In One Wallet" + }, + { + "id": "all-inx", + "symbol": "ant", + "name": "All InX" + }, + { + "id": "all-inx-smart-chain", + "symbol": "asc", + "name": "All InX SMART CHAIN" + }, + { + "id": "allo", + "symbol": "rwa", + "name": "Allo" + }, + { + "id": "alloy-tether", + "symbol": "ausdt", + "name": "Alloy Tether" + }, + { + "id": "all-roads-lead-to-rome", + "symbol": "rome", + "name": "All Roads Lead To Rome" + }, + { + "id": "allsafe", + "symbol": "asafe", + "name": "AllSafe" + }, + { + "id": "all-street-bets", + "symbol": "bets", + "name": "All Street Bets" + }, + { + "id": "all-the-money", + "symbol": "atm", + "name": "All The Money" + }, + { + "id": "all-time-high-degen", + "symbol": "ath", + "name": "All Time High" + }, + { + "id": "alltoscan", + "symbol": "ats", + "name": "Alltoscan" + }, + { + "id": "alltra-usdt-ausdt", + "symbol": "ausdt (usdt)", + "name": "Alltra USDT (AUSDT)" + }, + { + "id": "allunity-eur", + "symbol": "eurau", + "name": "AllUnity EUR" + }, + { + "id": "all-will-retire", + "symbol": "awr", + "name": "All Will Retire" + }, + { + "id": "all-you-had-to-do-was", + "symbol": "nothing", + "name": "all you had to do was" + }, + { + "id": "all-your-base", + "symbol": "yobase", + "name": "All Your Base" + }, + { + "id": "all-your-base-2", + "symbol": "ayb", + "name": "All Your Base" + }, + { + "id": "alman", + "symbol": "alman", + "name": "Alman" + }, + { + "id": "almanak", + "symbol": "almanak", + "name": "Almanak" + }, + { + "id": "alon", + "symbol": "alon", + "name": "Alon" + }, + { + "id": "alongside-crypto-market-index", + "symbol": "amkt", + "name": "Alongside Crypto Market Index" + }, + { + "id": "alp", + "symbol": "alp", + "name": "ALP" + }, + { + "id": "alpaca", + "symbol": "alpa", + "name": "Alpaca City" + }, + { + "id": "alpaca-2", + "symbol": "alpaca", + "name": "Alpaca" + }, + { + "id": "alpaca-3", + "symbol": "alpaca", + "name": "Alpaca" + }, + { + "id": "alpaca-finance", + "symbol": "alpaca", + "name": "Alpaca Finance" + }, + { + "id": "alpaco-ai-mcps", + "symbol": "alpaco", + "name": "Alpaco AI & MCPs" + }, + { + "id": "a-l-p-h-a", + "symbol": "$alpha", + "name": "A L P H A" + }, + { + "id": "alpha-2", + "symbol": "alpha", + "name": "ALPHA" + }, + { + "id": "alpha-3", + "symbol": "alpha", + "name": "Reject Modernity" + }, + { + "id": "alpha-4", + "symbol": "alpha", + "name": "Alpha" + }, + { + "id": "alpha-5", + "symbol": "$alpha", + "name": "Alpha" + }, + { + "id": "alphaarc", + "symbol": "alpha", + "name": "AlphaArc" + }, + { + "id": "alpha-base-index", + "symbol": "abx", + "name": "Alpha Base Index" + }, + { + "id": "alphabet-class-a-ondo-tokenized-stock", + "symbol": "googlon", + "name": "Alphabet Class A (Ondo Tokenized Stock)" + }, + { + "id": "alphabet-xstock", + "symbol": "googlx", + "name": "Alphabet xStock" + }, + { + "id": "alpha-city", + "symbol": "ameta", + "name": "Alpha City" + }, + { + "id": "alpha-city-2", + "symbol": "city", + "name": "Alpha City" + }, + { + "id": "alphaexchangeai", + "symbol": "aea", + "name": "AlphaExchangeAI" + }, + { + "id": "alpha-fi", + "symbol": "alpha", + "name": "Alpha Fi" + }, + { + "id": "alpha-finance", + "symbol": "alpha", + "name": "Stella" + }, + { + "id": "alphafi-staked-sui", + "symbol": "stsui", + "name": "AlphaFi Staked SUI" + }, + { + "id": "alpha-gardeners", + "symbol": "ag", + "name": "Alpha Gardeners" + }, + { + "id": "alpha-humans", + "symbol": "cums", + "name": "alpha humans" + }, + { + "id": "alphakek-ai", + "symbol": "aikek", + "name": "Alphakek" + }, + { + "id": "alpha-lens-x", + "symbol": "alphax", + "name": "Alpha Lens X" + }, + { + "id": "alphanova", + "symbol": "anva", + "name": "AlphaNova" + }, + { + "id": "alpha-pay", + "symbol": "alpay", + "name": "Alpha Pay" + }, + { + "id": "alpha-quark-token", + "symbol": "aqt", + "name": "Alpha Quark" + }, + { + "id": "alpha-shards", + "symbol": "alpha", + "name": "Alpha Shards" + }, + { + "id": "alpha-synbo-meme", + "symbol": "asm", + "name": "Alpha Synbo Meme" + }, + { + "id": "alpha-trader-exchange-atx", + "symbol": "sn63", + "name": "Alpha Trader Exchange (ATX)" + }, + { + "id": "alpha-usdc-vault", + "symbol": "ausdc", + "name": "Alpha USDC Vault" + }, + { + "id": "alpha-weth-vault", + "symbol": "aweth", + "name": "Alpha WETH Vault" + }, + { + "id": "alpha-wolf-2", + "symbol": "alpha", + "name": "Alpha Wolf" + }, + { + "id": "alpha-zchf-vault", + "symbol": "azchf", + "name": "Alpha ZCHF Vault" + }, + { + "id": "alphbanx", + "symbol": "abx", + "name": "AlphBanX" + }, + { + "id": "alphpad", + "symbol": "apad", + "name": "AlphPad" + }, + { + "id": "alpine-f1-team-fan-token", + "symbol": "alpine", + "name": "Alpine F1 Team Fan Token" + }, + { + "id": "alright-buddy", + "symbol": "buddy", + "name": "alright buddy" + }, + { + "id": "alris-agent", + "symbol": "alr", + "name": "ALRIS AGENT" + }, + { + "id": "altair", + "symbol": "air", + "name": "Altair" + }, + { + "id": "altariste-by-virtuals", + "symbol": "asta", + "name": "Altariste by Virtuals" + }, + { + "id": "altava", + "symbol": "tava", + "name": "ALTAVA" + }, + { + "id": "altbase", + "symbol": "altb", + "name": "Altbase" + }, + { + "id": "altcoin-2", + "symbol": "alt", + "name": "Altcoin" + }, + { + "id": "altcoinist-token", + "symbol": "altt", + "name": "Altcoinist Token" + }, + { + "id": "altctrl", + "symbol": "ctrl", + "name": "AltCTRL" + }, + { + "id": "altered-state-token", + "symbol": "asto", + "name": "Altered State Machine" + }, + { + "id": "althea", + "symbol": "althea", + "name": "ALTHEA" + }, + { + "id": "altitude", + "symbol": "altd", + "name": "Altitude" + }, + { + "id": "altlayer", + "symbol": "alt", + "name": "AltLayer" + }, + { + "id": "altman", + "symbol": "altman", + "name": "Altman" + }, + { + "id": "altoid", + "symbol": "altoid", + "name": "Altoid" + }, + { + "id": "altsdaddy", + "symbol": "ddy", + "name": "AltsDaddy" + }, + { + "id": "altseason-coin", + "symbol": "altseason", + "name": "AltSeason Coin" + }, + { + "id": "altsignals", + "symbol": "asi", + "name": "AltSignals" + }, + { + "id": "alt-town", + "symbol": "town", + "name": "Alt.town" + }, + { + "id": "altura", + "symbol": "alu", + "name": "Altura" + }, + { + "id": "aluna", + "symbol": "aln", + "name": "Aluna" + }, + { + "id": "alux-jownes", + "symbol": "jownes", + "name": "Alux Jownes" + }, + { + "id": "alvara-protocol", + "symbol": "alva", + "name": "Alvara Protocol" + }, + { + "id": "alvey-chain", + "symbol": "walv", + "name": "Alvey Chain" + }, + { + "id": "alxai", + "symbol": "alxai", + "name": "alXAI" + }, + { + "id": "amateras", + "symbol": "amt", + "name": "Amateras" + }, + { + "id": "amaterasu", + "symbol": "ama", + "name": "Amaterasu" + }, + { + "id": "amaterasufi-izanagi", + "symbol": "iza", + "name": "AmaterasuFi Izanagi" + }, + { + "id": "amaterasu-omikami", + "symbol": "omikami", + "name": "AMATERASU OMIKAMI" + }, + { + "id": "amazingteamdao", + "symbol": "amazingteam", + "name": "AmazingTeamDAO" + }, + { + "id": "amazon-ondo-tokenized-stock", + "symbol": "amznon", + "name": "Amazon (Ondo Tokenized Stock)" + }, + { + "id": "amazon-tokenized-stock-defichain", + "symbol": "damzn", + "name": "Amazon Tokenized Stock Defichain" + }, + { + "id": "amazon-xstock", + "symbol": "amznx", + "name": "Amazon xStock" + }, + { + "id": "amazy", + "symbol": "azy", + "name": "Amazy" + }, + { + "id": "amber", + "symbol": "amb", + "name": "Ascendia (ex AirDAO)" + }, + { + "id": "amberdao", + "symbol": "amber", + "name": "AmberDAO" + }, + { + "id": "amber-xstock", + "symbol": "ambrx", + "name": "Amber xStock" + }, + { + "id": "ambient-agi", + "symbol": "agi", + "name": "Ambient AGI" + }, + { + "id": "ambios-network", + "symbol": "ambios", + "name": "Ambios Network" + }, + { + "id": "ambire-wallet", + "symbol": "wallet", + "name": "Ambire Wallet" + }, + { + "id": "ambit-finance", + "symbol": "ambt", + "name": "Ambit Finance" + }, + { + "id": "ambra", + "symbol": "ambr", + "name": "Ambra" + }, + { + "id": "amc", + "symbol": "amc", + "name": "AMC" + }, + { + "id": "amc-2", + "symbol": "amc", + "name": "AMC" + }, + { + "id": "amc-3", + "symbol": "amc", + "name": "AMC" + }, + { + "id": "amd-ondo-tokenized-stock", + "symbol": "amdon", + "name": "AMD (Ondo Tokenized Stock)" + }, + { + "id": "amd-xstock", + "symbol": "amdx", + "name": "AMD xStock" + }, + { + "id": "amepay", + "symbol": "ame", + "name": "AME Chain" + }, + { + "id": "america", + "symbol": "america", + "name": "America" + }, + { + "id": "america1776", + "symbol": "america", + "name": "America1776" + }, + { + "id": "america-is-back", + "symbol": "aib", + "name": "AMERICA IS BACK" + }, + { + "id": "american-coin", + "symbol": "usa", + "name": "American Coin" + }, + { + "id": "american-express-ondo-tokenized-stock", + "symbol": "axpon", + "name": "American Express (Ondo Tokenized Stock)" + }, + { + "id": "american-express-xstock", + "symbol": "axpx", + "name": "American Express xStock" + }, + { + "id": "american-general-intelligence", + "symbol": "agi", + "name": "American General Intelligence" + }, + { + "id": "american-pepe", + "symbol": "uspepe", + "name": "American Pepe" + }, + { + "id": "american-shiba", + "symbol": "ushiba", + "name": "American Shiba" + }, + { + "id": "america-pac", + "symbol": "pac", + "name": "America Pac" + }, + { + "id": "america-party", + "symbol": "ap", + "name": "America Party" + }, + { + "id": "america-party-2", + "symbol": "america", + "name": "america party" + }, + { + "id": "america-party-3", + "symbol": "america", + "name": "America Party" + }, + { + "id": "america-party-4", + "symbol": "ap", + "name": "America Party" + }, + { + "id": "america-party-5", + "symbol": "america", + "name": "America Party" + }, + { + "id": "america-party-6", + "symbol": "america", + "name": "America Party" + }, + { + "id": "america-party-coin", + "symbol": "apc", + "name": "America Party Coin" + }, + { + "id": "america-s-official-launchpad", + "symbol": "aol", + "name": "America's Official Launchpad" + }, + { + "id": "ameri-coin", + "symbol": "amc", + "name": "Americoin" + }, + { + "id": "ami", + "symbol": "ami", + "name": "Amnis Finance" + }, + { + "id": "amiko", + "symbol": "amiko", + "name": "Amiko" + }, + { + "id": "amino-2", + "symbol": "amino", + "name": "Amino" + }, + { + "id": "amino-ai", + "symbol": "amai", + "name": "Amino AI" + }, + { + "id": "ammyi-coin", + "symbol": "ami", + "name": "AMMYI Coin" + }, + { + "id": "amnis-aptos", + "symbol": "amapt", + "name": "Amnis Aptos" + }, + { + "id": "amnis-staked-aptos-coin", + "symbol": "stapt", + "name": "Amnis Staked Aptos Coin" + }, + { + "id": "amo", + "symbol": "amo", + "name": "AMO Coin" + }, + { + "id": "amocucinare", + "symbol": "amore", + "name": "Amocucinare" + }, + { + "id": "amond", + "symbol": "amon", + "name": "AmonD" + }, + { + "id": "amouranth-s-minutes", + "symbol": "amouranth", + "name": "Amouranth's minutes" + }, + { + "id": "amped-finance", + "symbol": "amped", + "name": "Amped Finance" + }, + { + "id": "ample", + "symbol": "ampd", + "name": "Ample" + }, + { + "id": "ampleforth", + "symbol": "ampl", + "name": "Ampleforth" + }, + { + "id": "ampleforth-governance-token", + "symbol": "forth", + "name": "Ampleforth Governance" + }, + { + "id": "amplifi-dao", + "symbol": "agg", + "name": "AmpliFi DAO" + }, + { + "id": "amply", + "symbol": "amply", + "name": "AMPLY" + }, + { + "id": "amp-token", + "symbol": "amp", + "name": "Amp" + }, + { + "id": "amulet-protocol", + "symbol": "amu", + "name": "Amulet Protocol" + }, + { + "id": "amuricah", + "symbol": "amuricah", + "name": "amuricah" + }, + { + "id": "anagata", + "symbol": "aha", + "name": "Anagata" + }, + { + "id": "analog", + "symbol": "anlog", + "name": "Analog" + }, + { + "id": "analos", + "symbol": "analos", + "name": "analoS" + }, + { + "id": "analos-2", + "symbol": "los", + "name": "ANALOS" + }, + { + "id": "analysoor", + "symbol": "zero", + "name": "Analysoor" + }, + { + "id": "anarcho-catbus", + "symbol": "🖕", + "name": "ANARCHO•CATBUS" + }, + { + "id": "anarchy", + "symbol": "anarchy", + "name": "Anarchy" + }, + { + "id": "anarchy-2", + "symbol": "anarchy", + "name": "ANARCHY" + }, + { + "id": "anchored-coins-chf", + "symbol": "achf", + "name": "Anchored Coins ACHF" + }, + { + "id": "anchored-coins-eur", + "symbol": "aeur", + "name": "Anchored Coins AEUR" + }, + { + "id": "anchorswap", + "symbol": "anchor", + "name": "AnchorSwap" + }, + { + "id": "ancient8", + "symbol": "a8", + "name": "Ancient8" + }, + { + "id": "and-it-s-gone", + "symbol": "gone", + "name": "AND IT'S GONE" + }, + { + "id": "andrea-von-speed", + "symbol": "vonspeed", + "name": "Andrea Von Speed" + }, + { + "id": "andrea-von-speed-2", + "symbol": "andrea", + "name": "Andrea Von Speed" + }, + { + "id": "andreywtr", + "symbol": "wtr", + "name": "AndreyWTR" + }, + { + "id": "andromeda-2", + "symbol": "andr", + "name": "Andromeda" + }, + { + "id": "anduril-prestocks-2", + "symbol": "anduril", + "name": "Anduril PreStocks" + }, + { + "id": "anduschain", + "symbol": "deb", + "name": "AndUsChain" + }, + { + "id": "andy", + "symbol": "andy", + "name": "Andy" + }, + { + "id": "andy-2", + "symbol": "andy", + "name": "Andy" + }, + { + "id": "andy-3", + "symbol": "andy", + "name": "Andy" + }, + { + "id": "andy-4", + "symbol": "andy", + "name": "Andy BSC" + }, + { + "id": "andy70b", + "symbol": "andy70b", + "name": "ANDY70B" + }, + { + "id": "andy-alter-ego", + "symbol": "badcat", + "name": "Andy Alter Ego" + }, + { + "id": "andy-bsc", + "symbol": "andy", + "name": "Andy Bsc" + }, + { + "id": "andy-erc", + "symbol": "andy", + "name": "aNDY" + }, + { + "id": "andyman", + "symbol": "andyman", + "name": "Andyman" + }, + { + "id": "andy-on-base", + "symbol": "andy", + "name": "Andy" + }, + { + "id": "andy-on-eth", + "symbol": "andy", + "name": "Andy on ETH" + }, + { + "id": "andy-on-sol", + "symbol": "andy", + "name": "Andy on SOL" + }, + { + "id": "andy-s-cat", + "symbol": "candy", + "name": "Andy's Cat" + }, + { + "id": "andy-the-wisguy", + "symbol": "andy", + "name": "ANDY ETH" + }, + { + "id": "anemoy-tokenized-apollo-diversified-credit-fund", + "symbol": "acdrx", + "name": "Anemoy Tokenized Apollo Diversified Credit Fund" + }, + { + "id": "aneri", + "symbol": "aneri", + "name": "aneri" + }, + { + "id": "a-new-internet-money-era", + "symbol": "anime", + "name": "A New Internet Money Era" + }, + { + "id": "angel-twin", + "symbol": "angl", + "name": "ANGL TOKEN" + }, + { + "id": "angle-protocol", + "symbol": "angle", + "name": "ANGLE" + }, + { + "id": "angles-staked-sonic", + "symbol": "ans", + "name": "Angles Staked Sonic" + }, + { + "id": "angle-usd", + "symbol": "usda", + "name": "USDA" + }, + { + "id": "angola", + "symbol": "agla", + "name": "Angola" + }, + { + "id": "angryb", + "symbol": "anb", + "name": "Angryb" + }, + { + "id": "angryguy", + "symbol": "angryguy", + "name": "ANGRYGUY" + }, + { + "id": "ani-grok-companion", + "symbol": "ani", + "name": "Ani Grok Companion" + }, + { + "id": "anima", + "symbol": "anima", + "name": "ANIMA" + }, + { + "id": "animal-concerts-token", + "symbol": "anml", + "name": "Animal Concerts" + }, + { + "id": "animals-wif-guns", + "symbol": "guns", + "name": "Animals Wif Guns" + }, + { + "id": "animated", + "symbol": "am", + "name": "Animated" + }, + { + "id": "anime", + "symbol": "anime", + "name": "Animecoin" + }, + { + "id": "anime-base", + "symbol": "anime", + "name": "Anime" + }, + { + "id": "animecoin-2", + "symbol": "ani", + "name": "Animecoin" + }, + { + "id": "animefication", + "symbol": "anime", + "name": "Animefication" + }, + { + "id": "anime-token", + "symbol": "ani", + "name": "Anime" + }, + { + "id": "animus", + "symbol": "animus", + "name": "Animus" + }, + { + "id": "anita", + "symbol": "anita", + "name": "ANITA" + }, + { + "id": "anita-ai", + "symbol": "anita", + "name": "Anita AI" + }, + { + "id": "anita-max-wynn", + "symbol": "wynn", + "name": "Anita Max Wynn" + }, + { + "id": "anju", + "symbol": "anju", + "name": "Anju" + }, + { + "id": "ankr", + "symbol": "ankr", + "name": "Ankr Network" + }, + { + "id": "ankreth", + "symbol": "ankreth", + "name": "Ankr Staked ETH" + }, + { + "id": "ankr-reward-earning-matic", + "symbol": "ankrmatic", + "name": "Ankr Staked MATIC" + }, + { + "id": "ankr-staked-bnb", + "symbol": "ankrbnb", + "name": "Ankr Staked BNB" + }, + { + "id": "ankr-staked-flow", + "symbol": "ankrflow", + "name": "Ankr Staked FLOW" + }, + { + "id": "anoa", + "symbol": "anoa", + "name": "ANOA" + }, + { + "id": "anoma", + "symbol": "xan", + "name": "Anoma" + }, + { + "id": "anome", + "symbol": "anome", + "name": "Anome" + }, + { + "id": "anon-2", + "symbol": "anon", + "name": "anon" + }, + { + "id": "anon-inu", + "symbol": "ainu", + "name": "Anon Inu" + }, + { + "id": "anonium", + "symbol": "anon", + "name": "Anonium" + }, + { + "id": "anon-ton", + "symbol": "anon", + "name": "ANON" + }, + { + "id": "anonymous", + "symbol": "anon", + "name": "Anonymous" + }, + { + "id": "anonymouscodingcult", + "symbol": "acc", + "name": "AnonymousCodingCult" + }, + { + "id": "anonymous-coin-2", + "symbol": "anon", + "name": "Anonymous Coin" + }, + { + "id": "anova-world-token", + "symbol": "anw", + "name": "Anova World Token" + }, + { + "id": "anryton", + "symbol": "mol", + "name": "Anryton" + }, + { + "id": "ansem-s-cat", + "symbol": "hobbes", + "name": "Ansem's Cat" + }, + { + "id": "ansem-s-minutes", + "symbol": "ansem", + "name": "Ansem's minutes" + }, + { + "id": "ansom", + "symbol": "ansom", + "name": "Ansom" + }, + { + "id": "antara-raiders-royals", + "symbol": "antt", + "name": "Antara Token" + }, + { + "id": "ant-colony", + "symbol": "ants", + "name": "ANT COLONY" + }, + { + "id": "antfarm-token", + "symbol": "atf", + "name": "Antfarm Token" + }, + { + "id": "anthropic-prestocks-2", + "symbol": "anthropic", + "name": "Anthropic PreStocks" + }, + { + "id": "anti-goatse", + "symbol": "ag", + "name": "Anti-Goatse" + }, + { + "id": "antimatter", + "symbol": "tune", + "name": "Bitune" + }, + { + "id": "anti-rug-agent", + "symbol": "antirug", + "name": "Anti Rug Agent" + }, + { + "id": "antitoken", + "symbol": "anti", + "name": "Antitoken" + }, + { + "id": "antmons", + "symbol": "ams", + "name": "Antmons" + }, + { + "id": "anvil", + "symbol": "anvl", + "name": "Anvil" + }, + { + "id": "any-inu", + "symbol": "ai", + "name": "Any Inu" + }, + { + "id": "anyspend", + "symbol": "any", + "name": "Anyspend" + }, + { + "id": "anyswap", + "symbol": "any", + "name": "Anyswap" + }, + { + "id": "anzen-finance", + "symbol": "anz", + "name": "Anzen Finance" + }, + { + "id": "anzen-staked-usdz", + "symbol": "susdz", + "name": "Anzen Staked USDz" + }, + { + "id": "anzens-usda", + "symbol": "usda", + "name": "Anzens USDA" + }, + { + "id": "anzen-usdz", + "symbol": "usdz", + "name": "Anzen USDz" + }, + { + "id": "ao-computer", + "symbol": "ao", + "name": "ao Computer" + }, + { + "id": "aok", + "symbol": "aok", + "name": "AOK" + }, + { + "id": "aos-2", + "symbol": "sn79", + "name": "τaos" + }, + { + "id": "apartment", + "symbol": "apartment", + "name": "Apartment" + }, + { + "id": "apdao", + "symbol": "apd", + "name": "APDAO" + }, + { + "id": "ape-3", + "symbol": "ape", + "name": "Ape" + }, + { + "id": "ape-and-pepe", + "symbol": "apepe", + "name": "Ape and Pepe" + }, + { + "id": "apechainhoes", + "symbol": "hoes", + "name": "ApeChainHOES" + }, + { + "id": "apecoin", + "symbol": "ape", + "name": "ApeCoin" + }, + { + "id": "aped", + "symbol": "aped", + "name": "Aped" + }, + { + "id": "aped-4", + "symbol": "aped", + "name": "APED" + }, + { + "id": "apedog", + "symbol": "apedog", + "name": "APEDOG" + }, + { + "id": "apeiron-anima", + "symbol": "anima", + "name": "Anima" + }, + { + "id": "apeironnft", + "symbol": "aprs", + "name": "Apeiron" + }, + { + "id": "ape-lol", + "symbol": "ape", + "name": "Ape.lol" + }, + { + "id": "ape-man", + "symbol": "apeman", + "name": "Ape Man" + }, + { + "id": "apenft", + "symbol": "nft", + "name": "AINFT" + }, + { + "id": "ape-on-apechain", + "symbol": "ape", + "name": "Ape On ApeChain" + }, + { + "id": "apertum", + "symbol": "aptm", + "name": "Apertum" + }, + { + "id": "aperture-finance", + "symbol": "aptr", + "name": "Aperture Finance" + }, + { + "id": "apes-2", + "symbol": "apes", + "name": "APES" + }, + { + "id": "apescreener", + "symbol": "apes", + "name": "ApeScreener" + }, + { + "id": "apes-go-bananas", + "symbol": "agb", + "name": "Apes Go Bananas" + }, + { + "id": "apestrategy", + "symbol": "apestr", + "name": "ApeStrategy" + }, + { + "id": "apeswap-finance", + "symbol": "banana", + "name": "ApeSwap" + }, + { + "id": "apetardio", + "symbol": "apetardio", + "name": "Apetardio" + }, + { + "id": "apetos", + "symbol": "ape", + "name": "Apetos" + }, + { + "id": "apewifhat", + "symbol": "apewifhat", + "name": "ApeWifHat" + }, + { + "id": "apex-4", + "symbol": "ap3x", + "name": "APEX" + }, + { + "id": "apex-5", + "symbol": "sn1", + "name": "Apex" + }, + { + "id": "apex-ai", + "symbol": "apex", + "name": "Apex AI" + }, + { + "id": "apexit-finance", + "symbol": "apex", + "name": "ApeXit Finance" + }, + { + "id": "apexrom", + "symbol": "apr", + "name": "Apexrom" + }, + { + "id": "apextoken", + "symbol": "apx", + "name": "ApexToken" + }, + { + "id": "apex-token-2", + "symbol": "apex", + "name": "APEX" + }, + { + "id": "apf-coin", + "symbol": "apfc", + "name": "APF coin" + }, + { + "id": "api3", + "symbol": "api3", + "name": "Api3" + }, + { + "id": "apillon", + "symbol": "nctr", + "name": "Apillon" + }, + { + "id": "apin-pulse", + "symbol": "apc", + "name": "Apin Pulse" + }, + { + "id": "apix-2", + "symbol": "apix", + "name": "APIX" + }, + { + "id": "apm-coin", + "symbol": "apm", + "name": "apM Coin" + }, + { + "id": "apo", + "symbol": "apo", + "name": "APO" + }, + { + "id": "apollo-3", + "symbol": "apollo", + "name": "Apollo" + }, + { + "id": "apollo-ai", + "symbol": "apollo", + "name": "Apollo AI" + }, + { + "id": "apollo-ai-by-virtuals", + "symbol": "apl", + "name": "APOLLO AI by Virtuals" + }, + { + "id": "apollo-caps", + "symbol": "ace", + "name": "Apollo Caps" + }, + { + "id": "apollo-diversified-credit-securitize-fund", + "symbol": "acred", + "name": "Apollo Diversified Credit Securitize Fund" + }, + { + "id": "apollo-ftw", + "symbol": "ftw", + "name": "Apollo FTW" + }, + { + "id": "apollo-global-management-ondo-tokenized-stock", + "symbol": "apoon", + "name": "Apollo Global Management (Ondo Tokenized Stock)" + }, + { + "id": "apollox-2", + "symbol": "apx", + "name": "APX" + }, + { + "id": "appduck-by-virtuals", + "symbol": "duck", + "name": "AppDuck by Virtuals" + }, + { + "id": "apple-cat", + "symbol": "$acat", + "name": "Apple Cat" + }, + { + "id": "apple-ondo-tokenized-stock", + "symbol": "aaplon", + "name": "Apple (Ondo Tokenized Stock)" + }, + { + "id": "apple-tokenized-stock-defichain", + "symbol": "daapl", + "name": "Apple Tokenized Stock Defichain" + }, + { + "id": "apple-xstock", + "symbol": "aaplx", + "name": "Apple xStock" + }, + { + "id": "applovin-ondo-tokenized-stock", + "symbol": "appon", + "name": "AppLovin (Ondo Tokenized Stock)" + }, + { + "id": "applovin-xstock", + "symbol": "appx", + "name": "AppLovin xStock" + }, + { + "id": "apraemio", + "symbol": "apra", + "name": "Apraemio" + }, + { + "id": "apricot", + "symbol": "aprt", + "name": "Apricot" + }, + { + "id": "april", + "symbol": "april", + "name": "April" + }, + { + "id": "apriori", + "symbol": "apr", + "name": "aPriori" + }, + { + "id": "apro", + "symbol": "at", + "name": "Apro" + }, + { + "id": "a-pro", + "symbol": "高手", + "name": "高手 (A Pro)" + }, + { + "id": "apsis", + "symbol": "aps", + "name": "Apsis" + }, + { + "id": "aptos", + "symbol": "apt", + "name": "Aptos" + }, + { + "id": "aptos-futures", + "symbol": "apf", + "name": "Aptos Futures" + }, + { + "id": "apu-apustaja", + "symbol": "apu", + "name": "Apu Apustaja" + }, + { + "id": "apu-apustaja-sol", + "symbol": "apu", + "name": "Apu Apustaja (Solana)" + }, + { + "id": "apu-gurl", + "symbol": "apugurl", + "name": "Apu Gurl" + }, + { + "id": "apu-s-club", + "symbol": "apu", + "name": "Apu Apustaja" + }, + { + "id": "apwine", + "symbol": "apw", + "name": "Spectra [OLD]" + }, + { + "id": "apy-finance", + "symbol": "apy", + "name": "APY.Finance" + }, + { + "id": "apyswap", + "symbol": "apys", + "name": "APYSwap" + }, + { + "id": "apy-vision", + "symbol": "vision", + "name": "APY.vision" + }, + { + "id": "aqc", + "symbol": "aqc", + "name": "AQC" + }, + { + "id": "aqtis", + "symbol": "aita", + "name": "AITA" + }, + { + "id": "aquadao", + "symbol": "$aqua", + "name": "AquaDAO" + }, + { + "id": "aqua-goat", + "symbol": "aquagoat", + "name": "Aqua Goat" + }, + { + "id": "aqualibre", + "symbol": "aqla", + "name": "Aqualibre" + }, + { + "id": "aquanee", + "symbol": "aqdc", + "name": "Aquanee" + }, + { + "id": "aquari-2", + "symbol": "aquari", + "name": "Aquari" + }, + { + "id": "aquarius", + "symbol": "aqua", + "name": "Aquarius" + }, + { + "id": "aquarius-2", + "symbol": "aquarius", + "name": "Aquarius" + }, + { + "id": "aquarius-loan", + "symbol": "ars", + "name": "Aquarius Loan" + }, + { + "id": "aquathecoin", + "symbol": "aqua", + "name": "Aquathecoin" + }, + { + "id": "ara", + "symbol": "ara", + "name": "ARA" + }, + { + "id": "arab-cat", + "symbol": "arab", + "name": "Arab cat" + }, + { + "id": "arabic", + "symbol": "abic", + "name": "Arabic" + }, + { + "id": "aragon", + "symbol": "ant", + "name": "Aragon" + }, + { + "id": "aragon-protocol", + "symbol": "arg", + "name": "Aragon Protocol" + }, + { + "id": "arai", + "symbol": "aa", + "name": "Arai" + }, + { + "id": "araistotle", + "symbol": "facy", + "name": "ArAIstotle" + }, + { + "id": "araracoin", + "symbol": "arara", + "name": "Araracoin" + }, + { + "id": "ara-token", + "symbol": "ara", + "name": "Ara" + }, + { + "id": "arbdoge-ai", + "symbol": "aidoge", + "name": "ArbDoge AI" + }, + { + "id": "arbidoge", + "symbol": "adoge", + "name": "ArbiDoge" + }, + { + "id": "arbinauts", + "symbol": "arbinauts", + "name": "Arbinauts" + }, + { + "id": "arbinyan", + "symbol": "nyan", + "name": "ArbiNYAN" + }, + { + "id": "arbion-ai", + "symbol": "arai", + "name": "Arbion AI" + }, + { + "id": "arbipad", + "symbol": "arbi", + "name": "ArbiPad" + }, + { + "id": "arbismart-token", + "symbol": "rbis", + "name": "ArbiSmart" + }, + { + "id": "arbitrage-loop", + "symbol": "arb", + "name": "Arbitrage Loop" + }, + { + "id": "arbitrum", + "symbol": "arb", + "name": "Arbitrum" + }, + { + "id": "arbitrum-bridged-wbtc-arbitrum-one", + "symbol": "wbtc", + "name": "Arbitrum Bridged WBTC (Arbitrum One)" + }, + { + "id": "arbitrum-bridged-weth-arbitrum-nova", + "symbol": "weth", + "name": "Arbitrum Bridged WETH (Arbitrum Nova)" + }, + { + "id": "arbitrum-bridged-weth-arbitrum-one", + "symbol": "weth", + "name": "Arbitrum Bridged WETH (Arbitrum One)" + }, + { + "id": "arbitrum-bridged-wrapped-eeth", + "symbol": "weeth", + "name": "Arbitrum Bridged Wrapped eETH (Arbitrum)" + }, + { + "id": "arbitrum-bridged-wsteth-arbitrum", + "symbol": "wsteth", + "name": "Arbitrum Bridged wstETH (Arbitrum)" + }, + { + "id": "arbitrum-ecosystem-index", + "symbol": "arbi", + "name": "Arbitrum Ecosystem Index" + }, + { + "id": "arbitrum-exchange", + "symbol": "arx", + "name": "Arbidex" + }, + { + "id": "arbius", + "symbol": "aius", + "name": "Arbius" + }, + { + "id": "arb-protocol", + "symbol": "arb", + "name": "ARB Protocol" + }, + { + "id": "arbswap", + "symbol": "arbs", + "name": "Arbswap" + }, + { + "id": "arbus", + "symbol": "arbus", + "name": "Arbus" + }, + { + "id": "arbuz", + "symbol": "arbuz", + "name": "ARBUZ" + }, + { + "id": "arc", + "symbol": "arc", + "name": "ARC" + }, + { + "id": "arca", + "symbol": "arca", + "name": "Legend of Arcadia" + }, + { + "id": "arcade-2", + "symbol": "arc", + "name": "Arcade" + }, + { + "id": "arcade-protocol", + "symbol": "arcd", + "name": "Arcade" + }, + { + "id": "arcadeum", + "symbol": "arc", + "name": "Arcadeum" + }, + { + "id": "arcadia", + "symbol": "aaa", + "name": "Arcadia" + }, + { + "id": "arcadiaos", + "symbol": "arcos", + "name": "ArcadiaOS" + }, + { + "id": "arcadium", + "symbol": "arcadium", + "name": "Arcadium" + }, + { + "id": "arcana-token", + "symbol": "xar", + "name": "Arcana Network" + }, + { + "id": "arcane-owls", + "symbol": "owls", + "name": "Arcane Owls" + }, + { + "id": "arcblock", + "symbol": "abt", + "name": "Arcblock" + }, + { + "id": "arch-aggressive-portfolio", + "symbol": "aagg", + "name": "Arch Aggressive Portfolio" + }, + { + "id": "archai", + "symbol": "archai", + "name": "ArchAI" + }, + { + "id": "arch-balanced-portfolio", + "symbol": "abal", + "name": "Arch Balanced Portfolio" + }, + { + "id": "archer-hunter", + "symbol": "faster", + "name": "Archer Hunter" + }, + { + "id": "archeriumai", + "symbol": "arca", + "name": "ArcheriumAi" + }, + { + "id": "archerswap-bow", + "symbol": "bow", + "name": "Archerswap BOW" + }, + { + "id": "archerswap-hunter", + "symbol": "hunt", + "name": "ArcherSwap Hunter" + }, + { + "id": "archethic", + "symbol": "uco", + "name": "Archethic" + }, + { + "id": "archie-the-cigar-poodle", + "symbol": "archie", + "name": "Archie the Cigar Poodle" + }, + { + "id": "archimedes", + "symbol": "arch", + "name": "Archimedes Finance" + }, + { + "id": "architex", + "symbol": "arcx", + "name": "Architex" + }, + { + "id": "archi-token", + "symbol": "archi", + "name": "Archi Token" + }, + { + "id": "archivium", + "symbol": "archive", + "name": "Archivium" + }, + { + "id": "archloot", + "symbol": "al", + "name": "ArchLoot" + }, + { + "id": "archly-finance", + "symbol": "arc", + "name": "Archly Finance" + }, + { + "id": "archway", + "symbol": "arch", + "name": "Archway" + }, + { + "id": "arcium", + "symbol": "arx", + "name": "Arcium" + }, + { + "id": "arcona", + "symbol": "arcona", + "name": "Arcona" + }, + { + "id": "arcs", + "symbol": "arx", + "name": "ARCS" + }, + { + "id": "arcturian-ai-by-virtuals", + "symbol": "light", + "name": "Arcturian AI by Virtuals" + }, + { + "id": "ardana", + "symbol": "dana", + "name": "Ardana" + }, + { + "id": "ardor", + "symbol": "ardr", + "name": "Ardor" + }, + { + "id": "arena-of-faith", + "symbol": "acp", + "name": "Arena Of Faith" + }, + { + "id": "arena-token", + "symbol": "arena", + "name": "ArenaSwap" + }, + { + "id": "arena-z", + "symbol": "a2z", + "name": "Arena-Z" + }, + { + "id": "areon-bridged-usdt-areon-network", + "symbol": "usdt", + "name": "Areon Bridged USDT (Areon Network)" + }, + { + "id": "areon-network", + "symbol": "area", + "name": "Areum" + }, + { + "id": "ares3-network", + "symbol": "ares", + "name": "Ares3 Network" + }, + { + "id": "ares-protocol", + "symbol": "ares", + "name": "Ares Protocol" + }, + { + "id": "are-ya-winning-son", + "symbol": "son", + "name": "ARE YA WINNING, SON?" + }, + { + "id": "argentinacoin", + "symbol": "arg", + "name": "ArgentinaCoin" + }, + { + "id": "argentine-football-association-fan-token", + "symbol": "arg", + "name": "Argentine Football Association Fan Token" + }, + { + "id": "argo", + "symbol": "argo", + "name": "ArGoApp" + }, + { + "id": "argo-3", + "symbol": "argo", + "name": "Argo" + }, + { + "id": "argo-finance", + "symbol": "argo", + "name": "Argo Finance" + }, + { + "id": "argon", + "symbol": "argon", + "name": "Argon" + }, + { + "id": "ari", + "symbol": "ari", + "name": "ARI" + }, + { + "id": "ari10", + "symbol": "ari10", + "name": "Ari10" + }, + { + "id": "aria", + "symbol": "aria", + "name": "Aria" + }, + { + "id": "aria-2", + "symbol": "ariaip", + "name": "Aria" + }, + { + "id": "aria-ai", + "symbol": "aria", + "name": "Aria.AI" + }, + { + "id": "aria-currency", + "symbol": "ria", + "name": "aRIA Currency" + }, + { + "id": "arianee", + "symbol": "aria20", + "name": "Arianee" + }, + { + "id": "aria-premier-launch", + "symbol": "apl", + "name": "Aria Premier Launch" + }, + { + "id": "aries", + "symbol": "aries", + "name": "Aries" + }, + { + "id": "aries-2", + "symbol": "aries", + "name": "ARIES" + }, + { + "id": "arie-the-sealion", + "symbol": "arie", + "name": "Arie The Sealion" + }, + { + "id": "ar-io-network", + "symbol": "ario", + "name": "AR.IO Network" + }, + { + "id": "arise-chikun", + "symbol": "chikun", + "name": "Arise Chikun" + }, + { + "id": "aristo", + "symbol": "aristo", + "name": "Aristo" + }, + { + "id": "ariva", + "symbol": "arv", + "name": "Ariva" + }, + { + "id": "arix", + "symbol": "arix", + "name": "Arix" + }, + { + "id": "arizona-iced-tea", + "symbol": "99cents", + "name": "Arizona Iced Tea" + }, + { + "id": "ark", + "symbol": "ark", + "name": "ARK" + }, + { + "id": "ark-2", + "symbol": "ark", + "name": "ARK" + }, + { + "id": "ark-3", + "symbol": "ark", + "name": "ARK" + }, + { + "id": "arkadiko-protocol", + "symbol": "diko", + "name": "Arkadiko" + }, + { + "id": "arkefi", + "symbol": "rkfi", + "name": "Arkefi" + }, + { + "id": "arken-finance", + "symbol": "$arken", + "name": "Arken Finance" + }, + { + "id": "arken-world", + "symbol": "ark", + "name": "Arken World" + }, + { + "id": "arkeo", + "symbol": "arkeo", + "name": "ARKEO" + }, + { + "id": "arker-2", + "symbol": "arker", + "name": "Arker" + }, + { + "id": "arkham", + "symbol": "arkm", + "name": "Arkham" + }, + { + "id": "ark-innovation-etf-defichain", + "symbol": "darkk", + "name": "ARK Innovation ETF Defichain" + }, + { + "id": "ark-of-panda", + "symbol": "aop", + "name": "Ark of Panda" + }, + { + "id": "arkreen-token", + "symbol": "akre", + "name": "Arkreen Token" + }, + { + "id": "arky", + "symbol": "arky", + "name": "Arky" + }, + { + "id": "arma-block", + "symbol": "ab", + "name": "Arma Block" + }, + { + "id": "arm-holdings-plc-ondo-tokenized-stock", + "symbol": "armon", + "name": "Arm Holdings plc (Ondo Tokenized Stock)" + }, + { + "id": "armor", + "symbol": "armor", + "name": "ARMOR" + }, + { + "id": "army", + "symbol": "army", + "name": "ARMY" + }, + { + "id": "army-2", + "symbol": "army", + "name": "Army" + }, + { + "id": "army-3", + "symbol": "army", + "name": "XRP ARMY" + }, + { + "id": "army-4", + "symbol": "army", + "name": "Army" + }, + { + "id": "army-of-fortune-gem", + "symbol": "afg", + "name": "Army of Fortune Gem" + }, + { + "id": "arnoya-classic", + "symbol": "arnc", + "name": "Arnoya classic" + }, + { + "id": "arok-vc", + "symbol": "arok", + "name": "AROK.VC" + }, + { + "id": "aros", + "symbol": "aros", + "name": "Aros" + }, + { + "id": "arowana", + "symbol": "arw", + "name": "Arowana" + }, + { + "id": "arpa", + "symbol": "arpa", + "name": "ARPA" + }, + { + "id": "arqx-ai", + "symbol": "arqx", + "name": "ARQx AI" + }, + { + "id": "arrland-rum", + "symbol": "rum", + "name": "Arrland RUM" + }, + { + "id": "arsenal-fan-token", + "symbol": "afc", + "name": "Arsenal Fan Token" + }, + { + "id": "artbyte", + "symbol": "aby", + "name": "ArtByte" + }, + { + "id": "artcoin", + "symbol": "ac", + "name": "ArtCoin" + }, + { + "id": "artcpaclub", + "symbol": "cpa-97530", + "name": "ArtCPAclub" + }, + { + "id": "art-de-finance", + "symbol": "adf", + "name": "Art de Finance" + }, + { + "id": "artdra-coin", + "symbol": "artdra", + "name": "ARTDRA Coin" + }, + { + "id": "artem", + "symbol": "artem", + "name": "Artem" + }, + { + "id": "artemis", + "symbol": "mis", + "name": "Artemis" + }, + { + "id": "artemisai", + "symbol": "atai", + "name": "ArtemisAI" + }, + { + "id": "artfi", + "symbol": "artfi", + "name": "ARTFI" + }, + { + "id": "arth", + "symbol": "arth", + "name": "ARTH" + }, + { + "id": "arthswap", + "symbol": "arsw", + "name": "ArthSwap" + }, + { + "id": "arthur-adventure-bsc", + "symbol": "arthur", + "name": "Arthur Adventure - BSC" + }, + { + "id": "artificer", + "symbol": "arti", + "name": "Artificer" + }, + { + "id": "artificial-cz", + "symbol": "aicz", + "name": "Artificial CZ" + }, + { + "id": "artificial-general-intelligence", + "symbol": "agi", + "name": "Artificial General Intelligence" + }, + { + "id": "artificial-girlfriend-intelligence", + "symbol": "agi", + "name": "ArtificialGirlfriendIntelligence" + }, + { + "id": "artificial-gooning-intelligence", + "symbol": "agi", + "name": "Artificial Gooning Intelligence" + }, + { + "id": "artificial-idiot", + "symbol": "aii", + "name": "Artificial idiot" + }, + { + "id": "artificial-intelligence", + "symbol": "ai", + "name": "Artificial Intelligence" + }, + { + "id": "artificial-inu", + "symbol": "ai", + "name": "Artificial Inu" + }, + { + "id": "artificial-isle-clams", + "symbol": "clams", + "name": "Artificial Isle Clams" + }, + { + "id": "artificial-neural-network", + "symbol": "neural", + "name": "Artificial Neural Network" + }, + { + "id": "artificial-neural-network-ordinals", + "symbol": "ainn", + "name": "Artificial Neural Network (Ordinals)" + }, + { + "id": "artl", + "symbol": "artl", + "name": "ARTL" + }, + { + "id": "artmeta", + "symbol": "$mart", + "name": "ArtMeta" + }, + { + "id": "art-of-our-era", + "symbol": "art", + "name": "Art of our era" + }, + { + "id": "artrade", + "symbol": "atr", + "name": "Artrade" + }, + { + "id": "artsted", + "symbol": "arts", + "name": "ARTSTED" + }, + { + "id": "artto-ai", + "symbol": "artto", + "name": "Artto AI" + }, + { + "id": "artyfact", + "symbol": "arty", + "name": "Artyfact" + }, + { + "id": "arvos-ai", + "symbol": "arvos", + "name": "Arvos AI" + }, + { + "id": "arweave", + "symbol": "ar", + "name": "Arweave" + }, + { + "id": "arxiv", + "symbol": "arxiv", + "name": "arXiv" + }, + { + "id": "aryoshin", + "symbol": "ary", + "name": "Aryoshin" + }, + { + "id": "aryze-eeur", + "symbol": "eeur", + "name": "ARYZE eEUR" + }, + { + "id": "aryze-egbp", + "symbol": "egbp", + "name": "ARYZE eGBP" + }, + { + "id": "aryze-eusd", + "symbol": "eusd", + "name": "ARYZE eUSD" + }, + { + "id": "ascia", + "symbol": "ascia", + "name": "ASCIA" + }, + { + "id": "asd", + "symbol": "asd", + "name": "AscendEx" + }, + { + "id": "asdi", + "symbol": "asdi", + "name": "ASDI" + }, + { + "id": "asdi-reward", + "symbol": "asdir", + "name": "ASDI Reward" + }, + { + "id": "ash", + "symbol": "ash", + "name": "ASH" + }, + { + "id": "asha", + "symbol": "asha", + "name": "Asha" + }, + { + "id": "ashswap", + "symbol": "ash", + "name": "AshSwap" + }, + { + "id": "ash-token", + "symbol": "ash", + "name": "Ash Token" + }, + { + "id": "asia-coin", + "symbol": "asia", + "name": "Asia Coin" + }, + { + "id": "asian-mother", + "symbol": "irene", + "name": "ASIAN MOTHER" + }, + { + "id": "askjimmy", + "symbol": "askj", + "name": "AskJimmy" + }, + { + "id": "ask-splat", + "symbol": "splat", + "name": "ASK SPLAT" + }, + { + "id": "ask-the-sandwich", + "symbol": "sanwch", + "name": "ask the Sandwich by Virtuals" + }, + { + "id": "asktianai", + "symbol": "tian", + "name": "AskTianAI" + }, + { + "id": "a-slow-runner", + "symbol": "snail", + "name": "a slow runner" + }, + { + "id": "asmatch", + "symbol": "asm", + "name": "AsMatch" + }, + { + "id": "asml-holding-nv-ondo-tokenized-stock", + "symbol": "asmlon", + "name": "ASML Holding NV (Ondo Tokenized Stock)" + }, + { + "id": "asml-xstock", + "symbol": "asmlx", + "name": "ASML xStock" + }, + { + "id": "as-monaco-fan-token", + "symbol": "asm", + "name": "AS Monaco Fan Token" + }, + { + "id": "aso-finance", + "symbol": "aso", + "name": "Aso Finance" + }, + { + "id": "aspecta", + "symbol": "asp", + "name": "Aspecta" + }, + { + "id": "aspo-world", + "symbol": "aspo", + "name": "ASPO World" + }, + { + "id": "as-roma-fan-token", + "symbol": "asr", + "name": "AS Roma Fan Token" + }, + { + "id": "assai", + "symbol": "assai", + "name": "ASSAI" + }, + { + "id": "assangedao", + "symbol": "justice", + "name": "AssangeDAO" + }, + { + "id": "asscoin", + "symbol": "asscoin", + "name": "ASSCOIN" + }, + { + "id": "assdaq", + "symbol": "assdaq", + "name": "ASSDAQ" + }, + { + "id": "assemble-protocol", + "symbol": "asm", + "name": "Assemble AI" + }, + { + "id": "asset-chain", + "symbol": "asset", + "name": "Asset" + }, + { + "id": "assetlink", + "symbol": "aset", + "name": "AssetLink" + }, + { + "id": "assetmantle", + "symbol": "mntl", + "name": "AssetMantle" + }, + { + "id": "assimilate", + "symbol": "sim", + "name": "Assimilate" + }, + { + "id": "assisterr-ai", + "symbol": "asrr", + "name": "Assisterr AI" + }, + { + "id": "ass-p-500", + "symbol": "ass&p 500", + "name": "ASS&P 500" + }, + { + "id": "assteroid", + "symbol": "assteroid", + "name": "Assteroid" + }, + { + "id": "astar", + "symbol": "astr", + "name": "Astar" + }, + { + "id": "astarter", + "symbol": "aa", + "name": "Astarter" + }, + { + "id": "aster-2", + "symbol": "aster", + "name": "Aster" + }, + { + "id": "aster-3", + "symbol": "aster", + "name": "Aster" + }, + { + "id": "astera-usd", + "symbol": "asusd", + "name": "Astera USD" + }, + { + "id": "aster-dog", + "symbol": "adog", + "name": "aster dog" + }, + { + "id": "aster-inu", + "symbol": "asterinu", + "name": "Aster INU" + }, + { + "id": "asterion", + "symbol": "aster", + "name": "ASTERION" + }, + { + "id": "asterion-2", + "symbol": "asterion", + "name": "Asterion" + }, + { + "id": "asterix", + "symbol": "astx", + "name": "Asterix" + }, + { + "id": "asteroid-bot", + "symbol": "asteroidbot", + "name": "Asteroid Bot" + }, + { + "id": "asteroid-shiba", + "symbol": "asteroid", + "name": "Asteroid Shiba" + }, + { + "id": "astheria", + "symbol": "heria", + "name": "Astheria" + }, + { + "id": "astherus-staked-bnb", + "symbol": "asbnb", + "name": "Aster Staked BNB" + }, + { + "id": "astherus-staked-cake", + "symbol": "ascake", + "name": "Aster Staked CAKE" + }, + { + "id": "astherus-staked-usdf", + "symbol": "asusdf", + "name": "Aster Staked USDF" + }, + { + "id": "astherus-usdf", + "symbol": "usdf", + "name": "Aster USDF" + }, + { + "id": "aston-martin-cognizant-fan-token", + "symbol": "am", + "name": "Aston Martin Cognizant Fan Token" + }, + { + "id": "aston-villa-fan-token", + "symbol": "avl", + "name": "Aston Villa Fan Token" + }, + { + "id": "astra-2", + "symbol": "ast", + "name": "Astra" + }, + { + "id": "astraai", + "symbol": "astra", + "name": "AstraAI" + }, + { + "id": "astra-dao-2", + "symbol": "astradao", + "name": "Astra DAO" + }, + { + "id": "astradex-ai", + "symbol": "adex", + "name": "AstraDex AI" + }, + { + "id": "astrals-glxy", + "symbol": "glxy", + "name": "Astrals GLXY" + }, + { + "id": "astra-nova", + "symbol": "rvv", + "name": "Astra Nova" + }, + { + "id": "astra-protocol-2", + "symbol": "astra", + "name": "Astra Protocol" + }, + { + "id": "astrazeneca-xstock", + "symbol": "aznx", + "name": "AstraZeneca xStock" + }, + { + "id": "astrazion", + "symbol": "aznt", + "name": "AstraZion" + }, + { + "id": "astrena-ai", + "symbol": "rena", + "name": "Astrena AI" + }, + { + "id": "astrid-restaked-cbeth", + "symbol": "rcbeth", + "name": "Astrid Restaked cbETH" + }, + { + "id": "astrid-restaked-reth", + "symbol": "rreth", + "name": "Astrid Restaked rETH" + }, + { + "id": "astroelon", + "symbol": "elonone", + "name": "AstroElon" + }, + { + "id": "astro-fuel", + "symbol": "astro", + "name": "Astro Fuel" + }, + { + "id": "astrolescent", + "symbol": "astrl", + "name": "Astrolescent" + }, + { + "id": "astropepex", + "symbol": "apx", + "name": "AstroPepeX" + }, + { + "id": "astroport-fi", + "symbol": "astro", + "name": "Astroport" + }, + { + "id": "astros", + "symbol": "astros", + "name": "ASTROS" + }, + { + "id": "astrospaces-io", + "symbol": "spaces", + "name": "AstroSpaces.io" + }, + { + "id": "astroswap", + "symbol": "astro", + "name": "AstroSwap" + }, + { + "id": "astrotools", + "symbol": "astro", + "name": "AstroTools" + }, + { + "id": "astrovault", + "symbol": "axv", + "name": "Astrovault" + }, + { + "id": "astrovault-xarch", + "symbol": "xarch", + "name": "xARCH_Astrovault" + }, + { + "id": "astrovault-xatom", + "symbol": "xatom", + "name": "xATOM_Astrovault" + }, + { + "id": "astrovault-xjkl", + "symbol": "xjkl", + "name": "xJKL_Astrovault" + }, + { + "id": "astroverse", + "symbol": "astro", + "name": "AstroVerse" + }, + { + "id": "ast-spacemobile-xstock", + "symbol": "astsx", + "name": "AST SpaceMobile xStock" + }, + { + "id": "asugar", + "symbol": "asugar", + "name": "aSUGAR" + }, + { + "id": "asva", + "symbol": "asva", + "name": "Asva Labs" + }, + { + "id": "asx-capital", + "symbol": "asx", + "name": "ASX Capital" + }, + { + "id": "asym", + "symbol": "asym", + "name": "ASYM" + }, + { + "id": "asymmetry-finance", + "symbol": "asf", + "name": "Asymmetry Finance" + }, + { + "id": "asymmetry-usdaf", + "symbol": "usdaf", + "name": "Asymmetry USDaf Legacy" + }, + { + "id": "asymmetry-usdaf-2", + "symbol": "usdaf", + "name": "Asymmetry USDaf" + }, + { + "id": "asynchronus-by-virtuals", + "symbol": "async", + "name": "ASYNCHRONUS by Virtuals" + }, + { + "id": "ata-by-virtuals", + "symbol": "ata", + "name": "ATA by Virtuals" + }, + { + "id": "atari", + "symbol": "atri", + "name": "Atari" + }, + { + "id": "atehun", + "symbol": "atehun", + "name": "ATEHUN" + }, + { + "id": "atem-network", + "symbol": "atem", + "name": "Atem Network" + }, + { + "id": "athena-by-virtuals", + "symbol": "athena", + "name": "Athena by Virtuals" + }, + { + "id": "athenadao-token", + "symbol": "ath", + "name": "AthenaDAO" + }, + { + "id": "athena-dexfi", + "symbol": "athx", + "name": "Athena DexFi" + }, + { + "id": "athena-returns-olea", + "symbol": "olea", + "name": "Olea Token" + }, + { + "id": "athenax9", + "symbol": "aix9", + "name": "AthenaX9" + }, + { + "id": "athene-network-2", + "symbol": "atn", + "name": "Athene Network" + }, + { + "id": "atlam", + "symbol": "atlam", + "name": "ATLAM" + }, + { + "id": "atlantis-aqua-token", + "symbol": "aqua", + "name": "Atlantis AQUA Token" + }, + { + "id": "atlas-dex", + "symbol": "ats", + "name": "Atlas DEX" + }, + { + "id": "atlas-navi", + "symbol": "navi", + "name": "Atlas Navi" + }, + { + "id": "atlaspad", + "symbol": "aspad", + "name": "Atlaspad" + }, + { + "id": "atlas-usv", + "symbol": "usv", + "name": "Atlas USV" + }, + { + "id": "atletico-madrid", + "symbol": "atm", + "name": "Atletico Madrid Fan Token" + }, + { + "id": "a-t-m-by-basevol", + "symbol": "atm", + "name": "A.T.M. by BaseVol" + }, + { + "id": "atna", + "symbol": "atna", + "name": "atna" + }, + { + "id": "atomic-meta", + "symbol": "atmc", + "name": "Atomic Meta" + }, + { + "id": "atomone", + "symbol": "atone", + "name": "AtomOne" + }, + { + "id": "atoshi", + "symbol": "atos", + "name": "Atoshi" + }, + { + "id": "atreu", + "symbol": "atreu", + "name": "Atreu" + }, + { + "id": "a-trippy-ape", + "symbol": "trip", + "name": "A Trippy Ape" + }, + { + "id": "atrofarm", + "symbol": "atrofa", + "name": "Atrofarm" + }, + { + "id": "ats-coin", + "symbol": "atscoin", + "name": "ATS COIN" + }, + { + "id": "attack-wagon", + "symbol": "atk", + "name": "Attack Wagon" + }, + { + "id": "attarius", + "symbol": "atrs", + "name": "Attarius" + }, + { + "id": "attention", + "symbol": "attn", + "name": "Attention" + }, + { + "id": "attention-token", + "symbol": "attn", + "name": "Attention Token" + }, + { + "id": "attention-trade", + "symbol": "attn", + "name": "Attention Trade" + }, + { + "id": "attila", + "symbol": "att", + "name": "Attila" + }, + { + "id": "atto", + "symbol": "atto", + "name": "Atto" + }, + { + "id": "at-t-xstock", + "symbol": "tx", + "name": "AT&T xStock" + }, + { + "id": "atua-ai", + "symbol": "tua", + "name": "Atua AI" + }, + { + "id": "au79", + "symbol": "au79", + "name": "AU79" + }, + { + "id": "aubrai-by-bio", + "symbol": "aubrai", + "name": "Aubrai by Bio" + }, + { + "id": "auction", + "symbol": "auction", + "name": "Bounce" + }, + { + "id": "auctus", + "symbol": "auc", + "name": "Auctus" + }, + { + "id": "audiera", + "symbol": "beat", + "name": "Audiera" + }, + { + "id": "audit", + "symbol": "audit", + "name": "Audit" + }, + { + "id": "auditai", + "symbol": "audai", + "name": "AuditAI" + }, + { + "id": "auditchain", + "symbol": "audt", + "name": "Auditchain" + }, + { + "id": "audius", + "symbol": "audio", + "name": "Audius" + }, + { + "id": "augur", + "symbol": "rep", + "name": "Augur" + }, + { + "id": "augury-finance", + "symbol": "omen", + "name": "Augury Finance" + }, + { + "id": "auki-labs", + "symbol": "auki", + "name": "Auki" + }, + { + "id": "auklora", + "symbol": "auk", + "name": "Auklora" + }, + { + "id": "aura-2", + "symbol": "aura", + "name": "Aura" + }, + { + "id": "aura-3", + "symbol": "aura", + "name": "AURA" + }, + { + "id": "aura-ai", + "symbol": "aura", + "name": "Aura AI" + }, + { + "id": "aura-bal", + "symbol": "aurabal", + "name": "Aura BAL" + }, + { + "id": "auracle", + "symbol": "auracle", + "name": "Auracle" + }, + { + "id": "aurafarming", + "symbol": "aurafarm", + "name": "AuraFarming" + }, + { + "id": "aura-finance", + "symbol": "aura", + "name": "Aura Finance" + }, + { + "id": "auralex-ai", + "symbol": "aura", + "name": "Auralex AI" + }, + { + "id": "aura-network", + "symbol": "aura", + "name": "Aura Network" + }, + { + "id": "aura-network-old", + "symbol": "aura", + "name": "Aura Network [OLD]" + }, + { + "id": "aura-on-sol", + "symbol": "aura", + "name": "aura" + }, + { + "id": "aurascope", + "symbol": "aura", + "name": "Aurascope" + }, + { + "id": "auriax", + "symbol": "arx", + "name": "Auriax" + }, + { + "id": "aurigami", + "symbol": "ply", + "name": "Aurigami" + }, + { + "id": "aurix", + "symbol": "aur", + "name": "Aurix" + }, + { + "id": "aurk-ai", + "symbol": "aurk", + "name": "Aurk AI" + }, + { + "id": "auro-finance", + "symbol": "auro", + "name": "AURO Finance" + }, + { + "id": "auroracoin", + "symbol": "aur", + "name": "Auroracoin" + }, + { + "id": "aurora-dao", + "symbol": "idex", + "name": "IDEX" + }, + { + "id": "aurora-near", + "symbol": "aurora", + "name": "Aurora" + }, + { + "id": "aurorasolchain", + "symbol": "aurora", + "name": "AURORA" + }, + { + "id": "aurora-terminal", + "symbol": "aurora", + "name": "Aurora" + }, + { + "id": "auroratoken", + "symbol": "aurora", + "name": "AuroraToken" + }, + { + "id": "aurora-ventures", + "symbol": "aura", + "name": "Aurora Ventures" + }, + { + "id": "aurory", + "symbol": "aury", + "name": "Aurory" + }, + { + "id": "auro-usda", + "symbol": "usda", + "name": "AURO USDA" + }, + { + "id": "aurra-by-virtuals", + "symbol": "aura", + "name": "Aurra by Virtuals" + }, + { + "id": "aurumtrust", + "symbol": "aut", + "name": "AurumTrust" + }, + { + "id": "ausd-seed-karura", + "symbol": "aseed", + "name": "aUSD SEED (Karura)" + }, + { + "id": "aussie-bag-workers", + "symbol": "ausbagwork", + "name": "AUSSIE BAG WORKERS" + }, + { + "id": "austin-capitals", + "symbol": "aux", + "name": "Austin Capitals" + }, + { + "id": "australian-crypto-coin-green", + "symbol": "accg", + "name": "Australian Crypto Coin Green" + }, + { + "id": "australian-safe-shepherd", + "symbol": "ass", + "name": "Australian Safe Shepherd" + }, + { + "id": "autism", + "symbol": "autism", + "name": "Autism" + }, + { + "id": "autism-2", + "symbol": "autism", + "name": "autism" + }, + { + "id": "autist", + "symbol": "autist", + "name": "Autist" + }, + { + "id": "autista-cat", + "symbol": "autista", + "name": "autista cat" + }, + { + "id": "auto", + "symbol": "auto", + "name": "Auto" + }, + { + "id": "auto-2", + "symbol": "auto", + "name": "AUTO" + }, + { + "id": "autoair-ai", + "symbol": "aai", + "name": "AutoAir AI" + }, + { + "id": "autobahn-network", + "symbol": "txl", + "name": "Autobahn Network" + }, + { + "id": "autocrypto", + "symbol": "au", + "name": "AutoCrypto" + }, + { + "id": "autolayer", + "symbol": "lay3r", + "name": "Autolayer" + }, + { + "id": "automata", + "symbol": "ata", + "name": "Automata" + }, + { + "id": "automatic-treasury-machine", + "symbol": "atm", + "name": "Automatic Treasury Machine" + }, + { + "id": "automation", + "symbol": "auto", + "name": "automation" + }, + { + "id": "autominingtoken", + "symbol": "amt", + "name": "AutoMiningToken" + }, + { + "id": "auton", + "symbol": "atn", + "name": "Auton" + }, + { + "id": "autonio", + "symbol": "niox", + "name": "Autonio" + }, + { + "id": "autonolas", + "symbol": "olas", + "name": "Autonolas" + }, + { + "id": "autonoma-network", + "symbol": "atnm", + "name": "Autonoma Network" + }, + { + "id": "autonomi", + "symbol": "ant", + "name": "Autonomi" + }, + { + "id": "autonomous-secure-dollar", + "symbol": "ussd", + "name": "Autonomous Secure Dollar" + }, + { + "id": "autonomous-virtual-beings", + "symbol": "avb", + "name": "Autonomous Virtual Beings" + }, + { + "id": "autonomys-network", + "symbol": "ai3", + "name": "Autonomys Network" + }, + { + "id": "autumn", + "symbol": "autumn", + "name": "Autumn" + }, + { + "id": "ava-ai", + "symbol": "ava", + "name": "Ava AI" + }, + { + "id": "ava-chiang-mai-night-safari-ava", + "symbol": "ava", + "name": "AVA Chiang Mai Night Safari (AVA)" + }, + { + "id": "avacoach", + "symbol": "avac", + "name": "AvaCoach" + }, + { + "id": "avadex-token", + "symbol": "avex", + "name": "AvaDex Token" + }, + { + "id": "ava-foundation-bridged-ava-bsc", + "symbol": "ava", + "name": "AVA (Travala) Bridged AVA (BSC)" + }, + { + "id": "avail", + "symbol": "avail", + "name": "Avail" + }, + { + "id": "avalanche-2", + "symbol": "avax", + "name": "Avalanche" + }, + { + "id": "avalanche-bridged-btc-arbitrum-one", + "symbol": "btc.b", + "name": "Avalanche Bridged BTC (Arbitrum One)" + }, + { + "id": "avalanche-bridged-dai-avalanche", + "symbol": "dai", + "name": "Avalanche Bridged DAI (Avalanche)" + }, + { + "id": "avalanche-bridged-weth-avalanche", + "symbol": "weth", + "name": "Avalanche Bridged WETH (Avalanche)" + }, + { + "id": "avalanche-old-bridged-wbtc-avalanche", + "symbol": "wbtc.e", + "name": "Avalanche Bridged WBTC (Avalanche)" + }, + { + "id": "avalanche-wormhole", + "symbol": "avax", + "name": "Avalanche (Wormhole)" + }, + { + "id": "avalaunch", + "symbol": "xava", + "name": "Avalaunch" + }, + { + "id": "avalon-2", + "symbol": "avl", + "name": "Avalon" + }, + { + "id": "avantis", + "symbol": "avnt", + "name": "Avantis" + }, + { + "id": "avant-staked-usd", + "symbol": "savusd", + "name": "Avant Staked USD" + }, + { + "id": "avant-usd", + "symbol": "avusd", + "name": "Avant USD" + }, + { + "id": "avaocado-dao", + "symbol": "avg", + "name": "Avocado DAO" + }, + { + "id": "avarik-saga", + "symbol": "avrk", + "name": "Avarik Saga" + }, + { + "id": "avatago", + "symbol": "agt", + "name": "AVATAGO" + }, + { + "id": "ava-the-golden-tiger", + "symbol": "ava", + "name": "Ava The Golden Tiger" + }, + { + "id": "avatly-2", + "symbol": "avatly", + "name": "Avatly" + }, + { + "id": "avax-has-no-chill", + "symbol": "nochill", + "name": "AVAX HAS NO CHILL" + }, + { + "id": "avaxlama", + "symbol": "lama", + "name": "Lama" + }, + { + "id": "avax-meme-index", + "symbol": "ami", + "name": "AVAX Meme Index" + }, + { + "id": "avaxtars", + "symbol": "avxt", + "name": "Avaxtars" + }, + { + "id": "avc", + "symbol": "avc", + "name": "AVC" + }, + { + "id": "aventus", + "symbol": "avt", + "name": "Aventus" + }, + { + "id": "aver-ai", + "symbol": "aver", + "name": "Aver AI" + }, + { + "id": "averra-finance", + "symbol": "avr", + "name": "Averra Finance" + }, + { + "id": "avian-network", + "symbol": "avn", + "name": "AVIAN" + }, + { + "id": "aviator", + "symbol": "avi", + "name": "Aviator" + }, + { + "id": "avici", + "symbol": "avici", + "name": "Avici" + }, + { + "id": "avil", + "symbol": "avil", + "name": "AVIL" + }, + { + "id": "avinoc", + "symbol": "avinoc", + "name": "AVINOC" + }, + { + "id": "avive", + "symbol": "avive", + "name": "Avive" + }, + { + "id": "avo", + "symbol": "avo", + "name": "Avo" + }, + { + "id": "avocado-bg", + "symbol": "avo", + "name": "AVOCADO BG" + }, + { + "id": "avocadocoin", + "symbol": "avdo", + "name": "AvocadoCoin" + }, + { + "id": "avocato", + "symbol": "ato", + "name": "Avocato" + }, + { + "id": "awakeborn-token", + "symbol": "awk", + "name": "Awakeborn Token" + }, + { + "id": "away-from-keyboard", + "symbol": "afk", + "name": "Away From Keyboard" + }, + { + "id": "awesomex", + "symbol": "awx", + "name": "AwesomeX" + }, + { + "id": "awkward-look-monkey-club", + "symbol": "almc", + "name": "Awkward Look Monkey Club" + }, + { + "id": "awkward-monkey", + "symbol": "awk", + "name": "Awkward Monkey" + }, + { + "id": "awoke-2", + "symbol": "awoke", + "name": "Awoke" + }, + { + "id": "axe", + "symbol": "axe", + "name": "Axe" + }, + { + "id": "axel", + "symbol": "axel", + "name": "AXEL" + }, + { + "id": "axelar", + "symbol": "axl", + "name": "Axelar" + }, + { + "id": "axelar-bridged-frax-ether", + "symbol": "axlfrxeth", + "name": "Axelar Bridged Frax Ether" + }, + { + "id": "axelar-bridged-usdc-blast", + "symbol": "axlusdc", + "name": "Axelar Bridged USDC (Blast)" + }, + { + "id": "axelar-bridged-usdc-cosmos", + "symbol": "usdc.eth.axl", + "name": "Axelar Bridged USDC (Osmosis)" + }, + { + "id": "axelar-bridged-wbnb-axelar", + "symbol": "wbnb.axl", + "name": "Axelar Bridged WBNB (Axelar)" + }, + { + "id": "axelar-usdt", + "symbol": "axlusdt", + "name": "Bridged Tether (Axelar)" + }, + { + "id": "axelrod-by-virtuals", + "symbol": "axr", + "name": "Axelrod by Virtuals" + }, + { + "id": "axel-win", + "symbol": "axel", + "name": "AXEL.win" + }, + { + "id": "axi", + "symbol": "axi", + "name": "AXI" + }, + { + "id": "axie-infinity", + "symbol": "axs", + "name": "Axie Infinity" + }, + { + "id": "axioma-token", + "symbol": "axt", + "name": "AXIOMA TOKEN" + }, + { + "id": "axion", + "symbol": "axn", + "name": "Axion" + }, + { + "id": "axion-2", + "symbol": "axi", + "name": "Axira" + }, + { + "id": "axis-alive", + "symbol": "axis", + "name": "AXiS ALiVE" + }, + { + "id": "axl-inu", + "symbol": "axl", + "name": "AXL INU" + }, + { + "id": "axlusdc", + "symbol": "axlusdc", + "name": "Axelar Bridged USDC" + }, + { + "id": "axlwbtc", + "symbol": "axlwbtc", + "name": "axlWBTC" + }, + { + "id": "axlweth", + "symbol": "axleth", + "name": "Axelar Wrapped Ether" + }, + { + "id": "axol", + "symbol": "axol", + "name": "AXOL" + }, + { + "id": "axondao-governance-token", + "symbol": "axgt", + "name": "AxonDAO Governance Token" + }, + { + "id": "axoria", + "symbol": "ax", + "name": "Axoria" + }, + { + "id": "axycoin", + "symbol": "axyc", + "name": "AxyCoin" + }, + { + "id": "ayin", + "symbol": "ayin", + "name": "Ayin" + }, + { + "id": "azadi-coin", + "symbol": "ac", + "name": "Azadi Coin" + }, + { + "id": "azbit", + "symbol": "az", + "name": "Azbit" + }, + { + "id": "azen", + "symbol": "azen", + "name": "aZen" + }, + { + "id": "azgnit-lpf-b", + "symbol": "azgnit", + "name": "azGNIT-LPF-B" + }, + { + "id": "azit", + "symbol": "azit", + "name": "azit" + }, + { + "id": "azizi", + "symbol": "azizi", + "name": "Azizi" + }, + { + "id": "azuki", + "symbol": "azuki", + "name": "Azuki" + }, + { + "id": "azuma-coin", + "symbol": "azum", + "name": "Azuma Coin" + }, + { + "id": "azuro-protocol", + "symbol": "azur", + "name": "Azuro Protocol" + }, + { + "id": "b0rder1ess", + "symbol": "b01", + "name": "b0rder1ess" + }, + { + "id": "b14g-dualbtc-principal", + "symbol": "pt-dualbtc", + "name": "b14g dualBTC Principal" + }, + { + "id": "b14g-dualcore", + "symbol": "dualcore", + "name": "b14g dualCORE" + }, + { + "id": "b1coin", + "symbol": "bicoin", + "name": "B1COIN" + }, + { + "id": "b1oai", + "symbol": "b1oai", + "name": "B1OAI" + }, + { + "id": "b20", + "symbol": "b20", + "name": "B20" + }, + { + "id": "b2baby", + "symbol": "b2baby", + "name": "B2Baby" + }, + { + "id": "b2share", + "symbol": "b2share", + "name": "B2SHARE" + }, + { + "id": "b3", + "symbol": "b3", + "name": "B3 (Base)" + }, + { + "id": "b33", + "symbol": "b33", + "name": "B33" + }, + { + "id": "baanx", + "symbol": "bxx", + "name": "Baanx" + }, + { + "id": "baasid", + "symbol": "baas", + "name": "BaaSid" + }, + { + "id": "baba", + "symbol": "baba", + "name": "BABA" + }, + { + "id": "baba-yaga", + "symbol": "babyag", + "name": "BABA YAGA" + }, + { + "id": "babb", + "symbol": "bax", + "name": "BABB" + }, + { + "id": "babel", + "symbol": "babel", + "name": "Babel" + }, + { + "id": "babelfish-2", + "symbol": "$fish", + "name": "Babelfish" + }, + { + "id": "baby", + "symbol": "baby", + "name": "Baby" + }, + { + "id": "baby-2", + "symbol": "baby", + "name": "BABY" + }, + { + "id": "baby-4", + "symbol": "baby4", + "name": "Baby 4" + }, + { + "id": "baby-aster", + "symbol": "babyaster", + "name": "Baby Aster" + }, + { + "id": "baby-aura", + "symbol": "babyaura", + "name": "Baby Aura" + }, + { + "id": "baby-axol", + "symbol": "bbaxol", + "name": "Baby Axol" + }, + { + "id": "baby-bali", + "symbol": "bb", + "name": "Baby Bali" + }, + { + "id": "baby-base", + "symbol": "base", + "name": "Baby Base" + }, + { + "id": "baby-beercoin", + "symbol": "bbeer", + "name": "BABY BEERCOIN" + }, + { + "id": "baby-besc", + "symbol": "bbesc", + "name": "Baby BESC" + }, + { + "id": "baby-bft", + "symbol": "bbft", + "name": "Baby BFT" + }, + { + "id": "baby-bitcoin-2", + "symbol": "babybtc", + "name": "Baby BitCoin" + }, + { + "id": "baby-bitcoin-3", + "symbol": "babybtc", + "name": "Baby Bitcoin" + }, + { + "id": "baby-bnb", + "symbol": "babybnb", + "name": "Baby BNB" + }, + { + "id": "babybnbtiger", + "symbol": "babybnbtig", + "name": "BabyBNBTiger" + }, + { + "id": "babybonk", + "symbol": "babybonk", + "name": "BabyBonk [OLD]" + }, + { + "id": "babybonk-2", + "symbol": "babybonk", + "name": "BabyBonk" + }, + { + "id": "babybonk-3", + "symbol": "babybonk", + "name": "BabyBonk" + }, + { + "id": "babyboomtoken", + "symbol": "bbt", + "name": "BabyBoomToken" + }, + { + "id": "baby-boss", + "symbol": "babyboss", + "name": "Baby Boss" + }, + { + "id": "baby-bottle", + "symbol": "bott", + "name": "Baby Bottle" + }, + { + "id": "baby-brett-on-base", + "symbol": "bbrett", + "name": "Baby Brett on Base" + }, + { + "id": "baby-broccoli", + "symbol": "babybroccoli", + "name": "Baby Broccoli" + }, + { + "id": "babybuilder", + "symbol": "bbob", + "name": "BabyBuilder" + }, + { + "id": "baby-cat", + "symbol": "babycat", + "name": "Baby Cat" + }, + { + "id": "babycate", + "symbol": "babycate", + "name": "BabyCate" + }, + { + "id": "baby-cheems", + "symbol": "babycheems", + "name": "Baby Cheems" + }, + { + "id": "baby-coq-inu", + "symbol": "bcoq", + "name": "Baby Coq Inu" + }, + { + "id": "babycrash", + "symbol": "babycrash", + "name": "BabyCrash" + }, + { + "id": "baby-degen", + "symbol": "babydegen", + "name": "BABY DEGEN" + }, + { + "id": "babydog", + "symbol": "babydog", + "name": "Babydog" + }, + { + "id": "baby-doge-cash", + "symbol": "babydogecash", + "name": "Baby Doge Cash" + }, + { + "id": "baby-doge-coin", + "symbol": "babydoge", + "name": "Baby Doge Coin" + }, + { + "id": "baby-doge-inu", + "symbol": "$babydogeinu", + "name": "Baby Doge Inu" + }, + { + "id": "babydogwifhat", + "symbol": "babywif", + "name": "babydogwifhat" + }, + { + "id": "baby-dowge", + "symbol": "baby dowge", + "name": "Baby DOWGE" + }, + { + "id": "baby-dragonx", + "symbol": "bdx", + "name": "Baby DragonX" + }, + { + "id": "baby-dust", + "symbol": "babydust", + "name": "Baby Dust" + }, + { + "id": "baby-elon", + "symbol": "babyelon", + "name": "Baby Elon" + }, + { + "id": "baby-ethereum", + "symbol": "babyeth", + "name": "Baby Ethereum" + }, + { + "id": "baby-floki", + "symbol": "babyfloki", + "name": "Baby Floki" + }, + { + "id": "baby-floki-coin", + "symbol": "babyflokicoin", + "name": "Baby Floki Coin" + }, + { + "id": "baby-floki-inu", + "symbol": "bfloki", + "name": "Baby Floki Inu" + }, + { + "id": "baby-fwog", + "symbol": "babyfwog", + "name": "Baby Fwog" + }, + { + "id": "babygirl", + "symbol": "babygirl", + "name": "Babygirl" + }, + { + "id": "baby-goat", + "symbol": "babygoat", + "name": "Baby Goat" + }, + { + "id": "baby-goatseus-maximus", + "symbol": "babygoat", + "name": "Baby Goatseus Maximus" + }, + { + "id": "baby-grok-4", + "symbol": "baby grok", + "name": "baby grok" + }, + { + "id": "baby-grok-5", + "symbol": "babygrok", + "name": "Baby Grok" + }, + { + "id": "babygrok-x", + "symbol": "babygrok x", + "name": "BabyGrok X" + }, + { + "id": "baby-hippo", + "symbol": "babyhippo", + "name": "BABY HIPPO" + }, + { + "id": "baby-jubjub", + "symbol": "bjub", + "name": "Baby JubJub" + }, + { + "id": "babykitty", + "symbol": "babykitty", + "name": "BabyKitty" + }, + { + "id": "babylofi", + "symbol": "babylofi", + "name": "BabyLofi" + }, + { + "id": "babylon", + "symbol": "baby", + "name": "Babylon" + }, + { + "id": "babylong", + "symbol": "$babylong", + "name": "BABYLONG" + }, + { + "id": "babylons", + "symbol": "babi", + "name": "Babylons" + }, + { + "id": "baby-maga", + "symbol": "babymaga", + "name": "Baby Maga" + }, + { + "id": "babymanyu", + "symbol": "babymanyu", + "name": "BabyManyu" + }, + { + "id": "baby-manyu", + "symbol": "babymanyu", + "name": "Baby Manyu" + }, + { + "id": "babymarvin-inu", + "symbol": "babymarvin", + "name": "BabyMarvin Inu" + }, + { + "id": "baby-miggles", + "symbol": "babymiggles", + "name": "Baby Miggles" + }, + { + "id": "baby-monkey", + "symbol": "bonkey", + "name": "Baby Monkey" + }, + { + "id": "babymoodeng", + "symbol": "babydeng", + "name": "BabyMooDeng" + }, + { + "id": "baby-myro", + "symbol": "babymyro", + "name": "Baby Myro" + }, + { + "id": "babymyro-2", + "symbol": "babymyro", + "name": "BabyMyro" + }, + { + "id": "baby-neiro", + "symbol": "baby neiro", + "name": "BABY NEIRO" + }, + { + "id": "baby-neiro-2", + "symbol": "babyneiro", + "name": "Baby Neiro" + }, + { + "id": "baby-neiro-cto", + "symbol": "babyneiro", + "name": "Baby Neiro" + }, + { + "id": "baby-neiro-token", + "symbol": "babyneiro", + "name": "Baby Neiro Token" + }, + { + "id": "baby-peanut", + "symbol": "babyp", + "name": "Baby Peanut" + }, + { + "id": "baby-peipei", + "symbol": "babypeipei", + "name": "Baby PeiPei" + }, + { + "id": "babypepe", + "symbol": "babypepe", + "name": "BabyPepe" + }, + { + "id": "baby-pepe-2", + "symbol": "babypepe", + "name": "Baby Pepe" + }, + { + "id": "baby-pepe-3", + "symbol": "babypepe", + "name": "Baby Pepe" + }, + { + "id": "baby-pepe-4", + "symbol": "babypepe", + "name": "Baby Pepe" + }, + { + "id": "baby-pepe-5", + "symbol": "pepe", + "name": "BABY PEPE" + }, + { + "id": "baby-pepe-6", + "symbol": "pepe", + "name": "BABY PEPE" + }, + { + "id": "baby-pepe-erc20", + "symbol": "babypepe", + "name": "Baby Pepe" + }, + { + "id": "babypepefi", + "symbol": "babypepe", + "name": "Babypepefi" + }, + { + "id": "baby-pepe-on-eth", + "symbol": "peper", + "name": "Baby Pepe on ETH" + }, + { + "id": "baby-pepe-token", + "symbol": "bepe", + "name": "Baby Pepe Token" + }, + { + "id": "babypie-staked-btc", + "symbol": "smbtc", + "name": "Babypie Staked mBTC" + }, + { + "id": "babypie-wrapped-btc", + "symbol": "mbtc", + "name": "Babypie Wrapped BTC" + }, + { + "id": "baby-pnut", + "symbol": "babypnut", + "name": "Baby Pnut" + }, + { + "id": "babypoes", + "symbol": "babypoes", + "name": "BabyPOES" + }, + { + "id": "baby-poo", + "symbol": "babypoo", + "name": "Baby Poo" + }, + { + "id": "baby-purple-pepe", + "symbol": "babypurpe", + "name": "Baby Purple Pepe" + }, + { + "id": "baby-rudi", + "symbol": "babyrudi", + "name": "Baby Rudi" + }, + { + "id": "baby-samo-coin", + "symbol": "baby", + "name": "Baby Samo Coin" + }, + { + "id": "baby-sato", + "symbol": "babysato", + "name": "Baby Sato" + }, + { + "id": "baby-sen-by-sentio", + "symbol": "bsen", + "name": "Baby Sen by Sentio" + }, + { + "id": "baby-shark", + "symbol": "shark", + "name": "Baby Shark" + }, + { + "id": "baby-shark-2", + "symbol": "babyshark", + "name": "Baby Shark" + }, + { + "id": "baby-shark-meme", + "symbol": "babyshark", + "name": "Baby Shark Meme" + }, + { + "id": "baby-shark-tank", + "symbol": "bashtank", + "name": "Baby Shark Tank" + }, + { + "id": "baby-shark-universe", + "symbol": "bsu", + "name": "Baby Shark Universe" + }, + { + "id": "baby-shiba-inu", + "symbol": "babyshibainu", + "name": "Baby Shiba Inu" + }, + { + "id": "baby-shiba-inu-erc", + "symbol": "babyshib", + "name": "Baby Shiba Inu" + }, + { + "id": "baby-shiro-neko", + "symbol": "babyshiro", + "name": "Baby Shiro Neko" + }, + { + "id": "babysmurf9000", + "symbol": "bs9000", + "name": "BabySmurf9000" + }, + { + "id": "babysnek", + "symbol": "bbsnek", + "name": "BabySNEK" + }, + { + "id": "babysol", + "symbol": "babysol", + "name": "BabySOL" + }, + { + "id": "baby-solana", + "symbol": "babysol", + "name": "Baby Solana" + }, + { + "id": "baby-solana-2", + "symbol": "babysol", + "name": "Baby Solana" + }, + { + "id": "baby-solana-3", + "symbol": "babysol", + "name": "Baby Solana" + }, + { + "id": "baby-squid-game", + "symbol": "bsg", + "name": "Baby Squid Game" + }, + { + "id": "babyswap", + "symbol": "baby", + "name": "BabySwap" + }, + { + "id": "baby-tiger", + "symbol": "$bbt", + "name": "Baby Tiger" + }, + { + "id": "baby-tomcat", + "symbol": "babytomcat", + "name": "Baby Tomcat" + }, + { + "id": "baby-trash", + "symbol": "btrash", + "name": "Baby Trash" + }, + { + "id": "baby-troll", + "symbol": "babytroll", + "name": "Baby Troll" + }, + { + "id": "baby-troll-2", + "symbol": "babytroll", + "name": "Baby Troll" + }, + { + "id": "baby-troll-3", + "symbol": "troll", + "name": "Baby Troll" + }, + { + "id": "babytrump", + "symbol": "babytrump", + "name": "BABYTRUMP" + }, + { + "id": "baby-trump-bsc", + "symbol": "babytrump", + "name": "Baby Trump (BSC)" + }, + { + "id": "babyunicorn", + "symbol": "babyu", + "name": "BabyUnicorn" + }, + { + "id": "baby-wen", + "symbol": "bwen", + "name": "Baby Wen" + }, + { + "id": "baby-world-liberty-financial", + "symbol": "babywlfi", + "name": "Baby World Liberty Financial" + }, + { + "id": "baby-x", + "symbol": "babyx", + "name": "Baby X" + }, + { + "id": "babyx-swap", + "symbol": "babyx", + "name": "BabyX Swap" + }, + { + "id": "baby-zeek", + "symbol": "kitten", + "name": "Baby Zeek" + }, + { + "id": "bachi-on-base", + "symbol": "bachi", + "name": "Bachi on Base" + }, + { + "id": "back2employmenteducationtraining", + "symbol": "beet", + "name": "Back2EmploymentEducationTraining" + }, + { + "id": "backbone-labs-staked-juno", + "symbol": "bjuno", + "name": "Backbone Labs Staked JUNO" + }, + { + "id": "backbone-labs-staked-luna", + "symbol": "bluna", + "name": "Backbone Labs Staked LUNA" + }, + { + "id": "backbone-staked-kujira", + "symbol": "bkuji", + "name": "Backbone Staked Kujira" + }, + { + "id": "backbone-staked-osmo", + "symbol": "bosmo", + "name": "Backbone staked OSMO" + }, + { + "id": "backed-alphabet-class-a", + "symbol": "bgoogl", + "name": "Backed Alphabet Class A" + }, + { + "id": "backed-coinbase-global", + "symbol": "bcoin", + "name": "Backed Coinbase Global" + }, + { + "id": "backed-cspx-core-s-p-500", + "symbol": "bcspx", + "name": "Backed CSPX Core S&P 500" + }, + { + "id": "backed-erna-bond", + "symbol": "berna", + "name": "Backed ERNA $ Bond" + }, + { + "id": "backed-ernx-bond", + "symbol": "bernx", + "name": "Backed ERNX € Bond" + }, + { + "id": "backed-gamestop-corp", + "symbol": "bgme", + "name": "Backed GameStop Corp" + }, + { + "id": "backed-govies-0-6-months-euro", + "symbol": "bc3m", + "name": "Backed GOVIES 0-6 months EURO" + }, + { + "id": "backed-high-high-yield-corp-bond", + "symbol": "bhigh", + "name": "Backed HIGH € High Yield Corp Bond" + }, + { + "id": "backed-ib01-treasury-bond-0-1yr", + "symbol": "bib01", + "name": "Backed IB01 $ Treasury Bond 0-1yr" + }, + { + "id": "backed-ibta-treasury-bond-1-3yr", + "symbol": "bibta", + "name": "Backed IBTA $ Treasury Bond 1-3yr" + }, + { + "id": "backed-microsoft", + "symbol": "bmsft", + "name": "Backed Microsoft" + }, + { + "id": "backed-microstrategy", + "symbol": "bmstr", + "name": "Backed MicroStrategy" + }, + { + "id": "backed-niu-technologies", + "symbol": "bniu", + "name": "Backed NIU Technologies" + }, + { + "id": "backed-swiss-domestic-government-bond-0-3", + "symbol": "bcsbgc3", + "name": "Backed Swiss Domestic Government Bond 0-3" + }, + { + "id": "backed-tesla", + "symbol": "btsla", + "name": "Backed Tesla" + }, + { + "id": "backed-zpr1-1-3-month-t-bill", + "symbol": "bzpr1", + "name": "Backed ZPR1 $ 1-3 Month T-Bill" + }, + { + "id": "backpack-staked-sol", + "symbol": "bpsol", + "name": "Backpack Staked SOL" + }, + { + "id": "backroom", + "symbol": "room", + "name": "Backroom" + }, + { + "id": "backstage", + "symbol": "bks", + "name": "Backstage" + }, + { + "id": "backstage-pass-notes", + "symbol": "notes", + "name": "Backstage Pass Notes" + }, + { + "id": "backyard-bandwidth", + "symbol": "bb", + "name": "Backyard Bandwidth" + }, + { + "id": "bacondao", + "symbol": "bacon", + "name": "BaconDAO" + }, + { + "id": "bacon-protocol", + "symbol": "bac", + "name": "Bacon Protocol" + }, + { + "id": "badcat", + "symbol": "badcat", + "name": "BADCAT" + }, + { + "id": "badcatsol", + "symbol": "$badcat", + "name": "BADCATsol" + }, + { + "id": "bad-coin", + "symbol": "badai", + "name": "BAD Coin [OLD]" + }, + { + "id": "baddiecoin", + "symbol": "baddie", + "name": "baddiecoin" + }, + { + "id": "badger-badger-badger", + "symbol": "badger", + "name": "badger badger badger" + }, + { + "id": "badger-dao", + "symbol": "badger", + "name": "Badger" + }, + { + "id": "badger-sett-badger", + "symbol": "bbadger", + "name": "Badger Sett Badger" + }, + { + "id": "bad-idea-ai", + "symbol": "bad", + "name": "Bad Idea AI" + }, + { + "id": "bad-rudi", + "symbol": "badrudi", + "name": "Bad Rudi" + }, + { + "id": "bad-token", + "symbol": "bad", + "name": "BAD TOKEN" + }, + { + "id": "bag", + "symbol": "bag", + "name": "Bag" + }, + { + "id": "bagholder", + "symbol": "bag", + "name": "Bagholder" + }, + { + "id": "bagless", + "symbol": "bagless", + "name": "BAGLESS" + }, + { + "id": "bag-on-bonk", + "symbol": "bag", + "name": "Bag on Bonk" + }, + { + "id": "bagwork", + "symbol": "bagwork", + "name": "Bagwork" + }, + { + "id": "baibysitter", + "symbol": "baiby", + "name": "baibysitter" + }, + { + "id": "baidu-ondo-tokenized-stock", + "symbol": "biduon", + "name": "Baidu (Ondo Tokenized Stock)" + }, + { + "id": "b-ai-fund", + "symbol": "bai", + "name": "bAI Fund" + }, + { + "id": "bainance-labs", + "symbol": "bainance", + "name": "bAInance Labs" + }, + { + "id": "bairai", + "symbol": "bair", + "name": "BAIRAI" + }, + { + "id": "bai-stablecoin", + "symbol": "bai", + "name": "BAI Stablecoin" + }, + { + "id": "baked", + "symbol": "baked", + "name": "Baked" + }, + { + "id": "baked-token", + "symbol": "baked", + "name": "Baked" + }, + { + "id": "bakeneko", + "symbol": "bakeneko", + "name": "BAKENEKO" + }, + { + "id": "bakerytoken", + "symbol": "bake", + "name": "BakerySwap" + }, + { + "id": "bakkt", + "symbol": "bakkt", + "name": "BAKKT" + }, + { + "id": "baklava", + "symbol": "bava", + "name": "Baklava" + }, + { + "id": "bakso", + "symbol": "bakso", + "name": "BAKSO" + }, + { + "id": "balajis", + "symbol": "balajis", + "name": "balajis" + }, + { + "id": "balance", + "symbol": "ept", + "name": "Balance" + }, + { + "id": "balance-ai", + "symbol": "bai", + "name": "Balance AI" + }, + { + "id": "balanced-dollars", + "symbol": "bnusd", + "name": "Balanced Dollars" + }, + { + "id": "balancer", + "symbol": "bal", + "name": "Balancer" + }, + { + "id": "balancer-80-bal-20-weth", + "symbol": "b-80bal-20weth", + "name": "Balancer 80 BAL 20 WETH" + }, + { + "id": "balancer-80-rdnt-20-weth", + "symbol": "dlp", + "name": "Balancer 80 RDNT 20 WETH" + }, + { + "id": "balancer-stable-usd", + "symbol": "stabal3", + "name": "Balancer Stable USD" + }, + { + "id": "balance-tokens", + "symbol": "baln", + "name": "Balanced" + }, + { + "id": "bald", + "symbol": "bald", + "name": "Bald" + }, + { + "id": "bald-2", + "symbol": "bald", + "name": "BALD" + }, + { + "id": "bald-eagle", + "symbol": "eagle", + "name": "Bald Eagle" + }, + { + "id": "baldor", + "symbol": "baldor", + "name": "Baldor" + }, + { + "id": "bald-world-order", + "symbol": "bald", + "name": "Bald World Order" + }, + { + "id": "ballerina-cappuccina", + "symbol": "ballerina", + "name": "Ballerina Cappuccina" + }, + { + "id": "ballies", + "symbol": "ball", + "name": "Ballies" + }, + { + "id": "b-all-in", + "symbol": "ballin", + "name": "B All In" + }, + { + "id": "ballsackcoin", + "symbol": "ballsack", + "name": "Ballsackcoin" + }, + { + "id": "balls-of-fate", + "symbol": "bof", + "name": "Balls of Fate" + }, + { + "id": "ballswap", + "symbol": "bsp", + "name": "BallSwap" + }, + { + "id": "ballsy-on-sui", + "symbol": "ballsy", + "name": "Ballsy on Sui" + }, + { + "id": "ball-token", + "symbol": "ball", + "name": "Ball" + }, + { + "id": "ballz-of-steel", + "symbol": "ballz", + "name": "Ballz of Steel" + }, + { + "id": "balpha", + "symbol": "balpha", + "name": "bAlpha" + }, + { + "id": "balsa-mm-fund", + "symbol": "bmmf", + "name": "Balsa MM Fund" + }, + { + "id": "balto", + "symbol": "balto", + "name": "BALTO" + }, + { + "id": "bambi", + "symbol": "bam", + "name": "Bambi" + }, + { + "id": "bambit", + "symbol": "bambit", + "name": "BAMBIT" + }, + { + "id": "bamboo-coin", + "symbol": "bmbo", + "name": "Bamboo Coin" + }, + { + "id": "bamboo-defi", + "symbol": "bamboo", + "name": "Bamboo DeFi" + }, + { + "id": "bamboo-on-base", + "symbol": "bamboo", + "name": "Bamboo on Base" + }, + { + "id": "bam-by-scotty", + "symbol": "bam", + "name": "BAM by Scotty" + }, + { + "id": "bamk-of-nakamoto-dollar", + "symbol": "🏦", + "name": "BAMK•OF•NAKAMOTO•DOLLAR" + }, + { + "id": "banana", + "symbol": "banana", + "name": "Banana" + }, + { + "id": "bananacat", + "symbol": "bcat", + "name": "BananaCat" + }, + { + "id": "bananacat-sol", + "symbol": "bcat", + "name": "BananaCat (Sol)" + }, + { + "id": "banana-chain", + "symbol": "banana", + "name": "Banana Chain" + }, + { + "id": "banana-for-scale", + "symbol": "banana", + "name": "Banana for Scale" + }, + { + "id": "banana-for-scale-2", + "symbol": "bananas31", + "name": "Banana For Scale" + }, + { + "id": "banana-gun", + "symbol": "banana", + "name": "Banana Gun" + }, + { + "id": "banana-tape-wall", + "symbol": "btw", + "name": "Banana Tape Wall" + }, + { + "id": "banano", + "symbol": "ban", + "name": "Banano" + }, + { + "id": "bancor", + "symbol": "bnt", + "name": "Bancor Network" + }, + { + "id": "bancor-governance-token", + "symbol": "vbnt", + "name": "Bancor Governance" + }, + { + "id": "bandit-on-base", + "symbol": "bandit", + "name": "Bandit on Base" + }, + { + "id": "band-protocol", + "symbol": "band", + "name": "Band" + }, + { + "id": "bane", + "symbol": "$bane", + "name": "bane" + }, + { + "id": "bangchain-ai", + "symbol": "bangchain", + "name": "BangChain AI" + }, + { + "id": "bangkit", + "symbol": "bkit", + "name": "Bangkit" + }, + { + "id": "banjo", + "symbol": "banjo", + "name": "Banjo" + }, + { + "id": "bankcoin-2", + "symbol": "bank", + "name": "Bankcoin" + }, + { + "id": "bankercoin", + "symbol": "$bank", + "name": "Bankercoin" + }, + { + "id": "bankercoin-2", + "symbol": "bnkr", + "name": "BankrCoin" + }, + { + "id": "bankless-bed-index", + "symbol": "bed", + "name": "Bankless BED Index" + }, + { + "id": "bankless-dao", + "symbol": "bank", + "name": "Bankless DAO" + }, + { + "id": "bank-of-america-xstock", + "symbol": "bacx", + "name": "Bank of America xStock" + }, + { + "id": "bankroll-vault", + "symbol": "vlt", + "name": "Bankroll Vault" + }, + { + "id": "bankrstrategy", + "symbol": "bnkstr", + "name": "BankrStrategy" + }, + { + "id": "bankrx", + "symbol": "bnxr", + "name": "BankrX" + }, + { + "id": "banksocial", + "symbol": "bsl", + "name": "BankSocial" + }, + { + "id": "banksters", + "symbol": "bars", + "name": "Banksters" + }, + { + "id": "banmao", + "symbol": "banmao", + "name": "Banmao" + }, + { + "id": "banned", + "symbol": "banned", + "name": "BANNED" + }, + { + "id": "bansky", + "symbol": "banksy", + "name": "BANKSY" + }, + { + "id": "banx", + "symbol": "banx", + "name": "BANX" + }, + { + "id": "banxchange", + "symbol": "bxe", + "name": "BANXCHANGE" + }, + { + "id": "bao-2", + "symbol": "bao", + "name": "BAO" + }, + { + "id": "baobao", + "symbol": "baobao", + "name": "Baobao" + }, + { + "id": "baobao-2", + "symbol": "baobao", + "name": "BaoBao" + }, + { + "id": "baobao-panda", + "symbol": "baobao", + "name": "BaoBao Panda" + }, + { + "id": "baobaosol", + "symbol": "baos", + "name": "BaoBaoSol" + }, + { + "id": "baoeth-eth-stablepool", + "symbol": "b-baoeth-eth-bpt", + "name": "baoETH-ETH StablePool" + }, + { + "id": "bao-finance", + "symbol": "bao", + "name": "Bao Finance" + }, + { + "id": "bao-finance-v2", + "symbol": "bao", + "name": "Bao Finance V2" + }, + { + "id": "baolong-the-enemy-of-nailong", + "symbol": "baolong", + "name": "Baolong the Enemy of Nailong" + }, + { + "id": "bapcat", + "symbol": "bap", + "name": "bapcat" + }, + { + "id": "barbiecrashbandicootrfk88", + "symbol": "solana", + "name": "BarbieCrashBandicootRFK88" + }, + { + "id": "barkcoin", + "symbol": "bark", + "name": "BarkCoin" + }, + { + "id": "barkcoin-2", + "symbol": "barkcoin", + "name": "BARKcoin" + }, + { + "id": "barking-dog", + "symbol": "bark", + "name": "Barking Dog" + }, + { + "id": "bark-ruffalo-by-virtuals", + "symbol": "pawsy", + "name": "Bark Ruffalo by Virtuals" + }, + { + "id": "barnbridge", + "symbol": "bond", + "name": "BarnBridge" + }, + { + "id": "baron-von-whiskers", + "symbol": "baron", + "name": "Baron Von Whiskers" + }, + { + "id": "barry-the-badger", + "symbol": "barry", + "name": "Barry the badger" + }, + { + "id": "barter", + "symbol": "brtr", + "name": "Barter" + }, + { + "id": "bartholowmeow", + "symbol": "bartholomeow", + "name": "Bartholowmeow" + }, + { + "id": "bas", + "symbol": "bas", + "name": "BNB Attestation Service" + }, + { + "id": "base", + "symbol": "base", + "name": "Base" + }, + { + "id": "base-2", + "symbol": "base", + "name": "Base" + }, + { + "id": "baseai", + "symbol": "baseai", + "name": "BaseAI" + }, + { + "id": "baseape", + "symbol": "bape", + "name": "Baseape" + }, + { + "id": "base-baboon", + "symbol": "boon", + "name": "Base Baboon" + }, + { + "id": "baseball-thief", + "symbol": "karen", + "name": "Baseball Thief" + }, + { + "id": "base-book", + "symbol": "$bbook", + "name": "BASE BOOK" + }, + { + "id": "basecto", + "symbol": "cto", + "name": "BaseCTO" + }, + { + "id": "based", + "symbol": "based", + "name": "BASED" + }, + { + "id": "based-2", + "symbol": "based", + "name": "BASED" + }, + { + "id": "basedai", + "symbol": "basedai", + "name": "BasedAI" + }, + { + "id": "basedandy", + "symbol": "andy", + "name": "Based Andy" + }, + { + "id": "based-apu", + "symbol": "apu", + "name": "Based Apu" + }, + { + "id": "based-aura", + "symbol": "aura", + "name": "based aura" + }, + { + "id": "based-baby", + "symbol": "bbb", + "name": "Based Baby" + }, + { + "id": "based-bario", + "symbol": "bario", + "name": "Based Bario" + }, + { + "id": "based-beast-coin", + "symbol": "beast", + "name": "Based Beast Coin" + }, + { + "id": "based-bobr", + "symbol": "bobr", + "name": "Based BOBR" + }, + { + "id": "based-bonk", + "symbol": "bonk", + "name": "Based Bonk" + }, + { + "id": "based-brett", + "symbol": "brett", + "name": "Brett" + }, + { + "id": "based-brians", + "symbol": "cap", + "name": "Based Brians" + }, + { + "id": "based-bully", + "symbol": "bully", + "name": "BASED BULLY" + }, + { + "id": "based-bunny", + "symbol": "bunny", + "name": "Based Bunny" + }, + { + "id": "based-butthole", + "symbol": "butthole", + "name": "Based Butthole" + }, + { + "id": "basedchad", + "symbol": "based", + "name": "BASEDChad" + }, + { + "id": "based-chad", + "symbol": "chad", + "name": "Based Chad" + }, + { + "id": "based-coin", + "symbol": "based", + "name": "Based Coin" + }, + { + "id": "based-degen-apes", + "symbol": "apes", + "name": "Based Degen Apes" + }, + { + "id": "based-department", + "symbol": "hello", + "name": "Based Department" + }, + { + "id": "basedd-house", + "symbol": "basedd", + "name": "BASEDD House" + }, + { + "id": "based-doge", + "symbol": "bdoge", + "name": "Based Doge" + }, + { + "id": "based-eth", + "symbol": "bsdeth", + "name": "Based ETH" + }, + { + "id": "based-fartcoin", + "symbol": "fartcoin", + "name": "Based Fartcoin" + }, + { + "id": "based-father-pepe", + "symbol": "fpepe", + "name": "Based Father Pepe" + }, + { + "id": "based-froc", + "symbol": "froc", + "name": "Based Froc" + }, + { + "id": "based-fwog", + "symbol": "fwog", + "name": "Based Fwog" + }, + { + "id": "based-hoppy", + "symbol": "hoppy", + "name": "Based Hoppy" + }, + { + "id": "based-hotdog", + "symbol": "botdog", + "name": "Based Hotdog" + }, + { + "id": "basedhype", + "symbol": "basedhype", + "name": "BasedHype" + }, + { + "id": "based-internet-panda-runes", + "symbol": "bip", + "name": "BASED•INTERNET•PANDA (Runes)" + }, + { + "id": "based-lambow", + "symbol": "lambow", + "name": "Based Lambow" + }, + { + "id": "based-llms-arena", + "symbol": "bllm", + "name": "Based LLMs Arena" + }, + { + "id": "based-manyu", + "symbol": "manyu", + "name": "Based Manyu" + }, + { + "id": "basedmilio", + "symbol": "based", + "name": "Basedmilio" + }, + { + "id": "based-mog-coin", + "symbol": "mog", + "name": "Based Mog Coin" + }, + { + "id": "based-monsta", + "symbol": "monsta", + "name": "Based Monsta" + }, + { + "id": "based-moron", + "symbol": "moron", + "name": "Based Moron" + }, + { + "id": "based-neko", + "symbol": "neko", + "name": "Based Neko" + }, + { + "id": "base-dog", + "symbol": "dog", + "name": "Base DOG" + }, + { + "id": "based-peng", + "symbol": "beng", + "name": "Based Peng" + }, + { + "id": "based-pepe", + "symbol": "pepe", + "name": "Based Pepe" + }, + { + "id": "based-rabbit", + "symbol": "rabbit", + "name": "BASED RABBIT" + }, + { + "id": "based-shiba-inu", + "symbol": "bshib", + "name": "Based Shiba Inu" + }, + { + "id": "based-snek", + "symbol": "snek", + "name": "BASED SNEK" + }, + { + "id": "based-spx6900", + "symbol": "spx6900", + "name": "Based SPX6900" + }, + { + "id": "based-street-bets", + "symbol": "bsb", + "name": "Based Street Bets" + }, + { + "id": "basedswap", + "symbol": "bsw", + "name": "BasedSwap" + }, + { + "id": "based-troll", + "symbol": "troll", + "name": "Based Troll" + }, + { + "id": "based-turbo", + "symbol": "turbo", + "name": "Based Turbo" + }, + { + "id": "based-usa", + "symbol": "usa", + "name": "Based USA" + }, + { + "id": "based-wojak", + "symbol": "wojak", + "name": "Based Wojak" + }, + { + "id": "based-zlurpee", + "symbol": "zlurpee", + "name": "Based Zlurpee" + }, + { + "id": "basefrog", + "symbol": "bfrog", + "name": "BaseFrog" + }, + { + "id": "base-god", + "symbol": "tybg", + "name": "Base God" + }, + { + "id": "basehoundbot-by-virtuals", + "symbol": "$hound", + "name": "BaseHoundBot by Virtuals" + }, + { + "id": "base-index", + "symbol": "bindex", + "name": "Base Index" + }, + { + "id": "base-inu", + "symbol": "binu", + "name": "Base Inu" + }, + { + "id": "base-is-for-everyone", + "symbol": "baseisforeveryone", + "name": "Base is for everyone" + }, + { + "id": "base-lord", + "symbol": "lordy", + "name": "Lordy" + }, + { + "id": "basement", + "symbol": "basement", + "name": "BASEment" + }, + { + "id": "basenji", + "symbol": "benji", + "name": "Basenji" + }, + { + "id": "baseprinter", + "symbol": "baseprinter", + "name": "BasePrinter" + }, + { + "id": "base-pro-shops", + "symbol": "bps", + "name": "Base Pro Shops" + }, + { + "id": "base-protocol", + "symbol": "base", + "name": "Base Protocol" + }, + { + "id": "baserise", + "symbol": "brise", + "name": "BaseRise" + }, + { + "id": "basesafe", + "symbol": "safe", + "name": "BaseSafe" + }, + { + "id": "baseshake", + "symbol": "baseshake", + "name": "BaseShake" + }, + { + "id": "base-strategy", + "symbol": "bastr", + "name": "Base Strategy" + }, + { + "id": "base-street", + "symbol": "street", + "name": "Base Street" + }, + { + "id": "baseswap", + "symbol": "bswap", + "name": "BaseSwap" + }, + { + "id": "basetard", + "symbol": "tard", + "name": "Basetard" + }, + { + "id": "base-velocimeter", + "symbol": "bvm", + "name": "Base Velocimeter" + }, + { + "id": "basex", + "symbol": "bsx", + "name": "BaseX" + }, + { + "id": "basey-ai-agent", + "symbol": "basey", + "name": "BASEY AI Agent" + }, + { + "id": "basic-attention-token", + "symbol": "bat", + "name": "Basic Attention" + }, + { + "id": "basic-dog-meme", + "symbol": "dog", + "name": "Basic Dog Meme" + }, + { + "id": "basilisk", + "symbol": "bsx", + "name": "Basilisk" + }, + { + "id": "basis-cash", + "symbol": "bac", + "name": "Basis Cash" + }, + { + "id": "basis-markets", + "symbol": "basis", + "name": "basis.markets" + }, + { + "id": "basisos-by-virtuals", + "symbol": "bios", + "name": "BasisOS by Virtuals" + }, + { + "id": "basket", + "symbol": "bskt", + "name": "Basket" + }, + { + "id": "basketballverse-2", + "symbol": "bvr", + "name": "Basketballverse" + }, + { + "id": "baskt-fun", + "symbol": "baskt", + "name": "Baskt.Fun" + }, + { + "id": "batcat", + "symbol": "btc", + "name": "batcat" + }, + { + "id": "batching-ai", + "symbol": "batch", + "name": "Batching.AI" + }, + { + "id": "batic", + "symbol": "bat", + "name": "Batic" + }, + { + "id": "battle-buddy-token", + "symbol": "bbtkn", + "name": "Battle Buddy Token" + }, + { + "id": "battle-bulls", + "symbol": "bull", + "name": "Battle Bulls" + }, + { + "id": "battlefly", + "symbol": "gfly", + "name": "BattleFly" + }, + { + "id": "battle-of-three-kingdoms", + "symbol": "sgc", + "name": "SGC" + }, + { + "id": "battle-tech-by-virtuals", + "symbol": "bta", + "name": "Battle.tech by Virtuals" + }, + { + "id": "bawls-onu", + "symbol": "$bawls", + "name": "Bawls onu" + }, + { + "id": "bazaars", + "symbol": "bzr", + "name": "Bazaars" + }, + { + "id": "bazed-games", + "symbol": "bazed", + "name": "Bazed Games" + }, + { + "id": "bazinga-2", + "symbol": "bazinga", + "name": "Bazinga" + }, + { + "id": "bbachain", + "symbol": "bba", + "name": "BBAChain" + }, + { + "id": "bbqcoin", + "symbol": "bbq", + "name": "BBQCOIN" + }, + { + "id": "bbs-network", + "symbol": "rtb", + "name": "Roundtable" + }, + { + "id": "bcoq-inu", + "symbol": "bcoq", + "name": "BCOQ INU" + }, + { + "id": "bcpay-fintech", + "symbol": "bcpay", + "name": "BCPAY FinTech" + }, + { + "id": "bcrepe", + "symbol": "bcre", + "name": "BCREPE" + }, + { + "id": "bc-token", + "symbol": "bc", + "name": "BCGame Coin" + }, + { + "id": "b-cube-ai", + "symbol": "bcube", + "name": "B-cube.ai" + }, + { + "id": "bdc-coin", + "symbol": "bdc dana", + "name": "BDC COIN" + }, + { + "id": "bdollar", + "symbol": "bdo", + "name": "bDollar" + }, + { + "id": "bdtcoin", + "symbol": "bdtc", + "name": "BDTCOIN" + }, + { + "id": "beam", + "symbol": "beam", + "name": "BEAM" + }, + { + "id": "beam-2", + "symbol": "beam", + "name": "Beam" + }, + { + "id": "beam-bridged-avax-beam", + "symbol": "avax", + "name": "Beam Bridged AVAX (Beam)" + }, + { + "id": "beam-bridged-usdc-beam", + "symbol": "usdc", + "name": "Beam Bridged USDC (Beam)" + }, + { + "id": "beam-bridged-usdt-beam", + "symbol": "usdt", + "name": "Beam Bridged USDT (Beam)" + }, + { + "id": "beam-bridged-weth-beam", + "symbol": "weth", + "name": "Beam Bridged WETH (Beam)" + }, + { + "id": "beamcat", + "symbol": "bcat", + "name": "BEAMCAT" + }, + { + "id": "beamswap", + "symbol": "glint", + "name": "BeamSwap" + }, + { + "id": "bean", + "symbol": "bean", + "name": "Bean" + }, + { + "id": "bean-cash", + "symbol": "bitb", + "name": "Bean Cash" + }, + { + "id": "bear-2", + "symbol": "bear", + "name": "Bear" + }, + { + "id": "bear-3", + "symbol": "bear", + "name": "BEAR" + }, + { + "id": "bear-bull", + "symbol": "brb", + "name": "Bear Bull" + }, + { + "id": "bear-champ", + "symbol": "bchamp", + "name": "Bear Champ" + }, + { + "id": "beardy-dragon", + "symbol": "beardy", + "name": "Bearded Dragon" + }, + { + "id": "bear-in-bathrobe", + "symbol": "bib", + "name": "Bear In Bathrobe" + }, + { + "id": "bearn-bera", + "symbol": "ybera", + "name": "Bearn BERA" + }, + { + "id": "bear-scrub-money", + "symbol": "bear", + "name": "Bear Scrub Money" + }, + { + "id": "bearxrpl", + "symbol": "$bear", + "name": "BEARXRPL" + }, + { + "id": "beary", + "symbol": "beary", + "name": "BEARY" + }, + { + "id": "beast-seller", + "symbol": "beast", + "name": "BEAST SELLER" + }, + { + "id": "beater", + "symbol": "beatr", + "name": "BEATER" + }, + { + "id": "beat-matchmaker", + "symbol": "beat", + "name": "Beat Matchmaker" + }, + { + "id": "beats-on-base", + "symbol": "beats", + "name": "BEATS on BASE" + }, + { + "id": "beaver", + "symbol": "beaver", + "name": "Beaver" + }, + { + "id": "beaver-coin", + "symbol": "beaver", + "name": "Beaver Coin" + }, + { + "id": "beavers-by-ceden", + "symbol": "beaver", + "name": "Beavers by CEDEN" + }, + { + "id": "bebe", + "symbol": "bebe", + "name": "BEBE" + }, + { + "id": "bebe-dog", + "symbol": "bebe", + "name": "BEBE DOG" + }, + { + "id": "bebe-on-base", + "symbol": "bebe", + "name": "Bebe on Base" + }, + { + "id": "bedrock-btc", + "symbol": "brbtc", + "name": "Bedrock BTC" + }, + { + "id": "bedrock-token", + "symbol": "br", + "name": "Bedrock" + }, + { + "id": "bee", + "symbol": "bee", + "name": "Bee" + }, + { + "id": "beefy-escrowed-fantom", + "symbol": "beftm", + "name": "Beefy Escrowed FTM" + }, + { + "id": "beefy-escrowed-sonic", + "symbol": "bes", + "name": "Beefy-escrowed Sonic" + }, + { + "id": "beefy-finance", + "symbol": "bifi", + "name": "Beefy" + }, + { + "id": "beeg-blue-whale", + "symbol": "beeg", + "name": "Beeg Blue Whale" + }, + { + "id": "bee-launchpad", + "symbol": "bees", + "name": "BEE Launchpad" + }, + { + "id": "beem-communication", + "symbol": "beem", + "name": "Beem Communication" + }, + { + "id": "beenz", + "symbol": "beenz", + "name": "BEENZ" + }, + { + "id": "beep-coin", + "symbol": "beep", + "name": "BEEP Coin" + }, + { + "id": "beeper-coin", + "symbol": "beeper", + "name": "Beeper Coin" + }, + { + "id": "beer-can-island", + "symbol": "bci", + "name": "Beer Can Island" + }, + { + "id": "beercoin2", + "symbol": "beer2", + "name": "Beercoin 2" + }, + { + "id": "beercoin-2", + "symbol": "beer", + "name": "Beercoin" + }, + { + "id": "beer-frog", + "symbol": "frog", + "name": "Beer Frog" + }, + { + "id": "beethoven-x", + "symbol": "beets-legacy", + "name": "Beethoven X (Legacy)" + }, + { + "id": "bee-trade-finance", + "symbol": "btf", + "name": "Bee Trade Finance" + }, + { + "id": "beets", + "symbol": "beets", + "name": "Beets" + }, + { + "id": "beets-staked-sonic", + "symbol": "sts", + "name": "Beets Staked Sonic" + }, + { + "id": "beevo", + "symbol": "beevo", + "name": "Beevo" + }, + { + "id": "befasterholdertoken", + "symbol": "bfht", + "name": "BeFaster Holder Token" + }, + { + "id": "befe", + "symbol": "befe", + "name": "BEFE" + }, + { + "id": "beffai", + "symbol": "$beffai", + "name": "BeffAI" + }, + { + "id": "befi-labs", + "symbol": "befi", + "name": "BeFi Labs" + }, + { + "id": "be-for-fwx", + "symbol": "b4fwx", + "name": "Be For FWX" + }, + { + "id": "beg", + "symbol": "beg", + "name": "Beg" + }, + { + "id": "beholder", + "symbol": "eye", + "name": "Behodler" + }, + { + "id": "beincom", + "symbol": "bic", + "name": "Beincom" + }, + { + "id": "beingai", + "symbol": "being_ai", + "name": "BEINGAI" + }, + { + "id": "bela", + "symbol": "aqua", + "name": "Bela Aqua" + }, + { + "id": "beldex", + "symbol": "bdx", + "name": "Beldex" + }, + { + "id": "beleaf", + "symbol": "leaf", + "name": "BELEAF" + }, + { + "id": "belgian-malinois", + "symbol": "belg", + "name": "Belgian Malinois" + }, + { + "id": "beliefteam", + "symbol": "beliefteam", + "name": "Beliefteam" + }, + { + "id": "believe-coin", + "symbol": "believe", + "name": "believe coin" + }, + { + "id": "believegpt", + "symbol": "pnth", + "name": "Pantheon" + }, + { + "id": "believe-in-something", + "symbol": "bis", + "name": "Believe In Something" + }, + { + "id": "believe-in-something-2", + "symbol": "dtf", + "name": "believe in something" + }, + { + "id": "believe-in-something-3", + "symbol": "something", + "name": "believe in somETHing" + }, + { + "id": "believepad", + "symbol": "bpad", + "name": "BelievePad" + }, + { + "id": "believescreener", + "symbol": "bscreener", + "name": "BelieveScreener" + }, + { + "id": "belikeblob", + "symbol": "blob", + "name": "Blob" + }, + { + "id": "beliquid", + "symbol": "b", + "name": "BeLiquid" + }, + { + "id": "bella-bumper", + "symbol": "bumper", + "name": "Bella Bumper" + }, + { + "id": "bella-protocol", + "symbol": "bel", + "name": "Bella Protocol" + }, + { + "id": "bellscoin", + "symbol": "bells", + "name": "Bellscoin" + }, + { + "id": "bellscoin-2", + "symbol": "bel", + "name": "bellscoin" + }, + { + "id": "belong", + "symbol": "long", + "name": "Belong" + }, + { + "id": "belt", + "symbol": "belt", + "name": "Belt" + }, + { + "id": "beluga-cat", + "symbol": "beluga", + "name": "Beluga Cat" + }, + { + "id": "beluga-fi", + "symbol": "beluga", + "name": "Beluga.fi" + }, + { + "id": "bemchain", + "symbol": "bcn", + "name": "Bemchain" + }, + { + "id": "bemo", + "symbol": "bmton", + "name": "Bemo" + }, + { + "id": "bemo-staked-ton", + "symbol": "stton", + "name": "bemo Staked TON" + }, + { + "id": "bemu", + "symbol": "bemu", + "name": "BEMU" + }, + { + "id": "benddao", + "symbol": "bend", + "name": "BendDAO" + }, + { + "id": "benddao-bdin-ordinals", + "symbol": "bdin", + "name": "BendDAO BDIN (Ordinals)" + }, + { + "id": "beni", + "symbol": "beni", + "name": "Beni" + }, + { + "id": "benis", + "symbol": "benis", + "name": "BENIS" + }, + { + "id": "benjamin", + "symbol": "benji", + "name": "BENJAMIN" + }, + { + "id": "benji-bananas", + "symbol": "tybeng", + "name": "TYBENG" + }, + { + "id": "ben-pasternak", + "symbol": "believe", + "name": "Believe" + }, + { + "id": "benqi", + "symbol": "qi", + "name": "BENQI" + }, + { + "id": "benqi-liquid-staked-avax", + "symbol": "savax", + "name": "BENQI Liquid Staked AVAX" + }, + { + "id": "ben-s-finale", + "symbol": "finale", + "name": "Ben's Finale" + }, + { + "id": "bent-finance", + "symbol": "bent", + "name": "Bent Finance" + }, + { + "id": "ben-the-dog", + "symbol": "bendog", + "name": "Ben the Dog" + }, + { + "id": "bento", + "symbol": "bento", + "name": "Bento" + }, + { + "id": "beny-bad-boy", + "symbol": "bbb", + "name": "Beny Bad Boy" + }, + { + "id": "benyke-finance", + "symbol": "benyke", + "name": "Benyke Finance" + }, + { + "id": "benzene", + "symbol": "bzn", + "name": "Benzene" + }, + { + "id": "bep20-leo", + "symbol": "bleo", + "name": "BEP20 LEO" + }, + { + "id": "bepay", + "symbol": "becoin", + "name": "bePAY Finance" + }, + { + "id": "bepe", + "symbol": "bepe", + "name": "BEPE" + }, + { + "id": "bepe-2", + "symbol": "bepe", + "name": "BEPE" + }, + { + "id": "bepro-network", + "symbol": "bepro", + "name": "Bepro" + }, + { + "id": "ber", + "symbol": "ber", + "name": "ber" + }, + { + "id": "berabot", + "symbol": "bbot", + "name": "Berabot" + }, + { + "id": "berachain-bera", + "symbol": "bera", + "name": "Berachain" + }, + { + "id": "berachain-governance-token", + "symbol": "bgt", + "name": "Berachain Governance Token" + }, + { + "id": "berachain-staked-eth", + "symbol": "beraeth", + "name": "Berachain Staked ETH" + }, + { + "id": "beradrome", + "symbol": "bero", + "name": "Beradrome" + }, + { + "id": "berafi", + "symbol": "berafi", + "name": "BeraFi" + }, + { + "id": "berally-token", + "symbol": "brly", + "name": "Berally Token" + }, + { + "id": "beramoniumcoin", + "symbol": "beramo", + "name": "BeramoniumCoin" + }, + { + "id": "beratardio", + "symbol": "beratardio", + "name": "BERATARDIO" + }, + { + "id": "beraxbt", + "symbol": "bixbt", + "name": "BeraXBT" + }, + { + "id": "berf", + "symbol": "berf", + "name": "BERF" + }, + { + "id": "bergerdoge", + "symbol": "bergerdoge", + "name": "BergerDoge" + }, + { + "id": "berkshire-hathaway-xstock", + "symbol": "brk.bx", + "name": "Berkshire Hathaway xStock" + }, + { + "id": "bermuda-shorts", + "symbol": "short", + "name": "Bermuda Shorts" + }, + { + "id": "berry-data", + "symbol": "bry", + "name": "Berry Data" + }, + { + "id": "bert", + "symbol": "bert", + "name": "Bert" + }, + { + "id": "bertram-the-pomeranian", + "symbol": "bert", + "name": "Bertram The Pomeranian" + }, + { + "id": "besa-gaming-company", + "symbol": "besa", + "name": "Besa Gaming Company" + }, + { + "id": "besc-money", + "symbol": "money", + "name": "BESC MONEY" + }, + { + "id": "besiktas", + "symbol": "bjk", + "name": "Beşiktaş" + }, + { + "id": "beskar", + "symbol": "bsk-baa025", + "name": "Beskar" + }, + { + "id": "bestcoin", + "symbol": "best", + "name": "Bestcoin" + }, + { + "id": "best-memecoin-ever", + "symbol": "cult", + "name": "Best Memecoin Ever" + }, + { + "id": "best-patent-token", + "symbol": "bpt", + "name": "Best Patent Token" + }, + { + "id": "beta", + "symbol": "beta", + "name": "BETA" + }, + { + "id": "beta-2", + "symbol": "beta", + "name": "Beta" + }, + { + "id": "beta-finance", + "symbol": "beta", + "name": "Beta Finance" + }, + { + "id": "beta-trader", + "symbol": "beta", + "name": "Beta Trader" + }, + { + "id": "betbase", + "symbol": "bet", + "name": "BetBase" + }, + { + "id": "bet-big-casino", + "symbol": "betbig", + "name": "Bet Big Casino" + }, + { + "id": "betbruh-bet", + "symbol": "bruh", + "name": "BetBruh.bet" + }, + { + "id": "betbuinu", + "symbol": "crypto", + "name": "BetbuInu" + }, + { + "id": "betduel-ai", + "symbol": "duel", + "name": "BetDuel.ai" + }, + { + "id": "betero", + "symbol": "bte", + "name": "Betero" + }, + { + "id": "betfin-token", + "symbol": "bet", + "name": "Betfin token" + }, + { + "id": "beth", + "symbol": "$beth", + "name": "Beth" + }, + { + "id": "betly", + "symbol": "betly", + "name": "Betly" + }, + { + "id": "bet-more", + "symbol": "bet", + "name": "Bet more" + }, + { + "id": "betmore-casino", + "symbol": "bmr", + "name": "BetMore Casino" + }, + { + "id": "betrmint", + "symbol": "betr", + "name": "BETRMINT" + }, + { + "id": "betswirl", + "symbol": "bets", + "name": "BetSwirl" + }, + { + "id": "bettensor", + "symbol": "sn30", + "name": "Bettensor" + }, + { + "id": "betterfan", + "symbol": "bff", + "name": "BetterFan" + }, + { + "id": "betterment-digital", + "symbol": "bemd", + "name": "Betterment Digital" + }, + { + "id": "better-therapy", + "symbol": "sn102", + "name": "BetterTherapy" + }, + { + "id": "betura", + "symbol": "betura", + "name": "BETURA" + }, + { + "id": "beware-of-geeks-bearing-grifts", + "symbol": "bogbg", + "name": "Beware of Geeks Bearing Grifts" + }, + { + "id": "beyond-finance", + "symbol": "byn", + "name": "NBX" + }, + { + "id": "beyond-gaming", + "symbol": "bdg", + "name": "Beyond Gaming" + }, + { + "id": "bezo", + "symbol": "bezo", + "name": "BEZO" + }, + { + "id": "bezoge-earth", + "symbol": "bezoge", + "name": "Bezoge Earth" + }, + { + "id": "bezoge-on-sol", + "symbol": "bezoge", + "name": "BEZOGE on SOL" + }, + { + "id": "bfg-token", + "symbol": "bfg", + "name": "BFG Token" + }, + { + "id": "bficgold", + "symbol": "bficgold", + "name": "BFICGOLD" + }, + { + "id": "bficoin", + "symbol": "bfic", + "name": "BFIC Coin" + }, + { + "id": "bfusd", + "symbol": "bfusd", + "name": "BFUSD" + }, + { + "id": "b-h-a-d", + "symbol": "bhad", + "name": "B.H.A.D" + }, + { + "id": "bhnetwork", + "symbol": "bhat", + "name": "BHNetwork" + }, + { + "id": "bho-network", + "symbol": "bho", + "name": "BHO Network" + }, + { + "id": "bian-holder", + "symbol": "bnbholder", + "name": "币安Holder" + }, + { + "id": "bianqiche", + "symbol": "币安汽车", + "name": "币安汽车 (Bianqiche)" + }, + { + "id": "bianrensheng", + "symbol": "币安人生", + "name": "币安人生 (BinanceLife)" + }, + { + "id": "biaocoin", + "symbol": "biao", + "name": "Biaocoin" + }, + { + "id": "biao-coin", + "symbol": "biao", + "name": "Biao Coin" + }, + { + "id": "biao-on-bnbchain", + "symbol": "biao", + "name": "Biao on BNBChain" + }, + { + "id": "biao-on-sol", + "symbol": "biao", + "name": "BIAO on SOL" + }, + { + "id": "biaoqing", + "symbol": "biao", + "name": "Biaoqing" + }, + { + "id": "biaoqing-2", + "symbol": "$biao", + "name": "Biaoqing" + }, + { + "id": "biaoqing-sol", + "symbol": "biao", + "name": "Biaoqing SOL" + }, + { + "id": "biaoqing-tron", + "symbol": "biao", + "name": "Biaoqing TRON" + }, + { + "id": "bib", + "symbol": "bib", + "name": "BIB" + }, + { + "id": "bibi", + "symbol": "bibi", + "name": "BIBI" + }, + { + "id": "bibi-2", + "symbol": "bibi", + "name": "Bibi" + }, + { + "id": "biblical-truth", + "symbol": "btru", + "name": "Biblical Truth" + }, + { + "id": "biceps", + "symbol": "bics", + "name": "Biceps" + }, + { + "id": "bichi", + "symbol": "bichi", + "name": "bichi" + }, + { + "id": "bicho", + "symbol": "bicho", + "name": "bicho" + }, + { + "id": "bicity-ai-projects", + "symbol": "bicity", + "name": "BiCity AI Projects" + }, + { + "id": "biconomy", + "symbol": "bico", + "name": "Biconomy" + }, + { + "id": "biconomy-exchange-token", + "symbol": "bit", + "name": "Biconomy Exchange Token" + }, + { + "id": "bictory", + "symbol": "slav", + "name": "SLAV" + }, + { + "id": "bidao", + "symbol": "bid", + "name": "Bidao" + }, + { + "id": "biden-coin", + "symbol": "biden", + "name": "Biden Coin" + }, + { + "id": "bido-staked-bitcoin", + "symbol": "stbtc", + "name": "Bido Staked Bitcoin" + }, + { + "id": "bidz-coin", + "symbol": "bidz", + "name": "BIDZ Coin" + }, + { + "id": "bifi", + "symbol": "bifi", + "name": "BiFi" + }, + { + "id": "bifrost", + "symbol": "bfc", + "name": "Bifrost" + }, + { + "id": "bifrost-bridged-bnb-bifrost", + "symbol": "bnb", + "name": "Bifrost Bridged BNB (Bifrost)" + }, + { + "id": "bifrost-bridged-eth-bifrost", + "symbol": "eth", + "name": "Bifrost Bridged ETH (Bifrost)" + }, + { + "id": "bifrost-bridged-matic-bifrost", + "symbol": "matic", + "name": "Bifrost Bridged MATIC (Bifrost)" + }, + { + "id": "bifrost-bridged-usdc-bifrost", + "symbol": "usdc", + "name": "Bifrost Bridged USDC (Bifrost)" + }, + { + "id": "bifrost-native-coin", + "symbol": "bnc", + "name": "Bifrost" + }, + { + "id": "bifrost-voucher-astr", + "symbol": "vastr", + "name": "Bifrost Voucher ASTR" + }, + { + "id": "bifrost-voucher-manta", + "symbol": "vmanta", + "name": "Bifrost Voucher MANTA" + }, + { + "id": "big", + "symbol": "big", + "name": "BIG" + }, + { + "id": "big-back-bitcoin", + "symbol": "bbbtc", + "name": "Big Back Bitcoin" + }, + { + "id": "big-balls", + "symbol": "balls", + "name": "Big Balls" + }, + { + "id": "big-balls-birds", + "symbol": "balls", + "name": "Big Balls Birds" + }, + { + "id": "big-bear-bald-eagle", + "symbol": "eagle", + "name": "Big Bear Bald Eagle" + }, + { + "id": "big-bonus-coin", + "symbol": "bbc", + "name": "Big Bonus Coin" + }, + { + "id": "big-bonus-coin-2", + "symbol": "bbc", + "name": "Big Bonus Coin [ETH]" + }, + { + "id": "big-bud", + "symbol": "$bud", + "name": "Big Bud" + }, + { + "id": "big-cheungus", + "symbol": "$cheungus", + "name": "Big Cheungus" + }, + { + "id": "big-coin-2", + "symbol": "bcx", + "name": "Big Coin" + }, + { + "id": "bigcoin-2", + "symbol": "big", + "name": "Bigcoin" + }, + { + "id": "big-data-protocol", + "symbol": "bdp", + "name": "Big Data Protocol" + }, + { + "id": "big-defi-energy", + "symbol": "bde", + "name": "Big Defi Energy" + }, + { + "id": "big-dog-fink", + "symbol": "bink", + "name": "Big Dog Fink" + }, + { + "id": "big-eyes", + "symbol": "big", + "name": "Big Eyes" + }, + { + "id": "bigfacts", + "symbol": "bigfacts", + "name": "BIGFACTS" + }, + { + "id": "bigfoot-vlogs", + "symbol": "bigfoot", + "name": "Bigfoot Vlogs" + }, + { + "id": "biggie", + "symbol": "biggie", + "name": "Biggie" + }, + { + "id": "big-jim", + "symbol": "bigjim", + "name": "BIG JIM" + }, + { + "id": "big-pharmai", + "symbol": "drugs", + "name": "Big Pharmai" + }, + { + "id": "big-pump", + "symbol": "pump", + "name": "Big Pump" + }, + { + "id": "bigshortbets", + "symbol": "bigsb", + "name": "BigShortBets" + }, + { + "id": "bigstrategy-inc", + "symbol": "bstr", + "name": "BigStrategy Inc" + }, + { + "id": "big-time", + "symbol": "bigtime", + "name": "Big Time" + }, + { + "id": "big-tom", + "symbol": "tom", + "name": "Big Tom" + }, + { + "id": "big-tom-coin", + "symbol": "btc", + "name": "Big Tom Coin" + }, + { + "id": "big-tony", + "symbol": "tony", + "name": "Big Tony" + }, + { + "id": "bigwater", + "symbol": "bigw", + "name": "BigWater" + }, + { + "id": "bijiri", + "symbol": "bjr", + "name": "BiJiRi" + }, + { + "id": "bikera", + "symbol": "imera", + "name": "Bikera" + }, + { + "id": "bilira", + "symbol": "tryb", + "name": "BiLira" + }, + { + "id": "billboard", + "symbol": "billboard", + "name": "BILLBOARD" + }, + { + "id": "billi", + "symbol": "billi", + "name": "Billi" + }, + { + "id": "billicat", + "symbol": "bcat", + "name": "BilliCat" + }, + { + "id": "billion-dollar-cat-runes", + "symbol": "bdc", + "name": "Billy (Bitcoin)" + }, + { + "id": "billion-dollar-inu", + "symbol": "binu", + "name": "Billion Dollar Inu" + }, + { + "id": "billionhappiness", + "symbol": "bhc", + "name": "BillionHappiness" + }, + { + "id": "billions-network", + "symbol": "blns", + "name": "Billions Network" + }, + { + "id": "bill-the-bear", + "symbol": "bill", + "name": "Bill the Bear" + }, + { + "id": "billy", + "symbol": "billy", + "name": "Billy" + }, + { + "id": "billy-base", + "symbol": "billy", + "name": "Billy Base" + }, + { + "id": "billy-bets-by-virtuals", + "symbol": "$billy", + "name": "Billy Bets by Virtuals [OLD]" + }, + { + "id": "billy-bets-by-virtuals-2", + "symbol": "$billy", + "name": "Billy Bets by Virtuals" + }, + { + "id": "billy-on-sui", + "symbol": "billy", + "name": "Billy on SUI" + }, + { + "id": "bim-2", + "symbol": "bim", + "name": "BIM" + }, + { + "id": "binamon", + "symbol": "bmon", + "name": "Binamon" + }, + { + "id": "binance-andy", + "symbol": "币安迪", + "name": "Binance Andy" + }, + { + "id": "binance-bitcoin", + "symbol": "btcb", + "name": "Binance Bitcoin" + }, + { + "id": "binance-bridged-usdc-bnb-smart-chain", + "symbol": "usdc", + "name": "Binance Bridged USDC (BNB Smart Chain)" + }, + { + "id": "binance-bridged-usdt-bnb-smart-chain", + "symbol": "bsc-usd", + "name": "Binance Bridged USDT (BNB Smart Chain)" + }, + { + "id": "binancecoin", + "symbol": "bnb", + "name": "BNB" + }, + { + "id": "binance-coin-wormhole", + "symbol": "bnb", + "name": "Binance Coin (Wormhole)" + }, + { + "id": "binancedog-2", + "symbol": "binancedog", + "name": "binancedog" + }, + { + "id": "binance-eth", + "symbol": "beth", + "name": "Binance ETH staking" + }, + { + "id": "binance-goat", + "symbol": "币安山羊", + "name": "Binance Goat" + }, + { + "id": "binance-peg-avalanche", + "symbol": "avax", + "name": "Binance-Peg Avalanche" + }, + { + "id": "binance-peg-bitcoin-cash", + "symbol": "bch", + "name": "Binance-Peg Bitcoin Cash" + }, + { + "id": "binance-peg-busd", + "symbol": "busd", + "name": "Binance-Peg BUSD" + }, + { + "id": "binance-peg-cardano", + "symbol": "ada", + "name": "Binance-Peg Cardano" + }, + { + "id": "binance-peg-dai", + "symbol": "dai", + "name": "Binance-Peg DAI" + }, + { + "id": "binance-peg-dogecoin", + "symbol": "doge", + "name": "Binance-Peg Dogecoin" + }, + { + "id": "binance-peg-eos", + "symbol": "eos", + "name": "Binance-Peg EOS" + }, + { + "id": "binance-peg-filecoin", + "symbol": "fil", + "name": "Binance-Peg Filecoin" + }, + { + "id": "binance-peg-firo", + "symbol": "firo", + "name": "Binance-Peg Firo" + }, + { + "id": "binance-peg-iotex", + "symbol": "iotx", + "name": "Binance-Peg IoTeX" + }, + { + "id": "binance-peg-litecoin", + "symbol": "ltc", + "name": "Binance-Peg Litecoin" + }, + { + "id": "binance-peg-near-protocol", + "symbol": "near", + "name": "Binance-Peg NEAR Protocol" + }, + { + "id": "binance-peg-ontology", + "symbol": "ont", + "name": "Binance-Peg Ontology" + }, + { + "id": "binance-peg-polkadot", + "symbol": "dot", + "name": "Binance-Peg Polkadot" + }, + { + "id": "binance-peg-shib", + "symbol": "shib", + "name": "Binance-Peg SHIB" + }, + { + "id": "binance-peg-sol", + "symbol": "sol", + "name": "Binance-Peg SOL" + }, + { + "id": "binance-peg-tezos-token", + "symbol": "xtz", + "name": "Binance-Peg Tezos Token" + }, + { + "id": "binance-peg-weth", + "symbol": "weth", + "name": "Binance-Peg WETH" + }, + { + "id": "binance-peg-xrp", + "symbol": "xrp", + "name": "Binance-Peg XRP" + }, + { + "id": "binance-peg-zcash-token", + "symbol": "zec", + "name": "Binance-Peg ZEC" + }, + { + "id": "binance-staked-sol", + "symbol": "bnsol", + "name": "Binance Staked SOL" + }, + { + "id": "binance-super-cycle", + "symbol": "bsc", + "name": "Binance Super Cycle" + }, + { + "id": "binance-super-cz", + "symbol": "bsc", + "name": "Binance Super CZ" + }, + { + "id": "binance-usd", + "symbol": "busd", + "name": "BUSD" + }, + { + "id": "binance-usd-linea", + "symbol": "busd", + "name": "Binance USD (Linea)" + }, + { + "id": "binance-wrapped-btc", + "symbol": "bbtc", + "name": "Binance Wrapped BTC" + }, + { + "id": "binance-yellow-robot", + "symbol": "bina", + "name": "Binance Yellow Robot" + }, + { + "id": "binancians", + "symbol": "binancians", + "name": "Binancians" + }, + { + "id": "binants", + "symbol": "binants", + "name": "BINANTS" + }, + { + "id": "binarydao", + "symbol": "byte", + "name": "BinaryDAO" + }, + { + "id": "binary-holdings", + "symbol": "bnry", + "name": "Binary Holdings" + }, + { + "id": "binaryx", + "symbol": "bnx", + "name": "BinaryX [OLD]" + }, + { + "id": "binaryx-2", + "symbol": "bnx", + "name": "BinaryX" + }, + { + "id": "bincentive", + "symbol": "bcnt", + "name": "Bincentive" + }, + { + "id": "binemon", + "symbol": "bin", + "name": "Binemon" + }, + { + "id": "bingo-3", + "symbol": "bingo", + "name": "Bingo" + }, + { + "id": "bingo-4", + "symbol": "bingo", + "name": "Bingo" + }, + { + "id": "bingus-the-cat", + "symbol": "bingus", + "name": "Bingus The Cat" + }, + { + "id": "bink-ai", + "symbol": "bink", + "name": "Bink AI" + }, + { + "id": "binstarter", + "symbol": "bsr", + "name": "BinStarter" + }, + { + "id": "bio-acceleration", + "symbol": "bio/acc", + "name": "Bio Acceleration" + }, + { + "id": "biochar", + "symbol": "char", + "name": "Biochar" + }, + { + "id": "biohackerdao", + "symbol": "biohack", + "name": "BiohackerDAO" + }, + { + "id": "biokript", + "symbol": "bkpt", + "name": "Biokript" + }, + { + "id": "biomeai", + "symbol": "biomeai", + "name": "BiomeAI" + }, + { + "id": "biometric-financial", + "symbol": "biofi", + "name": "Biometric Financial" + }, + { + "id": "bionergy", + "symbol": "bio", + "name": "Bionergy" + }, + { + "id": "biopassport", + "symbol": "biot", + "name": "Bio Passport" + }, + { + "id": "biopop", + "symbol": "bopb", + "name": "BIOPOP" + }, + { + "id": "bio-protocol", + "symbol": "bio", + "name": "Bio Protocol" + }, + { + "id": "biorbank", + "symbol": "byb", + "name": "BiorLabs" + }, + { + "id": "bios-2", + "symbol": "bios", + "name": "BIOS" + }, + { + "id": "birb-2", + "symbol": "birb", + "name": "Birb" + }, + { + "id": "birb-3", + "symbol": "birb", + "name": "birb" + }, + { + "id": "birbstrategy", + "symbol": "birbstr", + "name": "BirbStrategy" + }, + { + "id": "birddog", + "symbol": "birddog", + "name": "Birddog" + }, + { + "id": "bird-dog", + "symbol": "birddog", + "name": "Bird Dog" + }, + { + "id": "bird-dog-on-base", + "symbol": "birddog", + "name": "Bird Dog on Base" + }, + { + "id": "bird-dog-on-sol", + "symbol": "birddog", + "name": "Bird Dog on SOL" + }, + { + "id": "birdei", + "symbol": "birdei", + "name": "Birdei" + }, + { + "id": "birdflu", + "symbol": "$birdflu", + "name": "BIRDFLU" + }, + { + "id": "birdies", + "symbol": "birds", + "name": "BIRDIES" + }, + { + "id": "bird-money", + "symbol": "bird", + "name": "Bird.Money" + }, + { + "id": "birdsping", + "symbol": "ping", + "name": "BIRDSPING" + }, + { + "id": "bismuth", + "symbol": "bis", + "name": "Bismuth" + }, + { + "id": "biso", + "symbol": "biso", + "name": "BISO" + }, + { + "id": "bistroo", + "symbol": "bist", + "name": "Bistroo" + }, + { + "id": "biswap", + "symbol": "bsw", + "name": "Biswap" + }, + { + "id": "bit2me", + "symbol": "b2m", + "name": "Bit2Me" + }, + { + "id": "bitads", + "symbol": "sn16", + "name": "HashTensor" + }, + { + "id": "bitagent-rizzo", + "symbol": "sn20", + "name": "BitAgent - Rizzo" + }, + { + "id": "bitard", + "symbol": "bitard", + "name": "BITARD" + }, + { + "id": "bitball", + "symbol": "btb", + "name": "Bitball" + }, + { + "id": "bitball-2", + "symbol": "ball", + "name": "BitBall" + }, + { + "id": "bitball-treasure", + "symbol": "btrs", + "name": "Bitball Treasure" + }, + { + "id": "bitbat-token", + "symbol": "bat", + "name": "BitBat Token" + }, + { + "id": "bitbean", + "symbol": "$bitb", + "name": "BitBean" + }, + { + "id": "bitbedr", + "symbol": "bitbedr", + "name": "BITBEDR" + }, + { + "id": "bitboard", + "symbol": "bb", + "name": "BitBoard" + }, + { + "id": "bitbonds", + "symbol": "bitbonds", + "name": "BITBONDS" + }, + { + "id": "bitbonk", + "symbol": "bbonk", + "name": "BitBonk" + }, + { + "id": "bitbook-token", + "symbol": "bbt", + "name": "BitBook" + }, + { + "id": "bitbot", + "symbol": "bitbot", + "name": "Bitbot" + }, + { + "id": "bitbrawl", + "symbol": "brawl", + "name": "Brawl AI Layer" + }, + { + "id": "bitcanna", + "symbol": "bcna", + "name": "BitCanna" + }, + { + "id": "bitcast", + "symbol": "sn93", + "name": "Bitcast" + }, + { + "id": "bitcastle-token", + "symbol": "bce", + "name": "bitcastle Token" + }, + { + "id": "bitcat", + "symbol": "bitcat", + "name": "Bitcat" + }, + { + "id": "bitcat-2", + "symbol": "btcat", + "name": "BitCat" + }, + { + "id": "bitcat-3", + "symbol": "bitcat", + "name": "Bitcat" + }, + { + "id": "bitchemical-token", + "symbol": "bchem", + "name": "Bitchemical Token" + }, + { + "id": "bitci-bonk", + "symbol": "bbk", + "name": "Bitci Bonk" + }, + { + "id": "bitcicoin", + "symbol": "bitci", + "name": "Bitcicoin" + }, + { + "id": "bitcoin", + "symbol": "btc", + "name": "Bitcoin" + }, + { + "id": "bitcoin-2", + "symbol": "btc2", + "name": "Bitcoin 2" + }, + { + "id": "bitcoin20", + "symbol": "btc20", + "name": "Bitcoin20" + }, + { + "id": "bitcoin-2-0", + "symbol": "btc2.0", + "name": "Bitcoin 2.0" + }, + { + "id": "bitcoin-2015-wrapper-meme", + "symbol": "btce", + "name": "bitcoin (2015 Wrapper) (Meme)" + }, + { + "id": "bitcoin-2-0-2", + "symbol": "btc2", + "name": "Bitcoin 2.0" + }, + { + "id": "bitcoin-5", + "symbol": "btc.ℏ", + "name": "Bitcoin.ℏ" + }, + { + "id": "bitcoin-act", + "symbol": "btcact", + "name": "BITCOIN Act" + }, + { + "id": "bitcoin-ai-2", + "symbol": "btc", + "name": "Bitcoin AI" + }, + { + "id": "bitcoin-atom", + "symbol": "bca", + "name": "Bitcoin Atom" + }, + { + "id": "bitcoin-avalanche-bridged-btc-b", + "symbol": "btc.b", + "name": "Avalanche Bridged BTC (Avalanche)" + }, + { + "id": "bitcoinbam", + "symbol": "btcbam", + "name": "BitcoinBam" + }, + { + "id": "bitcoin-bit", + "symbol": "bcb", + "name": "Bitcoin Bit" + }, + { + "id": "bitcoin-bob", + "symbol": "bob", + "name": "Bitcoin Bob" + }, + { + "id": "bitcoin-bob-2", + "symbol": "₿o₿", + "name": "Bitcoin Bob" + }, + { + "id": "bitcoin-breaking-100-in-2013", + "symbol": "isaac", + "name": "Bitcoin breaking $100 in 2013" + }, + { + "id": "bitcoin-bridged-zed20", + "symbol": "btc.z", + "name": "Bitcoin Bridged ZED20" + }, + { + "id": "bitcoin-bro-bear-runes", + "symbol": "bro", + "name": "BITCOIN•BRO•BEAR (Runes)" + }, + { + "id": "bitcoin-bull-2", + "symbol": "btcbull", + "name": "Bitcoin Bull" + }, + { + "id": "bitcoin-cash", + "symbol": "bch", + "name": "Bitcoin Cash" + }, + { + "id": "bitcoin-cash-sv", + "symbol": "bsv", + "name": "Bitcoin SV" + }, + { + "id": "bitcoin-cats", + "symbol": "1cat", + "name": "Bitcoin Cats" + }, + { + "id": "bitcoin-cat-sol", + "symbol": "sasha", + "name": "Bitcoin Cat" + }, + { + "id": "bitcoin-diamond", + "symbol": "bcd", + "name": "Bitcoin Diamond" + }, + { + "id": "bitcoin-e-wallet", + "symbol": "bitwallet", + "name": "Bitcoin E-wallet" + }, + { + "id": "bitcoin-gold", + "symbol": "btg", + "name": "Bitcoin Gold" + }, + { + "id": "bitcoin-hyper-4", + "symbol": "hyper", + "name": "Bitcoin Hyper" + }, + { + "id": "bitcoinii", + "symbol": "bc2", + "name": "BitcoinII" + }, + { + "id": "bitcoin-inu", + "symbol": "btcinu", + "name": "Bitcoin Inu" + }, + { + "id": "bitcoin-limited-edition", + "symbol": "btcle", + "name": "Bitcoin Limited Edition" + }, + { + "id": "bitcoin-maxi-tears", + "symbol": "bmt", + "name": "Bitcoin Maxi Tears" + }, + { + "id": "bitcoin-name-service-system", + "symbol": "bnsx", + "name": "Bitcoin Name Service System" + }, + { + "id": "bitcoin-on-base", + "symbol": "btcb", + "name": "Bitcoin on Base" + }, + { + "id": "bitcoin-on-katana", + "symbol": "btck", + "name": "Bitcoin on Katana" + }, + { + "id": "bitcoinos", + "symbol": "bos", + "name": "BitcoinOS" + }, + { + "id": "bitcoin-pay", + "symbol": "btcpay", + "name": "Bitcoin Pay" + }, + { + "id": "bitcoin-plus", + "symbol": "xbc", + "name": "Bitcoin Plus" + }, + { + "id": "bitcoin-printer", + "symbol": "brrr", + "name": "Bitcoin Printer" + }, + { + "id": "bitcoin-pro", + "symbol": "btcp", + "name": "Bitcoin Pro" + }, + { + "id": "bitcoin-puppets-solona", + "symbol": "puppet", + "name": "bitcoin puppets solona" + }, + { + "id": "bitcoin-roller-coaster-guy", + "symbol": "brcg", + "name": "Bitcoin Roller Coaster Guy" + }, + { + "id": "bitcoin-second-chance", + "symbol": "btc", + "name": "Bitcoin Second Chance" + }, + { + "id": "bitcoin-s-fairy-mascot", + "symbol": "pixie", + "name": "Bitcoin's Fairy Mascot" + }, + { + "id": "bitcoin-silver-ai", + "symbol": "bsai", + "name": "Bitcoin Silver AI" + }, + { + "id": "bitcoinsov", + "symbol": "bsov", + "name": "BitcoinSoV" + }, + { + "id": "bitcoin-the-turtle", + "symbol": "slow", + "name": "Bitcoin the Turtle" + }, + { + "id": "bitcoin-trc20", + "symbol": "btct", + "name": "Bitcoin TRC20" + }, + { + "id": "bitcoin-treasury-machine", + "symbol": "btm", + "name": "Bitcoin Treasury Machine" + }, + { + "id": "bitcointry-token", + "symbol": "btty", + "name": "Bitcointry Token" + }, + { + "id": "bitcoin-usd-btcfi", + "symbol": "btcusd", + "name": "Bitcoin USD (BTCFi)" + }, + { + "id": "bitcoin-vault", + "symbol": "btcv", + "name": "Bitcoin Vault" + }, + { + "id": "bitcoin-wizard-apple-hurler", + "symbol": "bwah", + "name": "Bitcoin Wizard Apple Hurler" + }, + { + "id": "bitcoin-wizard-mascot", + "symbol": "btcwiz", + "name": "Bitcoin Wizard Mascot" + }, + { + "id": "bitcoin-wizards", + "symbol": "wzrd", + "name": "Bitcoin Wizards" + }, + { + "id": "bitcoinz", + "symbol": "btcz", + "name": "BitcoinZ" + }, + { + "id": "bitcoinzk-zyra", + "symbol": "zyra", + "name": "BitcoinZK" + }, + { + "id": "bitcoiva", + "symbol": "bca", + "name": "Bitcoiva" + }, + { + "id": "bitcone", + "symbol": "cone", + "name": "BitCone" + }, + { + "id": "bitcore", + "symbol": "btx", + "name": "BitCore" + }, + { + "id": "bitcorn-2", + "symbol": "bitcorn", + "name": "Bitcorn" + }, + { + "id": "bitcorn-3", + "symbol": "btcn", + "name": "Bitcorn" + }, + { + "id": "bitcorn-4", + "symbol": "bitcorn", + "name": "BITCORN" + }, + { + "id": "bitdao", + "symbol": "bit", + "name": "BitDAO" + }, + { + "id": "bitdca", + "symbol": "bdca", + "name": "BitDCA" + }, + { + "id": "bitdealer", + "symbol": "bit", + "name": "Bitdealer" + }, + { + "id": "bitdelta", + "symbol": "bdt", + "name": "BitDelta" + }, + { + "id": "bit-digital-xstock", + "symbol": "btbtx", + "name": "Bit Digital xStock" + }, + { + "id": "bitdoctorai", + "symbol": "aidd", + "name": "BitDoctorAI" + }, + { + "id": "bitdog", + "symbol": "bitdog", + "name": "bitdog" + }, + { + "id": "bitecoin-2", + "symbol": "bite", + "name": "Bitecoin" + }, + { + "id": "bitenium-token", + "symbol": "bt", + "name": "Bitenium" + }, + { + "id": "bitequal", + "symbol": "bte", + "name": "BitEqual" + }, + { + "id": "bitfi-bitcoin", + "symbol": "bfbtc", + "name": "BitFi Bitcoin" + }, + { + "id": "bitfloki", + "symbol": "bfloki", + "name": "bitFloki" + }, + { + "id": "bitfufu-xstock", + "symbol": "fufux", + "name": "BitFuFu xStock" + }, + { + "id": "bit-game-verse-token", + "symbol": "bgvt", + "name": "Bit Game Verse Token" + }, + { + "id": "bitget-staked-sol", + "symbol": "bgsol", + "name": "Bitget Staked SOL" + }, + { + "id": "bitget-token", + "symbol": "bgb", + "name": "Bitget Token" + }, + { + "id": "bit-hotel", + "symbol": "bth", + "name": "Bit Hotel" + }, + { + "id": "bitkub-coin", + "symbol": "kub", + "name": "KUB Coin" + }, + { + "id": "bitlayer-bitvm", + "symbol": "btr", + "name": "Bitlayer" + }, + { + "id": "bitlight", + "symbol": "light", + "name": "Bitlight" + }, + { + "id": "bitmappunks", + "symbol": "bmp", + "name": "BitmapPunks" + }, + { + "id": "bitmarkets-token", + "symbol": "btmt", + "name": "BITmarkets Token" + }, + { + "id": "bitmart-token", + "symbol": "bmx", + "name": "BitMart" + }, + { + "id": "bitmeme-2", + "symbol": "btm", + "name": "BitMeme" + }, + { + "id": "bitmex-token", + "symbol": "bmex", + "name": "BitMEX" + }, + { + "id": "bitmind", + "symbol": "sn34", + "name": "BitMind" + }, + { + "id": "bitminerx", + "symbol": "bmx", + "name": "BitMinerX" + }, + { + "id": "bitmine-xstock", + "symbol": "bmnrx", + "name": "Bitmine xStock" + }, + { + "id": "bitnomad", + "symbol": "bnom", + "name": "BitNomad" + }, + { + "id": "bito-coin", + "symbol": "bito", + "name": "BITO Coin" + }, + { + "id": "bitpanda-ecosystem-token", + "symbol": "best", + "name": "Bitpanda Ecosystem" + }, + { + "id": "bitpill", + "symbol": "bitpill", + "name": "BitPill" + }, + { + "id": "bitpro", + "symbol": "bpro", + "name": "BitPRO" + }, + { + "id": "bitquant", + "symbol": "sn15", + "name": "BitQuant" + }, + { + "id": "bitrecs", + "symbol": "sn122", + "name": "Bitrecs" + }, + { + "id": "bitrise-token", + "symbol": "brise", + "name": "Bitgert" + }, + { + "id": "bitrock", + "symbol": "brock", + "name": "Bitrock" + }, + { + "id": "bitrue-token", + "symbol": "btr", + "name": "Bitrue Coin" + }, + { + "id": "bitrunes", + "symbol": "brune", + "name": "BitRunes" + }, + { + "id": "bitscrunch-token", + "symbol": "bcut", + "name": "bitsCrunch Token" + }, + { + "id": "bitsec-ai", + "symbol": "sn60", + "name": "Bitsec.ai" + }, + { + "id": "bitshares", + "symbol": "bts", + "name": "BitShares" + }, + { + "id": "bitshiba", + "symbol": "shiba", + "name": "BitShiba" + }, + { + "id": "bitsmiley", + "symbol": "smile", + "name": "bitSmiley" + }, + { + "id": "bitsolara", + "symbol": "btslr", + "name": "Bitsolara" + }, + { + "id": "bitsong", + "symbol": "btsg", + "name": "BitSong" + }, + { + "id": "bitspawn", + "symbol": "spwn", + "name": "Bitspawn" + }, + { + "id": "bitstable-finance", + "symbol": "$bssb", + "name": "BitStable Finance" + }, + { + "id": "bit-store-coin", + "symbol": "store", + "name": "Bit Store" + }, + { + "id": "bitswagger-btcswag", + "symbol": "btcswag", + "name": "BitSwagger (BTCSWAG)" + }, + { + "id": "bittensor", + "symbol": "tao", + "name": "Bittensor" + }, + { + "id": "bittoken", + "symbol": "bitt", + "name": "BITT" + }, + { + "id": "bittorrent", + "symbol": "btt", + "name": "BitTorrent" + }, + { + "id": "bittorrent-old", + "symbol": "bttold", + "name": "BitTorrent [OLD]" + }, + { + "id": "bitty-baby", + "symbol": "bitbaby", + "name": "Bitty Baby" + }, + { + "id": "bityuan", + "symbol": "bty", + "name": "Bityuan" + }, + { + "id": "bitz-2", + "symbol": "bitz", + "name": "Bitz" + }, + { + "id": "bitz-3", + "symbol": "bitz", + "name": "Bitz" + }, + { + "id": "bizauto", + "symbol": "biza", + "name": "BizAuto" + }, + { + "id": "bizzy-by-virtuals", + "symbol": "biz", + "name": "Bizzy by Virtuals" + }, + { + "id": "bjustcoin", + "symbol": "bjc", + "name": "BJustCoin" + }, + { + "id": "bkokfi", + "symbol": "bkok", + "name": "BKOKFi" + }, + { + "id": "bl0ck", + "symbol": "bl0ck", + "name": "Bl0ck" + }, + { + "id": "black-agnus", + "symbol": "ftw", + "name": "Black Agnus" + }, + { + "id": "blackcardcoin", + "symbol": "bccoin", + "name": "BlackCardCoin" + }, + { + "id": "blackcoin", + "symbol": "blk", + "name": "BlackCoin" + }, + { + "id": "blackcoin-2", + "symbol": "blackcoin", + "name": "BlackCoin" + }, + { + "id": "blackcroc", + "symbol": "blackcroc", + "name": "Blackcroc" + }, + { + "id": "black-devil", + "symbol": "anglerfish", + "name": "Black Devil" + }, + { + "id": "black-dragon", + "symbol": "blackdragon", + "name": "Black Dragon" + }, + { + "id": "blackdragon-token", + "symbol": "bdt", + "name": "BlackDragon" + }, + { + "id": "blackduckrwa", + "symbol": "bd/sol", + "name": "BlackDuckrwa" + }, + { + "id": "blackhole", + "symbol": "black", + "name": "Blackhole" + }, + { + "id": "blackhole-protocol", + "symbol": "black", + "name": "BlackHole Protocol" + }, + { + "id": "blackjack-fun", + "symbol": "jack", + "name": "Blackjack.fun" + }, + { + "id": "black-lemon-ai", + "symbol": "lemon", + "name": "Black Lemon AI" + }, + { + "id": "black-mirror", + "symbol": "mirror", + "name": "Black Mirror" + }, + { + "id": "black-panther-fi", + "symbol": "black", + "name": "Black Panther" + }, + { + "id": "blackpearl-chain", + "symbol": "bplc", + "name": "BlackPearl" + }, + { + "id": "black-phoenix", + "symbol": "bpx", + "name": "Black Phoenix" + }, + { + "id": "blackpool-token", + "symbol": "bpt", + "name": "BlackPool" + }, + { + "id": "blackrack", + "symbol": "racks", + "name": "BlackRack" + }, + { + "id": "blackrock-inc-ondo-tokenized-stock", + "symbol": "blkon", + "name": "Blackrock, Inc. (Ondo Tokenized Stock)" + }, + { + "id": "blackrock-usd-institutional-digital-liquidity-fund", + "symbol": "buidl", + "name": "BlackRock USD Institutional Digital Liquidity Fund" + }, + { + "id": "blackrock-usd-institutional-digital-liquidity-fund-i-class", + "symbol": "buidl-i", + "name": "BlackRock USD Institutional Digital Liquidity Fund - I Class" + }, + { + "id": "blackrock-xstock", + "symbol": "blkx", + "name": "BlackRock xStock" + }, + { + "id": "black-swan", + "symbol": "swan", + "name": "Black Swan" + }, + { + "id": "blacktail-ai", + "symbol": "black", + "name": "Blacktail AI" + }, + { + "id": "black-unicorn-corp", + "symbol": "moon", + "name": "Black Unicorn Corp." + }, + { + "id": "blackwork", + "symbol": "blwk", + "name": "BlackWork" + }, + { + "id": "blade-2", + "symbol": "blade", + "name": "Blade" + }, + { + "id": "bladeswap", + "symbol": "blade", + "name": "BladeSwap" + }, + { + "id": "blai", + "symbol": "blai", + "name": "blai" + }, + { + "id": "blake", + "symbol": "blake", + "name": "BLAKE" + }, + { + "id": "blank", + "symbol": "blank", + "name": "BlockWallet" + }, + { + "id": "blap", + "symbol": "blap", + "name": "BLAP" + }, + { + "id": "blarb", + "symbol": "blarb", + "name": "BLARB" + }, + { + "id": "blarp", + "symbol": "blarp", + "name": "blarp" + }, + { + "id": "blast", + "symbol": "blast", + "name": "Blast" + }, + { + "id": "blastar", + "symbol": "blast", + "name": "Blastar" + }, + { + "id": "blastcat", + "symbol": "bcat", + "name": "BlastCat" + }, + { + "id": "blaster", + "symbol": "blstr", + "name": "Blaster" + }, + { + "id": "blastfi-ecosystem-token", + "symbol": "$bres", + "name": "BlastFi Ecosystem Token" + }, + { + "id": "blast-futures-token", + "symbol": "bfx", + "name": "Blast Futures Token" + }, + { + "id": "blastin-pepes", + "symbol": "bpepe", + "name": "Blastin Pepes" + }, + { + "id": "blast-inu", + "symbol": "blast", + "name": "Blast Inu" + }, + { + "id": "blastoff", + "symbol": "off", + "name": "BlastOff" + }, + { + "id": "blast-pepe", + "symbol": "bepe", + "name": "Blast Pepe" + }, + { + "id": "blastup", + "symbol": "blastup", + "name": "BlastUP" + }, + { + "id": "blaze", + "symbol": "blaze", + "name": "Blaze" + }, + { + "id": "blaze-2", + "symbol": "blaze", + "name": "Blaze" + }, + { + "id": "blazestake-staked-sol", + "symbol": "bsol", + "name": "BlazeStake Staked SOL" + }, + { + "id": "blazex", + "symbol": "blazex", + "name": "BlazeX" + }, + { + "id": "blazr", + "symbol": "blazr", + "name": "Blazr" + }, + { + "id": "blck-coin", + "symbol": "blck", + "name": "BLCK Coin" + }, + { + "id": "blckmrkt", + "symbol": "$mrkt", + "name": "BLCKMRKT" + }, + { + "id": "blend", + "symbol": "blnd", + "name": "Blend" + }, + { + "id": "blend-2", + "symbol": "blend", + "name": "Blend" + }, + { + "id": "blend-3", + "symbol": "blend", + "name": "BLEND" + }, + { + "id": "blendr-network", + "symbol": "blendr", + "name": "Blendr Network" + }, + { + "id": "blepe", + "symbol": "blepe", + "name": "Blepe" + }, + { + "id": "blepe-the-blue", + "symbol": "blepe", + "name": "Blepe the Blue" + }, + { + "id": "blep-super-meme", + "symbol": "blep", + "name": "Blep Super Meme" + }, + { + "id": "blerf", + "symbol": "blerf", + "name": "BLERF" + }, + { + "id": "bless-2", + "symbol": "bless", + "name": "Bless" + }, + { + "id": "blife-protocol", + "symbol": "blife", + "name": "BLife Protocol" + }, + { + "id": "bliffy", + "symbol": "bliffy", + "name": "Bliffy" + }, + { + "id": "blind-boxes", + "symbol": "bles", + "name": "Blind Boxes" + }, + { + "id": "blinkdotfun", + "symbol": "blink", + "name": "blinkdotfun" + }, + { + "id": "blinks-gg", + "symbol": "bgg1", + "name": "Blinks.gg" + }, + { + "id": "blitz", + "symbol": "bltz", + "name": "Blitz" + }, + { + "id": "blk2100", + "symbol": "$blk", + "name": "BLK2100" + }, + { + "id": "blobana-pet", + "symbol": "blob", + "name": "Blobana pet" + }, + { + "id": "blobs", + "symbol": "blobs", + "name": "blobs" + }, + { + "id": "blocery", + "symbol": "bly", + "name": "Blocery" + }, + { + "id": "block", + "symbol": "block", + "name": "Block" + }, + { + "id": "block-4", + "symbol": "block", + "name": "Block" + }, + { + "id": "blockai", + "symbol": "bai", + "name": "BlockAI" + }, + { + "id": "block-ai", + "symbol": "block", + "name": "block AI" + }, + { + "id": "block-ape-scissors", + "symbol": "arcas", + "name": "Arcas" + }, + { + "id": "blockasset", + "symbol": "block", + "name": "Blockasset" + }, + { + "id": "blockbank", + "symbol": "bbank", + "name": "blockbank" + }, + { + "id": "blockblend-2", + "symbol": "bbl", + "name": "BlockBlend" + }, + { + "id": "blockcdn", + "symbol": "bcdn", + "name": "BlockCDN" + }, + { + "id": "blockchain-bets", + "symbol": "bcb", + "name": "Blockchain Bets" + }, + { + "id": "blockchain-brawlers", + "symbol": "brwl", + "name": "Blockchain Brawlers" + }, + { + "id": "blockchain-capital", + "symbol": "bcap", + "name": "Blockchain Capital" + }, + { + "id": "blockchain-certified-data-token", + "symbol": "bcdt", + "name": "EvidenZ" + }, + { + "id": "blockchaincoinx", + "symbol": "xccx", + "name": "BlockChainCoinX" + }, + { + "id": "blockchain-cuties-universe-governance", + "symbol": "bcug", + "name": "Blockchain Cuties Universe Governance" + }, + { + "id": "blockchain-fx", + "symbol": "bfx", + "name": "BlockchainFX" + }, + { + "id": "blockchain-island", + "symbol": "bcl", + "name": "Blockchain Island" + }, + { + "id": "blockchain-monster-hunt", + "symbol": "bcmc", + "name": "Blockchain Monster Hunt" + }, + { + "id": "blockchainspace", + "symbol": "guild", + "name": "BlockchainSpace" + }, + { + "id": "blockchain-web-services", + "symbol": "bws", + "name": "Blockchain Web Services" + }, + { + "id": "blockcreate", + "symbol": "block", + "name": "BlockCreate" + }, + { + "id": "blockcycle", + "symbol": "bloc", + "name": "BlockCycle" + }, + { + "id": "blockface", + "symbol": "block", + "name": "Blockface" + }, + { + "id": "blockfi", + "symbol": "bfi", + "name": "BlockFi" + }, + { + "id": "blockgames", + "symbol": "block", + "name": "BlockProtocol" + }, + { + "id": "blockinsightai", + "symbol": "biai", + "name": "BlockInsightAI" + }, + { + "id": "blocklens-ai", + "symbol": "bls", + "name": "Blocklens AI" + }, + { + "id": "blockless", + "symbol": "bls", + "name": "Blockless" + }, + { + "id": "blocklords", + "symbol": "lrds", + "name": "BLOCKLORDS" + }, + { + "id": "blockmind", + "symbol": "bmind", + "name": "BlockMind" + }, + { + "id": "blocknet", + "symbol": "block", + "name": "Blocknet" + }, + { + "id": "block-raccoon-s-a", + "symbol": "brs", + "name": "Block Raccoon S.A." + }, + { + "id": "blocks-2", + "symbol": "b", + "name": "Blocks" + }, + { + "id": "blocksmith-labs-forge", + "symbol": "$forge", + "name": "$FORGE" + }, + { + "id": "blocksport", + "symbol": "bspt", + "name": "Blocksport" + }, + { + "id": "blocksquare", + "symbol": "bst", + "name": "Blocksquare" + }, + { + "id": "blockstack", + "symbol": "stx", + "name": "Stacks" + }, + { + "id": "blockstream-mining-note-2", + "symbol": "bmn2", + "name": "Blockstream Mining Note 2" + }, + { + "id": "blocktools", + "symbol": "tools", + "name": "Blocktools" + }, + { + "id": "blocktrader365", + "symbol": "bt365", + "name": "BlockTrader365" + }, + { + "id": "blockv", + "symbol": "vee", + "name": "BLOCKv" + }, + { + "id": "block-vault", + "symbol": "bvt", + "name": "Block Vault" + }, + { + "id": "blockx", + "symbol": "bcx", + "name": "BlockX" + }, + { + "id": "blocky-ai-agent", + "symbol": "blocky", + "name": "Blocky Ai Agent" + }, + { + "id": "blockyboy-by-matt-furie", + "symbol": "blockyboy", + "name": "BlockyBoy by Matt Furie" + }, + { + "id": "blocsport-one", + "symbol": "bls", + "name": "Metacourt" + }, + { + "id": "blocx-2", + "symbol": "blocx", + "name": "BLOCX." + }, + { + "id": "blokpad", + "symbol": "bpad", + "name": "BlokPad" + }, + { + "id": "bloktopia", + "symbol": "blok", + "name": "Bloktopia" + }, + { + "id": "blood-2", + "symbol": "$blood", + "name": "BLOOD" + }, + { + "id": "bloodboy", + "symbol": "blood", + "name": "Bloodboy" + }, + { + "id": "blood-crystal", + "symbol": "bc", + "name": "Blood Crystal" + }, + { + "id": "bloodline-chanting-my-name", + "symbol": "chant", + "name": "Bloodline Chanting My Name" + }, + { + "id": "bloodloop", + "symbol": "$bls", + "name": "BloodLoop" + }, + { + "id": "bloomberg-galaxy-crypto-index", + "symbol": "bgci", + "name": "Bloomberg Galaxy Crypto Index" + }, + { + "id": "bloomsperg-terminal", + "symbol": "sperg", + "name": "Bloomsperg Terminal" + }, + { + "id": "bloop-fi", + "symbol": "bloop", + "name": "Bloop.fi" + }, + { + "id": "bloop-furpal", + "symbol": "bloop", + "name": "Bloop Furpal" + }, + { + "id": "blop", + "symbol": "blop", + "name": "BLOP" + }, + { + "id": "blormmy", + "symbol": "blormmy", + "name": "blormmy" + }, + { + "id": "blosk-io", + "symbol": "blosk", + "name": "BLOSK.io" + }, + { + "id": "blox-2", + "symbol": "blox", + "name": "BLOX" + }, + { + "id": "bloxmove-erc20", + "symbol": "blxm", + "name": "bloXmove" + }, + { + "id": "blox-myrc", + "symbol": "myrc", + "name": "Blox MYRC" + }, + { + "id": "bloxwap", + "symbol": "bloxwap", + "name": "BLOXWAP" + }, + { + "id": "blu-2", + "symbol": "$blu", + "name": "Blu" + }, + { + "id": "blub", + "symbol": "blub", + "name": "BLUB" + }, + { + "id": "blub-2", + "symbol": "blub", + "name": "Blub" + }, + { + "id": "blubi", + "symbol": "blubi", + "name": "Blubi" + }, + { + "id": "blubird", + "symbol": "blu", + "name": "Blubird" + }, + { + "id": "blue-2", + "symbol": "blue", + "name": "Blue" + }, + { + "id": "blue-3", + "symbol": "blue", + "name": "Blue" + }, + { + "id": "blue-apu", + "symbol": "$bapu", + "name": "Blue Apu" + }, + { + "id": "blueberry", + "symbol": "blb", + "name": "Blueberry" + }, + { + "id": "blueberry-the-squirrel", + "symbol": "blueberry", + "name": "Blueberry The Squirrel" + }, + { + "id": "blue-butt-cheese", + "symbol": "bbc", + "name": "Blue Butt Cheese" + }, + { + "id": "blue-chip", + "symbol": "chip", + "name": "Blue Chip" + }, + { + "id": "blue-chip-2", + "symbol": "bluechip", + "name": "Blue Chip" + }, + { + "id": "bluecore", + "symbol": "bcor", + "name": "BlueCore" + }, + { + "id": "bluefin", + "symbol": "blue", + "name": "Bluefin" + }, + { + "id": "blue-footed-booby", + "symbol": "booby", + "name": "Blue-Footed Booby" + }, + { + "id": "blue-guy", + "symbol": "blue", + "name": "Blue Guy" + }, + { + "id": "blue-inbetweeners", + "symbol": "blue", + "name": "Blue" + }, + { + "id": "bluelotusdao", + "symbol": "bldt", + "name": "BlueLotusDAO" + }, + { + "id": "blue-moon", + "symbol": "moon", + "name": "Blue Moon" + }, + { + "id": "bluemove", + "symbol": "move", + "name": "BlueMove" + }, + { + "id": "blue-on-base", + "symbol": "$blue", + "name": "blue on base" + }, + { + "id": "blue-pepe", + "symbol": "blupepe", + "name": "Blue Pepe" + }, + { + "id": "blueprint-2", + "symbol": "bp", + "name": "Blueprint" + }, + { + "id": "blueprint-oblue", + "symbol": "oblue", + "name": "Blueprint oBLUE" + }, + { + "id": "blue-protocol", + "symbol": "blue", + "name": "Blue Protocol" + }, + { + "id": "blue-signing-token", + "symbol": "bst", + "name": "Blue Signing Token" + }, + { + "id": "blue-snakes", + "symbol": "snakes", + "name": "Blue Snakes" + }, + { + "id": "bluesparrow", + "symbol": "bluesparrow", + "name": "BlueSparrow" + }, + { + "id": "blue-whale-2", + "symbol": "whale", + "name": "Blue Whale" + }, + { + "id": "bluffcat", + "symbol": "bluff", + "name": "BluffCat" + }, + { + "id": "blum", + "symbol": "blum", + "name": "Blum" + }, + { + "id": "blunny", + "symbol": "blunny", + "name": "Blunny" + }, + { + "id": "blunt", + "symbol": "blunt", + "name": "Blunt" + }, + { + "id": "blur", + "symbol": "blur", + "name": "Blur" + }, + { + "id": "blurt", + "symbol": "blurt", + "name": "Blurt" + }, + { + "id": "bluwhale", + "symbol": "bluai", + "name": "Bluwhale" + }, + { + "id": "bluwhale-points-token", + "symbol": "blup", + "name": "Bluwhale Points Token" + }, + { + "id": "bluzelle", + "symbol": "blz", + "name": "Bluzelle" + }, + { + "id": "bm", + "symbol": "bm", + "name": "bm" + }, + { + "id": "bm2k", + "symbol": "bm2k", + "name": "bm2k" + }, + { + "id": "bmax", + "symbol": "bmax", + "name": "BMAX" + }, + { + "id": "bmchain-token", + "symbol": "bmt", + "name": "BMCHAIN" + }, + { + "id": "b-money", + "symbol": "bmoney", + "name": "B-MONEY" + }, + { + "id": "b-money-aka-brett", + "symbol": "bmoney", + "name": "B Money AKA Brett" + }, + { + "id": "bmx", + "symbol": "bmx", + "name": "BMX" + }, + { + "id": "bmx-wrapped-mode-liquidity-token", + "symbol": "wmlt", + "name": "BMX: Wrapped Mode Liquidity Token" + }, + { + "id": "bnb48-club-token", + "symbol": "koge", + "name": "KOGE" + }, + { + "id": "bnb-bank", + "symbol": "bbk", + "name": "BNB Bank" + }, + { + "id": "bnb-card", + "symbol": "bnbcard", + "name": "BNB Card" + }, + { + "id": "bnb-cat", + "symbol": "poseidon", + "name": "Binance Cat" + }, + { + "id": "bnb-diamond", + "symbol": "bnbd", + "name": "BNB Diamond" + }, + { + "id": "bnbdip", + "symbol": "bnbdip", + "name": "BNBdip" + }, + { + "id": "bnb-doge", + "symbol": "boge", + "name": "BNB DOGE" + }, + { + "id": "bnbee", + "symbol": "bee", + "name": "BNBEE" + }, + { + "id": "bnbet", + "symbol": "bnbet", + "name": "BNBet" + }, + { + "id": "bnb-frog-inu", + "symbol": "bnbfrog", + "name": "BNB Frog Inu" + }, + { + "id": "bnb-goat", + "symbol": "bgoat", + "name": "BNB GOAT" + }, + { + "id": "bnbgpt", + "symbol": "bnbgpt", + "name": "BNBGPT" + }, + { + "id": "bnbguy", + "symbol": "bnbguy", + "name": "BNBGUY" + }, + { + "id": "bnb-lion", + "symbol": "bnblion", + "name": "BNB LION" + }, + { + "id": "bnb-meme-szn", + "symbol": "szn", + "name": "BNB MEME SZN" + }, + { + "id": "bnb-pets", + "symbol": "pets", + "name": "BNB Pets" + }, + { + "id": "bnb-super-cycle", + "symbol": "bsc", + "name": "BNB SUPER CYCLE" + }, + { + "id": "bnbtiger", + "symbol": "bnbtigerog", + "name": "BNB Tiger OG" + }, + { + "id": "bnb-tiger-inu", + "symbol": "bnbtiger", + "name": "BNB Tiger Inu" + }, + { + "id": "bnbull", + "symbol": "bnbull", + "name": "BNBULL" + }, + { + "id": "bnb-wallstreet-bull", + "symbol": "wbull", + "name": "BNB Wallstreet Bull" + }, + { + "id": "bnbxbt", + "symbol": "bnbxbt", + "name": "BNBXBT" + }, + { + "id": "bnc", + "symbol": "bnc", + "name": "BNC" + }, + { + "id": "bndva-backed-nvidia", + "symbol": "bnvda", + "name": "Backed NVIDIA" + }, + { + "id": "bnext-b3x", + "symbol": "b3x", + "name": "Bnext B3X" + }, + { + "id": "bnktothefuture", + "symbol": "bft", + "name": "BnkToTheFuture" + }, + { + "id": "bnpl-pay", + "symbol": "bnpl", + "name": "BNPL Pay [OLD]" + }, + { + "id": "bnpl-pay-2", + "symbol": "bnpl", + "name": "BNPL Pay" + }, + { + "id": "bnsd-finance", + "symbol": "bnsd", + "name": "BNSD Finance" + }, + { + "id": "bns-token", + "symbol": "bns", + "name": "BNS" + }, + { + "id": "bntober", + "symbol": "bntober", + "name": "BNTOBER" + }, + { + "id": "bnv", + "symbol": "fash", + "name": "BNV" + }, + { + "id": "boatkid", + "symbol": "boatkid", + "name": "BoatKid " + }, + { + "id": "bob", + "symbol": "bob", + "name": "BOB" + }, + { + "id": "bob-2", + "symbol": "bob", + "name": "BOB" + }, + { + "id": "bob-3", + "symbol": "bob", + "name": "BOB" + }, + { + "id": "bob-4", + "symbol": "bob", + "name": "BOB" + }, + { + "id": "bob-5", + "symbol": "bitcoin bob", + "name": "BOB" + }, + { + "id": "bobacat", + "symbol": "boba", + "name": "Boba Cat" + }, + { + "id": "boba-finance", + "symbol": "bfi", + "name": "Boba Finance" + }, + { + "id": "boba-network", + "symbol": "boba", + "name": "Boba Network" + }, + { + "id": "boba-oppa", + "symbol": "bobaoppa", + "name": "Boba Oppa" + }, + { + "id": "boba-the-blob", + "symbol": "boba", + "name": "Boba The Blob" + }, + { + "id": "bob-build-on-bitcoin", + "symbol": "bob", + "name": "BOB (Build on Bitcoin)" + }, + { + "id": "bobby", + "symbol": "bobby", + "name": "Bobby" + }, + { + "id": "bobby-rizz", + "symbol": "bobby", + "name": "BOBBY Rizz" + }, + { + "id": "bobby-the-cat", + "symbol": "btc", + "name": "Bobby The Cat" + }, + { + "id": "bobby-the-cat-2", + "symbol": "btc", + "name": "Bobby The Cat" + }, + { + "id": "bober", + "symbol": "bober", + "name": "BOBER" + }, + { + "id": "boblles", + "symbol": "bobls", + "name": "Boblles" + }, + { + "id": "bob-network-bridged-usdce-bob-network", + "symbol": "usdc.e", + "name": "BOB Gateway Bridged USDC (BOB Network)" + }, + { + "id": "bob-network-bridged-usdt-bob-network", + "symbol": "usdt", + "name": "BOB Network Bridged USDT (BOB Network)" + }, + { + "id": "bobo", + "symbol": "bobo", + "name": "Bobo" + }, + { + "id": "bobo-2", + "symbol": "bobo", + "name": "BOBO" + }, + { + "id": "bobo-coin", + "symbol": "bobo", + "name": "Bobo Coin" + }, + { + "id": "bobo-on-sol", + "symbol": "bobo", + "name": "Bobo on SOL" + }, + { + "id": "bobo-the-bear", + "symbol": "bobo", + "name": "Bobo the Bear" + }, + { + "id": "bobs", + "symbol": "bobs", + "name": "BOBS" + }, + { + "id": "bob-the-snek", + "symbol": "bob", + "name": "Bob the Snek" + }, + { + "id": "bob-token", + "symbol": "bob", + "name": "BOB Token" + }, + { + "id": "bobuki-neko", + "symbol": "bobuki", + "name": "Bobuki Neko" + }, + { + "id": "boby", + "symbol": "boby", + "name": "boby" + }, + { + "id": "bobz", + "symbol": "bobz", + "name": "BOBz" + }, + { + "id": "bobzilla", + "symbol": "zilla", + "name": "Bobzilla" + }, + { + "id": "boda-token", + "symbol": "bodav2", + "name": "BODA" + }, + { + "id": "bodega", + "symbol": "bodega", + "name": "Bodega" + }, + { + "id": "bodhi-the-inu", + "symbol": "bodhi", + "name": "Bodhi The Inu" + }, + { + "id": "bodoggos-strategy", + "symbol": "bdgstrat", + "name": "Bodoggos Strategy" + }, + { + "id": "body-scan-ai", + "symbol": "scanai", + "name": "Body Scan AI" + }, + { + "id": "boe", + "symbol": "boe", + "name": "Boe" + }, + { + "id": "boeing-ondo-tokenized-stock", + "symbol": "baon", + "name": "Boeing (Ondo Tokenized Stock)" + }, + { + "id": "bog", + "symbol": "bog", + "name": "Bog" + }, + { + "id": "bogdanoff", + "symbol": "bog", + "name": "Bogdanoff" + }, + { + "id": "bogdanoff-2", + "symbol": "pumpit", + "name": "BOGDANOFF" + }, + { + "id": "boge", + "symbol": "boge", + "name": "BOGE" + }, + { + "id": "bogged-finance", + "symbol": "bog", + "name": "Bogged Finance" + }, + { + "id": "boggy-coin", + "symbol": "boggy", + "name": "Boggy Coin" + }, + { + "id": "bogus", + "symbol": "bogus", + "name": "BOGUS" + }, + { + "id": "boi-the-bear", + "symbol": "boi", + "name": "Boi the Bear" + }, + { + "id": "bojack", + "symbol": "$bojack", + "name": "BOJACK" + }, + { + "id": "boji-2", + "symbol": "boji", + "name": "Boji" + }, + { + "id": "bok-chick", + "symbol": "bok", + "name": "Bok Chick" + }, + { + "id": "bolic-ai", + "symbol": "boai", + "name": "Bolic AI" + }, + { + "id": "bolivarcoin", + "symbol": "boli", + "name": "Bolivarcoin" + }, + { + "id": "bolt", + "symbol": "bolt", + "name": "Bolt" + }, + { + "id": "bolt-2", + "symbol": "bolt", + "name": "Bolt" + }, + { + "id": "boltai", + "symbol": "boltai", + "name": "BoltAI" + }, + { + "id": "bolt-on-base", + "symbol": "bolt", + "name": "BOLT on Base" + }, + { + "id": "bolt-token-023ba86e-eb38-41a1-8d32-8b48ecfcb2c7", + "symbol": "$bolt", + "name": "Bolt Token" + }, + { + "id": "bomb", + "symbol": "bomb", + "name": "BOMB" + }, + { + "id": "bombcrypto-coin", + "symbol": "bcoin", + "name": "Bomb Crypto (POL)" + }, + { + "id": "bomb-crypto-sol", + "symbol": "bcoin", + "name": "Bomb Crypto (SOL)" + }, + { + "id": "bomb-crypto-ton", + "symbol": "bcoin", + "name": "Bomb Crypto (TON)" + }, + { + "id": "bomber-coin", + "symbol": "bcoin", + "name": "Bomb Crypto (BNB)" + }, + { + "id": "bomberronin", + "symbol": "bomb", + "name": "Bomber Ronin" + }, + { + "id": "bombie", + "symbol": "bomb", + "name": "Bombie" + }, + { + "id": "bomb-money", + "symbol": "bomb", + "name": "Bomb Money" + }, + { + "id": "bombo", + "symbol": "bombo", + "name": "BOMBO" + }, + { + "id": "bomboclat", + "symbol": "bclat", + "name": "Bomboclat" + }, + { + "id": "bomb-shelter-inu", + "symbol": "boom", + "name": "Bomb Shelter Inu" + }, + { + "id": "bomet", + "symbol": "bomet", + "name": "BOMET" + }, + { + "id": "bomo", + "symbol": "bomo", + "name": "BOMO" + }, + { + "id": "bomo-on-base", + "symbol": "bomo", + "name": "BOMO on Base" + }, + { + "id": "bonded-cronos", + "symbol": "bcro", + "name": "Bonded Cronos" + }, + { + "id": "bondex", + "symbol": "bdxn", + "name": "Bondex" + }, + { + "id": "bondly", + "symbol": "bondly", + "name": "Forj" + }, + { + "id": "bondx", + "symbol": "bondx", + "name": "BondX" + }, + { + "id": "bone-3", + "symbol": "$bone", + "name": "BONE" + }, + { + "id": "bone-bone", + "symbol": "bone", + "name": "Bone" + }, + { + "id": "bonecoin", + "symbol": "bonecoin", + "name": "Bonecoin" + }, + { + "id": "boner", + "symbol": "$boner", + "name": "BONER" + }, + { + "id": "boner-2", + "symbol": "boner", + "name": "boner" + }, + { + "id": "bonerium-boneswap", + "symbol": "bswp", + "name": "Bonerium BoneSwap" + }, + { + "id": "bone-shibaswap", + "symbol": "bone", + "name": "Bone ShibaSwap" + }, + { + "id": "boneswap", + "symbol": "bone", + "name": "BoneSwap" + }, + { + "id": "bone-token", + "symbol": "bone", + "name": "PolyPup Bone" + }, + { + "id": "bonfida", + "symbol": "fida", + "name": "Bonfida" + }, + { + "id": "bonfire", + "symbol": "bonfire", + "name": "Bonfire" + }, + { + "id": "bong", + "symbol": "bong", + "name": "BONG" + }, + { + "id": "bong-bonk-s-brother", + "symbol": "bong", + "name": "BONG BONK'S BROTHER" + }, + { + "id": "bongo", + "symbol": "ask", + "name": "Bongo" + }, + { + "id": "bongo-cat", + "symbol": "bongo", + "name": "BONGO CAT" + }, + { + "id": "bonk", + "symbol": "bonk", + "name": "Bonk" + }, + { + "id": "bonk-2-0", + "symbol": "bonk 2.0", + "name": "Bonk 2.0" + }, + { + "id": "bonk-2-0-sol", + "symbol": "bonk2.0", + "name": "Bonk 2.0 (Sol)" + }, + { + "id": "bonk-army", + "symbol": "army", + "name": "Bonk Army" + }, + { + "id": "bonkboy", + "symbol": "bonkboy", + "name": "BONKBOY" + }, + { + "id": "bonk-computer-token", + "symbol": "bct", + "name": "Bonk Computer Token" + }, + { + "id": "bonke", + "symbol": "bonke", + "name": "BONKE" + }, + { + "id": "bonkearn", + "symbol": "bern", + "name": "BonkEarn" + }, + { + "id": "bonke-base", + "symbol": "bonke", + "name": "Bonke (Base)" + }, + { + "id": "bonker", + "symbol": "bonker", + "name": "Bonker" + }, + { + "id": "bonker-2", + "symbol": "bonker", + "name": "Bonker" + }, + { + "id": "bonkersmemetoken", + "symbol": "bnkrs", + "name": "Bonkers Meme Token" + }, + { + "id": "bonkey", + "symbol": "bonkey", + "name": "Bonkey" + }, + { + "id": "bonkfolio", + "symbol": "bonkfolio", + "name": "BONKFOLIO" + }, + { + "id": "bonk-guy-was-right", + "symbol": "unipcs", + "name": "BONK GUY WAS RIGHT" + }, + { + "id": "bonkhouse", + "symbol": "bonkhouse", + "name": "BONKHOUSE" + }, + { + "id": "bonk-index", + "symbol": "bnkk", + "name": "Bonk Index" + }, + { + "id": "bonk-inu", + "symbol": "bonki", + "name": "BONK Inu" + }, + { + "id": "bonk-level-saviour", + "symbol": "saviour", + "name": "Bonk Level Saviour" + }, + { + "id": "bonk-level-saviour-2", + "symbol": "saviour", + "name": "Bonk Level Saviour" + }, + { + "id": "bonk-of-america", + "symbol": "bonkfa", + "name": "Bonk of America" + }, + { + "id": "bonk-on-base", + "symbol": "bonk", + "name": "Bonk On Base" + }, + { + "id": "bonk-on-eth", + "symbol": "bonk", + "name": "BONK on ETH" + }, + { + "id": "bonk-staked-sol", + "symbol": "bonksol", + "name": "Bonk Staked SOL" + }, + { + "id": "bonkwifamerica", + "symbol": "bif party", + "name": "BonkwifAmerica" + }, + { + "id": "bonk-wif-glass", + "symbol": "bong", + "name": "Bonk wif glass" + }, + { + "id": "bonkwifhat", + "symbol": "bif", + "name": "bonkwifhat" + }, + { + "id": "bonkyo", + "symbol": "bonkyo", + "name": "Bonkyo" + }, + { + "id": "bonsai", + "symbol": "bonsai", + "name": "Bonsai" + }, + { + "id": "bonsai3", + "symbol": "seed", + "name": "Bonsai3" + }, + { + "id": "bonsai-coin", + "symbol": "bonsaicoin", + "name": "Bonsai Coin" + }, + { + "id": "bonsai-terminal", + "symbol": "bonsai", + "name": "Bonsai Terminal" + }, + { + "id": "bonsai-token", + "symbol": "bonsai", + "name": "Bonsai Token" + }, + { + "id": "bonzai-depin", + "symbol": "bonzai", + "name": "BonzAI DePIN" + }, + { + "id": "bonzi", + "symbol": "bonzi", + "name": "Bonzi" + }, + { + "id": "bonzo-finance", + "symbol": "bonzo", + "name": "Bonzo Finance" + }, + { + "id": "boo-2", + "symbol": "$boo", + "name": "BOO" + }, + { + "id": "boochie-by-matt-furie", + "symbol": "boochie", + "name": "Boochie by Matt Furie" + }, + { + "id": "boofus-by-virtuals", + "symbol": "boof", + "name": "Boofus by Virtuals" + }, + { + "id": "booh-world-sol", + "symbol": "booh", + "name": "Booh World (SOL)" + }, + { + "id": "booji", + "symbol": "booji", + "name": "BOOJI" + }, + { + "id": "book-2", + "symbol": "stuff", + "name": "STUFF.io" + }, + { + "id": "bookie-ai-by-virtuals", + "symbol": "bookie", + "name": "Bookie AI" + }, + { + "id": "bookiebot", + "symbol": "bb", + "name": "BookieBot" + }, + { + "id": "booking-xstock", + "symbol": "bkngx", + "name": "Booking xStock" + }, + { + "id": "book-of-baby-memes", + "symbol": "babybome", + "name": "Book of Baby Memes" + }, + { + "id": "book-of-billionaires", + "symbol": "bobe", + "name": "BOOK OF BILLIONAIRES" + }, + { + "id": "book-of-binance", + "symbol": "book", + "name": "Book of Binance" + }, + { + "id": "book-of-bitcoin", + "symbol": "boob", + "name": "Book Of Bitcoin" + }, + { + "id": "book-of-dyor", + "symbol": "dyor", + "name": "Book of DYOR" + }, + { + "id": "book-of-ethereum", + "symbol": "booe", + "name": "Book of Ethereum" + }, + { + "id": "book-of-meme", + "symbol": "bome", + "name": "BOOK OF MEME" + }, + { + "id": "book-of-miggles", + "symbol": "bomi", + "name": "Book of Miggles" + }, + { + "id": "book-of-pepe", + "symbol": "bope", + "name": "Book of Pepe" + }, + { + "id": "book-of-pumpfluencers", + "symbol": "bopi", + "name": "Book Of Pumpfluencers" + }, + { + "id": "book-of-rugs", + "symbol": "book of rugs", + "name": "BOOK OF RUGS" + }, + { + "id": "book-of-solana", + "symbol": "book", + "name": "Book Of Solana" + }, + { + "id": "bookusd", + "symbol": "bud", + "name": "BOOKUSD" + }, + { + "id": "bookusd-share", + "symbol": "buss", + "name": "BOOKUSD Share" + }, + { + "id": "boom-2", + "symbol": "boom", + "name": "Boom" + }, + { + "id": "boomer", + "symbol": "boomer", + "name": "Boomer" + }, + { + "id": "boomer-2", + "symbol": "boomer", + "name": "Boomer" + }, + { + "id": "boomers-on-sol", + "symbol": "boomer", + "name": "Boomers on Sol" + }, + { + "id": "boom-fun", + "symbol": "boom", + "name": "boom.fun" + }, + { + "id": "boo-mirrorworld", + "symbol": "xboo", + "name": "Boo MirrorWorld" + }, + { + "id": "boom-token-2", + "symbol": "boom", + "name": "Boom Token" + }, + { + "id": "boop", + "symbol": "boop", + "name": "Boop" + }, + { + "id": "boop-2", + "symbol": "boop", + "name": "Boop" + }, + { + "id": "boop-3", + "symbol": "boop", + "name": "BOOP" + }, + { + "id": "boop-4", + "symbol": "boop", + "name": "BOOP" + }, + { + "id": "boopa", + "symbol": "boopa", + "name": "Boopa" + }, + { + "id": "boopi", + "symbol": "boopi", + "name": "BOOPI" + }, + { + "id": "boorio-2", + "symbol": "orio", + "name": "Boorio" + }, + { + "id": "boosey", + "symbol": "boosey", + "name": "BOOSEY" + }, + { + "id": "booshi", + "symbol": "booshi", + "name": "Booshi" + }, + { + "id": "boost-2", + "symbol": "boost", + "name": "Boost" + }, + { + "id": "boost-3", + "symbol": "boost", + "name": "Moontask" + }, + { + "id": "boots", + "symbol": "boots", + "name": "boots [OLD]" + }, + { + "id": "boots-2", + "symbol": "boots", + "name": "boots" + }, + { + "id": "booty", + "symbol": "booty", + "name": "BOOTY" + }, + { + "id": "booty-2", + "symbol": "$booty", + "name": "Booty" + }, + { + "id": "booze", + "symbol": "booze", + "name": "Booze" + }, + { + "id": "bop-cat", + "symbol": "bop", + "name": "Bop Cat" + }, + { + "id": "boppy", + "symbol": "boppy", + "name": "BOPPY" + }, + { + "id": "boppy-the-bat", + "symbol": "boppy", + "name": "Boppy The Bat" + }, + { + "id": "bora", + "symbol": "bora", + "name": "BORA" + }, + { + "id": "borealis", + "symbol": "brl", + "name": "Borealis" + }, + { + "id": "bored", + "symbol": "$bored", + "name": "Bored Token" + }, + { + "id": "bored-2", + "symbol": "bored", + "name": "BORED" + }, + { + "id": "bored-candy-city", + "symbol": "candy", + "name": "Bored Candy City" + }, + { + "id": "borgy", + "symbol": "$borgy", + "name": "BORGY" + }, + { + "id": "boringdao", + "symbol": "boring", + "name": "BoringDAO" + }, + { + "id": "boringdao-[old]", + "symbol": "bor", + "name": "BoringDAO [OLD]" + }, + { + "id": "boring-protocol", + "symbol": "bop", + "name": "Boring Protocol" + }, + { + "id": "boris-2", + "symbol": "boris", + "name": "boris" + }, + { + "id": "bork-2", + "symbol": "bork", + "name": "Bork" + }, + { + "id": "bork-on-ethereum", + "symbol": "bork", + "name": "Bork on Ethereum" + }, + { + "id": "borne", + "symbol": "borne", + "name": "BORNE" + }, + { + "id": "boros", + "symbol": "boros", + "name": "Boros" + }, + { + "id": "borpa", + "symbol": "borpa", + "name": "Borpa" + }, + { + "id": "borpatoken", + "symbol": "gorples", + "name": "GorplesCoin" + }, + { + "id": "bosagora-2", + "symbol": "boa", + "name": "BOSagora" + }, + { + "id": "boshi", + "symbol": "boshi", + "name": "Boshi" + }, + { + "id": "boson-protocol", + "symbol": "boson", + "name": "Boson" + }, + { + "id": "boss", + "symbol": "boss", + "name": "Boss" + }, + { + "id": "boss-burger", + "symbol": "bossburger", + "name": "Boss Burger" + }, + { + "id": "bossdog", + "symbol": "bossdog", + "name": "BOSSDOG" + }, + { + "id": "boss-fighters-token", + "symbol": "bftoken", + "name": "BOSS FIGHTERS Token" + }, + { + "id": "bossie", + "symbol": "bossie", + "name": "Bossie" + }, + { + "id": "bossu", + "symbol": "bossu", + "name": "BOSSU" + }, + { + "id": "bostrom", + "symbol": "boot", + "name": "Bostrom" + }, + { + "id": "botanix-pegged-bitcoin", + "symbol": "pbtc", + "name": "Botanix Pegged Bitcoin" + }, + { + "id": "botanix-staked-bitcoin", + "symbol": "stbtc", + "name": "Botanix Staked Bitcoin" + }, + { + "id": "bot-compiler", + "symbol": "botc", + "name": "Bot Compiler" + }, + { + "id": "botify", + "symbol": "botify", + "name": "BOTIFY" + }, + { + "id": "boton-ai", + "symbol": "boton", + "name": "Boton AI" + }, + { + "id": "botto", + "symbol": "botto", + "name": "Botto" + }, + { + "id": "botxcoin", + "symbol": "botx", + "name": "BOTXCOIN" + }, + { + "id": "bouncebit", + "symbol": "bb", + "name": "BounceBit" + }, + { + "id": "bouncebit-btc", + "symbol": "bbtc", + "name": "BounceBit BTC" + }, + { + "id": "bouncebit-usd", + "symbol": "bbusd", + "name": "BounceBit USD" + }, + { + "id": "bouncing-dvd", + "symbol": "dvd", + "name": "Bouncing DVD" + }, + { + "id": "bouncy-ball-of-ofid-fun", + "symbol": "e𝕏pb", + "name": "BOUNCY BALL of OFiD Fun" + }, + { + "id": "boundless", + "symbol": "zkc", + "name": "Boundless" + }, + { + "id": "boundless-network", + "symbol": "bun", + "name": "Boundless Network" + }, + { + "id": "bounty-3", + "symbol": "bnty", + "name": "Bounty" + }, + { + "id": "bountykinds-yu", + "symbol": "yu", + "name": "BountyKinds YU" + }, + { + "id": "bountymarketcap", + "symbol": "bmc", + "name": "BountyMarketCap" + }, + { + "id": "bowie", + "symbol": "bowie", + "name": "Bowie" + }, + { + "id": "bowser", + "symbol": "bowser", + "name": "Bowser" + }, + { + "id": "box-2", + "symbol": "box", + "name": "BOX" + }, + { + "id": "boxbet", + "symbol": "bxbt", + "name": "BoxBet" + }, + { + "id": "boxcat", + "symbol": "boxcat", + "name": "BOXCAT" + }, + { + "id": "boysclub", + "symbol": "boysclub", + "name": "BoysClub" + }, + { + "id": "boys-club", + "symbol": "boys", + "name": "Boys Club" + }, + { + "id": "boysclubbase", + "symbol": "$boys", + "name": "Boysclubbase" + }, + { + "id": "boys-club-munchy", + "symbol": "munchy", + "name": "Boys Club Munchy" + }, + { + "id": "boysclub-on-sui", + "symbol": "boyss", + "name": "Boysclub on Sui" + }, + { + "id": "bozo-collective", + "symbol": "bozo", + "name": "Bozo Collective" + }, + { + "id": "bozo-hybrid", + "symbol": "bozo", + "name": "Bozo Benk" + }, + { + "id": "bozo-the-bull", + "symbol": "bozo", + "name": "bozo the bull" + }, + { + "id": "bpepe", + "symbol": "bpepe", + "name": "BPEPE" + }, + { + "id": "bracelet", + "symbol": "brc", + "name": "Bracelet" + }, + { + "id": "bracky", + "symbol": "bracky", + "name": "BRACKY" + }, + { + "id": "brad", + "symbol": "brad", + "name": "Brad" + }, + { + "id": "brain", + "symbol": "sn90", + "name": "Brain" + }, + { + "id": "brainedge", + "symbol": "learn", + "name": "Brainedge" + }, + { + "id": "brain-frog", + "symbol": "brain", + "name": "Brain Frog" + }, + { + "id": "brainlet", + "symbol": "brainlet", + "name": "BRAINLET" + }, + { + "id": "brainlet-2", + "symbol": "brainlet", + "name": "Brainlet" + }, + { + "id": "brainrot", + "symbol": "rot", + "name": "brainrot" + }, + { + "id": "brainrot-2", + "symbol": "brainrot", + "name": "Brainrot" + }, + { + "id": "brainrot-research", + "symbol": "brnrt", + "name": "Brainrot Research" + }, + { + "id": "brains-your-greed-is-my-fuel-by-virtuals", + "symbol": "brains", + "name": "$BRAINS - your greed is my fuel 🤯🧠 by Virtuals" + }, + { + "id": "braintrust", + "symbol": "btrst", + "name": "Braintrust" + }, + { + "id": "brain-worms", + "symbol": "bworm", + "name": "Brain Worms" + }, + { + "id": "brander", + "symbol": "brander", + "name": "BRANDER" + }, + { + "id": "brandy", + "symbol": "brandy", + "name": "BRANDY" + }, + { + "id": "brat", + "symbol": "brat", + "name": "Brat" + }, + { + "id": "braza-by-virtuals", + "symbol": "braza", + "name": "BRAZA by Virtuals" + }, + { + "id": "brazil-fan-token", + "symbol": "bft", + "name": "Brazil National Football Team Fan Token" + }, + { + "id": "brazilian-miku", + "symbol": "miku", + "name": "BRAZILIAN MIKU" + }, + { + "id": "brc-20-dex", + "symbol": "bd20", + "name": "BRC-20 DEX" + }, + { + "id": "brcstarter", + "symbol": "brcst", + "name": "BRCStarter" + }, + { + "id": "bre3", + "symbol": "brx", + "name": "BRE3" + }, + { + "id": "bread", + "symbol": "brd", + "name": "Bread" + }, + { + "id": "bread-2", + "symbol": "bread", + "name": "Bread" + }, + { + "id": "bread-3", + "symbol": "bread", + "name": "Bread" + }, + { + "id": "breadheads", + "symbol": "crumbs", + "name": "BreadHeads" + }, + { + "id": "breaking-bread", + "symbol": "brbr", + "name": "Breaking Bread" + }, + { + "id": "breakout-bro-by-virtuals", + "symbol": "bob", + "name": "Breakout Bro by Virtuals" + }, + { + "id": "brepe", + "symbol": "brepe", + "name": "BREPE" + }, + { + "id": "brett", + "symbol": "brett", + "name": "Brett" + }, + { + "id": "brett0x66", + "symbol": "$brett", + "name": "BRETT0X66" + }, + { + "id": "brett-2-0", + "symbol": "brett2.0", + "name": "Brett 2.0" + }, + { + "id": "bretta-brett-s-wife", + "symbol": "bretta", + "name": "Bretta (Brett’s Wife)" + }, + { + "id": "brettei", + "symbol": "brettei", + "name": "Brettei" + }, + { + "id": "bretter-brett", + "symbol": "brett", + "name": "Bretter Brett" + }, + { + "id": "brett-eth", + "symbol": "brett", + "name": "Brett ETH" + }, + { + "id": "brett-gold", + "symbol": "brettgold", + "name": "Brett Gold" + }, + { + "id": "brett-killer", + "symbol": "krett", + "name": "Brett Killer" + }, + { + "id": "brett-memecoin", + "symbol": "brett", + "name": "Brett (ETH)" + }, + { + "id": "brett-s-cat", + "symbol": "balt", + "name": "Brett's cat" + }, + { + "id": "brett-s-dog", + "symbol": "brogg", + "name": "Brett's Dog" + }, + { + "id": "brettwu", + "symbol": "brettwu", + "name": "Brettwu" + }, + { + "id": "brewlabs-2", + "symbol": "brew", + "name": "Brewlabs" + }, + { + "id": "brewski", + "symbol": "brewski", + "name": "Brewski" + }, + { + "id": "brex", + "symbol": "brex", + "name": "BREX" + }, + { + "id": "briah", + "symbol": "briah", + "name": "BRIAH" + }, + { + "id": "brian", + "symbol": "brian", + "name": "Brian" + }, + { + "id": "bribeai", + "symbol": "brai", + "name": "BribeAI" + }, + { + "id": "brick", + "symbol": "brick", + "name": "r/FortNiteBR Bricks" + }, + { + "id": "brick-block", + "symbol": "brick", + "name": "Brick Block" + }, + { + "id": "brickcoin", + "symbol": "brick", + "name": "brickcoin" + }, + { + "id": "brickken", + "symbol": "bkn", + "name": "Brickken" + }, + { + "id": "bricks-exchange", + "symbol": "brx", + "name": "Bricks" + }, + { + "id": "brics-chain", + "symbol": "brics", + "name": "BRICS Chain" + }, + { + "id": "bridged-andromeda", + "symbol": "sandr", + "name": "Bridged Andromeda" + }, + { + "id": "bridged-arbitrum-lightlink", + "symbol": "arb.e", + "name": "Bridged Arbitrum (Lightlink)" + }, + { + "id": "bridged-axelar-wrapped-usd-coin-immutable-zkevm", + "symbol": "axlusdc", + "name": "Axelar Bridged USDC (Immutable zkEVM)" + }, + { + "id": "bridged-axelar-wrapped-usd-coin-scroll", + "symbol": "axlusdc", + "name": "Bridged Axelar Wrapped USD Coin (Scroll)" + }, + { + "id": "bridged-binance-peg-ethereum-opbnb", + "symbol": "eth", + "name": "Bridged Binance-Peg Ethereum (opBNB)" + }, + { + "id": "bridged-btc-superposition", + "symbol": "wbtc", + "name": "Bridged BTC (Superposition)" + }, + { + "id": "bridged-busd", + "symbol": "busd", + "name": "Bridged BUSD" + }, + { + "id": "bridged-chainlink-lightlink", + "symbol": "link.e", + "name": "Bridged Chainlink (Lightlink)" + }, + { + "id": "bridged-curve-dao-token-stargate", + "symbol": "crv", + "name": "Bridged Curve DAO Token (Stargate)" + }, + { + "id": "bridged-dai", + "symbol": "dai", + "name": "Bridged DAI" + }, + { + "id": "bridged-dai-lightlink", + "symbol": "dai.e", + "name": "Bridged Dai (Lightlink)" + }, + { + "id": "bridged-dai-stablecoin-hashport", + "symbol": "dai[hts]", + "name": "Bridged Dai Stablecoin (Hashport)" + }, + { + "id": "bridged-dai-stablecoin-linea", + "symbol": "dai", + "name": "Bridged Dai Stablecoin (Linea)" + }, + { + "id": "bridged-dai-starkgate", + "symbol": "dai", + "name": "StarkGate Bridged Dai (Starknet)" + }, + { + "id": "bridged-dog-go-to-the-moon", + "symbol": "dog•go•to•the•moon", + "name": "Bridged DOG•GO•TO•THE•MOON (Merlin Chain)" + }, + { + "id": "bridged-kyber-network-crystal-bsc", + "symbol": "knc_b", + "name": "Bridged Kyber Network Crystal (BSC)" + }, + { + "id": "bridged-kyber-network-crystal-ethereum", + "symbol": "knc_e", + "name": "Bridged Kyber Network Crystal (Ethereum)" + }, + { + "id": "bridged-maga-wormhole", + "symbol": "trump", + "name": "Bridged MAGA (Wormhole)" + }, + { + "id": "bridged-matic-manta-pacific", + "symbol": "matic", + "name": "Bridged MATIC (Manta Pacific)" + }, + { + "id": "bridged-polygon-lightlink", + "symbol": "matic.e", + "name": "Bridged Polygon (Lightlink)" + }, + { + "id": "bridged-sttia-hyperlane", + "symbol": "sttia", + "name": "Bridged stTIA (Hyperlane)" + }, + { + "id": "bridged-tether-fuse", + "symbol": "usdt", + "name": "Bridged Tether (Fuse)" + }, + { + "id": "bridged-tether-hashport", + "symbol": "usdt[hts]", + "name": "Bridged Tether (Hashport)" + }, + { + "id": "bridged-tether-lightlink", + "symbol": "usdt.e", + "name": "Bridged Tether (Lightlink)" + }, + { + "id": "bridged-tether-linea", + "symbol": "usdt", + "name": "Bridged Tether (Linea)" + }, + { + "id": "bridged-tether-manta-pacific", + "symbol": "usdt", + "name": "Bridged Tether (Manta Pacific)" + }, + { + "id": "bridged-tether-opbnb", + "symbol": "usdt", + "name": "Bridged Tether (opBNB)" + }, + { + "id": "bridged-tether-scroll", + "symbol": "usdt", + "name": "Bridged Tether (Scroll)" + }, + { + "id": "bridged-tether-starkgate", + "symbol": "usdt", + "name": "Bridged Tether (StarkGate)" + }, + { + "id": "bridged-tether-ton-bridge", + "symbol": "jusdt", + "name": "Bridged Tether (TON Bridge)" + }, + { + "id": "bridged-tia-hyperlane", + "symbol": "tia.n", + "name": "Bridged TIA (Hyperlane)" + }, + { + "id": "bridged-trueusd", + "symbol": "tusd", + "name": "Bridged TrueUSD" + }, + { + "id": "bridged-uniswap-lightlink", + "symbol": "uni.e", + "name": "Bridged Uniswap (Lightlink)" + }, + { + "id": "bridged-usdc", + "symbol": "usdc", + "name": "Bridged USDC" + }, + { + "id": "bridged-usdc-chainport", + "symbol": "usdc", + "name": "Chainport Bridged USDC (Humanode)" + }, + { + "id": "bridged-usdc-core", + "symbol": "usdc", + "name": "CoreDAO Bridged USDC (Core)" + }, + { + "id": "bridged-usdc-gnosis", + "symbol": "usdc.e", + "name": "Gnosis xDAI Bridged USDC (Gnosis)" + }, + { + "id": "bridged-usdc-immutable-zkevm", + "symbol": "usdc", + "name": "Bridged USDC (Immutable zkEVM)" + }, + { + "id": "bridged-usdc-lightlink", + "symbol": "usdc.e", + "name": "Lightlink Bridged USDC (Lightlink)" + }, + { + "id": "bridged-usd-coin-base", + "symbol": "usdbc", + "name": "Bridged USDC (Base)" + }, + { + "id": "bridged-usd-coin-linea", + "symbol": "usdc", + "name": "Linea Bridged USDC (Linea)" + }, + { + "id": "bridged-usd-coin-manta-pacific", + "symbol": "usdc", + "name": "Bridged USD Coin (Manta Pacific)" + }, + { + "id": "bridged-usd-coin-optimism", + "symbol": "usdc.e", + "name": "Standard Bridged USDC.e (Optimism)" + }, + { + "id": "bridged-usd-coin-scroll", + "symbol": "usdc", + "name": "Bridged USD Coin (Scroll)" + }, + { + "id": "bridged-usd-coin-starkgate", + "symbol": "usdc", + "name": "StarkGate Bridged USDC (Starknet)" + }, + { + "id": "bridged-usd-coin-ton-bridge", + "symbol": "jusdc", + "name": "Bridged USD Coin (TON Bridge)" + }, + { + "id": "bridged-usdc-polygon-pos-bridge", + "symbol": "usdc.e", + "name": "Polygon Bridged USDC (Polygon PoS)" + }, + { + "id": "bridged-usdc-xdc-bridge", + "symbol": "usdc.e", + "name": "XDC Bridged USDC (XDC)" + }, + { + "id": "bridged-usdt", + "symbol": "usdt", + "name": "Bridged USDT" + }, + { + "id": "bridged-usdt-core", + "symbol": "usdt", + "name": "CoreDAO Bridged USDT (Core)" + }, + { + "id": "bridged-usdt-immutable-zkevm", + "symbol": "usdt", + "name": "Immutable Toolkit Bridged USDT (Immutable zkEVM)" + }, + { + "id": "bridged-wavax", + "symbol": "wavax", + "name": "Bridged WAVAX" + }, + { + "id": "bridged-wbnb", + "symbol": "wbnb", + "name": "Bridged WBNB" + }, + { + "id": "bridged-wbtc", + "symbol": "wbtc", + "name": "Bridged WBTC" + }, + { + "id": "bridged-weth", + "symbol": "weth", + "name": "Bridged WETH" + }, + { + "id": "bridged-weth-superposition", + "symbol": "weth", + "name": "Bridged WETH (Superposition)" + }, + { + "id": "bridged-wrapped-bitcoin-bob-network", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (BOB Network)" + }, + { + "id": "bridged-wrapped-bitcoin-hashport", + "symbol": "wbtc[hts]", + "name": "Bridged Wrapped Bitcoin (Hashport)" + }, + { + "id": "bridged-wrapped-bitcoin-manta-pacific", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (Manta Pacific)" + }, + { + "id": "bridged-wrapped-bitcoin-scroll", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (Scroll)" + }, + { + "id": "bridged-wrapped-bitcoin-starkgate", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (StarkGate)" + }, + { + "id": "bridged-wrapped-bitcoin-ton-bridge", + "symbol": "jwbtc", + "name": "Bridged Wrapped Bitcoin (TON Bridge)" + }, + { + "id": "bridged-wrapped-bitcoin-worldchain", + "symbol": "wbtc", + "name": "Bridged Wrapped Bitcoin (Worldchain)" + }, + { + "id": "bridged-wrapped-btc-lightlink", + "symbol": "wbtc.e", + "name": "Bridged Wrapped BTC (Lightlink)" + }, + { + "id": "bridged-wrapped-ether-eclipse", + "symbol": "eth", + "name": "Bridged Wrapped Ether (Eclipse)" + }, + { + "id": "bridged-wrapped-ethereum-bob-network", + "symbol": "weth", + "name": "Bridged Wrapped Ethereum (BOB Network)" + }, + { + "id": "bridged-wrapped-ether-fuse", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Fuse)" + }, + { + "id": "bridged-wrapped-ether-manta-pacific", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Manta Pacific)" + }, + { + "id": "bridged-wrapped-ether-morph-l2", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Morph L2)" + }, + { + "id": "bridged-wrapped-ether-pundi-aifx-omnilayer", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Pundi AIFX Omnilayer)" + }, + { + "id": "bridged-wrapped-ether-scroll", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Scroll)" + }, + { + "id": "bridged-wrapped-ether-sonic", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Sonic)" + }, + { + "id": "bridged-wrapped-ether-stargate", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Stargate)" + }, + { + "id": "bridged-wrapped-ether-starkgate", + "symbol": "eth", + "name": "Bridged Ether (StarkGate)" + }, + { + "id": "bridged-wrapped-ether-x-layer", + "symbol": "weth", + "name": "x Layer Bridged WETH (x Layer)" + }, + { + "id": "bridged-wrapped-lido-staked-ether-scroll", + "symbol": "wsteth", + "name": "Bridged Wrapped Lido Staked Ether (Scroll)" + }, + { + "id": "bridged-wrapped-steth-axelar", + "symbol": "axl-wsteth", + "name": "Bridged Wrapped stETH (Axelar)" + }, + { + "id": "bridged-wrapped-steth-fuse", + "symbol": "wsteth", + "name": "Bridged Wrapped stETH (Fuse)" + }, + { + "id": "bridged-wrapped-steth-gnosis", + "symbol": "wsteth", + "name": "Bridged Wrapped stETH (Gnosis)" + }, + { + "id": "bridged-wrapped-steth-manta-pacific", + "symbol": "wsteth", + "name": "Bridged Wrapped stETH (Manta Pacific)" + }, + { + "id": "bridge-mutual", + "symbol": "bmi", + "name": "Bridge Mutual" + }, + { + "id": "bridge-oracle", + "symbol": "brg", + "name": "Bridge AI" + }, + { + "id": "brightpool-finance-brix", + "symbol": "brix", + "name": "Brightpool Finance BRIX" + }, + { + "id": "bright-token", + "symbol": "bright", + "name": "BrightID" + }, + { + "id": "bright-union", + "symbol": "bright", + "name": "Bright Union" + }, + { + "id": "brihlo", + "symbol": "bril", + "name": "BRIHLO" + }, + { + "id": "brilliant-crypto-token", + "symbol": "bril", + "name": "Brilliant Crypto Token" + }, + { + "id": "briq", + "symbol": "briq", + "name": "Briq Finance" + }, + { + "id": "brish", + "symbol": "brish", + "name": "Brish" + }, + { + "id": "britt", + "symbol": "britt", + "name": "Britt" + }, + { + "id": "briun-armstrung", + "symbol": "briun", + "name": "Briun Armstrung" + }, + { + "id": "brix-gaming", + "symbol": "brix", + "name": "Brix Gaming" + }, + { + "id": "brk690k", + "symbol": "brk", + "name": "BRK690k" + }, + { + "id": "brla-digital-brla", + "symbol": "brla", + "name": "BRLA Digital BRLA" + }, + { + "id": "brnd", + "symbol": "brnd", + "name": "BRND" + }, + { + "id": "brn-metaverse", + "symbol": "brn", + "name": "BRN Metaverse" + }, + { + "id": "bro", + "symbol": "bro", + "name": "Bro" + }, + { + "id": "bro-2", + "symbol": "bro", + "name": "Bro" + }, + { + "id": "broadcom-ondo-tokenized-stock", + "symbol": "avgoon", + "name": "Broadcom (Ondo Tokenized Stock)" + }, + { + "id": "broadcom-xstock", + "symbol": "avgox", + "name": "Broadcom xStock" + }, + { + "id": "broak-on-base", + "symbol": "broak", + "name": "Broak on Base" + }, + { + "id": "broccoli-2", + "symbol": "broccoli", + "name": "BROCCOLI" + }, + { + "id": "broccoli-3", + "symbol": "broccoli", + "name": "Broccoli" + }, + { + "id": "broccoli-4", + "symbol": "broccoli", + "name": "Broccoli" + }, + { + "id": "broccoli-5", + "symbol": "broccoli", + "name": "Broccoli" + }, + { + "id": "broccoli-6", + "symbol": "broc", + "name": "Broccoli" + }, + { + "id": "broccoli-the-gangsta", + "symbol": "broc", + "name": "Broccoli The Gangsta" + }, + { + "id": "brodogcoin", + "symbol": "bro", + "name": "brodogcoin" + }, + { + "id": "broge", + "symbol": "broge", + "name": "Broge" + }, + { + "id": "bro-if-i-held", + "symbol": "if", + "name": "Bro if I held" + }, + { + "id": "broke-again", + "symbol": "$broke", + "name": "$BROKE again" + }, + { + "id": "brokecoin", + "symbol": "broke", + "name": "Brokecoin" + }, + { + "id": "brokie-ai", + "symbol": "$brokie", + "name": "BROKIE AI" + }, + { + "id": "brokoli", + "symbol": "brkl", + "name": "Brokoli" + }, + { + "id": "brolana", + "symbol": "bros", + "name": "Brolana" + }, + { + "id": "brooder", + "symbol": "brood", + "name": "Brooder" + }, + { + "id": "bro-on-base", + "symbol": "bro", + "name": "BRO on BASE" + }, + { + "id": "brot", + "symbol": "brot", + "name": "BROT" + }, + { + "id": "bro-the-cat", + "symbol": "bro", + "name": "Bro the cat" + }, + { + "id": "brotherhood", + "symbol": "bog", + "name": "Brotherhood" + }, + { + "id": "browser-dao", + "symbol": "browser", + "name": "Browser DAO" + }, + { + "id": "browsr-ai", + "symbol": "brws", + "name": "Browsr AI" + }, + { + "id": "brrr-de-money", + "symbol": "brrr", + "name": "Brrr de Money" + }, + { + "id": "bruh", + "symbol": "bruh", + "name": "BRUH" + }, + { + "id": "bruh-2", + "symbol": "bruh", + "name": "Bruh" + }, + { + "id": "brume", + "symbol": "brume", + "name": "Brume" + }, + { + "id": "brutalsol", + "symbol": "brute", + "name": "BrutalSol" + }, + { + "id": "bruv", + "symbol": "bruv", + "name": "Bruv" + }, + { + "id": "bruv-2", + "symbol": "bruv", + "name": "bruv" + }, + { + "id": "brz", + "symbol": "brz", + "name": "Brazilian Digital" + }, + { + "id": "bscbook", + "symbol": "book", + "name": "Bscbook" + }, + { + "id": "bscex", + "symbol": "bscx", + "name": "BSCEX" + }, + { + "id": "bsclaunch", + "symbol": "bsl", + "name": "BSClaunch" + }, + { + "id": "bscpad", + "symbol": "bscpad", + "name": "BSCPAD" + }, + { + "id": "bscstarter", + "symbol": "start", + "name": "Starter.xyz" + }, + { + "id": "bsc-station", + "symbol": "bscs", + "name": "BSCS" + }, + { + "id": "bsop", + "symbol": "bsop", + "name": "Bsop" + }, + { + "id": "bsquared-network", + "symbol": "b2", + "name": "BSquared Network" + }, + { + "id": "bsx", + "symbol": "bsx", + "name": "BSX" + }, + { + "id": "btaf-token", + "symbol": "btaf", + "name": "BTAF token" + }, + { + "id": "btc25", + "symbol": "$btc25", + "name": "$BTC25" + }, + { + "id": "btc-2x-flexible-leverage-index", + "symbol": "btc2x-fli", + "name": "BTC 2x Flexible Leverage Index" + }, + { + "id": "btc-bull-token", + "symbol": "btcbull", + "name": "BTC Bull Token" + }, + { + "id": "btc-proxy", + "symbol": "btcpx", + "name": "BTC Proxy" + }, + { + "id": "btc-standard-hashrate-token", + "symbol": "btcst", + "name": "BTC Standard Hashrate Token" + }, + { + "id": "bts-chain", + "symbol": "btsc", + "name": "BTS Chain" + }, + { + "id": "btse-token", + "symbol": "btse", + "name": "BTSE Token" + }, + { + "id": "btu-protocol", + "symbol": "btu", + "name": "BTU Protocol" + }, + { + "id": "bubb", + "symbol": "bubb", + "name": "Bubb" + }, + { + "id": "bubba", + "symbol": "bubba", + "name": "Bubba" + }, + { + "id": "bubblebid", + "symbol": "bbb", + "name": "Bubblebid" + }, + { + "id": "bubblemaps", + "symbol": "bmt", + "name": "Bubblemaps" + }, + { + "id": "bubbles-2", + "symbol": "bubbles", + "name": "BUBBLES" + }, + { + "id": "bubbo", + "symbol": "bubo", + "name": "Bubbo" + }, + { + "id": "bubl", + "symbol": "bubl", + "name": "BUBL" + }, + { + "id": "bubsy-ai", + "symbol": "bubsy", + "name": "Bubsy AI" + }, + { + "id": "bubu-2", + "symbol": "bubu", + "name": "BUBU" + }, + { + "id": "bubu-3", + "symbol": "bubu", + "name": "Bubu" + }, + { + "id": "bucci", + "symbol": "brrr", + "name": "BUCCI" + }, + { + "id": "buckazoids", + "symbol": "buckazoids", + "name": "Buckazoids" + }, + { + "id": "bucket-hat", + "symbol": "bucket", + "name": "Bucket Hat" + }, + { + "id": "bucket-protocol-buck-stablecoin", + "symbol": "buck", + "name": "Bucket Protocol BUCK Stablecoin" + }, + { + "id": "bucket-token", + "symbol": "but", + "name": "Bucket Token" + }, + { + "id": "bucket-usd", + "symbol": "usdb", + "name": "Bucket USD" + }, + { + "id": "bucky", + "symbol": "bucky", + "name": "Bucky" + }, + { + "id": "bucky-2", + "symbol": "bucky", + "name": "Bucky" + }, + { + "id": "buddha", + "symbol": "buddha", + "name": "Buddha" + }, + { + "id": "buddy-2", + "symbol": "buddy", + "name": "BUDDY" + }, + { + "id": "bueno", + "symbol": "bueno", + "name": "Bueno" + }, + { + "id": "buff-coin", + "symbol": "buff", + "name": "Buff Coin" + }, + { + "id": "buff-doge-coin", + "symbol": "dogecoin", + "name": "Buff Doge Coin" + }, + { + "id": "bufficorn", + "symbol": "buffi", + "name": "Bufficorn" + }, + { + "id": "buffy", + "symbol": "buffy", + "name": "Buffy" + }, + { + "id": "bug", + "symbol": "bug", + "name": "Bug" + }, + { + "id": "bugo", + "symbol": "bugo", + "name": "BUGO" + }, + { + "id": "bugs-bunny", + "symbol": "bugs", + "name": "Bugs Bunny" + }, + { + "id": "bugscoin", + "symbol": "bgsc", + "name": "BugsCoin" + }, + { + "id": "buidl", + "symbol": "buidl", + "name": "buidl" + }, + { + "id": "build", + "symbol": "build", + "name": "BUILD" + }, + { + "id": "build-2", + "symbol": "build", + "name": "Build" + }, + { + "id": "build-3", + "symbol": "build", + "name": "BUILD" + }, + { + "id": "build-4", + "symbol": "build", + "name": "BUILD" + }, + { + "id": "buildai", + "symbol": "build", + "name": "BuildAI" + }, + { + "id": "builders", + "symbol": "builders", + "name": "Builders" + }, + { + "id": "build-on", + "symbol": "b", + "name": "BUILDon" + }, + { + "id": "build-on-bnb", + "symbol": "bob", + "name": "Build On BNB" + }, + { + "id": "buildr", + "symbol": "bldr", + "name": "Buildr" + }, + { + "id": "buildr-2", + "symbol": "buildr", + "name": "BUILDR" + }, + { + "id": "buildx", + "symbol": "buildx", + "name": "BuildX" + }, + { + "id": "built-different", + "symbol": "built", + "name": "Built Different" + }, + { + "id": "built-on-nothing", + "symbol": "bon", + "name": "Built on Nothing" + }, + { + "id": "bul", + "symbol": "bul", + "name": "bul" + }, + { + "id": "bulbul2dao", + "symbol": "bulbul", + "name": "BULBUL2DAO" + }, + { + "id": "buldak", + "symbol": "bul", + "name": "Buldak" + }, + { + "id": "bulei", + "symbol": "bulei", + "name": "Bulei" + }, + { + "id": "bull", + "symbol": "bull", + "name": "Bull" + }, + { + "id": "bull-2", + "symbol": "bull", + "name": "Bull" + }, + { + "id": "bull-3", + "symbol": "bull", + "name": "BULL" + }, + { + "id": "bull-4", + "symbol": "bull", + "name": "BULL" + }, + { + "id": "bulla-3", + "symbol": "bulla", + "name": "BULLA" + }, + { + "id": "bulla-4", + "symbol": "bulla", + "name": "Bulla" + }, + { + "id": "bullarena", + "symbol": "bar", + "name": "BullArena" + }, + { + "id": "bullbar", + "symbol": "bull", + "name": "BullBar" + }, + { + "id": "bull-btc-club", + "symbol": "bbc", + "name": "Bull BTC Club" + }, + { + "id": "bullcat", + "symbol": "bullcat", + "name": "BULLCAT" + }, + { + "id": "bullcoin", + "symbol": "bull", + "name": "Bullcoin" + }, + { + "id": "bull-coin", + "symbol": "bull", + "name": "Bull Coin" + }, + { + "id": "bulldogito", + "symbol": "bdogito", + "name": "BullDogito" + }, + { + "id": "bullets", + "symbol": "blt", + "name": "Bullets" + }, + { + "id": "bull-frog-2", + "symbol": "boa", + "name": "BULL FROG" + }, + { + "id": "bull-god", + "symbol": "bullgod", + "name": "Bull God" + }, + { + "id": "bullieve", + "symbol": "bullieve", + "name": "BULLIEVE" + }, + { + "id": "bullieverse", + "symbol": "bull", + "name": "Bullieverse" + }, + { + "id": "bullish", + "symbol": "bullish", + "name": "bullish" + }, + { + "id": "bullish-degen", + "symbol": "bullish", + "name": "Bullish Degen" + }, + { + "id": "bullishmarketcap", + "symbol": "$bmc", + "name": "BullishMarketCap" + }, + { + "id": "bullish-xstock", + "symbol": "blshx", + "name": "Bullish xStock" + }, + { + "id": "bull-market", + "symbol": "$bull", + "name": "Bull Market" + }, + { + "id": "bull-market-coin", + "symbol": "bull", + "name": "Bull Market Coin" + }, + { + "id": "bull-pepe", + "symbol": "bullpepe", + "name": "Bull Pepe" + }, + { + "id": "bullperks", + "symbol": "blp", + "name": "BullPerks [OLD]" + }, + { + "id": "bullperks-ai", + "symbol": "blpai", + "name": "BullPerks AI" + }, + { + "id": "bull-run-solana", + "symbol": "$bull", + "name": "Bull Run Solana" + }, + { + "id": "bulls-3", + "symbol": "bulls", + "name": "Bulls" + }, + { + "id": "bullshark", + "symbol": "bshark", + "name": "BULLSHARK" + }, + { + "id": "bull-star-finance", + "symbol": "bsf", + "name": "Bull Star Finance" + }, + { + "id": "bulls-vs-bears", + "symbol": "bullsvsbears", + "name": "Bulls vs Bears" + }, + { + "id": "bull-token-2", + "symbol": "bull", + "name": "Bull Token" + }, + { + "id": "bullverse", + "symbol": "bull", + "name": "BullVerse" + }, + { + "id": "bully-2", + "symbol": "bully", + "name": "Bully" + }, + { + "id": "bullysoltoken", + "symbol": "bully", + "name": "Bully" + }, + { + "id": "bumpcoin", + "symbol": "bump", + "name": "BUMPCOIN" + }, + { + "id": "bumper", + "symbol": "bump", + "name": "Bumper" + }, + { + "id": "bumshaft", + "symbol": "bumshaft", + "name": "Bumshaft" + }, + { + "id": "bunana", + "symbol": "bunana", + "name": "Bunana" + }, + { + "id": "buncoin", + "symbol": "buncoin", + "name": "BunCoin" + }, + { + "id": "bundles", + "symbol": "bund", + "name": "Bund V2" + }, + { + "id": "bundles-2", + "symbol": "bndl", + "name": "Bundles" + }, + { + "id": "bunicoin", + "symbol": "buni", + "name": "bunicoin" + }, + { + "id": "bunicorn", + "symbol": "buni", + "name": "Bunicorn" + }, + { + "id": "bunkee", + "symbol": "bunk", + "name": "Bunkee" + }, + { + "id": "bunkercoin", + "symbol": "bunker", + "name": "BunkerCoin" + }, + { + "id": "bunni", + "symbol": "bunni", + "name": "Bunni" + }, + { + "id": "bunnie-2", + "symbol": "bunnie", + "name": "Bunnie" + }, + { + "id": "bunny-mev-bot", + "symbol": "bunny", + "name": "BUNNY MEV BOT" + }, + { + "id": "bunnypark", + "symbol": "bp", + "name": "BunnyPark" + }, + { + "id": "bunnypark-game", + "symbol": "bg", + "name": "BunnyPark Game" + }, + { + "id": "bunny-token-polygon", + "symbol": "polybunny", + "name": "Pancake Bunny Polygon" + }, + { + "id": "bunpoodle", + "symbol": "bun", + "name": "BunPoodle" + }, + { + "id": "bunt-fun", + "symbol": "bunt", + "name": "Bunt" + }, + { + "id": "burger-blast-token", + "symbol": "bbt", + "name": "Burger Blast Token" + }, + { + "id": "burger-money", + "symbol": "burgers", + "name": "Burger Money" + }, + { + "id": "burger-swap", + "symbol": "burger", + "name": "BurgerCities" + }, + { + "id": "burkat", + "symbol": "burkat", + "name": "Burkat" + }, + { + "id": "burn-3", + "symbol": "$burn", + "name": "BURN" + }, + { + "id": "burncoin", + "symbol": "burn", + "name": "Burncoin" + }, + { + "id": "burncoin-2", + "symbol": "burn", + "name": "Burncoin" + }, + { + "id": "burncoin-3", + "symbol": "burncoin", + "name": "burncoin" + }, + { + "id": "burnedfi", + "symbol": "burn", + "name": "BurnedFi" + }, + { + "id": "burning-circle", + "symbol": "circle", + "name": "Ultraround Money" + }, + { + "id": "burning-jup", + "symbol": "burn", + "name": "Burning Jup" + }, + { + "id": "burning-man-coin", + "symbol": "burningman", + "name": "Burning Man Coin" + }, + { + "id": "burning-till-10m-mc", + "symbol": "burn", + "name": "Burning till 10M mc" + }, + { + "id": "burn-on-bags", + "symbol": "burn", + "name": "Burn On Bags" + }, + { + "id": "burnt-fun", + "symbol": "burnt", + "name": "burnt.fun" + }, + { + "id": "burp", + "symbol": "burp", + "name": "Burp" + }, + { + "id": "burr-governance-token", + "symbol": "burr", + "name": "Burr Governance Token" + }, + { + "id": "burrow", + "symbol": "brrr", + "name": "Burrow" + }, + { + "id": "burrrd", + "symbol": "burrrd", + "name": "BURRRD" + }, + { + "id": "burt", + "symbol": "burt", + "name": "Burt" + }, + { + "id": "bush-ripper", + "symbol": "$ripper", + "name": "Bush Ripper" + }, + { + "id": "business-alliance-coin", + "symbol": "bac", + "name": "Business Alliance Coin" + }, + { + "id": "business-coin", + "symbol": "business", + "name": "Business Coin" + }, + { + "id": "busy-dao", + "symbol": "busy", + "name": "Busy" + }, + { + "id": "buttcoin-3", + "symbol": "buttcoin", + "name": "BUTTCOIN" + }, + { + "id": "buttcoin-4", + "symbol": "buttcoin", + "name": "Buttcoin" + }, + { + "id": "buttcoin-5", + "symbol": "buttcoin", + "name": "BUTTCOIN" + }, + { + "id": "butter", + "symbol": "butter", + "name": "Butter" + }, + { + "id": "butter-2", + "symbol": "butter", + "name": "Butter" + }, + { + "id": "buttercat", + "symbol": "butt", + "name": "Buttercat" + }, + { + "id": "butterfly-ai", + "symbol": "fly", + "name": "Butterfly Ai" + }, + { + "id": "butthole-coin", + "symbol": "butthole", + "name": "Butthole Coin" + }, + { + "id": "buttholes", + "symbol": "bhole", + "name": "Buttholes" + }, + { + "id": "buttman", + "symbol": "butt", + "name": "Buttman" + }, + { + "id": "buttpay", + "symbol": "bpay", + "name": "Buttpay" + }, + { + "id": "buu", + "symbol": "buu", + "name": "BUU" + }, + { + "id": "bux-the-rabbit", + "symbol": "bux", + "name": "Bux The Rabbit" + }, + { + "id": "buyai", + "symbol": "bai", + "name": "Buyai" + }, + { + "id": "buy-and-retire", + "symbol": "401k", + "name": "buy and retire" + }, + { + "id": "buy-and-sleep", + "symbol": "sleepcoin", + "name": "buy and sleep" + }, + { + "id": "buying", + "symbol": "buy", + "name": "Buying.com" + }, + { + "id": "buy-the-dip", + "symbol": "dip", + "name": "Buy the DIP" + }, + { + "id": "buy-the-hat", + "symbol": "bth", + "name": "BUY THE HAT" + }, + { + "id": "buy-the-news", + "symbol": "news", + "name": "Buy The News" + }, + { + "id": "buytheslice", + "symbol": "bts", + "name": "BuyTheSlice" + }, + { + "id": "buz-economy", + "symbol": "buz", + "name": "Buz Economy" + }, + { + "id": "bvm", + "symbol": "bvm", + "name": "BVM" + }, + { + "id": "bware-infra", + "symbol": "infra", + "name": "Bware" + }, + { + "id": "bwed", + "symbol": "bwed", + "name": "BWED" + }, + { + "id": "bwed-2", + "symbol": "bwed", + "name": "BWED" + }, + { + "id": "bwob", + "symbol": "bwob", + "name": "BWOB" + }, + { + "id": "bwull", + "symbol": "bwull", + "name": "Bwull" + }, + { + "id": "bxn", + "symbol": "bxn", + "name": "BXN" + }, + { + "id": "byat", + "symbol": "byat", + "name": "Byat" + }, + { + "id": "bybit-staked-sol", + "symbol": "bbsol", + "name": "Bybit Staked SOL" + }, + { + "id": "byte", + "symbol": "byte", + "name": "Byte" + }, + { + "id": "byte-2", + "symbol": "$byte", + "name": "BYTE" + }, + { + "id": "byte-3", + "symbol": "byte", + "name": "BYTE by Virtuals" + }, + { + "id": "byteball", + "symbol": "gbyte", + "name": "Obyte" + }, + { + "id": "bytecoin", + "symbol": "bcn", + "name": "Bytecoin" + }, + { + "id": "byusd", + "symbol": "byusd", + "name": "BYUSD" + }, + { + "id": "bzedge", + "symbol": "bze", + "name": "BeeZee" + }, + { + "id": "bzx-protocol", + "symbol": "bzrx", + "name": "bZx Protocol" + }, + { + "id": "c1usd", + "symbol": "c1usd", + "name": "Currency One USD" + }, + { + "id": "c8ntinuum", + "symbol": "ctm", + "name": "c8ntinuum" + }, + { + "id": "caave", + "symbol": "caave", + "name": "cAAVE" + }, + { + "id": "cabal", + "symbol": "cabal", + "name": "Cabal" + }, + { + "id": "cacao", + "symbol": "cacao", + "name": "Maya Protocol" + }, + { + "id": "cachedrop", + "symbol": "cache", + "name": "CacheDrop" + }, + { + "id": "cadabra-finance", + "symbol": "abra", + "name": "Cadabra Finance" + }, + { + "id": "cadai", + "symbol": "cadai", + "name": "CADAI" + }, + { + "id": "cad-coin", + "symbol": "cadc", + "name": "CAD Coin" + }, + { + "id": "caduceus-protocol", + "symbol": "cad", + "name": "Caduceus Protocol" + }, + { + "id": "caesar", + "symbol": "caesar", + "name": "Caesar" + }, + { + "id": "cafe", + "symbol": "cafe", + "name": "CAFE" + }, + { + "id": "ca-htb", + "symbol": "ca", + "name": "Coupon Assets" + }, + { + "id": "caica-coin", + "symbol": "cicc", + "name": "CAICA Coin" + }, + { + "id": "caila", + "symbol": "ca", + "name": "Caila" + }, + { + "id": "cainam", + "symbol": "cainam", + "name": "Cainam" + }, + { + "id": "caire", + "symbol": "caire", + "name": "CAIRE" + }, + { + "id": "cairo", + "symbol": "cairo", + "name": "Cairo" + }, + { + "id": "cairo-finance-cairo-bank", + "symbol": "cbank", + "name": "Cairo Bank" + }, + { + "id": "caitlyn-jenner-eth", + "symbol": "jenner", + "name": "Caitlyn Jenner" + }, + { + "id": "cakedog", + "symbol": "cakedog", + "name": "Cakedog" + }, + { + "id": "cakepie-xyz", + "symbol": "ckp", + "name": "Cakepie" + }, + { + "id": "calaxy", + "symbol": "clxy", + "name": "Calaxy" + }, + { + "id": "calcify", + "symbol": "calcify", + "name": "CalcifyTech" + }, + { + "id": "calcium", + "symbol": "cal", + "name": "Calcium" + }, + { + "id": "caldera", + "symbol": "era", + "name": "Caldera" + }, + { + "id": "caliber", + "symbol": "cal50", + "name": "Caliber" + }, + { + "id": "calicoin-2", + "symbol": "calico", + "name": "Calicoin" + }, + { + "id": "callisto-bridged-wbnb-callisto", + "symbol": "wbnb", + "name": "Callisto Bridged WBNB (Callisto)" + }, + { + "id": "call-of-degens", + "symbol": "cod", + "name": "Call Of Degens" + }, + { + "id": "callofmeme", + "symbol": "comms", + "name": "CallofMeme" + }, + { + "id": "calm-bear-on-solana", + "symbol": "chiln", + "name": "Calm Bear" + }, + { + "id": "calum", + "symbol": "calum", + "name": "Calum" + }, + { + "id": "calvaria-doe", + "symbol": "ria", + "name": "Calvaria: DoE" + }, + { + "id": "calvin-in-the-cabal", + "symbol": "calvin", + "name": "Calvin in the Cabal" + }, + { + "id": "camel", + "symbol": "camel", + "name": "CAMEL" + }, + { + "id": "camel-2", + "symbol": "camel", + "name": "camel" + }, + { + "id": "camel-dad", + "symbol": "camel", + "name": "Camel Dad" + }, + { + "id": "camelot-protocol", + "symbol": "clot", + "name": "Camelot Protocol" + }, + { + "id": "camelot-token", + "symbol": "grail", + "name": "Camelot Token" + }, + { + "id": "cameocoin", + "symbol": "cameo", + "name": "CameoCoin" + }, + { + "id": "camille", + "symbol": "camille", + "name": "Camille" + }, + { + "id": "camino-network", + "symbol": "cam", + "name": "Camino Network" + }, + { + "id": "camly-coin", + "symbol": "camly", + "name": "CAMLY COIN" + }, + { + "id": "camp-network", + "symbol": "camp", + "name": "Camp Network" + }, + { + "id": "canada-ecoin", + "symbol": "cdn", + "name": "Canada eCoin" + }, + { + "id": "cana-holdings-california-carbon-credits", + "symbol": "cana", + "name": "CANA Holdings California Carbon Credits" + }, + { + "id": "canary", + "symbol": "cnr", + "name": "Canary" + }, + { + "id": "cancer", + "symbol": "cancer", + "name": "Cancer" + }, + { + "id": "cancer-2", + "symbol": "cancer", + "name": "cancer" + }, + { + "id": "candle-cat", + "symbol": "candle", + "name": "Candle Cat" + }, + { + "id": "candles", + "symbol": "sn31", + "name": "Candles" + }, + { + "id": "candle-tv", + "symbol": "candle", + "name": "Candle TV" + }, + { + "id": "candy-on-base", + "symbol": "candy", + "name": "Candy" + }, + { + "id": "caniverse", + "symbol": "cnv", + "name": "Caniverse" + }, + { + "id": "caniverse-digital-gold", + "symbol": "cdg", + "name": "Caniverse Digital Gold" + }, + { + "id": "cannabis", + "symbol": "cana", + "name": "CANNABIS" + }, + { + "id": "cannfinity", + "symbol": "cft", + "name": "CANNFINITY" + }, + { + "id": "cantina-royale", + "symbol": "crt", + "name": "Cantina Royale" + }, + { + "id": "canto", + "symbol": "canto", + "name": "CANTO" + }, + { + "id": "canton-network", + "symbol": "cc", + "name": "Canton Network" + }, + { + "id": "canwifhat", + "symbol": "can", + "name": "Canwifhat" + }, + { + "id": "canxium", + "symbol": "cau", + "name": "Canxium" + }, + { + "id": "can-you-see", + "symbol": "moon", + "name": "can you see?" + }, + { + "id": "caocao", + "symbol": "caocao", + "name": "CaoCao" + }, + { + "id": "cap-2", + "symbol": "cap", + "name": "CAP" + }, + { + "id": "cap-3", + "symbol": "cap", + "name": "Cap" + }, + { + "id": "capapult", + "symbol": "capa", + "name": "Capa" + }, + { + "id": "capital-dao-starter-token", + "symbol": "cds", + "name": "Capital DAO Starter" + }, + { + "id": "capizen", + "symbol": "capi", + "name": "Capizen" + }, + { + "id": "capminal", + "symbol": "cap", + "name": "Capminal" + }, + { + "id": "capo-was-right", + "symbol": "cwr", + "name": "Capo Was Right" + }, + { + "id": "cappuccino-assassino", + "symbol": "assino", + "name": "Cappuccino Assassino" + }, + { + "id": "cappybara", + "symbol": "cappy", + "name": "CAPPYBARA" + }, + { + "id": "capricorn-2", + "symbol": "capricorn", + "name": "Capricorn" + }, + { + "id": "caprisun", + "symbol": "csun", + "name": "Caprisun" + }, + { + "id": "caprisun-monkey", + "symbol": "capri", + "name": "Caprisun Monkey" + }, + { + "id": "capronius-the-myth-the-goat", + "symbol": "capra", + "name": "Capronius, the myth, the GOAT!" + }, + { + "id": "capsule", + "symbol": "caps", + "name": "CAPSULE" + }, + { + "id": "captainbnb", + "symbol": "captainbnb", + "name": "CaptainBNB" + }, + { + "id": "captain-ethereum", + "symbol": "captain", + "name": "Captain Ethereum" + }, + { + "id": "captain-goofy", + "symbol": "goof", + "name": "Captain GOOFY" + }, + { + "id": "captain-kuma", + "symbol": "kuma", + "name": "Captain Kuma" + }, + { + "id": "captain-tsubasa", + "symbol": "tsugt", + "name": "Captain Tsubasa" + }, + { + "id": "cap-usd", + "symbol": "cusd", + "name": "Cap USD" + }, + { + "id": "capx-ai", + "symbol": "capx", + "name": "Capx AI" + }, + { + "id": "capy", + "symbol": "capy", + "name": "CAPY" + }, + { + "id": "capybara", + "symbol": "capy", + "name": "Capybara" + }, + { + "id": "capybara-2", + "symbol": "capy", + "name": "capybara" + }, + { + "id": "capybara-3", + "symbol": "capy", + "name": "Capybara" + }, + { + "id": "capybara-4", + "symbol": "capy", + "name": "Capybara" + }, + { + "id": "capybara-lulu", + "symbol": "lulu", + "name": "Capybara LULU" + }, + { + "id": "capybara-memecoin", + "symbol": "bara", + "name": "Capybara Memecoin" + }, + { + "id": "capybara-nation", + "symbol": "bara", + "name": "Capybara Nation" + }, + { + "id": "capybara-token", + "symbol": "capy", + "name": "Capybara Token" + }, + { + "id": "capycoin", + "symbol": "capy", + "name": "Capycoin" + }, + { + "id": "car-2", + "symbol": "car", + "name": "Car" + }, + { + "id": "carbon", + "symbol": "carbon", + "name": "Carbon" + }, + { + "id": "carbon-browser", + "symbol": "csix", + "name": "Carbon Browser" + }, + { + "id": "carbon-emission-blockchain", + "symbol": "ceb", + "name": "Carbon Emission Blockchain" + }, + { + "id": "carbon-neutrality-blockchain", + "symbol": "cnb", + "name": "Carbon Neutrality Blockchain" + }, + { + "id": "cardano", + "symbol": "ada", + "name": "Cardano" + }, + { + "id": "cardano-crocs-club", + "symbol": "c4", + "name": "Cardano Crocs Club" + }, + { + "id": "cardanogpt", + "symbol": "cgi", + "name": "CardanoGPT" + }, + { + "id": "cardano-maxi", + "symbol": "maxi", + "name": "Cardano Maxi" + }, + { + "id": "cardanum", + "symbol": "carda", + "name": "Cardanum" + }, + { + "id": "cardence", + "symbol": "$crdn", + "name": "Cardence" + }, + { + "id": "cardstack", + "symbol": "card", + "name": "Cardstack" + }, + { + "id": "card-strategy", + "symbol": "cstrat", + "name": "Card Strategy" + }, + { + "id": "cargox", + "symbol": "cxo", + "name": "CargoX" + }, + { + "id": "carlo", + "symbol": "carlo", + "name": "Carlo" + }, + { + "id": "carlo-acutis", + "symbol": "saint", + "name": "Carlo Acutis" + }, + { + "id": "carnomaly", + "symbol": "carr", + "name": "Carnomaly" + }, + { + "id": "caroline", + "symbol": "her", + "name": "Caroline" + }, + { + "id": "carrieverse", + "symbol": "cvtx", + "name": "CarrieVerse" + }, + { + "id": "carrot-2", + "symbol": "crt", + "name": "Carrot" + }, + { + "id": "carrot-by-puffer", + "symbol": "carrot", + "name": "Carrot by Puffer" + }, + { + "id": "carry", + "symbol": "cre", + "name": "Carry" + }, + { + "id": "cartel-coin-2", + "symbol": "cartel", + "name": "Cartel Coin" + }, + { + "id": "cartesi", + "symbol": "ctsi", + "name": "Cartesi" + }, + { + "id": "carv", + "symbol": "carv", + "name": "CARV" + }, + { + "id": "cas9", + "symbol": "crispr", + "name": "Cas9" + }, + { + "id": "cascadia", + "symbol": "cc", + "name": "Cascadia" + }, + { + "id": "case", + "symbol": "case", + "name": "CASE" + }, + { + "id": "cash-2", + "symbol": "cash", + "name": "CASH" + }, + { + "id": "cash-3", + "symbol": "cash", + "name": "CASH" + }, + { + "id": "cash-4", + "symbol": "cash", + "name": "CASH" + }, + { + "id": "cashaa", + "symbol": "cas", + "name": "Cashaa" + }, + { + "id": "cashbackpro", + "symbol": "cbp", + "name": "CashBackPro" + }, + { + "id": "cashbunny", + "symbol": "bunny", + "name": "CashBunny" + }, + { + "id": "casinocoin", + "symbol": "csc", + "name": "Casinocoin" + }, + { + "id": "casinu-inu", + "symbol": "casinu", + "name": "Casinu Inu" + }, + { + "id": "casper-ai", + "symbol": "aiagent", + "name": "Casper AI" + }, + { + "id": "casper-network", + "symbol": "cspr", + "name": "Casper Network" + }, + { + "id": "casperpad", + "symbol": "cspd", + "name": "CasperPad" + }, + { + "id": "caspur-zoomies", + "symbol": "caspur", + "name": "Caspur Zoomies" + }, + { + "id": "castdex", + "symbol": "castdex", + "name": "CastDex" + }, + { + "id": "castle-of-blackwater", + "symbol": "cobe", + "name": "Castle Of Blackwater" + }, + { + "id": "cat-2", + "symbol": "cat", + "name": "Liquid Cat" + }, + { + "id": "cat-3", + "symbol": "cat", + "name": "cat" + }, + { + "id": "cat-4", + "symbol": "#cat", + "name": "#cat" + }, + { + "id": "catacomb", + "symbol": "cata", + "name": "Catacomb" + }, + { + "id": "catalorian", + "symbol": "catalorian", + "name": "Catalorian" + }, + { + "id": "catalyse-ai", + "symbol": "cai", + "name": "Catalyse AI" + }, + { + "id": "catamoto", + "symbol": "cata", + "name": "Catamoto" + }, + { + "id": "catana", + "symbol": "catana", + "name": "Catana" + }, + { + "id": "catapult", + "symbol": "atd", + "name": "A2DAO" + }, + { + "id": "catbal", + "symbol": "catbal", + "name": "Catbal" + }, + { + "id": "catbat", + "symbol": "catbat", + "name": "CATBAT" + }, + { + "id": "catboy-3", + "symbol": "catboy", + "name": "Catboy" + }, + { + "id": "catbread-2", + "symbol": "cb", + "name": "CatBread" + }, + { + "id": "cat-call-agent", + "symbol": "cat", + "name": "Cat Call Agent" + }, + { + "id": "cat-cat-token", + "symbol": "cat", + "name": "Cat" + }, + { + "id": "catchcoin-2", + "symbol": "catch", + "name": "Catchcoin™" + }, + { + "id": "catcoin", + "symbol": "cat", + "name": "Catcoin" + }, + { + "id": "catcoin-bsc", + "symbol": "cat", + "name": "Catcoin BSC" + }, + { + "id": "catcoin-cash", + "symbol": "cat", + "name": "Catcoin" + }, + { + "id": "catcoin-eth", + "symbol": "cat", + "name": "Catcoin (ETH)" + }, + { + "id": "catcoin-token", + "symbol": "cats", + "name": "CatCoin Token" + }, + { + "id": "cat-dog", + "symbol": "catdog", + "name": "Cat-Dog" + }, + { + "id": "cat-driving-bitcoin", + "symbol": "cbd", + "name": "Cat Driving Bitcoin" + }, + { + "id": "cat-duck", + "symbol": "cuck", + "name": "Cat Duck" + }, + { + "id": "catecoin", + "symbol": "cate", + "name": "CateCoin" + }, + { + "id": "cat-emoji-on-solana", + "symbol": "🐈", + "name": "Cat Emoji" + }, + { + "id": "caterpillar", + "symbol": "cpl", + "name": "CATERPILLAR" + }, + { + "id": "catex-2", + "symbol": "catx", + "name": "Catex" + }, + { + "id": "catex-token", + "symbol": "catt", + "name": "Catex" + }, + { + "id": "catfish", + "symbol": "catfish", + "name": "Catfish" + }, + { + "id": "catfrogdogshark", + "symbol": "catfrogdogshark", + "name": "CatFrogDogShark" + }, + { + "id": "catge-coin", + "symbol": "catge", + "name": "Catge Coin" + }, + { + "id": "cat-getting-fade", + "symbol": "cgf", + "name": "Cat getting fade" + }, + { + "id": "catgirl", + "symbol": "catgirl", + "name": "Catgirl" + }, + { + "id": "cat-girl", + "symbol": "catgf", + "name": "cat girl" + }, + { + "id": "cat-gold-miner", + "symbol": "catgold", + "name": "Cat Gold Miner" + }, + { + "id": "catgpt", + "symbol": "catgpt", + "name": "CatGPT" + }, + { + "id": "cathena-gold", + "symbol": "cgo", + "name": "Cathena Gold" + }, + { + "id": "catheon-gaming", + "symbol": "catheon", + "name": "Catheon Gaming" + }, + { + "id": "cat-in-a-box-ether", + "symbol": "boxeth", + "name": "Cat-in-a-Box Ether" + }, + { + "id": "cat-in-a-dogs-world", + "symbol": "mew", + "name": "cat in a dogs world" + }, + { + "id": "catinbox", + "symbol": "catinbox", + "name": "CatInBox" + }, + { + "id": "cat-in-hoodie", + "symbol": "hodi", + "name": "Cat in Hoodie" + }, + { + "id": "catino", + "symbol": "catino", + "name": "Catino" + }, + { + "id": "cat-in-stool", + "symbol": "cool", + "name": "cat in stool" + }, + { + "id": "cat-inu", + "symbol": "cat", + "name": "CAT INU" + }, + { + "id": "catizen", + "symbol": "cati", + "name": "Catizen" + }, + { + "id": "catjak", + "symbol": "catjak", + "name": "Catjak" + }, + { + "id": "catke", + "symbol": "catke", + "name": "Catke" + }, + { + "id": "cat-lady", + "symbol": "ktty", + "name": "CAT LADY" + }, + { + "id": "catman", + "symbol": "catman", + "name": "Catman" + }, + { + "id": "cat-mouse", + "symbol": "catmouse", + "name": "Cat & Mouse" + }, + { + "id": "cato", + "symbol": "cato", + "name": "CATO" + }, + { + "id": "cat-of-elon", + "symbol": "eloncat", + "name": "Cat of ELON" + }, + { + "id": "catour", + "symbol": "catour", + "name": "CATOUR" + }, + { + "id": "catownkimono", + "symbol": "cok", + "name": "catownkimono" + }, + { + "id": "cat-poop-joystick", + "symbol": "n64", + "name": "Cat Poop Joystick" + }, + { + "id": "cats-2", + "symbol": "cats", + "name": "CATS" + }, + { + "id": "catsaidmeow", + "symbol": "meow", + "name": "Catsaidmeow" + }, + { + "id": "catscoin-2", + "symbol": "cats", + "name": "Catscoin" + }, + { + "id": "catseye", + "symbol": "catseye", + "name": "Catseye" + }, + { + "id": "cats-in-the-sats", + "symbol": "$cats", + "name": "CATS•IN•THE•SATS" + }, + { + "id": "catslap", + "symbol": "slap", + "name": "CatSlap" + }, + { + "id": "cats-n-cars", + "symbol": "cnc", + "name": "Cats N Cars" + }, + { + "id": "catsolhat", + "symbol": "solcat", + "name": "CatSolHat" + }, + { + "id": "catson", + "symbol": "cat", + "name": "Catson" + }, + { + "id": "cat-terminal", + "symbol": "cat", + "name": "CAT Terminal" + }, + { + "id": "cat-token", + "symbol": "cat", + "name": "Mooncat CAT" + }, + { + "id": "catton-ai", + "symbol": "catton", + "name": "Catton AI" + }, + { + "id": "catty", + "symbol": "catty", + "name": "catty" + }, + { + "id": "catulu", + "symbol": "catulu", + "name": "CATULU" + }, + { + "id": "catvax", + "symbol": "catvax", + "name": "Catvax" + }, + { + "id": "catwifbag", + "symbol": "bag", + "name": "catwifbag" + }, + { + "id": "catwifbag-2", + "symbol": "bag", + "name": "catwifbag" + }, + { + "id": "catwifcap", + "symbol": "cwc", + "name": "CatWifCap" + }, + { + "id": "catwifdrip", + "symbol": "drip", + "name": "catwifdrip" + }, + { + "id": "cat-wif-hands", + "symbol": "catwif", + "name": "Cat Wif Hands" + }, + { + "id": "catwifhat", + "symbol": "cif", + "name": "CatwifHat" + }, + { + "id": "cat-wif-hat", + "symbol": "cwh", + "name": "Cat Wif Hat" + }, + { + "id": "catwifhat-2", + "symbol": "$cwif", + "name": "catwifhat" + }, + { + "id": "catwifhat-3", + "symbol": "catwif", + "name": "CatWifHat" + }, + { + "id": "catwifmask", + "symbol": "mask", + "name": "catwifmask" + }, + { + "id": "catwifmelon", + "symbol": "melon", + "name": "CATWIFMELON" + }, + { + "id": "catx", + "symbol": "catx", + "name": "CATX" + }, + { + "id": "catzcoin", + "symbol": "catz", + "name": "CatzCoin" + }, + { + "id": "cave", + "symbol": "cave", + "name": "CaveWorld" + }, + { + "id": "caviar-2", + "symbol": "caviar", + "name": "CAVIAR" + }, + { + "id": "caviarnine-lsu-pool-lp", + "symbol": "lsulp", + "name": "CaviarNine LSU Pool LP" + }, + { + "id": "cbbtc-core-morpho-vault", + "symbol": "gtcbbtcc", + "name": "cbBTC Core Morpho Vault" + }, + { + "id": "cbdc", + "symbol": "cbdc", + "name": "CBDC" + }, + { + "id": "cca", + "symbol": "cca", + "name": "CCA" + }, + { + "id": "c-cash", + "symbol": "ccash", + "name": "C-Cash" + }, + { + "id": "ccfound-2", + "symbol": "found", + "name": "ccFound" + }, + { + "id": "cchf", + "symbol": "cchf", + "name": "Celo Swiss Franc" + }, + { + "id": "ccip-bridged-usdc-ronin", + "symbol": "usdc", + "name": "CCIP Bridged USDC (Ronin)" + }, + { + "id": "ccomp", + "symbol": "ccomp", + "name": "cCOMP" + }, + { + "id": "ccop", + "symbol": "ccop", + "name": "cCOP" + }, + { + "id": "ccqkl", + "symbol": "cc", + "name": "CCQKL" + }, + { + "id": "cctv", + "symbol": "cctv", + "name": "CCTV" + }, + { + "id": "cdai", + "symbol": "cdai", + "name": "cDAI" + }, + { + "id": "cdao", + "symbol": "cdao", + "name": "cDAO" + }, + { + "id": "cdk", + "symbol": "cdk", + "name": "CDK" + }, + { + "id": "cdog-community", + "symbol": "cdog", + "name": "CDOG-community" + }, + { + "id": "cdpanda", + "symbol": "$cdpanda", + "name": "CDPANDA" + }, + { + "id": "cedar", + "symbol": "cdr", + "name": "Cedar" + }, + { + "id": "cedar-the-goat", + "symbol": "cedar", + "name": "Cedar the Goat" + }, + { + "id": "cedra-network", + "symbol": "$ced", + "name": "Cedra Network" + }, + { + "id": "ceek", + "symbol": "ceek", + "name": "CEEK Smart VR" + }, + { + "id": "ceiling-cat", + "symbol": "ceicat", + "name": "Ceiling Cat" + }, + { + "id": "cel-ai", + "symbol": "sn127", + "name": "Cel AI" + }, + { + "id": "celer-bridged-busd-zksync", + "symbol": "busd", + "name": "Celer Bridged BUSD (zkSync)" + }, + { + "id": "celer-bridged-dai-astar", + "symbol": "dai", + "name": "Celer Bridged DAI (Astar)" + }, + { + "id": "celer-bridged-usdc-astar", + "symbol": "usdc", + "name": "Celer Bridged USDC (Astar)" + }, + { + "id": "celer-bridged-usdc-conflux", + "symbol": "usdc", + "name": "Celer Bridged USDC (Conflux)" + }, + { + "id": "celer-bridged-usdc-flow-evm", + "symbol": "usdc.e", + "name": "Celer Bridged USDC (Flow EVM)" + }, + { + "id": "celer-bridged-usdc-oasys", + "symbol": "usdc", + "name": "Celer Bridged USDC (Oasys)" + }, + { + "id": "celer-bridged-usdt-astar", + "symbol": "usdt", + "name": "Celer Bridged USDT (Astar)" + }, + { + "id": "celer-bridged-usdt-conflux", + "symbol": "usdt", + "name": "Celer Bridged USDT (Conflux)" + }, + { + "id": "celer-bridged-wavax-linea", + "symbol": "wavax", + "name": "Celer Bridged WAVAX (Linea)" + }, + { + "id": "celer-bridged-wbnb-linea", + "symbol": "wbnb", + "name": "Celer Bridged WBNB (Linea)" + }, + { + "id": "celer-bridged-wbtc-conflux", + "symbol": "wbtc", + "name": "Celer Bridged WBTC (Conflux)" + }, + { + "id": "celer-bridged-weth-astar", + "symbol": "weth", + "name": "Celer Bridged WETH (Astar)" + }, + { + "id": "celer-bridged-weth-conflux", + "symbol": "weth", + "name": "Celer Bridged WETH (Conflux)" + }, + { + "id": "celer-network", + "symbol": "celr", + "name": "Celer Network" + }, + { + "id": "celestia", + "symbol": "tia", + "name": "Celestia" + }, + { + "id": "celium", + "symbol": "sn51", + "name": "Celium" + }, + { + "id": "cellena-finance", + "symbol": "cell", + "name": "Cellana Finance" + }, + { + "id": "cellex", + "symbol": "cellex", + "name": "Cellex" + }, + { + "id": "cellframe", + "symbol": "cell", + "name": "Cellframe" + }, + { + "id": "cellula", + "symbol": "cela", + "name": "CELLULA" + }, + { + "id": "celo", + "symbol": "celo", + "name": "Celo" + }, + { + "id": "celo-australian-dollar", + "symbol": "caud", + "name": "Celo Australian Dollar" + }, + { + "id": "celo-bridged-wbtc-celo", + "symbol": "wbtc", + "name": "Celo Bridged WBTC (Celo)" + }, + { + "id": "celo-bridged-weth-celo", + "symbol": "weth", + "name": "Celo Bridged WETH (Celo)" + }, + { + "id": "celo-british-pound", + "symbol": "cgbp", + "name": "Celo British Pound" + }, + { + "id": "celo-canadian-dollar", + "symbol": "ccad", + "name": "Celo Canadian Dollar" + }, + { + "id": "celo-dollar", + "symbol": "cusd", + "name": "Celo Dollar" + }, + { + "id": "celo-euro", + "symbol": "ceur", + "name": "Celo Euro" + }, + { + "id": "celo-japanese-yen", + "symbol": "cjpy", + "name": "Celo Japanese Yen" + }, + { + "id": "celo-kenyan-shilling", + "symbol": "ckes", + "name": "Celo Kenyan Shilling" + }, + { + "id": "celo-nigerian-naira", + "symbol": "cngn", + "name": "Celo Nigerian Naira" + }, + { + "id": "celo-real-creal", + "symbol": "creal", + "name": "Celo Real (cREAL)" + }, + { + "id": "celo-south-african-rand", + "symbol": "czar", + "name": "Celo South African Rand" + }, + { + "id": "celsius-degree-token", + "symbol": "cel", + "name": "Celsius Network" + }, + { + "id": "celuvplay", + "symbol": "celb", + "name": "CeluvPlay" + }, + { + "id": "centaur", + "symbol": "cntr", + "name": "Centaur" + }, + { + "id": "centcex", + "symbol": "cenx", + "name": "Centcex" + }, + { + "id": "centience", + "symbol": "cents", + "name": "Centience" + }, + { + "id": "central-african-republic-meme", + "symbol": "car", + "name": "Central African Republic Meme" + }, + { + "id": "central-bank-digital-currency-memecoin", + "symbol": "cbdc", + "name": "Central Bank Digital Currency Memecoin" + }, + { + "id": "centric-cash", + "symbol": "cns", + "name": "Centric Swap" + }, + { + "id": "centrifuge", + "symbol": "cfg", + "name": "Centrifuge [OLD]" + }, + { + "id": "centrifuge-2", + "symbol": "cfg", + "name": "Centrifuge" + }, + { + "id": "centurion-invest", + "symbol": "cix", + "name": "Centurion Invest" + }, + { + "id": "ceramicliberty-com", + "symbol": "cl8y", + "name": "CeramicLiberty.com" + }, + { + "id": "ceranos", + "symbol": "crs", + "name": "CERANOS" + }, + { + "id": "cerberoge", + "symbol": "cerber", + "name": "CERBEROGE" + }, + { + "id": "cerberus-2", + "symbol": "crbrus", + "name": "Cerberus" + }, + { + "id": "cerebrix-ai", + "symbol": "crbrx", + "name": "Cerebrix AI" + }, + { + "id": "cerebro", + "symbol": "crx", + "name": "Cerebro" + }, + { + "id": "cerebrum", + "symbol": "cbm", + "name": "Cerebrum" + }, + { + "id": "cerebrum-dao", + "symbol": "neuron", + "name": "Cerebrum DAO" + }, + { + "id": "cere-network", + "symbol": "cere", + "name": "Cere Network" + }, + { + "id": "certaik-by-virtuals", + "symbol": "certai", + "name": "CertaiK by Virtuals" + }, + { + "id": "certik", + "symbol": "ctk", + "name": "Shentu" + }, + { + "id": "cetcoinsol", + "symbol": "cet", + "name": "CetCoinSOL" + }, + { + "id": "cetes", + "symbol": "cetes", + "name": "Etherfuse CETES" + }, + { + "id": "cetus-protocol", + "symbol": "cetus", + "name": "Cetus Protocol" + }, + { + "id": "ceylon", + "symbol": "rs", + "name": "Ceylon" + }, + { + "id": "cfgi", + "symbol": "cfgi", + "name": "CFGI" + }, + { + "id": "cf-large-cap-index", + "symbol": "lcap", + "name": "CF Large Cap Index" + }, + { + "id": "cfx-quantum", + "symbol": "cfxq", + "name": "CFX Quantum" + }, + { + "id": "cgai", + "symbol": "cgai", + "name": "CGAI" + }, + { + "id": "cgeth-hashkey-cloud", + "symbol": "cgeth.hashkey", + "name": "cgETH Hashkey Cloud" + }, + { + "id": "cghs", + "symbol": "cghs", + "name": "cGHS" + }, + { + "id": "chachamaru", + "symbol": "chacha", + "name": "Chachamaru" + }, + { + "id": "chad-2", + "symbol": "chad", + "name": "CHAD" + }, + { + "id": "chad-3", + "symbol": "chad", + "name": "CHAD" + }, + { + "id": "chad-4", + "symbol": "karma/sol", + "name": "Karma" + }, + { + "id": "chad-5", + "symbol": "chad", + "name": "CHAD" + }, + { + "id": "chadai", + "symbol": "chadai", + "name": "CHADAI" + }, + { + "id": "chad-cat", + "symbol": "chadcat", + "name": "CHAD CAT" + }, + { + "id": "chad-coin", + "symbol": "chad", + "name": "Chad Coin" + }, + { + "id": "chadette", + "symbol": "chadette", + "name": "Chadette" + }, + { + "id": "chadfi-2", + "symbol": "chadfi", + "name": "ChadFi" + }, + { + "id": "chad-frog", + "symbol": "chad", + "name": "Chad Frog" + }, + { + "id": "chadgpt", + "symbol": "giga", + "name": "ChadGPT" + }, + { + "id": "chad-grammatical-model-launch", + "symbol": "pemdas", + "name": "Chad Grammatical Model Launch" + }, + { + "id": "chadimir-putni", + "symbol": "putni", + "name": "Chadimir Putni" + }, + { + "id": "chadrizard", + "symbol": "$zard", + "name": "Chadrizard" + }, + { + "id": "chain-2", + "symbol": "xcn", + "name": "Onyxcoin" + }, + { + "id": "chain4energy", + "symbol": "c4e", + "name": "Chain4Energy" + }, + { + "id": "chainaware-ai", + "symbol": "aware", + "name": "ChainAware.ai" + }, + { + "id": "chainback", + "symbol": "archive", + "name": "Chainback" + }, + { + "id": "chainbase", + "symbol": "c", + "name": "Chainbase" + }, + { + "id": "chainbing", + "symbol": "cbg", + "name": "Chainbing" + }, + { + "id": "chaincade", + "symbol": "chaincade", + "name": "ChainCade" + }, + { + "id": "chain-crisis", + "symbol": "crisis", + "name": "Chain Crisis" + }, + { + "id": "chainfactory", + "symbol": "factory", + "name": "ChainFactory" + }, + { + "id": "chainflip", + "symbol": "flip", + "name": "Chainflip" + }, + { + "id": "chain-fox", + "symbol": "cfxsol", + "name": "Chain Fox" + }, + { + "id": "chain-games", + "symbol": "chain", + "name": "Chain Games" + }, + { + "id": "chainge-finance", + "symbol": "xchng", + "name": "Chainge" + }, + { + "id": "chaingpt", + "symbol": "cgpt", + "name": "ChainGPT" + }, + { + "id": "chaingpu", + "symbol": "cgpu", + "name": "ChainGPU" + }, + { + "id": "chain-guardians", + "symbol": "cgg", + "name": "Chain Guardians" + }, + { + "id": "chain-key-bitcoin", + "symbol": "ckbtc", + "name": "Chain-key Bitcoin" + }, + { + "id": "chain-key-chainlink", + "symbol": "cklink", + "name": "Chain-key Chainlink" + }, + { + "id": "chain-key-ethereum", + "symbol": "cketh", + "name": "Chain-key Ethereum" + }, + { + "id": "chain-key-oct", + "symbol": "ckoct", + "name": "Chain-key OCT" + }, + { + "id": "chain-key-usdc", + "symbol": "ckusdc", + "name": "Chain-key Bridged USDC (ICP)" + }, + { + "id": "chain-key-usdt", + "symbol": "ckusdt", + "name": "Chain-key USDT" + }, + { + "id": "chainlabel", + "symbol": "label", + "name": "ChainLabel" + }, + { + "id": "chainleak", + "symbol": "chainleak", + "name": "ChainLeak" + }, + { + "id": "chainlink", + "symbol": "link", + "name": "Chainlink" + }, + { + "id": "chainlink-plenty-bridge", + "symbol": "link.e", + "name": "Chainlink (Plenty Bridge)" + }, + { + "id": "chainnet", + "symbol": "cnet", + "name": "ChainNet" + }, + { + "id": "chain-of-legends", + "symbol": "cleg", + "name": "Chain of Legends" + }, + { + "id": "chainopera-ai", + "symbol": "coai", + "name": "ChainOpera AI" + }, + { + "id": "chainpal", + "symbol": "cpal", + "name": "Chainpal" + }, + { + "id": "chainport", + "symbol": "portx", + "name": "ChainPort" + }, + { + "id": "chains-of-war", + "symbol": "mira", + "name": "Chains of War" + }, + { + "id": "chainswap-3", + "symbol": "cswap", + "name": "ChainSwap" + }, + { + "id": "chain-talk-daily", + "symbol": "ctd", + "name": "Chain Talk Daily" + }, + { + "id": "chainx", + "symbol": "pcx", + "name": "ChainX" + }, + { + "id": "chaisavings", + "symbol": "chai", + "name": "CHAISavings" + }, + { + "id": "champignons-of-arborethia", + "symbol": "champz", + "name": "Champignons of Arborethia" + }, + { + "id": "changcoin", + "symbol": "cth", + "name": "Changcoin" + }, + { + "id": "changenow", + "symbol": "now", + "name": "ChangeNOW" + }, + { + "id": "changer", + "symbol": "cng", + "name": "Changer" + }, + { + "id": "changex", + "symbol": "change", + "name": "Changex" + }, + { + "id": "channels", + "symbol": "can", + "name": "Channels" + }, + { + "id": "chaos-2", + "symbol": "chaos", + "name": "Chaos" + }, + { + "id": "chaos-and-disorder", + "symbol": "chaos", + "name": "chaos and disorder" + }, + { + "id": "chapo", + "symbol": "chapo", + "name": "Chapo" + }, + { + "id": "chappyz", + "symbol": "chapz", + "name": "Chappyz" + }, + { + "id": "charged-particles", + "symbol": "ionx", + "name": "Charged Particles" + }, + { + "id": "charity-dao-token", + "symbol": "chdao", + "name": "Charity DAO Token" + }, + { + "id": "charles", + "symbol": "charles", + "name": "CHARLES" + }, + { + "id": "charles-2", + "symbol": "king", + "name": "Charles" + }, + { + "id": "charles-the-chad", + "symbol": "chad", + "name": "Charles the Chad" + }, + { + "id": "charli3", + "symbol": "c3", + "name": "Charli3" + }, + { + "id": "charlie", + "symbol": "charlie", + "name": "Charlie" + }, + { + "id": "charlie-2", + "symbol": "charlie", + "name": "Charlie" + }, + { + "id": "charlie-3", + "symbol": "charlie", + "name": "Charlie" + }, + { + "id": "charlotte-fang", + "symbol": "remilia", + "name": "Charlotte Fang" + }, + { + "id": "charm-ai", + "symbol": "charm", + "name": "Charm AI" + }, + { + "id": "chasm-ai", + "symbol": "cai", + "name": "Chasm" + }, + { + "id": "chatgpt-cat", + "symbol": "yarncat", + "name": "ChatGPT Cat" + }, + { + "id": "chatgpt-s-mascot", + "symbol": "chatty", + "name": "ChatGPT's Mascot" + }, + { + "id": "chatoshi", + "symbol": "chatoshi", + "name": "ChAtoshI" + }, + { + "id": "chatr", + "symbol": "chatr", + "name": "chatr" + }, + { + "id": "chatrix", + "symbol": "crx", + "name": "Chatrix" + }, + { + "id": "chatter-shield-2", + "symbol": "shield", + "name": "Chatter Shield" + }, + { + "id": "chatxbt", + "symbol": "chatfi", + "name": "ChatXBT" + }, + { + "id": "chatxzi-by-ai", + "symbol": "cxzi", + "name": "chatXZI by AI" + }, + { + "id": "checkdot", + "symbol": "cdt", + "name": "CheckDot" + }, + { + "id": "checkerchain-2", + "symbol": "sn87", + "name": "CheckerChain" + }, + { + "id": "checkmate-2", + "symbol": "check", + "name": "Checkmate" + }, + { + "id": "checks-token", + "symbol": "checks", + "name": "Checks Token" + }, + { + "id": "checkstrategy", + "symbol": "chkstr", + "name": "CheckStrategy" + }, + { + "id": "checoin", + "symbol": "checoin", + "name": "CheCoin" + }, + { + "id": "chedda-2", + "symbol": "chedda", + "name": "Chedda" + }, + { + "id": "chedda-3", + "symbol": "chdd", + "name": "CHEDDA" + }, + { + "id": "cheeks", + "symbol": "cheeks", + "name": "CHEEKS" + }, + { + "id": "cheeky-dawg", + "symbol": "dawg", + "name": "Cheeky Dawg" + }, + { + "id": "cheelee", + "symbol": "cheel", + "name": "Cheelee" + }, + { + "id": "cheems", + "symbol": "cheems", + "name": "Cheems" + }, + { + "id": "cheems-cto", + "symbol": "cheems", + "name": "Cheems CTO" + }, + { + "id": "cheems-token", + "symbol": "cheems", + "name": "Cheems Token" + }, + { + "id": "cheepepe", + "symbol": "cheepepe", + "name": "cheepepe" + }, + { + "id": "cheersland", + "symbol": "cheers", + "name": "CheersLand" + }, + { + "id": "cheese-2", + "symbol": "cheese", + "name": "Cheese" + }, + { + "id": "cheese-3", + "symbol": "cheese", + "name": "Cheese" + }, + { + "id": "cheeseball", + "symbol": "cb", + "name": "Cheeseball" + }, + { + "id": "cheeseball-the-wizard", + "symbol": "cheeseball", + "name": "Cheeseball the Wizard" + }, + { + "id": "cheesecakeswap", + "symbol": "ccake", + "name": "CheesecakeSwap" + }, + { + "id": "cheesed", + "symbol": "cheesed", + "name": "Cheesed" + }, + { + "id": "cheese-swap", + "symbol": "cheese", + "name": "Cheese Swap" + }, + { + "id": "cheetahcoin", + "symbol": "chta", + "name": "Cheetahcoin" + }, + { + "id": "cheezburger-2", + "symbol": "cheez", + "name": "Cheezburger" + }, + { + "id": "cheezburger-cat", + "symbol": "cheez", + "name": "Cheezburger Cat" + }, + { + "id": "chelon", + "symbol": "chelon", + "name": "CHELON" + }, + { + "id": "chengpang-zhoa", + "symbol": "zhoa", + "name": "Chengpang Zhoa" + }, + { + "id": "chengshi", + "symbol": "cheng", + "name": "Chengshi" + }, + { + "id": "chengu", + "symbol": "chengu", + "name": "Chengu" + }, + { + "id": "cheqd-network", + "symbol": "cheq", + "name": "CHEQD Network" + }, + { + "id": "cherry-ai", + "symbol": "aibot", + "name": "Cherry AI" + }, + { + "id": "cherry-network", + "symbol": "cher", + "name": "Cherry Network" + }, + { + "id": "cheshire-grin", + "symbol": "grin", + "name": "Cheshire Grin" + }, + { + "id": "chesscoin-0-32", + "symbol": "chess", + "name": "ChessCoin 0.32%" + }, + { + "id": "chester", + "symbol": "$chester", + "name": "Chester" + }, + { + "id": "chevron-ondo-tokenized-stock", + "symbol": "cvxon", + "name": "Chevron (Ondo Tokenized Stock)" + }, + { + "id": "chevron-xstock", + "symbol": "cvxx", + "name": "Chevron xStock" + }, + { + "id": "chewy", + "symbol": "chwy", + "name": "CHEWY" + }, + { + "id": "chewy-on-sol", + "symbol": "chwy", + "name": "CHEWY" + }, + { + "id": "chewyswap", + "symbol": "chewy", + "name": "Chewyswap" + }, + { + "id": "chewy-token", + "symbol": "chewy", + "name": "Chewy The Bull" + }, + { + "id": "chexbacca", + "symbol": "chexbacca", + "name": "CHEXBACCA" + }, + { + "id": "chex-token", + "symbol": "chex", + "name": "Chintai" + }, + { + "id": "cheyenne", + "symbol": "cheyenne", + "name": "Cheyenne" + }, + { + "id": "chi-2", + "symbol": "気", + "name": "Chi" + }, + { + "id": "chia", + "symbol": "xch", + "name": "Chia" + }, + { + "id": "chiba-wan", + "symbol": "chib", + "name": "Chiba Wan" + }, + { + "id": "chibi", + "symbol": "chibi", + "name": "chibi" + }, + { + "id": "chicagocoin", + "symbol": "clt", + "name": "ChicagoCoin" + }, + { + "id": "chicken-banana", + "symbol": "cb", + "name": "ChickenBanana" + }, + { + "id": "chickencoin", + "symbol": "chkn", + "name": "Chickencoin" + }, + { + "id": "chicken-town", + "symbol": "chickentown", + "name": "Chicken Town" + }, + { + "id": "chickenus-maximus", + "symbol": "chickenus", + "name": "Chickenus Maximus" + }, + { + "id": "chief-troll-officer", + "symbol": "cto", + "name": "Chief Troll Officer" + }, + { + "id": "chief-troll-officer-2", + "symbol": "cto", + "name": "Chief Troll Officer" + }, + { + "id": "chief-troll-officer-4", + "symbol": "cto", + "name": "Chief Troll Officer" + }, + { + "id": "chihuahua", + "symbol": "hua", + "name": "Chihuahua" + }, + { + "id": "chihuahua-token", + "symbol": "huahua", + "name": "Chihuahua Chain" + }, + { + "id": "chiitan", + "symbol": "chiitan", + "name": "Chiitan" + }, + { + "id": "chikincoin", + "symbol": "ckc", + "name": "ChikinCoin" + }, + { + "id": "chikn-egg", + "symbol": "egg", + "name": "Chikn Egg" + }, + { + "id": "chikn-feed", + "symbol": "feed", + "name": "chikn feed" + }, + { + "id": "chikn-fert", + "symbol": "fert", + "name": "Chikn Fert" + }, + { + "id": "chikn-worm", + "symbol": "worm", + "name": "Chikn Worm" + }, + { + "id": "chikun-litecoin-mascot", + "symbol": "chikun", + "name": "Chikun Litecoin Mascot" + }, + { + "id": "childhoods-end", + "symbol": "o", + "name": "Childhoods End" + }, + { + "id": "children-of-the-sky", + "symbol": "cots", + "name": "Children Of The Sky" + }, + { + "id": "chili", + "symbol": "chili", + "name": "CHILI" + }, + { + "id": "chili-coin", + "symbol": "chi", + "name": "Chili Coin" + }, + { + "id": "chiliz", + "symbol": "chz", + "name": "Chiliz" + }, + { + "id": "chiliz-inu", + "symbol": "chzinu", + "name": "Chiliz Inu" + }, + { + "id": "chilla", + "symbol": "chilla", + "name": "CHILLA" + }, + { + "id": "chillax", + "symbol": "chillax", + "name": "Chillax" + }, + { + "id": "chillcapy", + "symbol": "chillcapy", + "name": "chillcapy" + }, + { + "id": "chill-drone", + "symbol": "chone", + "name": "Chill Drone" + }, + { + "id": "chill-family", + "symbol": "chillfam", + "name": "Chill Family" + }, + { + "id": "chill-girl", + "symbol": "chillgirl", + "name": "Chill Girl" + }, + { + "id": "chill-guy", + "symbol": "chillguy", + "name": "Just a chill guy" + }, + { + "id": "chill-guy-s-friend", + "symbol": "suzan", + "name": "Chill Guy's Friend" + }, + { + "id": "chill-house", + "symbol": "chillhouse", + "name": "Chill House" + }, + { + "id": "chilling-toad", + "symbol": "ctoad", + "name": "Chilling Toad" + }, + { + "id": "chillmas", + "symbol": "chillmas", + "name": "Chillmas" + }, + { + "id": "chill-trump", + "symbol": "chillt", + "name": "Chill Trump" + }, + { + "id": "chillwhales", + "symbol": "$chill", + "name": "chill" + }, + { + "id": "chilly", + "symbol": "chilly", + "name": "Chilly" + }, + { + "id": "chimaera", + "symbol": "wchi", + "name": "XAYA" + }, + { + "id": "chimpstrategy", + "symbol": "chmpstr", + "name": "ChimpStrategy" + }, + { + "id": "chimpzee-chmpz", + "symbol": "chmpz", + "name": "Chimpzee (CHMPZ)" + }, + { + "id": "chinau", + "symbol": "chinau", + "name": "Chinau" + }, + { + "id": "chinchilla", + "symbol": "chilla", + "name": "ChinCHILLa" + }, + { + "id": "chinese-andy", + "symbol": "andwu", + "name": "Chinese Andy" + }, + { + "id": "chinese-brett", + "symbol": "chrett", + "name": "Chinese Brett" + }, + { + "id": "chinese-doge-wow", + "symbol": "chido", + "name": "Chinese Doge Wow" + }, + { + "id": "chinese-pepe", + "symbol": "peipei", + "name": "Chinese PEPE" + }, + { + "id": "chinese-toshi", + "symbol": "ctoshi", + "name": "Chinese Toshi" + }, + { + "id": "chinu-2", + "symbol": "chinu", + "name": "Chinu" + }, + { + "id": "chipi", + "symbol": "chipi", + "name": "CHIPI" + }, + { + "id": "chipotle-ondo-tokenized-stock", + "symbol": "cmgon", + "name": "Chipotle (Ondo Tokenized Stock)" + }, + { + "id": "chippy", + "symbol": "chippy", + "name": "Chippy" + }, + { + "id": "chi-protocol", + "symbol": "chi", + "name": "Chi Protocol" + }, + { + "id": "chips-2", + "symbol": "chips", + "name": "Chips" + }, + { + "id": "chips-protocol", + "symbol": "chips", + "name": "CHIPS Protocol" + }, + { + "id": "chirper-ai", + "symbol": "chirp", + "name": "Chirper AI" + }, + { + "id": "chirpley", + "symbol": "chrp", + "name": "Chirpley" + }, + { + "id": "chirppad", + "symbol": "chpd", + "name": "ChirpPad" + }, + { + "id": "chirp-token", + "symbol": "chirp", + "name": "Chirp Token" + }, + { + "id": "chis-ai", + "symbol": "chisai", + "name": "Chis AI" + }, + { + "id": "chitan", + "symbol": "chitan", + "name": "Chitan" + }, + { + "id": "choccy-milk-cat", + "symbol": "choccy", + "name": "Choccy Milk Cat" + }, + { + "id": "choctopus", + "symbol": "choctopus", + "name": "Choctopus" + }, + { + "id": "choise", + "symbol": "cho", + "name": "Choise.ai" + }, + { + "id": "chomik", + "symbol": "chomik", + "name": "chomik" + }, + { + "id": "chompcoin", + "symbol": "chomp", + "name": "ChompCoin" + }, + { + "id": "chongsheng", + "symbol": "重生", + "name": "重生" + }, + { + "id": "chonk-2", + "symbol": "chonk", + "name": "CHONK" + }, + { + "id": "chonk-on-base", + "symbol": "chonk", + "name": "Chonk" + }, + { + "id": "chonk-the-cat", + "symbol": "chonk", + "name": "Chonk The Cat" + }, + { + "id": "chonk-the-frog", + "symbol": "chonk", + "name": "Chonk the Frog" + }, + { + "id": "chonkus-maximus", + "symbol": "chonkus", + "name": "Chonkus Maximus" + }, + { + "id": "chonky", + "symbol": "chonky", + "name": "CHONKY [OLD]" + }, + { + "id": "chonky-2", + "symbol": "chonky", + "name": "CHONKY" + }, + { + "id": "chooserich", + "symbol": "rich", + "name": "ChooseRich" + }, + { + "id": "choppy", + "symbol": "choppy", + "name": "Choppy" + }, + { + "id": "choruz-ai", + "symbol": "choruz", + "name": "Choruz AI" + }, + { + "id": "chow", + "symbol": "chow", + "name": "CHOW" + }, + { + "id": "chow-chow", + "symbol": "chow", + "name": "CHOW CHOW" + }, + { + "id": "chow-chow-2", + "symbol": "chow-chow", + "name": "松狮犬 (Chow-chow)" + }, + { + "id": "chrema-coin", + "symbol": "crmc", + "name": "Chrema Coin" + }, + { + "id": "christianity-coin", + "symbol": "christ", + "name": "Christianity Coin" + }, + { + "id": "christ-is-king", + "symbol": "cik", + "name": "Christ Is King" + }, + { + "id": "chromaway", + "symbol": "chr", + "name": "Chromia" + }, + { + "id": "chromia-s-eval-by-virtuals", + "symbol": "eval", + "name": "Chromia's EVAL by Virtuals" + }, + { + "id": "chromium-dollar", + "symbol": "cr", + "name": "Chromium Dollar" + }, + { + "id": "chronicle", + "symbol": "xnl", + "name": "Chronicle" + }, + { + "id": "chronobank", + "symbol": "time", + "name": "chrono.tech" + }, + { + "id": "chronoeffector", + "symbol": "chronoeffe", + "name": "Chronoeffector" + }, + { + "id": "chronos-finance", + "symbol": "chr", + "name": "Chronos Finance" + }, + { + "id": "chronos-worlds-sphere", + "symbol": "sphr", + "name": "Chronos Worlds Sphere" + }, + { + "id": "chuan-pu", + "symbol": "chuanpu", + "name": "Chuan Pu" + }, + { + "id": "chubbyakita", + "symbol": "cakita", + "name": "ChubbyAkita" + }, + { + "id": "chuchu", + "symbol": "chuchu", + "name": "Chuchu" + }, + { + "id": "chuck", + "symbol": "chuck", + "name": "Chuck" + }, + { + "id": "chuck-on-eth", + "symbol": "chuck", + "name": "Chuck" + }, + { + "id": "chucky", + "symbol": "chucky", + "name": "Chucky" + }, + { + "id": "chudjak", + "symbol": "chud", + "name": "Chudjak" + }, + { + "id": "chudjak-2", + "symbol": "chud", + "name": "Chudjak" + }, + { + "id": "chumbai-valley", + "symbol": "chmb", + "name": "Chumbi Valley" + }, + { + "id": "chump-change", + "symbol": "chump", + "name": "Chump Change" + }, + { + "id": "chunking", + "symbol": "sn40", + "name": "Chunking" + }, + { + "id": "church-of-the-machina", + "symbol": "machina", + "name": "Church of the Machina" + }, + { + "id": "churro", + "symbol": "churro", + "name": "Churro" + }, + { + "id": "chutes", + "symbol": "sn64", + "name": "Chutes" + }, + { + "id": "chwy", + "symbol": "chwy", + "name": "CHWY" + }, + { + "id": "cia", + "symbol": "cia", + "name": "CIA" + }, + { + "id": "cia-com", + "symbol": "cia", + "name": "CIA.COM" + }, + { + "id": "cias", + "symbol": "cias", + "name": "CIAS" + }, + { + "id": "cicada-finance", + "symbol": "ltcic", + "name": "Cicada Finance" + }, + { + "id": "cicca-network", + "symbol": "cicca", + "name": "Cicca Network" + }, + { + "id": "cifdaq", + "symbol": "cifd", + "name": "CIFDAQ" + }, + { + "id": "cig", + "symbol": "cig", + "name": "cig" + }, + { + "id": "cigarette-token", + "symbol": "cig", + "name": "Cigarette" + }, + { + "id": "cindicator", + "symbol": "cnd", + "name": "Cindicator" + }, + { + "id": "cinogames", + "symbol": "$cino", + "name": "Cinogames" + }, + { + "id": "cipher-2", + "symbol": "cpr", + "name": "CIPHER" + }, + { + "id": "cipher-3", + "symbol": "cipher", + "name": "Cipher" + }, + { + "id": "cipherai", + "symbol": "cipher", + "name": "CipherAI" + }, + { + "id": "cipher-protocol", + "symbol": "cipher", + "name": "Cipher Protocol" + }, + { + "id": "circle-internet-group-ondo-tokenized-stock", + "symbol": "crclon", + "name": "Circle Internet Group (Ondo Tokenized Stock)" + }, + { + "id": "circlepacific", + "symbol": "circle", + "name": "CirclePacific" + }, + { + "id": "circle-xstock", + "symbol": "crclx", + "name": "Circle xStock" + }, + { + "id": "circuits-of-value", + "symbol": "coval", + "name": "Circuits of Value" + }, + { + "id": "circular-protocol", + "symbol": "cirx", + "name": "Circular Protocol" + }, + { + "id": "cirus", + "symbol": "cirus", + "name": "Cirus" + }, + { + "id": "cisco-systems-ondo-tokenized-stock", + "symbol": "cscoon", + "name": "Cisco Systems (Ondo Tokenized Stock)" + }, + { + "id": "cisco-xstock", + "symbol": "cscox", + "name": "Cisco xStock" + }, + { + "id": "citadao", + "symbol": "knight", + "name": "CitaDAO" + }, + { + "id": "citadel-by-virtuals", + "symbol": "citdel", + "name": "Citadel by Virtuals" + }, + { + "id": "citadel-one", + "symbol": "xct", + "name": "Citadel.one" + }, + { + "id": "city", + "symbol": "city", + "name": "CITY" + }, + { + "id": "city-boys", + "symbol": "toons", + "name": "City Boys" + }, + { + "id": "civfund-stone", + "symbol": "0ne", + "name": "Civfund Stone" + }, + { + "id": "civic", + "symbol": "cvc", + "name": "Civic" + }, + { + "id": "civilization", + "symbol": "civ", + "name": "Civilization" + }, + { + "id": "cjournal", + "symbol": "ucjl", + "name": "Utility Cjournal" + }, + { + "id": "cjournal-2", + "symbol": "cjl", + "name": "CJournal" + }, + { + "id": "claimswap", + "symbol": "cla", + "name": "ClaimSwap" + }, + { + "id": "clams", + "symbol": "clam", + "name": "Clams" + }, + { + "id": "clancy", + "symbol": "clancy", + "name": "Clancy" + }, + { + "id": "clank-clank", + "symbol": "clanks", + "name": "Clank Clank!" + }, + { + "id": "clanker", + "symbol": "clanker", + "name": "Clanker" + }, + { + "id": "clanker-2", + "symbol": "clanker", + "name": "Clanker" + }, + { + "id": "clanker-index", + "symbol": "clx", + "name": "Clanker Index" + }, + { + "id": "clankermon", + "symbol": "clankermon", + "name": "Clankermon" + }, + { + "id": "clank-fun", + "symbol": "clankfun", + "name": "clank.fun" + }, + { + "id": "clankster", + "symbol": "clankster", + "name": "Clankster" + }, + { + "id": "clanktardio", + "symbol": "clanktardio", + "name": "CLANKTARDIO" + }, + { + "id": "clans", + "symbol": "clans", + "name": "CLANS" + }, + { + "id": "clapcat", + "symbol": "$clap", + "name": "CLAPCAT" + }, + { + "id": "clarity-2", + "symbol": "clarity", + "name": "Clarity" + }, + { + "id": "clash-of-lilliput", + "symbol": "col", + "name": "Clash of Lilliput" + }, + { + "id": "classic-usd", + "symbol": "usc", + "name": "Classic USD" + }, + { + "id": "claude", + "symbol": "claude", + "name": "Claude" + }, + { + "id": "claude-2", + "symbol": "claude 2", + "name": "Claude 2" + }, + { + "id": "claude-3", + "symbol": "mcp", + "name": "Claude" + }, + { + "id": "clay", + "symbol": "clay", + "name": "Clay" + }, + { + "id": "clay-nation", + "symbol": "clay", + "name": "Clay Nation" + }, + { + "id": "claynosaurz-strategy", + "symbol": "cnzstrat", + "name": "Claynosaurz Strategy" + }, + { + "id": "clayton", + "symbol": "clay", + "name": "Clayton" + }, + { + "id": "clbtc", + "symbol": "clbtc", + "name": "clBTC" + }, + { + "id": "clean-food", + "symbol": "cf", + "name": "Clean Food" + }, + { + "id": "cleanspark-xstock", + "symbol": "clskx", + "name": "CleanSpark xStock" + }, + { + "id": "clearpool", + "symbol": "cpool", + "name": "Clearpool" + }, + { + "id": "clearstar-openeden-usdc", + "symbol": "cousdc", + "name": "Clearstar OpenEden USDC" + }, + { + "id": "clevernode", + "symbol": "clv", + "name": "Clevernode" + }, + { + "id": "clever-token", + "symbol": "clev", + "name": "CLever" + }, + { + "id": "cli-ai", + "symbol": "cmd", + "name": "CLI.AI" + }, + { + "id": "clicking-cat", + "symbol": "click", + "name": "Clicking Cat" + }, + { + "id": "clickme", + "symbol": "clickme", + "name": "Clickme" + }, + { + "id": "climate101", + "symbol": "gigs", + "name": "Climate101" + }, + { + "id": "clipcoin", + "symbol": "clipcoin", + "name": "ClipCoin" + }, + { + "id": "clip-coin", + "symbol": "clip", + "name": "Clip Coin" + }, + { + "id": "clipped", + "symbol": "clipped", + "name": "CLIPPED" + }, + { + "id": "clippy", + "symbol": "clippy", + "name": "Clippy" + }, + { + "id": "clippy-pfp-cult", + "symbol": "clippy", + "name": "Clippy PFP Cult" + }, + { + "id": "cliza", + "symbol": "cliza", + "name": "cliza" + }, + { + "id": "cloak-3", + "symbol": "cloak", + "name": "Cloak Network" + }, + { + "id": "cloakcoin", + "symbol": "cloak", + "name": "Cloakcoin" + }, + { + "id": "clones", + "symbol": "clones", + "name": "CLONES" + }, + { + "id": "clonex-ai", + "symbol": "clx", + "name": "CloneX AI" + }, + { + "id": "clore-ai", + "symbol": "clore", + "name": "Clore.ai" + }, + { + "id": "closed", + "symbol": "closed", + "name": "CLOSED" + }, + { + "id": "closedai", + "symbol": "closedai", + "name": "ClosedAI" + }, + { + "id": "cloudai", + "symbol": "cloud", + "name": "CloudAI" + }, + { + "id": "cloudbase", + "symbol": "cloud", + "name": "CloudBase" + }, + { + "id": "cloudbric", + "symbol": "clbk", + "name": "Cloudbric" + }, + { + "id": "cloudcoin-finance", + "symbol": "ccfi", + "name": "CloudCoin Finance" + }, + { + "id": "cloudgpu", + "symbol": "cgpu", + "name": "CloudGPU" + }, + { + "id": "cloudland", + "symbol": "clo", + "name": "Cloudland" + }, + { + "id": "cloud-pet", + "symbol": "cpet", + "name": "Cloud Pet" + }, + { + "id": "cloudyheart", + "symbol": "cloudy", + "name": "cloudyheart" + }, + { + "id": "clout-2", + "symbol": "clout", + "name": "Clout" + }, + { + "id": "cloutcontracts", + "symbol": "ccs", + "name": "CloutContracts" + }, + { + "id": "clover-finance", + "symbol": "clv", + "name": "Clover Finance" + }, + { + "id": "clown-2", + "symbol": "clown", + "name": "Clown" + }, + { + "id": "clown-pepe", + "symbol": "honk", + "name": "Clown Pepe" + }, + { + "id": "clownworld", + "symbol": "clown", + "name": "ClownWorld" + }, + { + "id": "clp", + "symbol": "clp", + "name": "CLP" + }, + { + "id": "clu", + "symbol": "clu", + "name": "CLU" + }, + { + "id": "club-atletico-independiente", + "symbol": "cai", + "name": "Club Atletico Independiente Fan Token" + }, + { + "id": "clube-atletico-mineiro-fan-token", + "symbol": "galo", + "name": "Clube Atlético Mineiro Fan Token" + }, + { + "id": "clubmoon", + "symbol": "clubmoon", + "name": "ClubMoon" + }, + { + "id": "clubrare-empower", + "symbol": "mpwr", + "name": "Empower" + }, + { + "id": "clucoin", + "symbol": "clu", + "name": "CluCoin" + }, + { + "id": "cluster", + "symbol": "clstr", + "name": "Cluster" + }, + { + "id": "clustr", + "symbol": "clustr", + "name": "Clustr" + }, + { + "id": "clutch", + "symbol": "clutch", + "name": "Clutch" + }, + { + "id": "clutch-2", + "symbol": "clx", + "name": "Clutch" + }, + { + "id": "cmx-agent", + "symbol": "cmx", + "name": "CMX Agent" + }, + { + "id": "cneta", + "symbol": "cneta", + "name": "cNETA" + }, + { + "id": "cnh-tether", + "symbol": "cnht", + "name": "CNH Tether" + }, + { + "id": "cnns", + "symbol": "cnns", + "name": "CNNS" + }, + { + "id": "coach-bucko", + "symbol": "bucko", + "name": "Coach Bucko" + }, + { + "id": "coal-2", + "symbol": "coal", + "name": "COAL" + }, + { + "id": "coal-3", + "symbol": "coal", + "name": "Coal" + }, + { + "id": "coast-cst", + "symbol": "cst", + "name": "Coast CST" + }, + { + "id": "coat-dog", + "symbol": "coat", + "name": "COAT DOG" + }, + { + "id": "cobak-token", + "symbol": "cbk", + "name": "Cobak" + }, + { + "id": "co-bra", + "symbol": "cobra", + "name": "Co Bra" + }, + { + "id": "coby", + "symbol": "coby", + "name": "coby" + }, + { + "id": "coc", + "symbol": "coc", + "name": "COC" + }, + { + "id": "coca", + "symbol": "coca", + "name": "COCA" + }, + { + "id": "coca-cola-ondo-tokenized-stock", + "symbol": "koon", + "name": "Coca-Cola (Ondo Tokenized Stock)" + }, + { + "id": "coca-cola-xstock", + "symbol": "kox", + "name": "Coca-Cola xStock" + }, + { + "id": "cockapoo", + "symbol": "cpoo", + "name": "Cockapoo" + }, + { + "id": "cockcardano", + "symbol": "cock", + "name": "CockCardano" + }, + { + "id": "cockmillions", + "symbol": "cock", + "name": "COCK" + }, + { + "id": "cocktailbar", + "symbol": "coc", + "name": "The Cocktailbar" + }, + { + "id": "coco-coin", + "symbol": "coco", + "name": "COCO COIN" + }, + { + "id": "coco-community", + "symbol": "coco", + "name": "COCO Community" + }, + { + "id": "coconut-chicken", + "symbol": "$ccc", + "name": "Coconut Chicken" + }, + { + "id": "cocoro", + "symbol": "cocoro", + "name": "Cocoro" + }, + { + "id": "cocoro-2", + "symbol": "cocoro", + "name": "Cocoro" + }, + { + "id": "cocos-bcx", + "symbol": "combo", + "name": "COMBO" + }, + { + "id": "cod3x", + "symbol": "cdx", + "name": "Cod3x" + }, + { + "id": "cod3x-usd", + "symbol": "cdxusd", + "name": "Cod3x USD" + }, + { + "id": "coda", + "symbol": "coda", + "name": "CODA" + }, + { + "id": "codatta", + "symbol": "xny", + "name": "Codatta" + }, + { + "id": "code", + "symbol": "code", + "name": "CODE" + }, + { + "id": "codease", + "symbol": "codon", + "name": "CodEase" + }, + { + "id": "codec-flow", + "symbol": "codec", + "name": "Codec Flow" + }, + { + "id": "codecraft-ai", + "symbol": "craft", + "name": "CodeCraft AI" + }, + { + "id": "coded", + "symbol": "coded", + "name": "Coded" + }, + { + "id": "coded-for-millions", + "symbol": "coded", + "name": "Coded for millions" + }, + { + "id": "codemong-ai-games", + "symbol": "coai", + "name": "CodeMong Ai Games" + }, + { + "id": "codeputerbot", + "symbol": "codeputer", + "name": "CodeputerBot" + }, + { + "id": "coder-gf", + "symbol": "codergf", + "name": "Coder GF" + }, + { + "id": "code-sprout", + "symbol": "sprout", + "name": "Code Sprout" + }, + { + "id": "code-token", + "symbol": "code", + "name": "Code Token" + }, + { + "id": "coding-dino", + "symbol": "dino", + "name": "Coding Dino" + }, + { + "id": "cody", + "symbol": "cody", + "name": "CODY" + }, + { + "id": "coffee", + "symbol": "coffee", + "name": "Coffee" + }, + { + "id": "coffee-2", + "symbol": "cofe", + "name": "COFFEE" + }, + { + "id": "coffeecoin-2", + "symbol": "coffeecoin", + "name": "coffeecoin" + }, + { + "id": "cofinex-2", + "symbol": "cnx", + "name": "Cofinex" + }, + { + "id": "coge-coin", + "symbol": "coge", + "name": "Coge Coin" + }, + { + "id": "cogent-sol", + "symbol": "cgntsol", + "name": "Cogent SOL" + }, + { + "id": "cogito-protocol", + "symbol": "cgv", + "name": "Cogito Finance" + }, + { + "id": "cogni-ai", + "symbol": "cogni", + "name": "COGNI AI" + }, + { + "id": "cognify", + "symbol": "sn115", + "name": "Cognify" + }, + { + "id": "cognitive-accelerationism", + "symbol": "cog/acc", + "name": "Cognitive Accelerationism" + }, + { + "id": "coin-2", + "symbol": "coin", + "name": "COIN" + }, + { + "id": "coin-3", + "symbol": "coins", + "name": "Coin" + }, + { + "id": "coin6900", + "symbol": "coin", + "name": "Coin6900" + }, + { + "id": "coin98", + "symbol": "c98", + "name": "Coin98" + }, + { + "id": "coin98-dollar", + "symbol": "cusd", + "name": "Coin98 Dollar" + }, + { + "id": "coinage", + "symbol": "coinage", + "name": "coinage" + }, + { + "id": "coinary-token", + "symbol": "cyt", + "name": "Coinary" + }, + { + "id": "coinbarpay", + "symbol": "cbpay", + "name": "CoinbarPay" + }, + { + "id": "coinbase-ondo-tokenized-stock", + "symbol": "coinon", + "name": "Coinbase (Ondo Tokenized Stock)" + }, + { + "id": "coinbase-tokenized-stock-defichain", + "symbol": "dcoin", + "name": "Coinbase Tokenized Stock Defichain" + }, + { + "id": "coinbase-wrapped-ada", + "symbol": "cbada", + "name": "Coinbase Wrapped ADA" + }, + { + "id": "coinbase-wrapped-btc", + "symbol": "cbbtc", + "name": "Coinbase Wrapped BTC" + }, + { + "id": "coinbase-wrapped-doge", + "symbol": "cbdoge", + "name": "Coinbase Wrapped DOGE" + }, + { + "id": "coinbase-wrapped-ltc", + "symbol": "cbltc", + "name": "Coinbase Wrapped LTC" + }, + { + "id": "coinbase-wrapped-staked-eth", + "symbol": "cbeth", + "name": "Coinbase Wrapped Staked ETH" + }, + { + "id": "coinbase-wrapped-xrp", + "symbol": "cbxrp", + "name": "Coinbase Wrapped XRP" + }, + { + "id": "coinbase-xstock", + "symbol": "coinx", + "name": "Coinbase xStock" + }, + { + "id": "coinbet-finance", + "symbol": "cfi", + "name": "Coinbet Finance" + }, + { + "id": "coinbidex", + "symbol": "cbe", + "name": "Coinbidex" + }, + { + "id": "coinbread", + "symbol": "bread", + "name": "Coinbread" + }, + { + "id": "coinbuck", + "symbol": "buck", + "name": "CoinBuck" + }, + { + "id": "coin-capsule", + "symbol": "caps", + "name": "Ternoa" + }, + { + "id": "coincollect", + "symbol": "collect", + "name": "CoinCollect" + }, + { + "id": "coincreate", + "symbol": "crea", + "name": "CoinCreate" + }, + { + "id": "coindepo", + "symbol": "coindepo", + "name": "COINDEPO" + }, + { + "id": "coindesk-defi-select-index", + "symbol": "dfx", + "name": "CoinDesk DeFi Select Index" + }, + { + "id": "coine", + "symbol": "coine", + "name": "COINE" + }, + { + "id": "coinex-token", + "symbol": "cet", + "name": "CoinEx" + }, + { + "id": "coinloan", + "symbol": "clt", + "name": "CoinLoan" + }, + { + "id": "coinlocally", + "symbol": "clyc", + "name": "Coinlocally Coin" + }, + { + "id": "coinmetro", + "symbol": "xcm", + "name": "Coinmetro" + }, + { + "id": "coinnavigator", + "symbol": "cng", + "name": "CoinNavigator" + }, + { + "id": "coin-on-base", + "symbol": "coin", + "name": "Coin on Base" + }, + { + "id": "coin-on-solana", + "symbol": "coin", + "name": "Coin on Solana" + }, + { + "id": "coinpays", + "symbol": "cpy", + "name": "CoinPays" + }, + { + "id": "coinpouch", + "symbol": "pouch", + "name": "CoinPouch" + }, + { + "id": "coinrobot-ai", + "symbol": "coinrobot", + "name": "CoinRobot.AI" + }, + { + "id": "coinshift-usdc", + "symbol": "csusdc", + "name": "Coinshift USDC" + }, + { + "id": "coinshift-usdl-morpho-vault", + "symbol": "csusdl", + "name": "Coinshift USDL Morpho Vault" + }, + { + "id": "coinstar", + "symbol": "cstar", + "name": "CoinStar" + }, + { + "id": "cointel", + "symbol": "cols", + "name": "Cointel" + }, + { + "id": "coinw", + "symbol": "cwt", + "name": "CoinW" + }, + { + "id": "coinwealth", + "symbol": "cnw", + "name": "CoinWealth" + }, + { + "id": "coinweb", + "symbol": "cweb", + "name": "Coinweb" + }, + { + "id": "coinwind", + "symbol": "cow", + "name": "CoinWind" + }, + { + "id": "coinxpad", + "symbol": "cxpad", + "name": "CoinxPad" + }, + { + "id": "coinye-west", + "symbol": "coinye", + "name": "Coinye West" + }, + { + "id": "coinzix-token", + "symbol": "zix", + "name": "Coinzix Token" + }, + { + "id": "cola-token-2", + "symbol": "cola", + "name": "Cola Token" + }, + { + "id": "coldint", + "symbol": "sn29", + "name": "Coldint" + }, + { + "id": "coldpl", + "symbol": "coldpl", + "name": "ColdPL" + }, + { + "id": "coldstack", + "symbol": "cls", + "name": "Coldstack" + }, + { + "id": "colend", + "symbol": "clnd", + "name": "Colend" + }, + { + "id": "colizeum", + "symbol": "zeum", + "name": "Colizeum" + }, + { + "id": "collab-land", + "symbol": "collab", + "name": "Collab.Land" + }, + { + "id": "collateralized-debt-token", + "symbol": "cdt", + "name": "Collateralized Debt Token" + }, + { + "id": "collaterize", + "symbol": "collat", + "name": "Collaterize" + }, + { + "id": "colle-ai", + "symbol": "colle", + "name": "Colle AI" + }, + { + "id": "collector-coin", + "symbol": "ags", + "name": "Collector Coin" + }, + { + "id": "collector-crypt", + "symbol": "cards", + "name": "Collector Crypt" + }, + { + "id": "collies", + "symbol": "collies", + "name": "Collies" + }, + { + "id": "colon", + "symbol": "colon", + "name": "Colon" + }, + { + "id": "colony", + "symbol": "cly", + "name": "Colony" + }, + { + "id": "colony-2", + "symbol": "clny", + "name": "Colony" + }, + { + "id": "colony-avalanche-index", + "symbol": "cai", + "name": "Colony Avalanche Index" + }, + { + "id": "coloredbitcoin-arc-20", + "symbol": "coloredbitcoin (arc20)", + "name": "Coloredbitcoin (ARC-20)" + }, + { + "id": "colors", + "symbol": "colors", + "name": "COLORS" + }, + { + "id": "colossuscoinxt", + "symbol": "colx", + "name": "ColossusXT" + }, + { + "id": "coma-online", + "symbol": "coma", + "name": "Coma Online" + }, + { + "id": "comcast-xstock", + "symbol": "cmcsax", + "name": "Comcast xStock" + }, + { + "id": "comdex", + "symbol": "cmdx", + "name": "COMDEX" + }, + { + "id": "comedian", + "symbol": "ban", + "name": "Comedian" + }, + { + "id": "comet-portfolio", + "symbol": "comet", + "name": "Comet Portfolio" + }, + { + "id": "comet-token", + "symbol": "comet", + "name": "Comet Token" + }, + { + "id": "comfy-2", + "symbol": "dcp", + "name": "COMFY" + }, + { + "id": "commander", + "symbol": "cmdr", + "name": "Commander" + }, + { + "id": "common", + "symbol": "cmn", + "name": "Common" + }, + { + "id": "common-2", + "symbol": "common", + "name": "Common" + }, + { + "id": "common-bird", + "symbol": "cbird", + "name": "Common Bird" + }, + { + "id": "common-wealth", + "symbol": "wlth", + "name": "WLTH" + }, + { + "id": "commune-ai", + "symbol": "comai", + "name": "Commune AI" + }, + { + "id": "communis-2", + "symbol": "com", + "name": "Communis" + }, + { + "id": "community-2", + "symbol": "community", + "name": "COMMUNITY" + }, + { + "id": "community-business-token", + "symbol": "cbt", + "name": "Community Business Token" + }, + { + "id": "community-coin-3", + "symbol": "comcoin", + "name": "Community Coin" + }, + { + "id": "community-coin-4", + "symbol": "community", + "name": "Community Coin" + }, + { + "id": "community-inu", + "symbol": "cti", + "name": "Community Inu" + }, + { + "id": "com-ordinals", + "symbol": ".com", + "name": ".com (Ordinals)" + }, + { + "id": "company", + "symbol": "company", + "name": "Company" + }, + { + "id": "company-2", + "symbol": "company", + "name": "Company" + }, + { + "id": "compendium-fi", + "symbol": "cmfi", + "name": "Compendium" + }, + { + "id": "compliant-naira", + "symbol": "cngn", + "name": "Compliant Naira" + }, + { + "id": "composite", + "symbol": "cmst", + "name": "Composite" + }, + { + "id": "compound-0x", + "symbol": "czrx", + "name": "c0x" + }, + { + "id": "compound-basic-attention-token", + "symbol": "cbat", + "name": "cBAT" + }, + { + "id": "compound-chainlink-token", + "symbol": "clink", + "name": "cLINK" + }, + { + "id": "compound-ether", + "symbol": "ceth", + "name": "cETH" + }, + { + "id": "compound-governance-token", + "symbol": "comp", + "name": "Compound" + }, + { + "id": "compounding-open-dollar", + "symbol": "cusdo", + "name": "Compounding OpenDollar" + }, + { + "id": "compound-maker", + "symbol": "cmkr", + "name": "cMKR" + }, + { + "id": "compound-sushi", + "symbol": "csushi", + "name": "cSUSHI" + }, + { + "id": "compound-uniswap", + "symbol": "cuni", + "name": "cUNI" + }, + { + "id": "compound-usd-coin", + "symbol": "cusdc", + "name": "Compound USDC" + }, + { + "id": "compound-wrapped-btc", + "symbol": "cwbtc", + "name": "cWBTC" + }, + { + "id": "compound-yearn-finance", + "symbol": "cyfi", + "name": "cYFI" + }, + { + "id": "comput3", + "symbol": "com", + "name": "Comput3" + }, + { + "id": "compute-horde", + "symbol": "sn12", + "name": "Compute Horde" + }, + { + "id": "computerstrategy", + "symbol": "cmpstr", + "name": "ComputerStrategy" + }, + { + "id": "compx-xusd", + "symbol": "xusd", + "name": "CompX xUSD" + }, + { + "id": "comp-yvault", + "symbol": "yvcomp", + "name": "COMP yVault" + }, + { + "id": "comsats", + "symbol": "csas", + "name": "Comsats" + }, + { + "id": "comtech-gold", + "symbol": "cgo", + "name": "Comtech Gold" + }, + { + "id": "conan", + "symbol": "conan", + "name": "CONAN" + }, + { + "id": "conan-2", + "symbol": "conan", + "name": "Conan" + }, + { + "id": "conan-meme", + "symbol": "conan", + "name": "Conan Meme" + }, + { + "id": "conceal", + "symbol": "ccx", + "name": "Conceal" + }, + { + "id": "concentrated-voting-power", + "symbol": "cvp", + "name": "PowerPool Concentrated Voting Power" + }, + { + "id": "concentrator", + "symbol": "ctr", + "name": "Concentrator" + }, + { + "id": "concentric-industries", + "symbol": "concentric", + "name": "Concentric Industries" + }, + { + "id": "concierge-io", + "symbol": "ava", + "name": "AVA (Travala)" + }, + { + "id": "concilium", + "symbol": "concilium", + "name": "Concilium" + }, + { + "id": "concordium", + "symbol": "ccd", + "name": "Concordium" + }, + { + "id": "condo", + "symbol": "condo", + "name": "CONDO" + }, + { + "id": "conet-network", + "symbol": "conet", + "name": "CoNET Network" + }, + { + "id": "confidential-layer", + "symbol": "clone", + "name": "Confidential Layer" + }, + { + "id": "conflux-token", + "symbol": "cfx", + "name": "Conflux" + }, + { + "id": "conic-finance", + "symbol": "cnc", + "name": "Conic" + }, + { + "id": "connect-2", + "symbol": "cnct", + "name": "Connect" + }, + { + "id": "connect-financial", + "symbol": "cnfi", + "name": "Connect Financial" + }, + { + "id": "connect-token-wct", + "symbol": "wct", + "name": "WalletConnect Token" + }, + { + "id": "connex", + "symbol": "conx", + "name": "Connex" + }, + { + "id": "conscious-token", + "symbol": "conscious", + "name": "Conscious Token" + }, + { + "id": "conspiracy-guy", + "symbol": "cguy", + "name": "Conspiracy Guy" + }, + { + "id": "constellation-labs", + "symbol": "dag", + "name": "Constellation" + }, + { + "id": "constellation-staked-rpl", + "symbol": "xrpl", + "name": "Constellation Staked RPL" + }, + { + "id": "constitutiondao", + "symbol": "people", + "name": "ConstitutionDAO" + }, + { + "id": "constitutiondao-wormhole", + "symbol": "people", + "name": "ConstitutionDAO (Wormhole)" + }, + { + "id": "consumer-club", + "symbol": "club", + "name": "Consumer Club" + }, + { + "id": "contango", + "symbol": "tango", + "name": "Contango" + }, + { + "id": "content-bitcoin", + "symbol": "ctb", + "name": "Content Bitcoin" + }, + { + "id": "contentos", + "symbol": "cos", + "name": "Contentos" + }, + { + "id": "context-layer", + "symbol": "cxlyr", + "name": "Context Layer" + }, + { + "id": "continuum-world", + "symbol": "um", + "name": "Continuum World" + }, + { + "id": "contracoin", + "symbol": "ctcn", + "name": "Contracoin" + }, + { + "id": "contract-address-meme", + "symbol": "ca", + "name": "contract address (Meme)" + }, + { + "id": "convergence", + "symbol": "conv", + "name": "Convergence" + }, + { + "id": "convergent", + "symbol": "cvgt", + "name": "Convergent" + }, + { + "id": "convertible-jpy-token", + "symbol": "cjpy", + "name": "Convertible JPY Token" + }, + { + "id": "convex-crv", + "symbol": "cvxcrv", + "name": "Convex CRV" + }, + { + "id": "convex-finance", + "symbol": "cvx", + "name": "Convex Finance" + }, + { + "id": "convex-fxn", + "symbol": "cvxfxn", + "name": "Convex FXN" + }, + { + "id": "convex-fxs", + "symbol": "cvxfxs", + "name": "Convex FXS" + }, + { + "id": "convex-prisma", + "symbol": "cvxprisma", + "name": "Convex Prisma" + }, + { + "id": "conviction", + "symbol": "conviction", + "name": "conviction" + }, + { + "id": "convo", + "symbol": "convo", + "name": "Convo" + }, + { + "id": "conwai", + "symbol": "conwai", + "name": "Conwai" + }, + { + "id": "cook", + "symbol": "cook", + "name": "Cook" + }, + { + "id": "cook-4", + "symbol": "cook", + "name": "cook" + }, + { + "id": "cook-cat", + "symbol": "ccat", + "name": "Cook Cat" + }, + { + "id": "cookie", + "symbol": "cookie", + "name": "Cookie DAO" + }, + { + "id": "cookiebase", + "symbol": "cookie", + "name": "CookieBase" + }, + { + "id": "cookies-protocol", + "symbol": "cp", + "name": "Cookies Protocol" + }, + { + "id": "coolcoin", + "symbol": "cool", + "name": "CoolCoin" + }, + { + "id": "cool-mustache", + "symbol": "$must", + "name": "Cool Mustache" + }, + { + "id": "coop-coin", + "symbol": "coop", + "name": "Coop Coin" + }, + { + "id": "cope", + "symbol": "cope", + "name": "Cope" + }, + { + "id": "cope-2", + "symbol": "cope", + "name": "Cope" + }, + { + "id": "cope-3", + "symbol": "cope", + "name": "Cope" + }, + { + "id": "cope-based", + "symbol": "cope", + "name": "Cope" + }, + { + "id": "cope-coin", + "symbol": "cope", + "name": "Cope Coin" + }, + { + "id": "cope-man", + "symbol": "cope", + "name": "Cope man" + }, + { + "id": "cope-token", + "symbol": "cope", + "name": "Cope Token" + }, + { + "id": "copiosa", + "symbol": "cop", + "name": "Copiosa" + }, + { + "id": "copper", + "symbol": "$copper", + "name": "$COPPER" + }, + { + "id": "copper-inu", + "symbol": "copper", + "name": "Copper Inu" + }, + { + "id": "copxtoken", + "symbol": "copx", + "name": "CopXToken" + }, + { + "id": "copycat-finance", + "symbol": "copycat", + "name": "Copycat Finance" + }, + { + "id": "coq-ai", + "symbol": "coqai", + "name": "COQ AI" + }, + { + "id": "coq-inu", + "symbol": "coq", + "name": "Coq Inu" + }, + { + "id": "cora", + "symbol": "cora", + "name": "Cora" + }, + { + "id": "coral-finance", + "symbol": "corl", + "name": "Coral Finance" + }, + { + "id": "coral-protocol", + "symbol": "coral", + "name": "Coral Protocol" + }, + { + "id": "core", + "symbol": "cmcx", + "name": "CORE MultiChain" + }, + { + "id": "core-2", + "symbol": "core", + "name": "Core" + }, + { + "id": "coredao", + "symbol": "coredao", + "name": "coreDAO" + }, + { + "id": "coredao-bridged-weth-core", + "symbol": "weth", + "name": "CoreDAO Bridged WETH (Core)" + }, + { + "id": "coredaoorg", + "symbol": "core", + "name": "Core" + }, + { + "id": "coredao-staked-core", + "symbol": "stcore", + "name": "CoreDAO Staked CORE" + }, + { + "id": "coredaoswap", + "symbol": "cdao", + "name": "CoreDaoSwap" + }, + { + "id": "core-id", + "symbol": "cid", + "name": "CORE ID" + }, + { + "id": "core-keeper", + "symbol": "coke", + "name": "Core Keeper" + }, + { + "id": "coremind", + "symbol": "core", + "name": "Coremind" + }, + { + "id": "corepound", + "symbol": "corp", + "name": "Corepound" + }, + { + "id": "core-scientific-xstock", + "symbol": "corzx", + "name": "Core Scientific xStock" + }, + { + "id": "coresky", + "symbol": "csky", + "name": "Coresky" + }, + { + "id": "coreto", + "symbol": "cor", + "name": "Coreto" + }, + { + "id": "coreum", + "symbol": "coreum", + "name": "Coreum" + }, + { + "id": "corex", + "symbol": "corx", + "name": "COREX" + }, + { + "id": "corgi", + "symbol": "corgi", + "name": "Corgi" + }, + { + "id": "corgiai", + "symbol": "corgiai", + "name": "CorgiAI" + }, + { + "id": "corgicoin", + "symbol": "corgi", + "name": "CorgiCoin" + }, + { + "id": "corgidoge", + "symbol": "corgi", + "name": "Corgidoge" + }, + { + "id": "corgi-inu-2", + "symbol": "corgi", + "name": "Corgi Inu" + }, + { + "id": "corionplatform", + "symbol": "corxs", + "name": "CorionPlatform" + }, + { + "id": "corionx", + "symbol": "corx", + "name": "CorionX" + }, + { + "id": "corite", + "symbol": "co", + "name": "Corite" + }, + { + "id": "corn-2", + "symbol": "corn", + "name": "Corn" + }, + { + "id": "corn-3", + "symbol": "corn", + "name": "Corn" + }, + { + "id": "cornatto", + "symbol": "cnc", + "name": "Cornatto" + }, + { + "id": "cornbit", + "symbol": "corn", + "name": "Cornbit" + }, + { + "id": "corn-bridged-usdc-corn", + "symbol": "usdc.e", + "name": "Corn Bridged USDC (Corn)" + }, + { + "id": "cornermarket", + "symbol": "cmt", + "name": "CornerMarket" + }, + { + "id": "cornucopias", + "symbol": "copi", + "name": "Cornucopias" + }, + { + "id": "corporate-audit-ai", + "symbol": "audit", + "name": "Corporate Audit AI" + }, + { + "id": "corridor-finance", + "symbol": "oooi", + "name": "Corridor Finance" + }, + { + "id": "cortensor", + "symbol": "cor", + "name": "Cortensor" + }, + { + "id": "cortex", + "symbol": "ctxc", + "name": "Cortex" + }, + { + "id": "cortex-2", + "symbol": "cx", + "name": "Cortex" + }, + { + "id": "cortexzero", + "symbol": "cortexzero", + "name": "CortexZero" + }, + { + "id": "cosanta", + "symbol": "cosa", + "name": "Cosanta" + }, + { + "id": "coshi-inu", + "symbol": "coshi", + "name": "CoShi Inu" + }, + { + "id": "cosmic-champs", + "symbol": "cosg", + "name": "Cosmic Champs" + }, + { + "id": "cosmic-force-token-v2", + "symbol": "cfx", + "name": "Cosmic Force Token v2" + }, + { + "id": "cosmic-on-base", + "symbol": "$cosmic", + "name": "COSMIC on Base" + }, + { + "id": "cosmicswap", + "symbol": "cosmic", + "name": "CosmicSwap" + }, + { + "id": "cosmic-universe-magic-token", + "symbol": "magick", + "name": "Cosmic Universe Magick" + }, + { + "id": "cosmo", + "symbol": "cosmo", + "name": "Cosmo" + }, + { + "id": "cosmos", + "symbol": "atom", + "name": "Cosmos Hub" + }, + { + "id": "cosplay-token-2", + "symbol": "cot", + "name": "Cosplay Token" + }, + { + "id": "costco-hot-dog", + "symbol": "cost", + "name": "Cost Hot Dog" + }, + { + "id": "costco-ondo-tokenized-stock", + "symbol": "coston", + "name": "Costco (Ondo Tokenized Stock)" + }, + { + "id": "costco-xstock", + "symbol": "costx", + "name": "Costco xStock" + }, + { + "id": "cot-backrooms", + "symbol": "cot", + "name": "CoT Backrooms" + }, + { + "id": "coti", + "symbol": "coti", + "name": "COTI" + }, + { + "id": "coti-ai-agents", + "symbol": "coai", + "name": "COTI AI Agents" + }, + { + "id": "coti-governance-token", + "symbol": "gcoti", + "name": "COTI Governance Token" + }, + { + "id": "cotrader", + "symbol": "cot", + "name": "CoTrader" + }, + { + "id": "cougar-token", + "symbol": "cgs", + "name": "CougarSwap" + }, + { + "id": "coughing-cat", + "symbol": "cct", + "name": "Coughing Cat" + }, + { + "id": "could", + "symbol": "could", + "name": "could" + }, + { + "id": "could-be-the-move", + "symbol": "cbtm", + "name": "Could Be The Move" + }, + { + "id": "counterfire-economic-coin", + "symbol": "cec", + "name": "Counterfire Economic Coin" + }, + { + "id": "counterparty", + "symbol": "xcp", + "name": "Counterparty" + }, + { + "id": "couphype", + "symbol": "couphype", + "name": "coupHYPE" + }, + { + "id": "covalent-x-token", + "symbol": "cxt", + "name": "Covalent X Token" + }, + { + "id": "cove-dao", + "symbol": "cove", + "name": "Cove DAO" + }, + { + "id": "cove-quant", + "symbol": "cove", + "name": "Cove Quant" + }, + { + "id": "covesting", + "symbol": "cov", + "name": "Covesting" + }, + { + "id": "cove-usd", + "symbol": "coveusd", + "name": "Cove USD" + }, + { + "id": "cow", + "symbol": "cow", + "name": "Cow" + }, + { + "id": "cowcoin-2", + "symbol": "cow", + "name": "Cowcoin" + }, + { + "id": "cow-patty-bingo", + "symbol": "moo", + "name": "Cow Patty Bingo" + }, + { + "id": "cow-protocol", + "symbol": "cow", + "name": "CoW Protocol" + }, + { + "id": "cozy-pepe", + "symbol": "cozy", + "name": "Cozy Pepe" + }, + { + "id": "cpa-by-virtuals", + "symbol": "cpa", + "name": "CPA by Virtuals" + }, + { + "id": "cpen", + "symbol": "cpen", + "name": "cPen" + }, + { + "id": "cpucoin", + "symbol": "cpu", + "name": "CPUcoin" + }, + { + "id": "cr0w-by-virtuals", + "symbol": "crow", + "name": "cr0w by Virtuals" + }, + { + "id": "cr1me", + "symbol": "crme", + "name": "Cr1me" + }, + { + "id": "crab", + "symbol": "crab", + "name": "CRAB" + }, + { + "id": "crabada", + "symbol": "cra", + "name": "Crabada" + }, + { + "id": "crabby", + "symbol": "crab", + "name": "CRABBY" + }, + { + "id": "crackcoon", + "symbol": "chewy", + "name": "Crackcoon" + }, + { + "id": "crackrockglobal", + "symbol": "crk", + "name": "CrackRockGlobal" + }, + { + "id": "cradle-games", + "symbol": "cradle", + "name": "Cradle Games" + }, + { + "id": "craftcoin", + "symbol": "crc", + "name": "CraftCoin" + }, + { + "id": "craft-engine", + "symbol": "craft", + "name": "Craft Engine" + }, + { + "id": "crafting-finance", + "symbol": "crf", + "name": "Crafting Finance" + }, + { + "id": "craft-network", + "symbol": "cft", + "name": "Craft network" + }, + { + "id": "cramer-coin", + "symbol": "$cramer", + "name": "Cramer Coin" + }, + { + "id": "crappy-bird-cto", + "symbol": "crappy", + "name": "Crappy Bird CTO" + }, + { + "id": "craptocurrency", + "symbol": "crapto", + "name": "craptocurrency" + }, + { + "id": "crash-on-base", + "symbol": "crash", + "name": "Crash On Base" + }, + { + "id": "crashout", + "symbol": "crashout", + "name": "Crashout" + }, + { + "id": "cratos", + "symbol": "crts", + "name": "Cratos" + }, + { + "id": "crawju", + "symbol": "crawju", + "name": "CRAWJU" + }, + { + "id": "craze", + "symbol": "craze", + "name": "Craze" + }, + { + "id": "crazybunny", + "symbol": "crazybunny", + "name": "CrazyBunny" + }, + { + "id": "crazy-bunny", + "symbol": "crazybunny", + "name": "Crazy Bunny" + }, + { + "id": "crazy-bunny-equity-token", + "symbol": "cbunny", + "name": "Crazy Bunny Equity" + }, + { + "id": "crazyfootball-token", + "symbol": "football", + "name": "CrazyFootball token" + }, + { + "id": "crazy-frog", + "symbol": "crazy", + "name": "Crazy Frog Coin" + }, + { + "id": "crazy-monkey", + "symbol": "cmonk", + "name": "Crazy Monkey" + }, + { + "id": "crazypepe-2", + "symbol": "crazypepe", + "name": "CrazyPepe" + }, + { + "id": "crazy-tiger", + "symbol": "crazytiger", + "name": "Crazy Tiger" + }, + { + "id": "crazzers-ai", + "symbol": "crazzers", + "name": "Crazzers AI" + }, + { + "id": "cre8", + "symbol": "cre8", + "name": "CRE8" + }, + { + "id": "cream-2", + "symbol": "cream", + "name": "Cream" + }, + { + "id": "create-2", + "symbol": "create", + "name": "Create" + }, + { + "id": "creaticles", + "symbol": "cre8", + "name": "Creaticles" + }, + { + "id": "creator", + "symbol": "creator", + "name": "CREATOR" + }, + { + "id": "creat-or", + "symbol": "cret", + "name": "CREAT'OR" + }, + { + "id": "creator-2", + "symbol": "sn98", + "name": "Creator" + }, + { + "id": "creatorbid", + "symbol": "bid", + "name": "CreatorBid" + }, + { + "id": "creator-buddy", + "symbol": "buddy", + "name": "Creator Buddy" + }, + { + "id": "creatordao", + "symbol": "creator", + "name": "CreatorDAO" + }, + { + "id": "creatorgen", + "symbol": "creator", + "name": "CreatorGen" + }, + { + "id": "creator-platform", + "symbol": "ctr", + "name": "Creator Platform" + }, + { + "id": "credbull", + "symbol": "cbl", + "name": "Credbull" + }, + { + "id": "cred-coin-pay", + "symbol": "cred", + "name": "CRED COIN PAY" + }, + { + "id": "credefi", + "symbol": "credi", + "name": "Credefi" + }, + { + "id": "creditcoin-2", + "symbol": "ctc", + "name": "Creditcoin" + }, + { + "id": "creditlink-token", + "symbol": "cdl", + "name": "Creditlink Token" + }, + { + "id": "creo-engine", + "symbol": "creo", + "name": "Creo Engine" + }, + { + "id": "crepe-2", + "symbol": "crepe", + "name": "CREPE" + }, + { + "id": "crescentswap-moonlight", + "symbol": "mnlt", + "name": "Crescentswap Moonlight" + }, + { + "id": "crestal-nation", + "symbol": "nation", + "name": "Crestal Nation" + }, + { + "id": "creta-world", + "symbol": "creta", + "name": "Creta World" + }, + { + "id": "cricket-foundation", + "symbol": "cric", + "name": "Cricket Foundation" + }, + { + "id": "crime", + "symbol": "crime", + "name": "CRIME" + }, + { + "id": "cringe", + "symbol": "cringe", + "name": "CRINGE" + }, + { + "id": "cris-hensan", + "symbol": "seat", + "name": "Cris Hensan" + }, + { + "id": "crispr", + "symbol": "crisp", + "name": "CRISPR" + }, + { + "id": "croakey", + "symbol": "croak", + "name": "Croakey" + }, + { + "id": "croak_on_linea", + "symbol": "$croak", + "name": "Croak" + }, + { + "id": "croak-the-bullfrog", + "symbol": "croak", + "name": "Croak the Bullfrog" + }, + { + "id": "croatian-ff-fan-token", + "symbol": "vatreni", + "name": "Croatian Football Federation Token" + }, + { + "id": "crob-mob", + "symbol": "crob", + "name": "Crob Mob" + }, + { + "id": "crocbot", + "symbol": "croc", + "name": "CrocBot" + }, + { + "id": "croc-cat", + "symbol": "croc", + "name": "croc cat" + }, + { + "id": "crochet-world", + "symbol": "crochet", + "name": "Crochet World" + }, + { + "id": "croco", + "symbol": "$croco", + "name": "Croco" + }, + { + "id": "crocodile-finance", + "symbol": "croc", + "name": "Crocodile Finance" + }, + { + "id": "crodex", + "symbol": "crx", + "name": "Crodex" + }, + { + "id": "crodie", + "symbol": "crodie", + "name": "Crodie" + }, + { + "id": "crogecoin", + "symbol": "croge", + "name": "Crogecoin" + }, + { + "id": "croginal-cats", + "symbol": "croginal", + "name": "Croginal Cats" + }, + { + "id": "croin", + "symbol": "cr", + "name": "Croin" + }, + { + "id": "croissant-the-baby-amarillo", + "symbol": "croissant", + "name": "croissant the baby amarillo" + }, + { + "id": "crome-2", + "symbol": "crome", + "name": "Crome" + }, + { + "id": "cronaswap", + "symbol": "crona", + "name": "CronaSwap" + }, + { + "id": "cronk", + "symbol": "cronk", + "name": "CRONK" + }, + { + "id": "crononymous", + "symbol": "cronon", + "name": "Crononymous" + }, + { + "id": "cronos-army", + "symbol": "ca", + "name": "Cronos Army" + }, + { + "id": "cronos-bridged-usdc-cronos", + "symbol": "usdc", + "name": "Cronos Bridged USDC (Cronos)" + }, + { + "id": "cronos-bridged-usdt-cronos", + "symbol": "usdt", + "name": "Cronos Bridged USDT (Cronos)" + }, + { + "id": "cronos-bridged-wbtc-cronos", + "symbol": "wbtc", + "name": "Cronos Bridged WBTC (Cronos)" + }, + { + "id": "cronos-id", + "symbol": "croid", + "name": "Cronos ID" + }, + { + "id": "cronos-legends", + "symbol": "clg", + "name": "Cronos Legends" + }, + { + "id": "cronos-zkevm-bridged-cro-cronos-zkevm", + "symbol": "cro", + "name": "Cronos zkEVM Bridged CRO (Cronos zkEVM)" + }, + { + "id": "cronos-zkevm-bridged-usdc-cronos-zkevm", + "symbol": "usdc", + "name": "Cronos zkEVM Bridged USDC (Cronos zkEVM)" + }, + { + "id": "cronos-zkevm-bridged-wbtc-cronos-zkevm", + "symbol": "wbtc", + "name": "Cronos zkEVM Bridged WBTC (Cronos zkEVM)" + }, + { + "id": "cronos-zkevm-cro", + "symbol": "zkcro", + "name": "Cronos zkEVM CRO" + }, + { + "id": "cronus-2", + "symbol": "cronus", + "name": "CRONUS" + }, + { + "id": "cropbytes", + "symbol": "cbx", + "name": "CropBytes" + }, + { + "id": "cropto-barley-token", + "symbol": "crob", + "name": "Cropto Barley Token" + }, + { + "id": "cropto-corn-token", + "symbol": "croc", + "name": "Cropto Corn Token" + }, + { + "id": "cropto-hazelnut-token", + "symbol": "crof", + "name": "Cropto Hazelnut Token" + }, + { + "id": "cropto-wheat-token", + "symbol": "crow", + "name": "Cropto Wheat Token" + }, + { + "id": "cros", + "symbol": "cros", + "name": "Cros" + }, + { + "id": "cross-2", + "symbol": "cross", + "name": "Cross" + }, + { + "id": "cross-chain-bridge", + "symbol": "bridge", + "name": "Cross-Chain Bridge" + }, + { + "id": "cross-chain-degen-dao", + "symbol": "degen", + "name": "Cross Chain Degen DAO" + }, + { + "id": "crosschain-iotx", + "symbol": "ciotx", + "name": "Crosschain IOTX" + }, + { + "id": "crosscurve-bridged-eth-fantom", + "symbol": "xweth", + "name": "CrossCurve Bridged ETH (Fantom)" + }, + { + "id": "crosscurve-btc", + "symbol": "xbtc", + "name": "CrossCurve BTC" + }, + { + "id": "crosscurve-stable", + "symbol": "xstable", + "name": "CrossCurve Stable" + }, + { + "id": "crossfi-2", + "symbol": "xfi", + "name": "CrossFi" + }, + { + "id": "crossswap", + "symbol": "cswap", + "name": "CrossSwap" + }, + { + "id": "cross-the-ages", + "symbol": "cta", + "name": "Cross The Ages" + }, + { + "id": "crosswalk", + "symbol": "csw", + "name": "Crosswalk" + }, + { + "id": "crosswallet", + "symbol": "cwt", + "name": "CrossWallet" + }, + { + "id": "crotch", + "symbol": "crotch", + "name": "CROTCH" + }, + { + "id": "crow-2", + "symbol": "crow", + "name": "CROW" + }, + { + "id": "crow-computer", + "symbol": "crow", + "name": "Crow Computer" + }, + { + "id": "crowdstrike-xstock", + "symbol": "crwdx", + "name": "CrowdStrike xStock" + }, + { + "id": "crowdswap", + "symbol": "crowd", + "name": "CrowdSwap" + }, + { + "id": "crown", + "symbol": "crw", + "name": "Crown" + }, + { + "id": "crown-by-third-time-games", + "symbol": "crown", + "name": "Crown by Third Time Games" + }, + { + "id": "crowns", + "symbol": "cws", + "name": "Seascape Crowns" + }, + { + "id": "crown-token-77469f91-69f6-44dd-b356-152e2c39c0cc", + "symbol": "crown", + "name": "Crown Token" + }, + { + "id": "crowny-token", + "symbol": "crwny", + "name": "Crowny" + }, + { + "id": "crow-with-knife", + "symbol": "caw", + "name": "crow with knife" + }, + { + "id": "crox", + "symbol": "crox", + "name": "Crox" + }, + { + "id": "croy-ai", + "symbol": "croy", + "name": "CROY AI" + }, + { + "id": "crumbcat", + "symbol": "crumb", + "name": "Crumbcat" + }, + { + "id": "crunchcat", + "symbol": "crunch", + "name": "Crunchcat" + }, + { + "id": "crust-exchange", + "symbol": "crust", + "name": "Crust Exchange" + }, + { + "id": "crust-network", + "symbol": "cru", + "name": "Crust Network" + }, + { + "id": "crust-storage-market", + "symbol": "csm", + "name": "Crust Shadow" + }, + { + "id": "crux-finance", + "symbol": "crux", + "name": "Crux Finance" + }, + { + "id": "crvusd", + "symbol": "crvusd", + "name": "crvUSD" + }, + { + "id": "cryfi", + "symbol": "cryfi", + "name": "Cryfi" + }, + { + "id": "crying-cat", + "symbol": "crying", + "name": "Crying Cat" + }, + { + "id": "cryn", + "symbol": "cryn", + "name": "CRYN" + }, + { + "id": "cryodao", + "symbol": "cryo", + "name": "CryoDAO" + }, + { + "id": "cryorat", + "symbol": "cryorat", + "name": "CRYORAT" + }, + { + "id": "cryowar-token", + "symbol": "cwar", + "name": "Cryowar" + }, + { + "id": "crypgpt", + "symbol": "crypgpt", + "name": "CrypGPT" + }, + { + "id": "crypsi-coin", + "symbol": "crypsi", + "name": "Crypsi Coin" + }, + { + "id": "crypstocksai", + "symbol": "mvp", + "name": "CrypstocksAI" + }, + { + "id": "cryptaine", + "symbol": "cry", + "name": "Cryptaine" + }, + { + "id": "cryptalk-2", + "symbol": "talk", + "name": "CrypTalk" + }, + { + "id": "cryptax-ai", + "symbol": "ctax", + "name": "Cryptax AI" + }, + { + "id": "crypterium", + "symbol": "crpt", + "name": "Crypterium" + }, + { + "id": "cryptex-finance", + "symbol": "ctx", + "name": "Cryptex Finance" + }, + { + "id": "crypticorn", + "symbol": "aic", + "name": "Crypticorn" + }, + { + "id": "cryptify", + "symbol": "crypt", + "name": "Cryptify" + }, + { + "id": "cryptify-ai", + "symbol": "crai", + "name": "Cryptify AI" + }, + { + "id": "cryptiq-web3", + "symbol": "cryptiq", + "name": "Cryptiq browser" + }, + { + "id": "cryptoai", + "symbol": "cai", + "name": "CryptoAI" + }, + { + "id": "crypto-ai-2", + "symbol": "cryptoai", + "name": "Crypto AI" + }, + { + "id": "crypto-ai-robo", + "symbol": "cair", + "name": "Crypto-AI-Robo" + }, + { + "id": "crypto-asset-governance-alliance", + "symbol": "caga", + "name": "Crypto Asset Governance Alliance" + }, + { + "id": "cryptoautos", + "symbol": "autos", + "name": "CryptoAutos" + }, + { + "id": "cryptoblades", + "symbol": "skill", + "name": "CryptoBlades" + }, + { + "id": "cryptoblades-kingdoms", + "symbol": "king", + "name": "CryptoBlades Kingdoms" + }, + { + "id": "cryptoboomcoin-official", + "symbol": "cbc", + "name": "CryptoBoomCoin Official" + }, + { + "id": "crypto-bro", + "symbol": "larry", + "name": "Crypto Bro" + }, + { + "id": "crypto-bros", + "symbol": "bros", + "name": "Crypto Bros" + }, + { + "id": "crypto-burger", + "symbol": "burger", + "name": "Crypto Burger" + }, + { + "id": "cryptocart", + "symbol": "ccv2", + "name": "CryptoCart V2" + }, + { + "id": "crypto-chests", + "symbol": "cht", + "name": "Crypto Chests" + }, + { + "id": "crypto-clouds", + "symbol": "cloud", + "name": "CRYPTO CLOUD" + }, + { + "id": "crypto-clubs-app", + "symbol": "cc", + "name": "Crypto Clubs App [OLD]" + }, + { + "id": "crypto-clubs-app-2", + "symbol": "cc", + "name": "Crypto Clubs App" + }, + { + "id": "crypto-com-bridged-dai-cronos", + "symbol": "dai", + "name": "Crypto.com Bridged DAI (Cronos)" + }, + { + "id": "crypto-com-chain", + "symbol": "cro", + "name": "Cronos" + }, + { + "id": "crypto-com-staked-eth", + "symbol": "cdceth", + "name": "Crypto.com Staked ETH" + }, + { + "id": "crypto-com-staked-sol", + "symbol": "cdcsol", + "name": "Crypto.com Staked SOL" + }, + { + "id": "crypto-com-wrapped-btc", + "symbol": "cdcbtc", + "name": "Crypto.com Wrapped BTC" + }, + { + "id": "cryptocurrency-coin", + "symbol": "crypto", + "name": "Cryptocurrency Coin" + }, + { + "id": "crypto-czar", + "symbol": "czar", + "name": "Crypto Czar" + }, + { + "id": "cryptodm", + "symbol": "cdm", + "name": "CryptoDM" + }, + { + "id": "crypto-emergency", + "symbol": "cem", + "name": "Crypto Emergency" + }, + { + "id": "cryptoempressx", + "symbol": "cryptoempressxx", + "name": "CryptoEmpressX" + }, + { + "id": "crypto-factor", + "symbol": "cfr", + "name": "Crypto Factor" + }, + { + "id": "cryptofarmers", + "symbol": "farm", + "name": "CryptoFarmers" + }, + { + "id": "cryptoforce", + "symbol": "cof", + "name": "Cryptoforce" + }, + { + "id": "crypto-global-united", + "symbol": "cgu", + "name": "Crypto Global United" + }, + { + "id": "cryptogpt", + "symbol": "crgpt", + "name": "CryptoGPT" + }, + { + "id": "cryptogpt-token", + "symbol": "lai", + "name": "LayerAI" + }, + { + "id": "crypto-hub-2", + "symbol": "hub", + "name": "CryptoHub" + }, + { + "id": "crypto-index-pool", + "symbol": "cip", + "name": "Crypto Index Pool" + }, + { + "id": "crypto-is-a-joke", + "symbol": "jokecoin", + "name": "crypto is a joke" + }, + { + "id": "crypto-is-fun", + "symbol": "cif", + "name": "Crypto is Fun" + }, + { + "id": "crypto-journey", + "symbol": "daddy", + "name": "Crypto Journey" + }, + { + "id": "cryptoloots", + "symbol": "cloots", + "name": "CryptoLoots" + }, + { + "id": "cryptomines-eternal", + "symbol": "eternal", + "name": "CryptoMines Eternal" + }, + { + "id": "cryptomines-reborn", + "symbol": "crux", + "name": "CryptoMines Reborn" + }, + { + "id": "crypton-ai", + "symbol": "$crypton", + "name": "Crypton Ai" + }, + { + "id": "crypto-one", + "symbol": "one", + "name": "Crypto One" + }, + { + "id": "cryptoperformance-coin", + "symbol": "cpc", + "name": "CryptoPerformance Coin" + }, + { + "id": "cryptopeso", + "symbol": "crp", + "name": "CryptoPeso" + }, + { + "id": "cryptopia-world", + "symbol": "bcpi", + "name": "Cryptopia" + }, + { + "id": "cryptopolis", + "symbol": "cpo", + "name": "Cryptopolis" + }, + { + "id": "cryptopunk-7171-hoodie", + "symbol": "hoodie", + "name": "CryptoPunk #7171" + }, + { + "id": "cryptopunks-bot", + "symbol": "bot", + "name": "cryptopunks bot" + }, + { + "id": "crypto-raiders", + "symbol": "raider", + "name": "Crypto Raiders" + }, + { + "id": "cryptorg-token", + "symbol": "ctg", + "name": "Cryptorg" + }, + { + "id": "crypto-royale", + "symbol": "roy", + "name": "Crypto Royale" + }, + { + "id": "crypto-rug-muncher", + "symbol": "crm", + "name": "Crypto Rug Muncher" + }, + { + "id": "crypto-sdg", + "symbol": "sdg", + "name": "Crypto SDG" + }, + { + "id": "cryptoshares", + "symbol": "shares", + "name": "Cryptoshares" + }, + { + "id": "crypto-strategic-reserve", + "symbol": "csr", + "name": "Crypto Strategic Reserve" + }, + { + "id": "crypto-sustainable-token", + "symbol": "cst", + "name": "Crypto Sustainable Token" + }, + { + "id": "crypto-task-force", + "symbol": "ctf", + "name": "Crypto Task Force" + }, + { + "id": "cryptotem", + "symbol": "totem", + "name": "Cryptotem" + }, + { + "id": "crypto-trading-fund", + "symbol": "ctf", + "name": "Crypto Trading Fund" + }, + { + "id": "cryptotwitter", + "symbol": "ct", + "name": "CryptoTwitter" + }, + { + "id": "crypto-twitter-2", + "symbol": "ct", + "name": "Crypto Twitter" + }, + { + "id": "cryptotycoon", + "symbol": "ctt", + "name": "CryptoTycoon" + }, + { + "id": "crypto-unicorns", + "symbol": "cu", + "name": "Crypto Unicorns" + }, + { + "id": "cryptounity", + "symbol": "cut", + "name": "CryptoUnity" + }, + { + "id": "crypto-valleys-yield-token", + "symbol": "yield", + "name": "Crypto Valleys YIELD Token" + }, + { + "id": "crypto-whale", + "symbol": "whale", + "name": "Crypto Whale" + }, + { + "id": "cryptozoo", + "symbol": "zoo", + "name": "CryptoZoo" + }, + { + "id": "cryptozoon", + "symbol": "zoon", + "name": "CryptoZoon" + }, + { + "id": "cryptyk", + "symbol": "ctk", + "name": "Cryptyk" + }, + { + "id": "crystal-erc404", + "symbol": "crystal", + "name": "Crystal" + }, + { + "id": "crystalmine", + "symbol": "crystal", + "name": "CrystalMine" + }, + { + "id": "crystl-finance", + "symbol": "crystl", + "name": "Crystl Finance" + }, + { + "id": "csi888", + "symbol": "csi", + "name": "CSI888" + }, + { + "id": "csigma-finance", + "symbol": "sigma", + "name": "cSigma Finance" + }, + { + "id": "csp-dao-network", + "symbol": "nebo", + "name": "Kinetic Kollective" + }, + { + "id": "csr", + "symbol": "csr", + "name": "CSR" + }, + { + "id": "cswap", + "symbol": "cswap", + "name": "CSWAP" + }, + { + "id": "ct-bonk", + "symbol": "ct", + "name": "草台班" + }, + { + "id": "ctc-plus", + "symbol": "ctcp", + "name": "CTC PLUS" + }, + { + "id": "cthulhu-finance", + "symbol": "cth", + "name": "Cthulhu Finance" + }, + { + "id": "ctoc", + "symbol": "ctoc", + "name": "CTOC" + }, + { + "id": "cto-harambe", + "symbol": "harambe", + "name": "CTO Harambe" + }, + { + "id": "ctomorrow-platform", + "symbol": "ctp", + "name": "Ctomorrow Platform" + }, + { + "id": "ctrl-wallet", + "symbol": "ctrl", + "name": "Ctrl" + }, + { + "id": "cubechain", + "symbol": "qub", + "name": "Cubechain" + }, + { + "id": "cuberium", + "symbol": "iland", + "name": "Cuberium" + }, + { + "id": "cube-staked-baby", + "symbol": "cbaby", + "name": "Cube Staked BABY" + }, + { + "id": "cub-finance", + "symbol": "cub", + "name": "Cub Finance" + }, + { + "id": "cubigator", + "symbol": "cub", + "name": "Cubigator" + }, + { + "id": "cubiswap", + "symbol": "cubi", + "name": "CUBISWAP" + }, + { + "id": "cuckadoodledoo", + "symbol": "cuck", + "name": "Cuckadoodledoo" + }, + { + "id": "cudis", + "symbol": "cudis", + "name": "Cudis" + }, + { + "id": "cudos", + "symbol": "cudos", + "name": "Cudos" + }, + { + "id": "culo", + "symbol": "culo", + "name": "CULO" + }, + { + "id": "culo-eth", + "symbol": "culo", + "name": "Culo (ETH)" + }, + { + "id": "culosui", + "symbol": "culo", + "name": "CULOSUI" + }, + { + "id": "cult-2", + "symbol": "cult", + "name": "CULT" + }, + { + "id": "cult-3", + "symbol": "cult", + "name": "Cult" + }, + { + "id": "cult-cat", + "symbol": "cult", + "name": "CULT CAT" + }, + { + "id": "cult-coin", + "symbol": "cult", + "name": "Cult coin" + }, + { + "id": "cult-dao", + "symbol": "cult", + "name": "Cult DAO" + }, + { + "id": "cultel", + "symbol": "cultel", + "name": "Cultel" + }, + { + "id": "cult-of-pepe", + "symbol": "cope", + "name": "Cult of Pepe" + }, + { + "id": "cults", + "symbol": "cults", + "name": "Cults" + }, + { + "id": "cultur", + "symbol": "$cultur", + "name": "CULTUR" + }, + { + "id": "culture", + "symbol": "culture", + "name": "Culture" + }, + { + "id": "culture-of-solana-token", + "symbol": "$cost", + "name": "Culture of Solana Token" + }, + { + "id": "cuminu", + "symbol": "cuminu", + "name": "Cuminu" + }, + { + "id": "cumrocket", + "symbol": "cummies", + "name": "CumRocket" + }, + { + "id": "cumulus-encrypted-storage-system", + "symbol": "cess", + "name": "CESS Network" + }, + { + "id": "cupsey", + "symbol": "cupsey", + "name": "CUPSEY" + }, + { + "id": "curetopia", + "symbol": "cures", + "name": "Curetopia" + }, + { + "id": "curio-gas-token", + "symbol": "cgt", + "name": "Curio Gas Token" + }, + { + "id": "curiso", + "symbol": "cur", + "name": "Curiso" + }, + { + "id": "curly", + "symbol": "curly", + "name": "Curly" + }, + { + "id": "currencycoin", + "symbol": "cc", + "name": "Currencycoin" + }, + { + "id": "curtis", + "symbol": "curtis", + "name": "Curtis" + }, + { + "id": "curvance", + "symbol": "cve", + "name": "Curvance" + }, + { + "id": "curve-dao-token", + "symbol": "crv", + "name": "Curve DAO" + }, + { + "id": "curve-fi-amdai-amusdc-amusdt", + "symbol": "am3crv", + "name": "Curve.fi amDAI/amUSDC/amUSDT" + }, + { + "id": "curve-fi-frax-usdc", + "symbol": "crvfrax", + "name": "Curve.fi FRAX/USDC" + }, + { + "id": "curve-fi-renbtc-wbtc-sbtc", + "symbol": "crvrenwsbtc", + "name": "Curve.fi renBTC/wBTC/sBTC" + }, + { + "id": "curve-fi-usdc-usdt", + "symbol": "2crv", + "name": "Curve.fi USDC/USDT" + }, + { + "id": "curve-fi-usd-stablecoin-stargate", + "symbol": "crvusd", + "name": "Bridged Curve.Fi USD Stablecoin (Stargate)" + }, + { + "id": "curveswap", + "symbol": "cvs", + "name": "Curveswap" + }, + { + "id": "c-users-desktop-memes", + "symbol": "c:\\memes", + "name": "C:\\Users\\Desktop\\memes" + }, + { + "id": "custodiy", + "symbol": "cty", + "name": "CUSTODIY" + }, + { + "id": "customer-service-xiao-he", + "symbol": "客服小何", + "name": "客服小何 (Customer Service Xiao He)" + }, + { + "id": "cute-asian-girl", + "symbol": "cag", + "name": "Cute Asian Girl" + }, + { + "id": "cute-cat-token", + "symbol": "ccc", + "name": "Cute Cat Candle" + }, + { + "id": "cute-cthulhu", + "symbol": "cthulhu", + "name": "Cute Cthulhu" + }, + { + "id": "cute-style", + "symbol": "cutie", + "name": "Cute Style" + }, + { + "id": "cv3", + "symbol": "cv3ai", + "name": "CV3" + }, + { + "id": "cvault-finance", + "symbol": "core", + "name": "cVault.finance" + }, + { + "id": "cv-pad", + "symbol": "cvpad", + "name": "CV Pad" + }, + { + "id": "cvshots", + "symbol": "cvshot", + "name": "CVSHOTS" + }, + { + "id": "cwypto", + "symbol": "cwypto", + "name": "CWYPTO" + }, + { + "id": "cyb3rgam3r420", + "symbol": "gamer", + "name": "cyb3rgam3r420" + }, + { + "id": "cyber-arena", + "symbol": "cat", + "name": "Cyber Arena" + }, + { + "id": "cyberblast-token", + "symbol": "cbr", + "name": "Cyberblast Token" + }, + { + "id": "cybercentry", + "symbol": "centry", + "name": "Cybercentry" + }, + { + "id": "cyberconnect", + "symbol": "cyber", + "name": "CYBER" + }, + { + "id": "cybercrashcoin", + "symbol": "ccc", + "name": "CyberCrashCoin" + }, + { + "id": "cyberdex", + "symbol": "cydx", + "name": "CyberDEX" + }, + { + "id": "cyber-dog", + "symbol": "cdog", + "name": "Cyber Dog" + }, + { + "id": "cyberdoge-3", + "symbol": "cdoge", + "name": "Cyberdoge" + }, + { + "id": "cyberdragon-gold", + "symbol": "gold", + "name": "CyberDragon Gold" + }, + { + "id": "cyberfi", + "symbol": "cfi", + "name": "CyberFi" + }, + { + "id": "cyberharbor", + "symbol": "cht", + "name": "CyberHarbor" + }, + { + "id": "cyberlife", + "symbol": "life", + "name": "Cyberlife" + }, + { + "id": "cyberperp", + "symbol": "cyb", + "name": "Cyberperp" + }, + { + "id": "cyberpixels", + "symbol": "cypx", + "name": "CyberPixels" + }, + { + "id": "cyberpunk-city", + "symbol": "cyber", + "name": "Cyberpunk City" + }, + { + "id": "cybertrader-ai", + "symbol": "cyb", + "name": "Cybertrader AI" + }, + { + "id": "cybertruck", + "symbol": "truck", + "name": "Cybertruck" + }, + { + "id": "cybervein", + "symbol": "cvt", + "name": "CyberVein" + }, + { + "id": "cyberwish", + "symbol": "cyberwish", + "name": "CyberWishing" + }, + { + "id": "cyberyen", + "symbol": "cy", + "name": "Cyberyen" + }, + { + "id": "cybonk", + "symbol": "cybonk", + "name": "CYBONK" + }, + { + "id": "cy-bord-cbrc-20", + "symbol": "bord", + "name": "Cy[bord] (CBRC-20)" + }, + { + "id": "cyborgism", + "symbol": "cyborgism", + "name": "Cyborgism" + }, + { + "id": "cybro", + "symbol": "cybro", + "name": "CYBRO" + }, + { + "id": "cycle", + "symbol": "cycle", + "name": "Cycle" + }, + { + "id": "cycle-2", + "symbol": "cyc", + "name": "Cycle Network" + }, + { + "id": "cyclix-games", + "symbol": "cyg", + "name": "Cyclix Games" + }, + { + "id": "cyclo-cysflr", + "symbol": "cysflr", + "name": "Cyclo cysFLR" + }, + { + "id": "cyclo-cyweth", + "symbol": "cyweth", + "name": "Cyclo cyWETH" + }, + { + "id": "cyclone-protocol", + "symbol": "cyc", + "name": "Cyclone Protocol" + }, + { + "id": "cyclxv1", + "symbol": "cyclxv1", + "name": "Cyclxv1" + }, + { + "id": "cygnus-2", + "symbol": "cgn", + "name": "Cygnus" + }, + { + "id": "cygnusdao", + "symbol": "cyg", + "name": "CygnusDAO" + }, + { + "id": "cygnus-finance-global-usd", + "symbol": "cgusd", + "name": "Cygnus Finance Global USD" + }, + { + "id": "cyi-by-virtuals", + "symbol": "cyi", + "name": "CYI by Virtuals" + }, + { + "id": "cyop-new-era", + "symbol": "cyop", + "name": "CyOp New Era" + }, + { + "id": "cypepe", + "symbol": "cypepe", + "name": "CyPepe" + }, + { + "id": "cypher-2", + "symbol": "cypr", + "name": "Cypher" + }, + { + "id": "cypher-ai-2", + "symbol": "cypher", + "name": "Cypher AI" + }, + { + "id": "cypher-app", + "symbol": "cypher", + "name": "Cypher App" + }, + { + "id": "cypher-genesis-runes", + "symbol": "cypher", + "name": "CYPHER•GENESIS (Runes)" + }, + { + "id": "cypherium", + "symbol": "cph", + "name": "Cypherium" + }, + { + "id": "cypherspace", + "symbol": "cypher", + "name": "Cypherspace" + }, + { + "id": "cypher-tempre", + "symbol": "cphy", + "name": "Cypher Tempre" + }, + { + "id": "cyphomancer", + "symbol": "42", + "name": "Cyphomancer" + }, + { + "id": "cypress", + "symbol": "cp", + "name": "Cypress" + }, + { + "id": "cyreneai", + "symbol": "cyai", + "name": "CyreneAI" + }, + { + "id": "cyrus", + "symbol": "crs", + "name": "CYRUS" + }, + { + "id": "cz-guardian", + "symbol": "guard", + "name": "CZ Guardian" + }, + { + "id": "czlu", + "symbol": "czlu", + "name": "Czlu" + }, + { + "id": "czmon", + "symbol": "czmon", + "name": "CZMON" + }, + { + "id": "czolana", + "symbol": "czol", + "name": "CZOL" + }, + { + "id": "cz-on-hyperliquid", + "symbol": "cz", + "name": "CZ on Hyperliquid" + }, + { + "id": "czs-dog", + "symbol": "broccoli", + "name": "CZ's Dog" + }, + { + "id": "d1ckgpt", + "symbol": "dick", + "name": "D1ckGPT" + }, + { + "id": "d2", + "symbol": "d2x", + "name": "D2" + }, + { + "id": "d2-token", + "symbol": "d2", + "name": "D2 Finance" + }, + { + "id": "daboo", + "symbol": "daboo", + "name": "Daboo" + }, + { + "id": "dacat", + "symbol": "dacat", + "name": "daCat" + }, + { + "id": "d-acc", + "symbol": "d/acc", + "name": "d/acc" + }, + { + "id": "d-acc-2", + "symbol": "d/acc", + "name": "D/ACC" + }, + { + "id": "dachu-the-chef", + "symbol": "dachu", + "name": "DACHU THE CHEF" + }, + { + "id": "dackieswap", + "symbol": "dackie", + "name": "DackieSwap [OLD]" + }, + { + "id": "dackieswap-2", + "symbol": "dackie", + "name": "DackieSwap" + }, + { + "id": "dacxi", + "symbol": "dxi", + "name": "Dacxi" + }, + { + "id": "dadamo", + "symbol": "dadamo", + "name": "DADAMO" + }, + { + "id": "daddy-chill", + "symbol": "daddychill", + "name": "Daddy Chill" + }, + { + "id": "daddy-doge", + "symbol": "daddydoge", + "name": "Daddy Doge" + }, + { + "id": "daddy-tate", + "symbol": "daddy", + "name": "Daddy Tate" + }, + { + "id": "dadi-insight-token", + "symbol": "dit", + "name": "DADI Insight Token" + }, + { + "id": "dafi-protocol", + "symbol": "dafi", + "name": "Dafi Protocol" + }, + { + "id": "dagama-world", + "symbol": "dgma", + "name": "DaGama World" + }, + { + "id": "dagger", + "symbol": "xdag", + "name": "XDAG" + }, + { + "id": "dagora", + "symbol": "dada", + "name": "Dagora" + }, + { + "id": "dai", + "symbol": "dai", + "name": "Dai" + }, + { + "id": "daifuku", + "symbol": "daifuku", + "name": "DAIFUKU" + }, + { + "id": "daige", + "symbol": "daige", + "name": "Daige" + }, + { + "id": "daii", + "symbol": "daii", + "name": "DAII" + }, + { + "id": "daily-finance", + "symbol": "dly", + "name": "Daily Finance" + }, + { + "id": "dailyfish", + "symbol": "dfish", + "name": "DailyFish" + }, + { + "id": "dailygoat-com", + "symbol": "dgc", + "name": "DailyGoat.com" + }, + { + "id": "dai-on-pulsechain", + "symbol": "dai", + "name": "DAI on PulseChain" + }, + { + "id": "dai-pulsechain", + "symbol": "dai", + "name": "Bridged DAI (PulseChain)" + }, + { + "id": "dai-reflections", + "symbol": "drs", + "name": "DAI Reflections" + }, + { + "id": "d-a-i-wo", + "symbol": "daiwo", + "name": "D.A.I.Wo" + }, + { + "id": "dak", + "symbol": "dak", + "name": "dak" + }, + { + "id": "daku-v2", + "symbol": "daku", + "name": "Daku V2" + }, + { + "id": "dalgo", + "symbol": "dalgo", + "name": "DALGO" + }, + { + "id": "dall-doginals", + "symbol": "dall", + "name": "Dall (DRC-20)" + }, + { + "id": "dam", + "symbol": "dam", + "name": "DAM" + }, + { + "id": "dam-it", + "symbol": "$dammit", + "name": "DAM IT" + }, + { + "id": "damoon", + "symbol": "damoon", + "name": "Damoon" + }, + { + "id": "dan", + "symbol": "dan", + "name": "DAN" + }, + { + "id": "danaher-xstock", + "symbol": "dhrx", + "name": "Danaher xStock" + }, + { + "id": "dance-memecoin", + "symbol": "dance", + "name": "DANCE MEMECOIN" + }, + { + "id": "dancing-baby", + "symbol": "baby", + "name": "Dancing Baby" + }, + { + "id": "dancing-triangle", + "symbol": "triangle", + "name": "dancing triangle" + }, + { + "id": "dancing-triangle-2", + "symbol": "triangle", + "name": "dancing triangle" + }, + { + "id": "danjuan-scroll-cat", + "symbol": "cat", + "name": "Danjuan Scroll Cat" + }, + { + "id": "dank", + "symbol": "dank", + "name": "Dank" + }, + { + "id": "dank-frog", + "symbol": "dank", + "name": "Dank Frog" + }, + { + "id": "dank-memes", + "symbol": "dank", + "name": "Dank Memes" + }, + { + "id": "dante", + "symbol": "dgpu", + "name": "Dante" + }, + { + "id": "dante-games", + "symbol": "dante", + "name": "Dante Games" + }, + { + "id": "danzo", + "symbol": "danzo", + "name": "Danzo" + }, + { + "id": "daobase", + "symbol": "bee", + "name": "DAOBase" + }, + { + "id": "daohaus", + "symbol": "haus", + "name": "DAOhaus" + }, + { + "id": "daolaunch", + "symbol": "dal", + "name": "DAOLaunch" + }, + { + "id": "daolity", + "symbol": "daolity", + "name": "Daolity" + }, + { + "id": "dao-maker", + "symbol": "dao", + "name": "DAO Maker" + }, + { + "id": "daosol", + "symbol": "daosol", + "name": "daoSOL" + }, + { + "id": "dao-space", + "symbol": "daop", + "name": "Dao Space" + }, + { + "id": "daosquare", + "symbol": "rice", + "name": "DAOSquare" + }, + { + "id": "daossui-token", + "symbol": "daos", + "name": "Daossui Token" + }, + { + "id": "daoversal", + "symbol": "daot", + "name": "Daoversal" + }, + { + "id": "dapp", + "symbol": "dapp", + "name": "LiquidApps" + }, + { + "id": "dapper-doggo-s", + "symbol": "doggo", + "name": "Dapper Doggo's" + }, + { + "id": "dappradar", + "symbol": "radar", + "name": "DappRadar" + }, + { + "id": "dapyai", + "symbol": "$dapy", + "name": "DapyAI" + }, + { + "id": "daram", + "symbol": "daram", + "name": "Daram" + }, + { + "id": "darcmatter-coin", + "symbol": "darc", + "name": "Konstellation" + }, + { + "id": "dark", + "symbol": "dark", + "name": "DARK" + }, + { + "id": "dark-3", + "symbol": "dark", + "name": "DARK" + }, + { + "id": "darkani-grok-companion", + "symbol": "darkani", + "name": "DarkAni Grok Companion" + }, + { + "id": "dark-aura", + "symbol": "shadow", + "name": "dark aura" + }, + { + "id": "darkbet", + "symbol": "darkbet", + "name": "Darkbet" + }, + { + "id": "dark-cheems", + "symbol": "totakeke", + "name": "Dark Cheems" + }, + { + "id": "darkcrypto", + "symbol": "dark", + "name": "DarkCrypto" + }, + { + "id": "darkcrypto-share", + "symbol": "sky", + "name": "DarkCrypto Share" + }, + { + "id": "dark-eclipse", + "symbol": "dark", + "name": "Dark Eclipse" + }, + { + "id": "dark-energy-crystals", + "symbol": "dec", + "name": "Dark Energy Crystals" + }, + { + "id": "dark-frontiers", + "symbol": "dark", + "name": "Dark Frontiers" + }, + { + "id": "dark-maga", + "symbol": "dmaga", + "name": "Dark MAGA" + }, + { + "id": "dark-maga-2", + "symbol": "dmaga", + "name": "dark maga" + }, + { + "id": "dark-magician-girl", + "symbol": "dmg", + "name": "Dark Magician Girl" + }, + { + "id": "darkmatter", + "symbol": "dmt", + "name": "DarkMatter" + }, + { + "id": "dark-matter", + "symbol": "dmt", + "name": "Dark Matter" + }, + { + "id": "darkmatter-2", + "symbol": "dark", + "name": "DarkMatter" + }, + { + "id": "dark-money", + "symbol": "dusd", + "name": "dark money" + }, + { + "id": "darkpino", + "symbol": "dpino", + "name": "DarkPino" + }, + { + "id": "dark-protocol", + "symbol": "dark", + "name": "Dark Protocol" + }, + { + "id": "darkshield", + "symbol": "dks", + "name": "DarkShield" + }, + { + "id": "darkstar", + "symbol": "darkstar", + "name": "DarkStar" + }, + { + "id": "darksun", + "symbol": "binary", + "name": "darksun" + }, + { + "id": "dar-open-network", + "symbol": "d", + "name": "Dar Open Network" + }, + { + "id": "daruma-2", + "symbol": "d", + "name": "DARUMA" + }, + { + "id": "darwin", + "symbol": "darwin", + "name": "Darwin" + }, + { + "id": "darwinia-commitment-token", + "symbol": "kton", + "name": "Darwinia Commitment" + }, + { + "id": "darwinia-network-native-token", + "symbol": "ring", + "name": "RingDAO" + }, + { + "id": "darwinia-network-xring", + "symbol": "xring", + "name": "Darwinia Network xRING" + }, + { + "id": "dash", + "symbol": "dash", + "name": "Dash" + }, + { + "id": "dash-2", + "symbol": "dash", + "name": "DASH" + }, + { + "id": "dash-2-trade", + "symbol": "d2t", + "name": "Dash 2 Trade" + }, + { + "id": "dasha", + "symbol": "vvaifu", + "name": "Dasha" + }, + { + "id": "dash-diamond", + "symbol": "dashd", + "name": "Dash Diamond" + }, + { + "id": "dashfun-coin", + "symbol": "dfun", + "name": "DashFun Coin" + }, + { + "id": "dastra-network", + "symbol": "dan", + "name": "Dastra Network" + }, + { + "id": "data-ai", + "symbol": "data", + "name": "Data Ai" + }, + { + "id": "data-bot", + "symbol": "data", + "name": "Databot" + }, + { + "id": "databricks-ai", + "symbol": "dbrx", + "name": "Databricks AI" + }, + { + "id": "databroker-dao", + "symbol": "dtx", + "name": "DaTa eXchange DTX" + }, + { + "id": "datagold", + "symbol": "dgold", + "name": "DataGold" + }, + { + "id": "datai", + "symbol": "datai", + "name": "Datai" + }, + { + "id": "data-lake", + "symbol": "lake", + "name": "Data Lake" + }, + { + "id": "datamind", + "symbol": "dmind", + "name": "DataMind" + }, + { + "id": "datamine", + "symbol": "dam", + "name": "Datamine" + }, + { + "id": "data-ownership-protocol", + "symbol": "dop", + "name": "Data Ownership Protocol [OLD]" + }, + { + "id": "data-ownership-protocol-2", + "symbol": "dop2", + "name": "Data Ownership Protocol 2" + }, + { + "id": "dataport-navigator-by-virtuals", + "symbol": "port", + "name": "DataPort Navigator by Virtuals" + }, + { + "id": "data-universe", + "symbol": "sn13", + "name": "Data Universe" + }, + { + "id": "datawitch", + "symbol": "datawitch", + "name": "Datawitch" + }, + { + "id": "dat-boi", + "symbol": "waddup", + "name": "Dat Boi" + }, + { + "id": "dat-boi-2", + "symbol": "datboi", + "name": "Dat Boi" + }, + { + "id": "daumenfrosch", + "symbol": "daumen", + "name": "Daumenfrosch" + }, + { + "id": "daumenfrosch-2", + "symbol": "daumen", + "name": "daumenfrosch" + }, + { + "id": "dave-coin", + "symbol": "$dave", + "name": "Dave Coin" + }, + { + "id": "davidcoin", + "symbol": "dc", + "name": "DavidCoin" + }, + { + "id": "davinci", + "symbol": "wtf", + "name": "DaVinci" + }, + { + "id": "davincigraph", + "symbol": "davinci", + "name": "Davincigraph" + }, + { + "id": "davinci-jeremie", + "symbol": "dvinci", + "name": "Davinci Jeremie" + }, + { + "id": "davos-protocol", + "symbol": "dusd", + "name": "Davos.xyz USD" + }, + { + "id": "davos-protocol-staked-dusd", + "symbol": "sdusd", + "name": "Davos Protocol Staked DUSD" + }, + { + "id": "dawae-2", + "symbol": "dawae", + "name": "Dawae" + }, + { + "id": "dawae-3", + "symbol": "dawae", + "name": "DaWae" + }, + { + "id": "dawg-2", + "symbol": "dawg", + "name": "dawg" + }, + { + "id": "dawg-coin", + "symbol": "dawg", + "name": "Dawg Coin" + }, + { + "id": "dawg-world", + "symbol": "dawg", + "name": "Dawg World" + }, + { + "id": "dawkoin", + "symbol": "daw", + "name": "Dawkoins" + }, + { + "id": "dawn", + "symbol": "dawn", + "name": "Dawn" + }, + { + "id": "day-by-day", + "symbol": "dbd", + "name": "Day By Day" + }, + { + "id": "daydreams", + "symbol": "dreams", + "name": "Daydreams" + }, + { + "id": "dayhyb", + "symbol": "day", + "name": "Dayhub" + }, + { + "id": "daylight-protocol", + "symbol": "dayl", + "name": "Daylight Protocol" + }, + { + "id": "daytona-finance", + "symbol": "toni", + "name": "Daytona Finance" + }, + { + "id": "dbx-2", + "symbol": "dbx", + "name": "DBX" + }, + { + "id": "dbxen", + "symbol": "dxn", + "name": "DBXen" + }, + { + "id": "dca420-meme-index", + "symbol": "dca", + "name": "DCA420 Meme Index" + }, + { + "id": "dcai", + "symbol": "dcai", + "name": "DCAI" + }, + { + "id": "dchef", + "symbol": "dchefsol", + "name": "DChef" + }, + { + "id": "dcntrl-network", + "symbol": "dcnx", + "name": "DCNTRL Network" + }, + { + "id": "dcomy", + "symbol": "dco", + "name": "DCOMY" + }, + { + "id": "dct", + "symbol": "dct", + "name": "DCT" + }, + { + "id": "dead-butt-society", + "symbol": "dbs", + "name": "Dead Butt Society" + }, + { + "id": "dealr-fun", + "symbol": "dealr", + "name": "Dealr.fun" + }, + { + "id": "dean-s-list", + "symbol": "island", + "name": "IslandDAO" + }, + { + "id": "deapcoin", + "symbol": "dep", + "name": "DEAPCOIN" + }, + { + "id": "dear-algorithm", + "symbol": "algo", + "name": "Dear Algorithm" + }, + { + "id": "dearbook", + "symbol": "dearbook", + "name": "DearBook.AI" + }, + { + "id": "dear-token", + "symbol": "dear", + "name": "DEAR Token" + }, + { + "id": "debox", + "symbol": "box", + "name": "DeBox" + }, + { + "id": "debridge", + "symbol": "dbr", + "name": "deBridge" + }, + { + "id": "debtcoin", + "symbol": "debt", + "name": "DebtCoin" + }, + { + "id": "debtcoin-2", + "symbol": "dbt", + "name": "Debtcoin" + }, + { + "id": "debtreliefbot", + "symbol": "drb", + "name": "DebtReliefBot" + }, + { + "id": "debut", + "symbol": "debut", + "name": "Debut" + }, + { + "id": "decapitaltoken", + "symbol": "dct", + "name": "decapitaltoken" + }, + { + "id": "decats", + "symbol": "decats", + "name": "DeCats" + }, + { + "id": "decenter-ai", + "symbol": "deai", + "name": "DeCenter AI" + }, + { + "id": "decentr", + "symbol": "dec", + "name": "Decentr" + }, + { + "id": "decentrabnb", + "symbol": "dbnb", + "name": "DecentraBNB" + }, + { + "id": "decentracloud", + "symbol": "dcloud", + "name": "DecentraCloud" + }, + { + "id": "decentraland", + "symbol": "mana", + "name": "Decentraland" + }, + { + "id": "decentraland-wormhole", + "symbol": "mana", + "name": "Decentraland (Wormhole)" + }, + { + "id": "decentral-games", + "symbol": "dg", + "name": "Decentral Games" + }, + { + "id": "decentral-games-ice", + "symbol": "ice", + "name": "Decentral Games ICE" + }, + { + "id": "decentral-games-old", + "symbol": "dg", + "name": "Decentral Games (Old)" + }, + { + "id": "decentralgpt", + "symbol": "dgc", + "name": "DecentralGPT" + }, + { + "id": "decentralization-obligatory-practicality-essential", + "symbol": "dope", + "name": "Decentralization obligatory, practicality essential" + }, + { + "id": "decentralized-ai-organization", + "symbol": "daio", + "name": "Decentralized AI Organization" + }, + { + "id": "decentralized-community-investment-protocol", + "symbol": "dcip", + "name": "Decentralized Community Investment Protocol" + }, + { + "id": "decentralized-etf", + "symbol": "detf", + "name": "Decentralized ETF" + }, + { + "id": "decentralized-euro", + "symbol": "deuro", + "name": "Decentralized Euro" + }, + { + "id": "decentralized-gaming-network", + "symbol": "dgn", + "name": "Decentralized Gaming Network" + }, + { + "id": "decentralized-mining-exchange", + "symbol": "dmc", + "name": "Decentralized Mining Exchange" + }, + { + "id": "decentralized-music-chain", + "symbol": "dmcc", + "name": "Decentralized Music Chain" + }, + { + "id": "decentralized-runes", + "symbol": "dec", + "name": "DECENTRALIZED (Runes)" + }, + { + "id": "decentralized-universal-basic-income", + "symbol": "dubi", + "name": "Decentralized Universal Basic Income" + }, + { + "id": "decentralized-usd", + "symbol": "dusd", + "name": "Decentralized USD" + }, + { + "id": "decentralized-validator-token", + "symbol": "dvsteth", + "name": "Decentralized Validator Token" + }, + { + "id": "decentral-mining-protocol", + "symbol": "dmp", + "name": "Decentral Mining Protocol" + }, + { + "id": "decentramind", + "symbol": "dmind", + "name": "DecentraMind" + }, + { + "id": "decentraweb", + "symbol": "dweb", + "name": "DecentraWeb" + }, + { + "id": "decentrawood", + "symbol": "deod", + "name": "Decentrawood" + }, + { + "id": "decetralized-minting-atomicals", + "symbol": "dmint", + "name": "Decentralized Minting" + }, + { + "id": "decetranode", + "symbol": "dnode", + "name": "DecentraNode" + }, + { + "id": "dechat", + "symbol": "dechat", + "name": "Dechat" + }, + { + "id": "decimated", + "symbol": "dio", + "name": "Decimated" + }, + { + "id": "decloud", + "symbol": "cloud", + "name": "DeCloud" + }, + { + "id": "decred", + "symbol": "dcr", + "name": "Decred" + }, + { + "id": "decrypting", + "symbol": "dcrypt", + "name": "Decrypting" + }, + { + "id": "dec-token", + "symbol": "dect", + "name": "DEC Token" + }, + { + "id": "decubate", + "symbol": "dcb", + "name": "Decubate" + }, + { + "id": "dede-on-sol", + "symbol": "dede", + "name": "Dede on SOL" + }, + { + "id": "dedium", + "symbol": "dedi", + "name": "Dedium" + }, + { + "id": "deebo-the-bear", + "symbol": "deebo", + "name": "Deebo the Bear" + }, + { + "id": "deep", + "symbol": "deep", + "name": "DeepBook" + }, + { + "id": "deep-agents", + "symbol": "deep", + "name": "Deep Agents" + }, + { + "id": "deep-ai", + "symbol": "deepai", + "name": "Deep AI" + }, + { + "id": "deepbook", + "symbol": "adb", + "name": "DeepBook" + }, + { + "id": "deepbrain-chain", + "symbol": "dbc", + "name": "DeepBrain Chain" + }, + { + "id": "deepcore-ai", + "symbol": "dpcore", + "name": "DeepCore AI" + }, + { + "id": "deeper-network", + "symbol": "dpr", + "name": "Deeper Network" + }, + { + "id": "deepfakeai", + "symbol": "fakeai", + "name": "DeepFakeAI" + }, + { + "id": "deep-fried-memes", + "symbol": "fried", + "name": "Deep Fried Memes" + }, + { + "id": "deep-fucking-value-2", + "symbol": "dfv", + "name": "DFV" + }, + { + "id": "deeplink-protocol", + "symbol": "dlc", + "name": "DeepLink Protocol" + }, + { + "id": "deeployer", + "symbol": "deep", + "name": "Deeployer" + }, + { + "id": "deepr", + "symbol": "deepr", + "name": "DEEPR" + }, + { + "id": "deepr-fun", + "symbol": "deepr", + "name": "Deepr.fun" + }, + { + "id": "deepsouth-ai", + "symbol": "south", + "name": "DeepSouth AI" + }, + { + "id": "deepspace", + "symbol": "dps", + "name": "DEEPSPACE" + }, + { + "id": "deeptics", + "symbol": "dptx", + "name": "DEEPTICS" + }, + { + "id": "deeptrail", + "symbol": "dptl", + "name": "Deeptrail" + }, + { + "id": "deep-whales-ai", + "symbol": "deepai", + "name": "Deep Whales AI" + }, + { + "id": "deep-worm", + "symbol": "worm", + "name": "Deep Worm" + }, + { + "id": "deerman", + "symbol": "deerman", + "name": "deerman" + }, + { + "id": "deer-seized-by-us-government", + "symbol": "baby", + "name": "Deer Seized by US Government" + }, + { + "id": "deer-token", + "symbol": "deer", + "name": "DEER TOKEN" + }, + { + "id": "deez-nuts-sol", + "symbol": "nuts", + "name": "Deez Nuts" + }, + { + "id": "def1", + "symbol": "def1", + "name": "DEF1" + }, + { + "id": "defactor", + "symbol": "real", + "name": "Defactor" + }, + { + "id": "defai", + "symbol": "defai", + "name": "DeFAI" + }, + { + "id": "defai-2", + "symbol": "defai", + "name": "DEFAI" + }, + { + "id": "defender-bot", + "symbol": "dfndr", + "name": "Defender Bot" + }, + { + "id": "de-fi", + "symbol": "defi", + "name": "DeFi" + }, + { + "id": "defi-agents-ai", + "symbol": "defai", + "name": "DeFi Agents AI" + }, + { + "id": "defiant-2", + "symbol": "defiant", + "name": "Defiant" + }, + { + "id": "defiato", + "symbol": "dfiat", + "name": "DeFiato" + }, + { + "id": "defibox-bram", + "symbol": "bram", + "name": "Defibox bRAM" + }, + { + "id": "defi-cattos", + "symbol": "cattos", + "name": "Defi Cattos" + }, + { + "id": "defichain", + "symbol": "dfi", + "name": "DeFiChain" + }, + { + "id": "deficonnect-v2", + "symbol": "dfc", + "name": "DefiConnect V2" + }, + { + "id": "defidash", + "symbol": "defidash", + "name": "Defidash" + }, + { + "id": "defido", + "symbol": "defido", + "name": "DeFido" + }, + { + "id": "defi-dollar", + "symbol": "usdfi", + "name": "DeFi Dollar" + }, + { + "id": "defi-for-you", + "symbol": "dfy", + "name": "Defi For You" + }, + { + "id": "defigeek-community-japan", + "symbol": "txjp", + "name": "DeFiGeek Community Japan" + }, + { + "id": "defigram", + "symbol": "dfg", + "name": "Defigram" + }, + { + "id": "defi-growth-index", + "symbol": "dgi", + "name": "DeFi Growth Index" + }, + { + "id": "defi-hunters-dao", + "symbol": "ddao", + "name": "DDAO Hunters" + }, + { + "id": "defi-ira", + "symbol": "ira", + "name": "Defi-Ira" + }, + { + "id": "defi-kingdoms", + "symbol": "jewel", + "name": "DeFi Kingdoms" + }, + { + "id": "defi-kingdoms-crystal", + "symbol": "crystal", + "name": "DeFi Kingdoms Crystal" + }, + { + "id": "defi-land", + "symbol": "dfl", + "name": "DeFi Land" + }, + { + "id": "defi-land-gold", + "symbol": "goldy", + "name": "DeFi Land Gold" + }, + { + "id": "defi-money", + "symbol": "money", + "name": "Defi.money" + }, + { + "id": "defina-finance", + "symbol": "fina", + "name": "Defina Finance" + }, + { + "id": "definder-capital", + "symbol": "dfc", + "name": "DeFinder Capital" + }, + { + "id": "define", + "symbol": "dfa", + "name": "DeFine" + }, + { + "id": "definer", + "symbol": "fin", + "name": "DeFiner" + }, + { + "id": "definitely-a-cat", + "symbol": "$cat", + "name": "definitely a cat" + }, + { + "id": "definitive", + "symbol": "edge", + "name": "Definitive" + }, + { + "id": "definity", + "symbol": "defx", + "name": "DeFinity" + }, + { + "id": "defino-base", + "symbol": "defido", + "name": "DeFido" + }, + { + "id": "defiplaza", + "symbol": "dfp2", + "name": "DefiPlaza" + }, + { + "id": "defi-pool-share", + "symbol": "dpst", + "name": "DeFi Pool Share" + }, + { + "id": "defipulse-index", + "symbol": "dpi", + "name": "DeFi Pulse Index" + }, + { + "id": "defi-robot", + "symbol": "drbt", + "name": "DeFi-Robot" + }, + { + "id": "defi-shopping-stake", + "symbol": "dss", + "name": "Defi Shopping Stake" + }, + { + "id": "defispot", + "symbol": "spot", + "name": "Defispot" + }, + { + "id": "defi-ssi", + "symbol": "defi.ssi", + "name": "DEFI.ssi" + }, + { + "id": "defit", + "symbol": "defit", + "name": "Digital Fitness" + }, + { + "id": "defi-tiger", + "symbol": "dtg", + "name": "Defi Tiger" + }, + { + "id": "defituna", + "symbol": "tuna", + "name": "DefiTuna" + }, + { + "id": "defive", + "symbol": "five", + "name": "DeFive" + }, + { + "id": "defi-warrior", + "symbol": "fiwa", + "name": "Defi Warrior" + }, + { + "id": "defiway", + "symbol": "defi", + "name": "Defiway" + }, + { + "id": "defi-yield-protocol", + "symbol": "dyp", + "name": "Dypius [OLD]" + }, + { + "id": "deflationary-usd", + "symbol": "dusd", + "name": "Deflationary USD" + }, + { + "id": "defly", + "symbol": "defly", + "name": "Defly" + }, + { + "id": "defrogs", + "symbol": "defrogs", + "name": "DeFrogs" + }, + { + "id": "defusion", + "symbol": "def", + "name": "deFusion" + }, + { + "id": "dega-2", + "symbol": "dega", + "name": "DEGA" + }, + { + "id": "degate", + "symbol": "dg", + "name": "DeGate" + }, + { + "id": "degecoin", + "symbol": "$dege", + "name": "DegeCoin" + }, + { + "id": "degen-3", + "symbol": "dgn", + "name": "Degen" + }, + { + "id": "degenads", + "symbol": "degen", + "name": "DegenAds" + }, + { + "id": "degen-ai", + "symbol": "dgenai", + "name": "Degen AI by Virtuals" + }, + { + "id": "degen-arena", + "symbol": "degen", + "name": "Degen Arena" + }, + { + "id": "degen-base", + "symbol": "degen", + "name": "Degen" + }, + { + "id": "degen-capital-by-virtuals", + "symbol": "degenc", + "name": "Degen Capital by Virtuals" + }, + { + "id": "degen-danny", + "symbol": "danny", + "name": "Degen Danny" + }, + { + "id": "degenerate", + "symbol": "degen", + "name": "Degenerate" + }, + { + "id": "degenerate-squid", + "symbol": "sqdgn", + "name": "Degenerate SQuiD" + }, + { + "id": "degenerative-sitcom", + "symbol": "$sitcom", + "name": "degenerative SITCOM" + }, + { + "id": "degenerator-project", + "symbol": "gnrt", + "name": "Degenerator Project" + }, + { + "id": "degen-eth-staked-eth", + "symbol": "dgneth", + "name": "Degen ETH Staked ETH" + }, + { + "id": "degen-express", + "symbol": "degex", + "name": "Degen Express" + }, + { + "id": "degen-hours", + "symbol": "sleep", + "name": "Degen Hours" + }, + { + "id": "degen-knightsofdegen", + "symbol": "dgen", + "name": "DGEN" + }, + { + "id": "degenos", + "symbol": "degenos", + "name": "degenOS" + }, + { + "id": "degenpad", + "symbol": "dpad", + "name": "DegenPad" + }, + { + "id": "degen-perp-dex", + "symbol": "pdgn", + "name": "Degen Perp Dex" + }, + { + "id": "degenping", + "symbol": "degenping", + "name": "degenping" + }, + { + "id": "degen-pov-2", + "symbol": "pov", + "name": "Degen POV" + }, + { + "id": "degen-social-media", + "symbol": "degen", + "name": "Degen Social Media" + }, + { + "id": "degen-spartan-ai", + "symbol": "degenai", + "name": "Degen Spartan AI" + }, + { + "id": "degenstogether", + "symbol": "degen", + "name": "DegensTogether" + }, + { + "id": "degenswap", + "symbol": "dswap", + "name": "DegenSwap" + }, + { + "id": "degens-with-attitude", + "symbol": "dwa", + "name": "Degens With Attitude" + }, + { + "id": "degent", + "symbol": "degent", + "name": "Degent" + }, + { + "id": "degen-the-otter", + "symbol": "degen", + "name": "degen the otter" + }, + { + "id": "degen-the-otter-2", + "symbol": "dgen", + "name": "Degen The Otter" + }, + { + "id": "degen-the-otter-3", + "symbol": "degen", + "name": "Degen the Otter" + }, + { + "id": "degen-usdc", + "symbol": "degenusdc", + "name": "Degen USDC" + }, + { + "id": "degenx-ethereum", + "symbol": "dgnx", + "name": "DegenX (Ethereum)" + }, + { + "id": "degen-zoo", + "symbol": "dzoo", + "name": "Degen Zoo" + }, + { + "id": "degod", + "symbol": "degod", + "name": "degod" + }, + { + "id": "dego-finance", + "symbol": "dego", + "name": "Dego Finance" + }, + { + "id": "degpt", + "symbol": "degpt", + "name": "deGPT" + }, + { + "id": "degree-crypto-token", + "symbol": "dct", + "name": "Degree Crypto" + }, + { + "id": "degwefhat", + "symbol": "wef", + "name": "degwefhat" + }, + { + "id": "dehero-community-token", + "symbol": "heroes", + "name": "Dehero Community" + }, + { + "id": "dehive", + "symbol": "dhv", + "name": "DeHive" + }, + { + "id": "dehub", + "symbol": "dhb", + "name": "DeHub" + }, + { + "id": "dejitaru-hoshi", + "symbol": "hoshi", + "name": "Dejitaru Hoshi" + }, + { + "id": "dejitaru-shirudo", + "symbol": "shield", + "name": "Dejitaru Shirudo" + }, + { + "id": "dejitaru-tsuka", + "symbol": "tsuka", + "name": "Dejitaru Tsuka" + }, + { + "id": "dekbox", + "symbol": "dek", + "name": "DekBox" + }, + { + "id": "dekopon", + "symbol": "dekopon", + "name": "Dekopon" + }, + { + "id": "delabs-games", + "symbol": "delabs", + "name": "Delabs Games" + }, + { + "id": "delay", + "symbol": "delay", + "name": "DELAY" + }, + { + "id": "delegate-fun", + "symbol": "del", + "name": "delegate.fun" + }, + { + "id": "deli-fm", + "symbol": "delifm", + "name": "DELI FM" + }, + { + "id": "delnorte-club-token", + "symbol": "dtvc", + "name": "DelNorte Club Token" + }, + { + "id": "delorean", + "symbol": "dmc", + "name": "DeLorean" + }, + { + "id": "delphibets", + "symbol": "dph", + "name": "DELPHIBETS" + }, + { + "id": "delphinus-lab", + "symbol": "zkwasm", + "name": "ZKWASM" + }, + { + "id": "delphy", + "symbol": "dpy", + "name": "Delphy" + }, + { + "id": "delrey-inu", + "symbol": "delrey", + "name": "Delrey Inu" + }, + { + "id": "delta-decentralized", + "symbol": "dlt", + "name": "Delta Decentralized" + }, + { + "id": "delta-exchange-token", + "symbol": "deto", + "name": "Delta Exchange" + }, + { + "id": "delta-financial", + "symbol": "delta", + "name": "Delta Financial" + }, + { + "id": "delusional-coin", + "symbol": "delulu", + "name": "Delusional Coin" + }, + { + "id": "delysium", + "symbol": "agi", + "name": "Delysium" + }, + { + "id": "demi", + "symbol": "demi", + "name": "DeMi" + }, + { + "id": "demole", + "symbol": "dmlg", + "name": "Demole" + }, + { + "id": "demx", + "symbol": "demx", + "name": "DemX" + }, + { + "id": "denchcoin", + "symbol": "dench", + "name": "DENCHCOIN" + }, + { + "id": "dent", + "symbol": "dent", + "name": "Dent" + }, + { + "id": "dentacoin", + "symbol": "dcn", + "name": "Dentacoin" + }, + { + "id": "deotc", + "symbol": "dotc", + "name": "deOTC" + }, + { + "id": "department-of-gains-coin", + "symbol": "d.o.g.c", + "name": "Department Of Gains Coin" + }, + { + "id": "department-of-gov-efficiency", + "symbol": "doge", + "name": "Department of Gov Efficiency" + }, + { + "id": "department-of-government-efficiency", + "symbol": "doge", + "name": "Department Of Government Efficiency" + }, + { + "id": "department-of-government-efficiency-2", + "symbol": "doge", + "name": "Department Of Government Efficiency" + }, + { + "id": "department-of-government-efficiency-3", + "symbol": "d.o.g.e", + "name": "Department Of Government Efficiency" + }, + { + "id": "department-of-government-efficiency-4", + "symbol": "doge", + "name": "Department Of Government Efficiency" + }, + { + "id": "department-of-government-efficiency-5", + "symbol": "d.o.g.e", + "name": "Department Of Government Efficiency" + }, + { + "id": "department-of-propaganda-everywhere", + "symbol": "dope", + "name": "Department Of Propaganda Everywhere" + }, + { + "id": "depay", + "symbol": "depay", + "name": "DePay" + }, + { + "id": "depeng", + "symbol": "dpng", + "name": "DePeng" + }, + { + "id": "dephaser-jpy", + "symbol": "jpyt", + "name": "Dephaser JPY" + }, + { + "id": "dephyneai", + "symbol": "dphyai", + "name": "DePhyneAI" + }, + { + "id": "dephy-network", + "symbol": "phy", + "name": "DePHY Network" + }, + { + "id": "depin", + "symbol": "depin", + "name": "DEPIN" + }, + { + "id": "depin-baby", + "symbol": "depin", + "name": "DePIN Baby" + }, + { + "id": "depinet", + "symbol": "depin", + "name": "Depinet" + }, + { + "id": "depins", + "symbol": "depins", + "name": "DePINs" + }, + { + "id": "depintech", + "symbol": "depin", + "name": "Depintech" + }, + { + "id": "deplan", + "symbol": "dpln", + "name": "DePlan" + }, + { + "id": "deploy", + "symbol": "deploy", + "name": "Deploy" + }, + { + "id": "deployyyyer", + "symbol": "deploy", + "name": "Deployyyyer" + }, + { + "id": "depot", + "symbol": "depot", + "name": "Depot App" + }, + { + "id": "deputy-dawgs", + "symbol": "ddawgs", + "name": "Deputy Dawgs" + }, + { + "id": "derace", + "symbol": "zerc", + "name": "zkRace" + }, + { + "id": "der-daku", + "symbol": "daku", + "name": "Daku" + }, + { + "id": "deri-protocol", + "symbol": "deri", + "name": "Deri Protocol" + }, + { + "id": "derivadao", + "symbol": "ddx", + "name": "DerivaDAO" + }, + { + "id": "derive", + "symbol": "drv", + "name": "Derive" + }, + { + "id": "dero", + "symbol": "dero", + "name": "Dero" + }, + { + "id": "derp-2", + "symbol": "derp", + "name": "Derp" + }, + { + "id": "derp-3", + "symbol": "derp", + "name": "DERP" + }, + { + "id": "derp-4", + "symbol": "derp", + "name": "DERP" + }, + { + "id": "derp-coin", + "symbol": "derp", + "name": "Derp Coin" + }, + { + "id": "derpman", + "symbol": "derp", + "name": "DERPMAN" + }, + { + "id": "derpy", + "symbol": "derpy", + "name": "Derpy" + }, + { + "id": "descipher-fund", + "symbol": "desci", + "name": "Descipher Fund" + }, + { + "id": "desearch", + "symbol": "sn22", + "name": "Desearch" + }, + { + "id": "desend-ai", + "symbol": "dsai", + "name": "DeSend Ai" + }, + { + "id": "desk", + "symbol": "desk", + "name": "DESK" + }, + { + "id": "desmos", + "symbol": "dsm", + "name": "Desmos" + }, + { + "id": "deso", + "symbol": "deso", + "name": "Decentralized Social" + }, + { + "id": "dessalinesai-by-virtuals", + "symbol": "dessai", + "name": "DessalinesAI by Virtuals" + }, + { + "id": "dessistant", + "symbol": "dess", + "name": "Dessistant by Virtuals" + }, + { + "id": "destable-coin", + "symbol": "destable", + "name": "destable coin" + }, + { + "id": "destiny-world", + "symbol": "deco", + "name": "Destiny World" + }, + { + "id": "destra-network", + "symbol": "dsync", + "name": "Destra Network" + }, + { + "id": "desu", + "symbol": "desu", + "name": "DESU" + }, + { + "id": "desy-duk", + "symbol": "desy", + "name": "Desy Duk" + }, + { + "id": "detensor", + "symbol": "detensor", + "name": "DeTensor" + }, + { + "id": "deus-2", + "symbol": "deus", + "name": "DEUS" + }, + { + "id": "deus-finance-2", + "symbol": "deus", + "name": "DEUS Finance" + }, + { + "id": "deutsche-emark", + "symbol": "dem", + "name": "Deutsche eMark" + }, + { + "id": "deutsche-mark", + "symbol": "ddm", + "name": "Deutsche Mark" + }, + { + "id": "dev-ai", + "symbol": "devai", + "name": "DEV AI" + }, + { + "id": "developer-camp", + "symbol": "developer", + "name": "Developer Camp" + }, + { + "id": "devikins", + "symbol": "dvk", + "name": "Devikins" + }, + { + "id": "devin-on-solana", + "symbol": "devin", + "name": "Devin" + }, + { + "id": "devoid", + "symbol": "dvd", + "name": "DeVoid" + }, + { + "id": "devomon", + "symbol": "evo", + "name": "Devomon" + }, + { + "id": "devour-2", + "symbol": "fuelx", + "name": "Fuel" + }, + { + "id": "dev-protocol", + "symbol": "dev", + "name": "Dev Protocol" + }, + { + "id": "devs-are-working", + "symbol": "daw", + "name": "Devs are working" + }, + { + "id": "dev-smashed-his-keyboard", + "symbol": "hixokdkekjcjdksicndnaiaihsbznnxnxnduje", + "name": "DEV SMASHED HIS KEYBOARD" + }, + { + "id": "devve", + "symbol": "devve", + "name": "DevvE" + }, + { + "id": "devvio", + "symbol": "devve", + "name": "Devvio" + }, + { + "id": "dew-2", + "symbol": "dew", + "name": "DEW" + }, + { + "id": "dewa-go", + "symbol": "dewa", + "name": "DEWA GO" + }, + { + "id": "dewn", + "symbol": "dewn", + "name": "Dewn" + }, + { + "id": "dewy", + "symbol": "dewy", + "name": "DEWY" + }, + { + "id": "dexa-coin", + "symbol": "dexa", + "name": "DEXA COIN" + }, + { + "id": "dexai", + "symbol": "dexai", + "name": "DEXAI" + }, + { + "id": "dexalot", + "symbol": "alot", + "name": "Dexalot" + }, + { + "id": "dexbet", + "symbol": "dxb", + "name": "Dexbet" + }, + { + "id": "dexcheck", + "symbol": "dck", + "name": "DexCheck AI" + }, + { + "id": "dexe", + "symbol": "dexe", + "name": "DeXe" + }, + { + "id": "dexed", + "symbol": "dexed", + "name": "DEXED" + }, + { + "id": "dexfi-governance", + "symbol": "gdex", + "name": "DexFi Governance" + }, + { + "id": "dex-game", + "symbol": "dxgm", + "name": "DexGame" + }, + { + "id": "dexhunter", + "symbol": "hunt", + "name": "Dexhunter" + }, + { + "id": "dexie-bucks", + "symbol": "dbx", + "name": "dexie bucks" + }, + { + "id": "dexkit", + "symbol": "kit", + "name": "DexKit" + }, + { + "id": "dexlab", + "symbol": "dxl", + "name": "Dexlab [Old]" + }, + { + "id": "dexlab-3", + "symbol": "xlab", + "name": "Dexlab" + }, + { + "id": "dexlens", + "symbol": "dexl", + "name": "Dexlens" + }, + { + "id": "dex-message", + "symbol": "dex", + "name": "DEX Message" + }, + { + "id": "dexnet", + "symbol": "dexnet", + "name": "DexNet" + }, + { + "id": "dexquark", + "symbol": "qrk", + "name": "DexQuark" + }, + { + "id": "dexrp", + "symbol": "dxp", + "name": "DeXRP" + }, + { + "id": "dexshare", + "symbol": "dexshare", + "name": "dexSHARE" + }, + { + "id": "dexsport", + "symbol": "desu", + "name": "Dexsport" + }, + { + "id": "dexter-2", + "symbol": "dexter", + "name": "DEXTER" + }, + { + "id": "dexter-ai", + "symbol": "dexter", + "name": "Dexter AI" + }, + { + "id": "dextf", + "symbol": "dextf", + "name": "Memento" + }, + { + "id": "dextools", + "symbol": "dext", + "name": "DexTools" + }, + { + "id": "dextoro-2", + "symbol": "dtr", + "name": "dextoro" + }, + { + "id": "dex-trending-fund-6900", + "symbol": "dtf6900", + "name": "Dex Trending Fund 6900" + }, + { + "id": "dez", + "symbol": "dez", + "name": "$DEZ" + }, + { + "id": "dfdv-staked-sol", + "symbol": "dfdvsol", + "name": "DFDV Staked SOL" + }, + { + "id": "dfdv-xstock", + "symbol": "dfdvx", + "name": "DeFi Development Corp." + }, + { + "id": "dforce-token", + "symbol": "df", + "name": "dForce" + }, + { + "id": "dfs-mafia", + "symbol": "dfsm", + "name": "DFS Mafia V2" + }, + { + "id": "dfund", + "symbol": "dfnd", + "name": "dFund" + }, + { + "id": "dfx-finance", + "symbol": "dfx", + "name": "DFX Finance" + }, + { + "id": "dfyn-network", + "symbol": "dfyn", + "name": "Dfyn Network" + }, + { + "id": "dhabicoin", + "symbol": "dbc", + "name": "Dhabicoin" + }, + { + "id": "dhd-coin-2", + "symbol": "dhd", + "name": "DHD Coin" + }, + { + "id": "dhealth", + "symbol": "dhp", + "name": "dHealth" + }, + { + "id": "dhedge-dao", + "symbol": "dht", + "name": "dHEDGE DAO" + }, + { + "id": "dia-data", + "symbol": "dia", + "name": "DIA" + }, + { + "id": "dialectic-btc-vault", + "symbol": "dbit", + "name": "Dialectic BTC Vault" + }, + { + "id": "dialectic-eth-vault", + "symbol": "deth", + "name": "Dialectic ETH Vault" + }, + { + "id": "dialectic-usd-vault", + "symbol": "dusd", + "name": "Dialectic USD Vault" + }, + { + "id": "diam", + "symbol": "diam", + "name": "DIAM" + }, + { + "id": "diamond", + "symbol": "dmd", + "name": "Diamond" + }, + { + "id": "diamond-boyz-coin", + "symbol": "dbz", + "name": "Diamond Boyz Coin" + }, + { + "id": "diamond-hands-2", + "symbol": "dhands", + "name": "Diamond Hands" + }, + { + "id": "diamond-hands-3", + "symbol": "hodl", + "name": "Diamond Hands" + }, + { + "id": "diamond-inu", + "symbol": "diamond", + "name": "Diamond Inu" + }, + { + "id": "diamond-launch", + "symbol": "dlc", + "name": "Diverge Loop" + }, + { + "id": "diamondshell", + "symbol": "dshell", + "name": "DiamondShell" + }, + { + "id": "diamond-standard-carat", + "symbol": "carat", + "name": "Diamond Standard Carat" + }, + { + "id": "diamond-the-cat-coin", + "symbol": "dmtc", + "name": "DIAMOND The Cat Coin" + }, + { + "id": "diamond-token-2", + "symbol": "dit", + "name": "DIAMOND TOKEN 💎" + }, + { + "id": "dibs-share", + "symbol": "dshare", + "name": "Dibs Share" + }, + { + "id": "dice", + "symbol": "$dice", + "name": "DICE" + }, + { + "id": "dice-kingdom", + "symbol": "dk", + "name": "Dice Kingdom" + }, + { + "id": "dickbutt", + "symbol": "dickbutt", + "name": "Dickbutt" + }, + { + "id": "dicki", + "symbol": "$dicki", + "name": "dicki" + }, + { + "id": "dickstrategy", + "symbol": "dickstr", + "name": "DickStrategy" + }, + { + "id": "didi-bam-bam", + "symbol": "ddbam", + "name": "Didi Bam Bam" + }, + { + "id": "didi-duck", + "symbol": "didid", + "name": "Didi Duck" + }, + { + "id": "diem", + "symbol": "diem", + "name": "Diem" + }, + { + "id": "diemlibre", + "symbol": "dlb", + "name": "DiemLibre" + }, + { + "id": "die-protocol", + "symbol": "die", + "name": "Die Protocol" + }, + { + "id": "digg", + "symbol": "digg", + "name": "DIGG" + }, + { + "id": "digger-ai", + "symbol": "diggai", + "name": "DIGGER AI" + }, + { + "id": "digibyte", + "symbol": "dgb", + "name": "DigiByte" + }, + { + "id": "digicask-token", + "symbol": "dcask", + "name": "DigiCask Token" + }, + { + "id": "digichain-agent", + "symbol": "digi1", + "name": "Digichain Agent" + }, + { + "id": "digicoin", + "symbol": "digi", + "name": "Digicoin" + }, + { + "id": "digifinextoken", + "symbol": "dft", + "name": "DigiFinex" + }, + { + "id": "digihealth-2", + "symbol": "dgh", + "name": "DigiHealth" + }, + { + "id": "digimetaverse", + "symbol": "dgmv", + "name": "DigiMetaverse" + }, + { + "id": "digital-asset-treasury", + "symbol": "dat", + "name": "Digital ASSet Treasury" + }, + { + "id": "digital-bank-of-africa", + "symbol": "dba", + "name": "Digital Bank of Africa" + }, + { + "id": "digitalbits", + "symbol": "xdb", + "name": "XDB CHAIN" + }, + { + "id": "digitalcoin", + "symbol": "dgc", + "name": "Digitalcoin" + }, + { + "id": "digital-gold-2", + "symbol": "gold", + "name": "Digital Gold" + }, + { + "id": "digital-oil-memecoin", + "symbol": "oil", + "name": "Digital Oil Memecoin" + }, + { + "id": "digital-reserve-currency", + "symbol": "drc", + "name": "Digital Reserve Currency" + }, + { + "id": "digital-slop", + "symbol": "slop", + "name": "Digital Slop" + }, + { + "id": "digital-treazure", + "symbol": "z", + "name": "Digital TreaZure" + }, + { + "id": "digitex-futures-exchange", + "symbol": "dgtx", + "name": "Digitex" + }, + { + "id": "digits-dao", + "symbol": "digits", + "name": "Digits DAO" + }, + { + "id": "digiverse-2", + "symbol": "digi", + "name": "DIGIVERSE" + }, + { + "id": "dignity-gold-2", + "symbol": "digau", + "name": "Dignity Gold" + }, + { + "id": "dihcoin", + "symbol": "dih", + "name": "dihcoin" + }, + { + "id": "dill", + "symbol": "dl", + "name": "Dill" + }, + { + "id": "dilly", + "symbol": "dilly", + "name": "Dilly" + }, + { + "id": "dimecoin", + "symbol": "dime", + "name": "Dimecoin" + }, + { + "id": "dimes", + "symbol": "dime", + "name": "Dimes" + }, + { + "id": "dimitra", + "symbol": "dmtr", + "name": "Dimitra" + }, + { + "id": "dimo", + "symbol": "dimo", + "name": "DIMO" + }, + { + "id": "din", + "symbol": "din", + "name": "DIN" + }, + { + "id": "dinari-aapl-dshares", + "symbol": "aapl.d", + "name": "Dinari AAPL" + }, + { + "id": "dinari-adbe", + "symbol": "adbe.d", + "name": "Dinari ADBE" + }, + { + "id": "dinari-amc", + "symbol": "amc.d", + "name": "Dinari AMC" + }, + { + "id": "dinari-amd", + "symbol": "amd.d", + "name": "Dinari AMD" + }, + { + "id": "dinari-amzn-dshares", + "symbol": "amzn.d", + "name": "Dinari AMZN" + }, + { + "id": "dinari-arkb", + "symbol": "arkb.d", + "name": "Dinari ARKB" + }, + { + "id": "dinari-arkk", + "symbol": "arkk.d", + "name": "Dinari ARKK" + }, + { + "id": "dinari-arkx", + "symbol": "arkx.d", + "name": "Dinari ARKX" + }, + { + "id": "dinari-arm", + "symbol": "arm.d", + "name": "Dinari ARM" + }, + { + "id": "dinari-avgo", + "symbol": "avgo.d", + "name": "Dinari AVGO" + }, + { + "id": "dinari-azn", + "symbol": "azn.d", + "name": "Dinari AZN" + }, + { + "id": "dinari-ba", + "symbol": "ba.d", + "name": "Dinari BA" + }, + { + "id": "dinari-bac", + "symbol": "bac.d", + "name": "Dinari BAC" + }, + { + "id": "dinari-bitb", + "symbol": "bitb.d", + "name": "Dinari BITB" + }, + { + "id": "dinari-blk", + "symbol": "blk.d", + "name": "Dinari BLK" + }, + { + "id": "dinari-boxx", + "symbol": "boxx.d", + "name": "Dinari BOXX" + }, + { + "id": "dinari-brk-a-d", + "symbol": "brk.a.d", + "name": "Dinari BRK.A" + }, + { + "id": "dinari-brrr", + "symbol": "brrr.d", + "name": "Dinari BRRR" + }, + { + "id": "dinari-btco", + "symbol": "btco.d", + "name": "Dinari BTCO" + }, + { + "id": "dinari-btcw", + "symbol": "btcw.d", + "name": "Dinari BTCW" + }, + { + "id": "dinari-cat", + "symbol": "cat.d", + "name": "Dinari CAT" + }, + { + "id": "dinari-ccl", + "symbol": "ccl.d", + "name": "Dinari CCL" + }, + { + "id": "dinari-coin", + "symbol": "coin.d", + "name": "Dinari COIN" + }, + { + "id": "dinari-cost", + "symbol": "cost.d", + "name": "Dinari COST" + }, + { + "id": "dinari-csco", + "symbol": "csco.d", + "name": "Dinari CSCO" + }, + { + "id": "dinari-cvx", + "symbol": "cvx.d", + "name": "Dinari CVX" + }, + { + "id": "dinari-dal", + "symbol": "dal.d", + "name": "Dinari DAL" + }, + { + "id": "dinari-defi", + "symbol": "defi.d", + "name": "Dinari DEFI" + }, + { + "id": "dinari-dis-dshares", + "symbol": "dis.d", + "name": "Dinari DIS" + }, + { + "id": "dinari-eem", + "symbol": "eem.d", + "name": "Dinari EEM" + }, + { + "id": "dinari-ero", + "symbol": "ero.d", + "name": "Dinari ERO" + }, + { + "id": "dinari-ethe", + "symbol": "ethe.d", + "name": "Dinari ETHE" + }, + { + "id": "dinari-ezbc", + "symbol": "ezbc.d", + "name": "Dinari EZBC" + }, + { + "id": "dinari-f", + "symbol": "f.d", + "name": "Dinari F" + }, + { + "id": "dinari-fbtc", + "symbol": "fbtc.d", + "name": "Dinari FBTC" + }, + { + "id": "dinari-gbtc", + "symbol": "gbtc.d", + "name": "Dinari GBTC" + }, + { + "id": "dinari-gld", + "symbol": "gld.d", + "name": "Dinari GLD" + }, + { + "id": "dinari-gme", + "symbol": "gme.d", + "name": "Dinari GME" + }, + { + "id": "dinari-googl-dshares", + "symbol": "googl.d", + "name": "Dinari GOOGL" + }, + { + "id": "dinari-hodl", + "symbol": "hodl.d", + "name": "Dinari HODL" + }, + { + "id": "dinari-hood", + "symbol": "hood.d", + "name": "Dinari HOOD" + }, + { + "id": "dinari-hut", + "symbol": "hut.d", + "name": "Dinari HUT" + }, + { + "id": "dinari-hymb", + "symbol": "hymb.d", + "name": "Dinari HYMB" + }, + { + "id": "dinari-iau", + "symbol": "iau.d", + "name": "Dinari IAU" + }, + { + "id": "dinari-ibit", + "symbol": "ibit.d", + "name": "Dinari IBIT" + }, + { + "id": "dinari-ita", + "symbol": "ita.d", + "name": "Dinari ITA" + }, + { + "id": "dinari-jnj", + "symbol": "jnj.d", + "name": "Dinari JNJ" + }, + { + "id": "dinari-jpm", + "symbol": "jpm.d", + "name": "Dinari JPM" + }, + { + "id": "dinari-ko", + "symbol": "ko.d", + "name": "Dinari KO" + }, + { + "id": "dinari-lmt", + "symbol": "lmt.d", + "name": "Dinari LMT" + }, + { + "id": "dinari-mara", + "symbol": "mara.d", + "name": "Dinari MARA" + }, + { + "id": "dinari-mcd", + "symbol": "mcd.d", + "name": "Dinari MCD" + }, + { + "id": "dinari-meli", + "symbol": "meli.d", + "name": "Dinari MELI" + }, + { + "id": "dinari-meta-dshare", + "symbol": "meta.d", + "name": "Dinari META" + }, + { + "id": "dinari-msft-dshares", + "symbol": "msft.d", + "name": "Dinari MSFT" + }, + { + "id": "dinari-nflx-dshares", + "symbol": "nflx.d", + "name": "Dinari NFLX" + }, + { + "id": "dinari-nly", + "symbol": "nly.d", + "name": "Dinari NLY" + }, + { + "id": "dinari-nvda-dshares", + "symbol": "nvda.d", + "name": "Dinari NVDA" + }, + { + "id": "dinari-pall", + "symbol": "pall.d", + "name": "Dinari PALL" + }, + { + "id": "dinari-pfe-dshares", + "symbol": "pfe.d", + "name": "Dinari PFE" + }, + { + "id": "dinari-pg", + "symbol": "pg.d", + "name": "Dinari PG" + }, + { + "id": "dinari-pho", + "symbol": "pho.d", + "name": "Dinari PHO" + }, + { + "id": "dinari-pld", + "symbol": "pld.d", + "name": "Dinari PLD" + }, + { + "id": "dinari-pplt", + "symbol": "pplt.d", + "name": "Dinari PPLT" + }, + { + "id": "dinari-pypl-dshares", + "symbol": "pypl.d", + "name": "Dinari PYPL" + }, + { + "id": "dinari-rblx", + "symbol": "rblx.d", + "name": "Dinari RBLX" + }, + { + "id": "dinari-rddt", + "symbol": "rddt.d", + "name": "Dinari RDDT" + }, + { + "id": "dinari-riot", + "symbol": "riot.d", + "name": "Dinari RIOT" + }, + { + "id": "dinari-rklb", + "symbol": "rklb.d", + "name": "Dinari RKLB" + }, + { + "id": "dinari-sbux", + "symbol": "sbux.d", + "name": "Dinari SBUX" + }, + { + "id": "dinari-sivr", + "symbol": "sivr.d", + "name": "Dinari SIVR" + }, + { + "id": "dinari-slx", + "symbol": "slx.d", + "name": "Dinari SLX" + }, + { + "id": "dinari-snow", + "symbol": "snow.d", + "name": "Dinari SNOW" + }, + { + "id": "dinari-sony", + "symbol": "sony.d", + "name": "Dinari SONY" + }, + { + "id": "dinari-soxl", + "symbol": "soxl.d", + "name": "Dinari SOXL" + }, + { + "id": "dinari-spsk", + "symbol": "spsk.d", + "name": "Dinari SPSK" + }, + { + "id": "dinari-spte", + "symbol": "spte.d", + "name": "Dinari SPTE" + }, + { + "id": "dinari-spus", + "symbol": "spus.d", + "name": "Dinari SPUS" + }, + { + "id": "dinari-spwo", + "symbol": "spwo.d", + "name": "Dinari SPWO" + }, + { + "id": "dinari-spy-dshares", + "symbol": "spy.d", + "name": "Dinari SPY" + }, + { + "id": "dinari-sq", + "symbol": "sq.d", + "name": "Dinari SQ" + }, + { + "id": "dinari-srln", + "symbol": "srln.d", + "name": "Dinari SRLN" + }, + { + "id": "dinari-tjx", + "symbol": "tjx.d", + "name": "Dinari TJX" + }, + { + "id": "dinari-tqqq", + "symbol": "tqqq.d", + "name": "Dinari TQQQ" + }, + { + "id": "dinari-tsla-dshares", + "symbol": "tsla.d", + "name": "Dinari TSLA" + }, + { + "id": "dinari-ufo", + "symbol": "ufo.d", + "name": "Dinari UFO" + }, + { + "id": "dinari-usd", + "symbol": "usd+", + "name": "Dinari USD+" + }, + { + "id": "dinari-usfr-dshares", + "symbol": "usfr.d", + "name": "Dinari USFR" + }, + { + "id": "dinari-ushy", + "symbol": "ushy.d", + "name": "Dinari USHY" + }, + { + "id": "dinari-v", + "symbol": "v.d", + "name": "Dinari V" + }, + { + "id": "dinari-vwo", + "symbol": "vwo.d", + "name": "Dinari VWO" + }, + { + "id": "dinari-vxx", + "symbol": "vxx.d", + "name": "Dinari VXX" + }, + { + "id": "dinari-walrf", + "symbol": "walrf.d", + "name": "Dinari WALRF" + }, + { + "id": "dinari-weat", + "symbol": "weat.d", + "name": "Dinari WEAT" + }, + { + "id": "dinari-wood", + "symbol": "wood.d", + "name": "Dinari WOOD" + }, + { + "id": "dinari-xom", + "symbol": "xom.d", + "name": "Dinari XOM" + }, + { + "id": "dinari-yum", + "symbol": "yum.d", + "name": "Dinari YUM" + }, + { + "id": "dinero-2", + "symbol": "dinero", + "name": "Dinero" + }, + { + "id": "dinero-staked-eth", + "symbol": "pxeth", + "name": "Dinero Staked ETH" + }, + { + "id": "dinger-token", + "symbol": "dinger", + "name": "Dinger" + }, + { + "id": "dingo", + "symbol": "dingo", + "name": "Dingo" + }, + { + "id": "dingocoin", + "symbol": "dingo", + "name": "Dingocoin" + }, + { + "id": "dino", + "symbol": "dino", + "name": "Dino" + }, + { + "id": "dino-2", + "symbol": "dino", + "name": "DINO" + }, + { + "id": "dino-dragon", + "symbol": "dino", + "name": "Dino Dragon" + }, + { + "id": "dinolfg", + "symbol": "dino", + "name": "DinoLFG" + }, + { + "id": "dino-poker", + "symbol": "rawr", + "name": "Dino Poker" + }, + { + "id": "dinosaur-inu", + "symbol": "dino", + "name": "Dinosaur Inu" + }, + { + "id": "dinoswap", + "symbol": "dino", + "name": "DinoSwap" + }, + { + "id": "dino-tycoon", + "symbol": "tycoon", + "name": "Dino Tycoon" + }, + { + "id": "dinox", + "symbol": "dnxc", + "name": "DinoX" + }, + { + "id": "dinu", + "symbol": "dinu", + "name": "DINU" + }, + { + "id": "dione", + "symbol": "dione", + "name": "Dione" + }, + { + "id": "dippy", + "symbol": "sn11", + "name": "Dippy" + }, + { + "id": "dippy-speech", + "symbol": "sn58", + "name": "Dippy Speech" + }, + { + "id": "discipline", + "symbol": "discipline", + "name": "DISCIPLINE" + }, + { + "id": "disco-by-matt-furie", + "symbol": "disco", + "name": "Disco By Matt Furie" + }, + { + "id": "diskneeplus", + "symbol": "disknee", + "name": "Diskneeplus" + }, + { + "id": "disney-ondo-tokenized-stock", + "symbol": "dison", + "name": "Disney (Ondo Tokenized Stock)" + }, + { + "id": "distracted-dudes", + "symbol": "dude", + "name": "Distracted Dudes" + }, + { + "id": "distribute", + "symbol": "distribute", + "name": "DISTRIBUTE" + }, + { + "id": "distribute-ai", + "symbol": "dis", + "name": "Distribute.ai" + }, + { + "id": "distributed-training", + "symbol": "sn38", + "name": "Distributed Training" + }, + { + "id": "district0x", + "symbol": "dnt", + "name": "district0x" + }, + { + "id": "districts", + "symbol": "dstrx", + "name": "Districts" + }, + { + "id": "dither", + "symbol": "dith", + "name": "Dither" + }, + { + "id": "dith-s-cat", + "symbol": "cyclops", + "name": "DITH'S CAT" + }, + { + "id": "ditto-2", + "symbol": "ditto", + "name": "Ditto" + }, + { + "id": "ditto-staked-aptos", + "symbol": "stapt", + "name": "Ditto Staked Aptos" + }, + { + "id": "diva-protocol", + "symbol": "diva", + "name": "DIVA Protocol" + }, + { + "id": "diva-staking", + "symbol": "diva", + "name": "Diva Staking" + }, + { + "id": "divergence-protocol", + "symbol": "diver", + "name": "Divergence Protocol" + }, + { + "id": "diversifi-2", + "symbol": "defi", + "name": "DiversiFi" + }, + { + "id": "diversified-usd", + "symbol": "dfiusd", + "name": "Diversified USD" + }, + { + "id": "divi", + "symbol": "divi", + "name": "Divi" + }, + { + "id": "divinely-protected", + "symbol": "dp", + "name": "Divinely Protected" + }, + { + "id": "diviner-2", + "symbol": "diviner", + "name": "DIVINER" + }, + { + "id": "diviswap", + "symbol": "dswap", + "name": "DiviSwap" + }, + { + "id": "divo", + "symbol": "dvo", + "name": "Divo" + }, + { + "id": "divvy-bet", + "symbol": "dvy", + "name": "Divvy.bet" + }, + { + "id": "dizzyhavoc", + "symbol": "dzhv", + "name": "DizzyHavoc" + }, + { + "id": "djbonk", + "symbol": "djbonk", + "name": "DJBONK" + }, + { + "id": "djcat", + "symbol": "djcat", + "name": "DJCAT" + }, + { + "id": "djed", + "symbol": "djed", + "name": "Djed" + }, + { + "id": "dkargo", + "symbol": "dka", + "name": "dKargo" + }, + { + "id": "dkey-bank", + "symbol": "dkey", + "name": "DKEY Bank" + }, + { + "id": "dlc-link-dlcbtc", + "symbol": "ibtc", + "name": "iBTC Network" + }, + { + "id": "dlmm", + "symbol": "dlmm", + "name": "DLMM" + }, + { + "id": "dlp-duck-token", + "symbol": "duck", + "name": "DLP Duck" + }, + { + "id": "dmail-network", + "symbol": "dmail", + "name": "Dmail Network" + }, + { + "id": "dmarketplace", + "symbol": "$dmp", + "name": "Dmarketplace" + }, + { + "id": "dm-fun", + "symbol": "fun", + "name": "Dm.fun" + }, + { + "id": "dmt-nat", + "symbol": "nat", + "name": "DMT-NAT" + }, + { + "id": "dmx", + "symbol": "dmx", + "name": "DMX" + }, + { + "id": "dna", + "symbol": "dna", + "name": "DNA" + }, + { + "id": "dna-2", + "symbol": "dna", + "name": "DNA" + }, + { + "id": "dna-token", + "symbol": "dna", + "name": "DNA Token" + }, + { + "id": "dnaxcat", + "symbol": "dxct", + "name": "DNAxCAT" + }, + { + "id": "dnd", + "symbol": "dnd", + "name": "DND" + }, + { + "id": "dnd10-m1a0shan", + "symbol": "dnd10", + "name": "dnd10-M1a0Shan" + }, + { + "id": "dobi", + "symbol": "dobi", + "name": "DOBI" + }, + { + "id": "dobi-2", + "symbol": "dobi", + "name": "Dobi" + }, + { + "id": "docker", + "symbol": "dockerzxbt", + "name": "Docker" + }, + { + "id": "docs-insight-tatsu", + "symbol": "sn84", + "name": "Docs-Insights (Taτsu)" + }, + { + "id": "doctor-ai", + "symbol": "doctor", + "name": "Doctor AI" + }, + { + "id": "doctor-evil", + "symbol": "evil", + "name": "Doctor Evil" + }, + { + "id": "doctor-mutant", + "symbol": "drmutant", + "name": "Doctor Mutant" + }, + { + "id": "doctorx", + "symbol": "drx", + "name": "DoctorX" + }, + { + "id": "docusol", + "symbol": "docusol", + "name": "DocuSol" + }, + { + "id": "dodo", + "symbol": "dodo", + "name": "DODO" + }, + { + "id": "dodo-2", + "symbol": "dodo", + "name": "DODO" + }, + { + "id": "dodo-the-black-swan", + "symbol": "dodo", + "name": "Dodo the Black Swan" + }, + { + "id": "dodreamchain", + "symbol": "cep", + "name": "CEREAL" + }, + { + "id": "doeg-wif-rerart", + "symbol": "doeg", + "name": "Doeg Wif Rerart" + }, + { + "id": "dog-4", + "symbol": "dog", + "name": "DOG" + }, + { + "id": "dogai", + "symbol": "dogai", + "name": "Dogai" + }, + { + "id": "dogai-wtf", + "symbol": "dogai", + "name": "DOGAI" + }, + { + "id": "dogami", + "symbol": "doga", + "name": "Dogami" + }, + { + "id": "dogc", + "symbol": "dogc", + "name": "DOGC" + }, + { + "id": "dogcoin-2", + "symbol": "dcoin", + "name": "Dogcoin" + }, + { + "id": "dogcoin-3", + "symbol": "dogcoin", + "name": "Dogcoin" + }, + { + "id": "dog-collar", + "symbol": "collar", + "name": "Dog Collar" + }, + { + "id": "doge", + "symbol": "@doge", + "name": "@DOGE" + }, + { + "id": "doge-1", + "symbol": "doge1", + "name": "DOGE-1" + }, + { + "id": "doge-1-mission-to-the-moon", + "symbol": "doge-1", + "name": "Doge-1 Mission to the moon" + }, + { + "id": "doge-1satellite", + "symbol": "doge-1sat", + "name": "DOGE-1SATELLITE" + }, + { + "id": "doge-1-satellite", + "symbol": "doge-1", + "name": "DOGE-1 Satellite" + }, + { + "id": "doge2", + "symbol": "caesar", + "name": "Doge2" + }, + { + "id": "doge-2-0", + "symbol": "doge2.0", + "name": "Doge 2.0" + }, + { + "id": "dogeai", + "symbol": "dogeai", + "name": "DogeAi" + }, + { + "id": "dogeai-2", + "symbol": "$dogeai", + "name": "DOGEai" + }, + { + "id": "doge-baby", + "symbol": "doge baby", + "name": "Doge Baby" + }, + { + "id": "doge-base", + "symbol": "dogebase", + "name": "Doge Base" + }, + { + "id": "dogebits-drc-20", + "symbol": "dbit", + "name": "Dogebits (DRC-20)" + }, + { + "id": "dogebonk", + "symbol": "dobo", + "name": "DogeBonk" + }, + { + "id": "dogebonk-eth", + "symbol": "dobo", + "name": "DogeBonk" + }, + { + "id": "dogebonk-on-sol", + "symbol": "dobo", + "name": "dogebonk on sol" + }, + { + "id": "dogeboy-2", + "symbol": "dogb", + "name": "DogeBoy" + }, + { + "id": "dogecash", + "symbol": "dogec", + "name": "DogeCash" + }, + { + "id": "dogecast", + "symbol": "dogecast", + "name": "Dogecast" + }, + { + "id": "dogecast-2", + "symbol": "dogecast", + "name": "dogecast" + }, + { + "id": "doge-caucus", + "symbol": "dogecaucus", + "name": "Doge Caucus" + }, + { + "id": "doge-ceo", + "symbol": "dogeceo", + "name": "Doge CEO" + }, + { + "id": "dogechain", + "symbol": "dc", + "name": "Dogechain" + }, + { + "id": "dogeclub", + "symbol": "dogc", + "name": "DogeClub" + }, + { + "id": "dogecoin", + "symbol": "doge", + "name": "Dogecoin" + }, + { + "id": "dogecoin-2", + "symbol": "doge2", + "name": "Dogecoin 2.0" + }, + { + "id": "dogecoin20", + "symbol": "doge20", + "name": "Dogecoin20" + }, + { + "id": "dogecola", + "symbol": "colana", + "name": "COLANA" + }, + { + "id": "dogecube", + "symbol": "dogecube", + "name": "DogeCube" + }, + { + "id": "dogedragon", + "symbol": "dd", + "name": "DogeDragon" + }, + { + "id": "doge-eat-doge", + "symbol": "omnom", + "name": "Doge Eat Doge" + }, + { + "id": "dogefather-2", + "symbol": "dogefather", + "name": "Dogefather" + }, + { + "id": "dogefather-3", + "symbol": "the dogefather", + "name": "DogeFather" + }, + { + "id": "doge-floki-coin", + "symbol": "dofi", + "name": "Doge Floki Coin [OLD]" + }, + { + "id": "dogefood", + "symbol": "dogefood", + "name": "DogeFood" + }, + { + "id": "dogefork", + "symbol": "dork", + "name": "DogeFork" + }, + { + "id": "doge-for-president", + "symbol": "votedoge", + "name": "Doge for President" + }, + { + "id": "dogegf", + "symbol": "dogegf", + "name": "DogeGF" + }, + { + "id": "doge-grok-companion", + "symbol": "doge", + "name": "Doge Grok Companion" + }, + { + "id": "dogegrow", + "symbol": "dgr", + "name": "DogeGrow" + }, + { + "id": "doge-head-coin", + "symbol": "dhc", + "name": "Doge Head Coin" + }, + { + "id": "dogei", + "symbol": "dogei", + "name": "Dogei" + }, + { + "id": "doge-in-a-memes-world", + "symbol": "dew", + "name": "doge in a memes world" + }, + { + "id": "doge-inu", + "symbol": "dinu", + "name": "Doge Inu" + }, + { + "id": "doge-jones-industrial-average", + "symbol": "dji", + "name": "Doge Jones Industrial Average" + }, + { + "id": "doge-kaki", + "symbol": "kaki", + "name": "Doge KaKi" + }, + { + "id": "dogeking", + "symbol": "dogeking", + "name": "DogeKing" + }, + { + "id": "dogelana", + "symbol": "dgln", + "name": "Dogelana" + }, + { + "id": "dogelink", + "symbol": "doger", + "name": "DOGELINK" + }, + { + "id": "dogelon-mars", + "symbol": "elon", + "name": "Dogelon Mars" + }, + { + "id": "doge-lumens", + "symbol": "dxlm", + "name": "DogeLumens" + }, + { + "id": "doge-marley", + "symbol": "marley", + "name": "Doge Marley" + }, + { + "id": "doge-mascot-shibu", + "symbol": "shibu", + "name": "Shibu" + }, + { + "id": "dog-emoji-on-solana", + "symbol": "🐕", + "name": "Dog Emoji On Solana" + }, + { + "id": "dogemon-go", + "symbol": "dogo", + "name": "DogemonGo" + }, + { + "id": "dogemoon", + "symbol": "dogemoon", + "name": "Dogemoon" + }, + { + "id": "dogenarii", + "symbol": "dogenarii", + "name": "Dogenarii" + }, + { + "id": "dogenarii-2", + "symbol": "dogenarii", + "name": "Dogenarii" + }, + { + "id": "dogenarii-coin", + "symbol": "dogenarii", + "name": "Dogenarii coin" + }, + { + "id": "dogenarii-coin-2", + "symbol": "dogenarii", + "name": "Dogenarii coin" + }, + { + "id": "dogenerates", + "symbol": "dogen", + "name": "Dogenerates" + }, + { + "id": "doge-of-grok-ai", + "symbol": "dogegrokai", + "name": "Doge Of Grok AI" + }, + { + "id": "dogeon", + "symbol": "don", + "name": "Dogeon" + }, + { + "id": "doge-on-pulsechain", + "symbol": "doge", + "name": "Doge on Pulsechain" + }, + { + "id": "doge-on-sol", + "symbol": "$doge", + "name": "$Doge on Sol" + }, + { + "id": "doge-on-solana", + "symbol": "sdoge", + "name": "DOGE on Solana" + }, + { + "id": "doge-protocol", + "symbol": "dogep", + "name": "Doge Protocol" + }, + { + "id": "doge-rocket", + "symbol": "rocket", + "name": "DOGE ROCKET" + }, + { + "id": "dogeshrek", + "symbol": "dogeshrek", + "name": "DogeShrek" + }, + { + "id": "dogesquatch", + "symbol": "squoge", + "name": "DogeSquatch" + }, + { + "id": "doge-strategy", + "symbol": "dogestr", + "name": "Doge Strategy" + }, + { + "id": "doge-token", + "symbol": "doget", + "name": "Doge Token" + }, + { + "id": "dogeverse", + "symbol": "dogeverse", + "name": "DogeVerse" + }, + { + "id": "doge-whale", + "symbol": "dwhl", + "name": "Doge Whale" + }, + { + "id": "dogex-2", + "symbol": "dogex", + "name": "DogeX" + }, + { + "id": "dogey-inu", + "symbol": "dinu", + "name": "Dogey-Inu" + }, + { + "id": "dogezilla-2", + "symbol": "zilla", + "name": "DogeZilla" + }, + { + "id": "dogfart", + "symbol": "dogfart", + "name": "DOGFART" + }, + { + "id": "dogfinity-2", + "symbol": "phasma", + "name": "PHASMA" + }, + { + "id": "doggacoin", + "symbol": "dogga", + "name": "Doggacoin" + }, + { + "id": "doggensnout", + "symbol": "doggs", + "name": "Doggensnout" + }, + { + "id": "doggensnout-skeptic", + "symbol": "dogs", + "name": "Doggensnout Skeptic" + }, + { + "id": "dogggo", + "symbol": "dogggo", + "name": "Dogggo" + }, + { + "id": "doggo", + "symbol": "doggo", + "name": "DOGGO" + }, + { + "id": "doggo-2", + "symbol": "doggo", + "name": "Doggo" + }, + { + "id": "doggo-3", + "symbol": "doggo", + "name": "Doggo" + }, + { + "id": "doggo-4", + "symbol": "doggo", + "name": "DOGGO" + }, + { + "id": "doggo-inu", + "symbol": "doggo", + "name": "Doggo Inu" + }, + { + "id": "dog-go-to-the-moon-rune", + "symbol": "dog", + "name": "Dog (Bitcoin)" + }, + { + "id": "doggy", + "symbol": "doggy", + "name": "Doggy" + }, + { + "id": "doggy-coin", + "symbol": "doggy", + "name": "DOGGY COIN" + }, + { + "id": "doggy-needs-friend", + "symbol": "doggy", + "name": "Doggy Needs Friend" + }, + { + "id": "doghouse-coin", + "symbol": "doghouse", + "name": "Doghouse Coin" + }, + { + "id": "dogi", + "symbol": "dogi", + "name": "dogi" + }, + { + "id": "doginblock", + "symbol": "dib", + "name": "doginblock" + }, + { + "id": "doginhood", + "symbol": "dogin", + "name": "Department of Government Inefficiency" + }, + { + "id": "doginhood-2", + "symbol": "dih", + "name": "doginhood" + }, + { + "id": "doginme", + "symbol": "doginme", + "name": "doginme" + }, + { + "id": "doginphire", + "symbol": "fire", + "name": "doginphire" + }, + { + "id": "doginthpool", + "symbol": "dip", + "name": "doginthpool" + }, + { + "id": "dog-in-vest", + "symbol": "invest", + "name": "Dog In Vest" + }, + { + "id": "dogita", + "symbol": "doga", + "name": "DOGITA" + }, + { + "id": "dogius-maximus", + "symbol": "dogius", + "name": "Dogius Maximus" + }, + { + "id": "dogk", + "symbol": "dogk", + "name": "Dagknight Dog" + }, + { + "id": "dogking-on-xlayer", + "symbol": "dogking", + "name": "DogKing On XLayer" + }, + { + "id": "doglibre", + "symbol": "dogl", + "name": "DogLibre" + }, + { + "id": "dogmom", + "symbol": "dogmom", + "name": "DOGMOM" + }, + { + "id": "dognus", + "symbol": "dognus", + "name": "Dognus" + }, + { + "id": "dog-of-wisdom", + "symbol": "wisdm", + "name": "Dog Of Wisdom" + }, + { + "id": "dog-on-moon", + "symbol": "moon", + "name": "Dog on Moon" + }, + { + "id": "dogpad-finance", + "symbol": "dogpad", + "name": "DogPad Finance" + }, + { + "id": "dog-picasso", + "symbol": "monkey", + "name": "Dog Picasso" + }, + { + "id": "dogs-2", + "symbol": "dogs", + "name": "Dogs" + }, + { + "id": "dogsheetcoin", + "symbol": "dogsheet", + "name": "Dogsheetcoin" + }, + { + "id": "dogshit", + "symbol": "dogshit", + "name": "dogshit" + }, + { + "id": "dogshit-2", + "symbol": "dogshit", + "name": "DOGSHIT" + }, + { + "id": "dog-shit-going-nowhere", + "symbol": "dogshit2", + "name": "Dog shit going nowhere" + }, + { + "id": "dogsofelon", + "symbol": "doe", + "name": "Dogs Of Elon" + }, + { + "id": "dogs-of-elon", + "symbol": "doe", + "name": "Dogs of Elon" + }, + { + "id": "dogs-rock", + "symbol": "dogsrock", + "name": "Dogs Rock" + }, + { + "id": "dogstock", + "symbol": "dstock", + "name": "Dogstock" + }, + { + "id": "dog-stolen-from-tesla", + "symbol": "lemon", + "name": "Dog Stolen From Tesla" + }, + { + "id": "dogue", + "symbol": "dogue", + "name": "DOGUE" + }, + { + "id": "dogwif2-0", + "symbol": "$wif2", + "name": "DOGWIF2.0" + }, + { + "id": "dogwifcoin", + "symbol": "wif", + "name": "dogwifhat" + }, + { + "id": "dogwifcrocs", + "symbol": "dwc", + "name": "DOGwifCROCS" + }, + { + "id": "dogwifhat-base", + "symbol": "wif", + "name": "DogWifHat" + }, + { + "id": "dogwifhat-eth", + "symbol": "dogwifhat", + "name": "dogwifhat Eth" + }, + { + "id": "dogwifhood", + "symbol": "wif", + "name": "DOGWIFHOOD" + }, + { + "id": "dogwifnohat", + "symbol": "nohat", + "name": "DogWifNoHat" + }, + { + "id": "dog-wif-nuchucks", + "symbol": "ninja", + "name": "Dog Wif Nunchucks" + }, + { + "id": "dogwifouthat", + "symbol": "wifout", + "name": "dogwifouthat" + }, + { + "id": "dogwifpants", + "symbol": "pants", + "name": "dogwifpants" + }, + { + "id": "dog-wif-pixels", + "symbol": "dwp", + "name": "Dog Wif Pixels" + }, + { + "id": "dogwifsaudihat", + "symbol": "wifsa", + "name": "dogwifsaudihat" + }, + { + "id": "dogwifscarf", + "symbol": "wifs", + "name": "dogwifscarf" + }, + { + "id": "dogwifscarf-2", + "symbol": "$scarf", + "name": "Dogwifscarf" + }, + { + "id": "dog-with-apple-in-mouth", + "symbol": "apple", + "name": "dog with apple in mouth" + }, + { + "id": "dog-with-egg-on-head", + "symbol": "egg", + "name": "dog with egg on head" + }, + { + "id": "dog-with-purpose", + "symbol": "dopu", + "name": "Dog With Purpose" + }, + { + "id": "dogwithshdz", + "symbol": "shdz", + "name": "dogwithSHDZ" + }, + { + "id": "dogy", + "symbol": "dogy", + "name": "Dogy" + }, + { + "id": "dogz", + "symbol": "dogz", + "name": "Dogz" + }, + { + "id": "dohrnii", + "symbol": "dhn", + "name": "Dohrnii" + }, + { + "id": "doichain", + "symbol": "doi", + "name": "Doichain" + }, + { + "id": "do-it-for-the-vine", + "symbol": "vine", + "name": "Do it for the Vine" + }, + { + "id": "dojo", + "symbol": "dojo", + "name": "DOJO" + }, + { + "id": "dojo-3", + "symbol": "sn52", + "name": "Dojo" + }, + { + "id": "dojo-protocol", + "symbol": "doai", + "name": "Dojo Protocol" + }, + { + "id": "dojo-token", + "symbol": "dojo", + "name": "Dojo token" + }, + { + "id": "doki", + "symbol": "doki", + "name": "DOKI" + }, + { + "id": "dola-borrowing-right", + "symbol": "dbr", + "name": "DOLA Borrowing Right" + }, + { + "id": "dolan-duck", + "symbol": "dolan", + "name": "Dolan Duck" + }, + { + "id": "dolan-duk", + "symbol": "dolan", + "name": "Dolan Duk" + }, + { + "id": "dola-usd", + "symbol": "dola", + "name": "DOLA" + }, + { + "id": "dollar-2", + "symbol": "dollar", + "name": "Dollar" + }, + { + "id": "dollar-coin", + "symbol": "dc", + "name": "Dollar Coin" + }, + { + "id": "dollar-cost-average", + "symbol": "dca", + "name": "Dollar Cost Average" + }, + { + "id": "dollarmoon-2", + "symbol": "dmoon", + "name": "DollarMoon" + }, + { + "id": "dollar-on-chain", + "symbol": "doc", + "name": "Dollar On Chain" + }, + { + "id": "doll-face", + "symbol": "doll", + "name": "Doll Face" + }, + { + "id": "doll-fantasy-token", + "symbol": "doll", + "name": "Doll Fantasy Token" + }, + { + "id": "dolomite", + "symbol": "dolo", + "name": "Dolomite" + }, + { + "id": "dolos-the-bully", + "symbol": "bully", + "name": "Dolos The Bully" + }, + { + "id": "dolphin", + "symbol": "dolphin", + "name": "Dolphin" + }, + { + "id": "dolphin-2", + "symbol": "dphn", + "name": "Dolphin" + }, + { + "id": "dolphin-agent", + "symbol": "dola", + "name": "Dolphin Agent" + }, + { + "id": "dolr-ai", + "symbol": "dolr", + "name": "DOLR AI" + }, + { + "id": "dolz-io", + "symbol": "dolz", + "name": "DOLZ.io" + }, + { + "id": "dom", + "symbol": "dom", + "name": "DOM" + }, + { + "id": "domenation-token", + "symbol": "domen", + "name": "Domenation Token" + }, + { + "id": "domi", + "symbol": "domi", + "name": "Domi" + }, + { + "id": "dominator-domains", + "symbol": "domdom", + "name": "Dominator Domains" + }, + { + "id": "dominica-coin", + "symbol": "dmc", + "name": "Dominica Coin" + }, + { + "id": "dominium-2", + "symbol": "dom", + "name": "Dominium" + }, + { + "id": "donaldcat", + "symbol": "dc", + "name": "DONALDCAT" + }, + { + "id": "donald-toad-coin", + "symbol": "dtc", + "name": "Donald Toad Coin" + }, + { + "id": "donald-tremp", + "symbol": "tremp", + "name": "Doland Tremp" + }, + { + "id": "don-don-donki", + "symbol": "donki", + "name": "DON DON DONKI" + }, + { + "id": "dongcoin", + "symbol": "dong", + "name": "DongCoin" + }, + { + "id": "dongdaemun-token", + "symbol": "ddmt", + "name": "Dongdaemun Token" + }, + { + "id": "dongo-ai", + "symbol": "dongo", + "name": "Dongo AI" + }, + { + "id": "donk", + "symbol": "donk", + "name": "DONK" + }, + { + "id": "donk_apt", + "symbol": "donk", + "name": "Donk" + }, + { + "id": "donke", + "symbol": "donke", + "name": "Donke" + }, + { + "id": "donkee", + "symbol": "donkee", + "name": "Donkee" + }, + { + "id": "don-key", + "symbol": "don", + "name": "Don-key" + }, + { + "id": "donkey-2", + "symbol": "donkey", + "name": "Donkey" + }, + { + "id": "donkey-king", + "symbol": "doky", + "name": "Donkey King" + }, + { + "id": "donk-on-bonk", + "symbol": "donk", + "name": "donk on bonk" + }, + { + "id": "don-pepex", + "symbol": "pepex", + "name": "Don PepeX" + }, + { + "id": "dons", + "symbol": "dons", + "name": "The Dons" + }, + { + "id": "don-t-burn-capital", + "symbol": "dbc", + "name": "Don't Burn Capital" + }, + { + "id": "don-t-buy-inu", + "symbol": "dbi", + "name": "Don't Buy Inu" + }, + { + "id": "don-t-buy-this-coin", + "symbol": "dbtc", + "name": "Don't buy this coin" + }, + { + "id": "dont-coin", + "symbol": "dont", + "name": "DONT coin" + }, + { + "id": "don-t-die", + "symbol": "dontdie", + "name": "Don't Die" + }, + { + "id": "dontdiecoin", + "symbol": "dontdie", + "name": "DONTDIECOIN" + }, + { + "id": "don-t-sell-your-bitcoin", + "symbol": "bitcoin", + "name": "DON'T SELL YOUR BITCOIN" + }, + { + "id": "donut", + "symbol": "donut", + "name": "Donut" + }, + { + "id": "dony-montana", + "symbol": "domo", + "name": "Dony Montana" + }, + { + "id": "doodipals", + "symbol": "doodi", + "name": "DOODiPALS" + }, + { + "id": "doodles", + "symbol": "dood", + "name": "Doodles" + }, + { + "id": "doodoo", + "symbol": "doodoo", + "name": "DooDoo" + }, + { + "id": "dooggiecoin", + "symbol": "doog", + "name": "DooggieCoin" + }, + { + "id": "doogle", + "symbol": "doogle", + "name": "Doogle" + }, + { + "id": "doogle-on-bonk", + "symbol": "doogle", + "name": "Doogle on Bonk" + }, + { + "id": "dook", + "symbol": "dook", + "name": "Dook" + }, + { + "id": "doom", + "symbol": "doom", + "name": "DOOM" + }, + { + "id": "doom-2", + "symbol": "doom", + "name": "DOOM" + }, + { + "id": "doomer-on-base-cto", + "symbol": "doomer", + "name": "DOOMER" + }, + { + "id": "doordash-ondo-tokenized-stock", + "symbol": "dashon", + "name": "DoorDash (Ondo Tokenized Stock)" + }, + { + "id": "dopameme", + "symbol": "dopa", + "name": "DopaMeme" + }, + { + "id": "dopamine", + "symbol": "dope", + "name": "Dopamine" + }, + { + "id": "dope-2", + "symbol": "dope", + "name": "Dope" + }, + { + "id": "dope-wars-paper", + "symbol": "paper", + "name": "Dope World Paper" + }, + { + "id": "dopex", + "symbol": "dpx", + "name": "Dopex" + }, + { + "id": "dopex-rebate-token", + "symbol": "rdpx", + "name": "Dopex Rebate" + }, + { + "id": "dor", + "symbol": "dor", + "name": "Dor" + }, + { + "id": "dora-2", + "symbol": "dora", + "name": "DORA" + }, + { + "id": "dora-ai-by-virtuals", + "symbol": "dora", + "name": "DORA AI by Virtuals" + }, + { + "id": "dorado-finance", + "symbol": "$dorab", + "name": "Dorado Finance" + }, + { + "id": "dora-factory-2", + "symbol": "dora", + "name": "Dora Factory" + }, + { + "id": "doric-network", + "symbol": "drc", + "name": "Doric Network" + }, + { + "id": "dork", + "symbol": "dork", + "name": "DORK" + }, + { + "id": "dork-2", + "symbol": "dork", + "name": "DORK" + }, + { + "id": "dork-lord", + "symbol": "dorkl", + "name": "DORK LORD (ETH)" + }, + { + "id": "dork-lord-2", + "symbol": "dorky", + "name": "Dork Lord" + }, + { + "id": "dork-lord-coin", + "symbol": "dlord", + "name": "DORK LORD COIN" + }, + { + "id": "dork-lord-eth", + "symbol": "dorkl", + "name": "DORK LORD (SOL)" + }, + { + "id": "dorol", + "symbol": "drl", + "name": "Dorol" + }, + { + "id": "dosa-the-demon", + "symbol": "dosa", + "name": "Dosa the Demon" + }, + { + "id": "dos-chain", + "symbol": "dos", + "name": "DOS Chain" + }, + { + "id": "dose-token", + "symbol": "dose", + "name": "DOSE" + }, + { + "id": "dos-network", + "symbol": "dos", + "name": "DOS Network" + }, + { + "id": "dotcom", + "symbol": "y2k", + "name": "Dotcom" + }, + { + "id": "dot-dot-finance", + "symbol": "ddd", + "name": "Dot Dot Finance" + }, + { + "id": "dot-finance", + "symbol": "pink", + "name": "Dot Finance" + }, + { + "id": "dotmoovs", + "symbol": "moov", + "name": "dotmoovs" + }, + { + "id": "dotswap-dotswap", + "symbol": "🔄", + "name": "DOTSWAP•DOTSWAP" + }, + { + "id": "dotz", + "symbol": "dotz", + "name": "DOTZ" + }, + { + "id": "doubleup", + "symbol": "up", + "name": "DoubleUp" + }, + { + "id": "doublezero", + "symbol": "2z", + "name": "DoubleZero" + }, + { + "id": "doublezero-staked-sol", + "symbol": "dzsol", + "name": "DoubleZero Staked SOL" + }, + { + "id": "doubt", + "symbol": "doubt", + "name": "DOUBT" + }, + { + "id": "doug-2", + "symbol": "doug", + "name": "Doug" + }, + { + "id": "doughge", + "symbol": "$doh", + "name": "DOUGHGE" + }, + { + "id": "douglas-adams", + "symbol": "hhgttg", + "name": "Douglas Adams" + }, + { + "id": "dove-the-dog", + "symbol": "dove", + "name": "Dove The Dog" + }, + { + "id": "dovu", + "symbol": "dov", + "name": "Dovu [OLD]" + }, + { + "id": "dovu-2", + "symbol": "dovu", + "name": "DOVU" + }, + { + "id": "dowge", + "symbol": "dji6930", + "name": "DOWGE" + }, + { + "id": "down-bad-gaming", + "symbol": "downbad", + "name": "Down Bad Gaming" + }, + { + "id": "dox-squad", + "symbol": "dox", + "name": "Dox Squad" + }, + { + "id": "do-your-own-research", + "symbol": "dyor", + "name": "Do Your Own Research" + }, + { + "id": "dpai", + "symbol": "dpai", + "name": "DPAI" + }, + { + "id": "dpex", + "symbol": "dpex", + "name": "DPEX" + }, + { + "id": "dpin", + "symbol": "dpin", + "name": "DPIN [OLD]" + }, + { + "id": "dpin-2", + "symbol": "dpn", + "name": "DPIN" + }, + { + "id": "dprating", + "symbol": "rating", + "name": "DPRating" + }, + { + "id": "dra", + "symbol": "dra", + "name": "Decentralized Retirement Account" + }, + { + "id": "dracarys-token", + "symbol": "dra", + "name": "Dracarys Token" + }, + { + "id": "dracoo-point", + "symbol": "dra", + "name": "Dracoo Point" + }, + { + "id": "drac-ordinals", + "symbol": "drac", + "name": "DRAC (Ordinals)" + }, + { + "id": "draggin-karma-points", + "symbol": "dkp", + "name": "Draggin Karma Points" + }, + { + "id": "draggy-0x62", + "symbol": "draggy0x62", + "name": "Draggy 0x62" + }, + { + "id": "draggy-cto", + "symbol": "draggy", + "name": "Draggy CTO" + }, + { + "id": "drago", + "symbol": "drago", + "name": "Drago" + }, + { + "id": "dragoma", + "symbol": "dma", + "name": "Dragoma" + }, + { + "id": "dragonchain", + "symbol": "drgn", + "name": "Dragonchain" + }, + { + "id": "dragoncoin", + "symbol": "dragon", + "name": "DragonCoin" + }, + { + "id": "dragon-coin-2", + "symbol": "$dgn", + "name": "Dragon Coin" + }, + { + "id": "dragon-crypto-aurum", + "symbol": "dcau", + "name": "Dragon Crypto Aurum" + }, + { + "id": "dragonking", + "symbol": "dragonking", + "name": "DragonKing" + }, + { + "id": "dragon-mainland-shards", + "symbol": "dms", + "name": "Dragon Mainland Shards" + }, + { + "id": "dragonmaster-token", + "symbol": "dmt", + "name": "DragonMaster" + }, + { + "id": "dragonmaster-totem", + "symbol": "totem", + "name": "DragonMaster Totem" + }, + { + "id": "dragon-soul-token", + "symbol": "dst", + "name": "Dragon Soul Token" + }, + { + "id": "dragon-s-quick", + "symbol": "dquick", + "name": "Dragon's Quick" + }, + { + "id": "dragons-quick", + "symbol": "dquick", + "name": "Dragon's Quick" + }, + { + "id": "dragon-sun", + "symbol": "drgn", + "name": "Dragon Sun" + }, + { + "id": "dragonswap", + "symbol": "drg", + "name": "DragonSwap" + }, + { + "id": "dragonwifbeard", + "symbol": "dwb", + "name": "DragonWifBeard" + }, + { + "id": "dragonx-2", + "symbol": "drgx", + "name": "DragonX" + }, + { + "id": "dragonx-win", + "symbol": "dragonx", + "name": "DragonX.win" + }, + { + "id": "dragonz", + "symbol": "dragonz", + "name": "DRAGONZ" + }, + { + "id": "dragy", + "symbol": "dragy", + "name": "Dragy" + }, + { + "id": "draiftking", + "symbol": "sire", + "name": "SIRE" + }, + { + "id": "drake-s-dog", + "symbol": "diamond", + "name": "Drake's Dog" + }, + { + "id": "drawcast", + "symbol": "draw", + "name": "Drawcast" + }, + { + "id": "drawnblade", + "symbol": "blade", + "name": "Drawnblade" + }, + { + "id": "dream-2", + "symbol": "dream", + "name": "DREAM" + }, + { + "id": "dream-3", + "symbol": "dream", + "name": "DREAM by Virtuals" + }, + { + "id": "dreamcoin-2", + "symbol": "dream", + "name": "dreamcoin" + }, + { + "id": "dream-machine", + "symbol": "$dream", + "name": "Dream machine" + }, + { + "id": "dream-machine-token", + "symbol": "dmt", + "name": "Dream Machine Token" + }, + { + "id": "dreams-quest", + "symbol": "dreams", + "name": "Dreams Quest" + }, + { + "id": "dreamsync", + "symbol": "dream", + "name": "Dreamsync" + }, + { + "id": "dream-token", + "symbol": "dream", + "name": "Dream" + }, + { + "id": "dreamverse", + "symbol": "dv", + "name": "Dreamverse" + }, + { + "id": "dregen", + "symbol": "dregen", + "name": "Dregen" + }, + { + "id": "dr-emma-sage", + "symbol": "emma", + "name": "Dr Emma Sage" + }, + { + "id": "dressdio", + "symbol": "dress", + "name": "DRESSdio" + }, + { + "id": "drife", + "symbol": "drf", + "name": "Drife [OLD]" + }, + { + "id": "drife-2", + "symbol": "drf", + "name": "Drife" + }, + { + "id": "driftin-cat", + "symbol": "drifty", + "name": "Driftin Cat" + }, + { + "id": "drift-protocol", + "symbol": "drift", + "name": "Drift Protocol" + }, + { + "id": "drift-staked-sol", + "symbol": "dsol", + "name": "Drift Staked SOL" + }, + { + "id": "dril", + "symbol": "dril", + "name": "DRIL" + }, + { + "id": "drink", + "symbol": "drink", + "name": "DRINK" + }, + { + "id": "drip", + "symbol": "$drip", + "name": "DRIP" + }, + { + "id": "dripdropz", + "symbol": "drip", + "name": "DripDropz" + }, + { + "id": "drip-network", + "symbol": "drip", + "name": "Drip Network" + }, + { + "id": "droid", + "symbol": "droid", + "name": "Droid" + }, + { + "id": "droid-dynamics", + "symbol": "droid", + "name": "Droid Dynamics" + }, + { + "id": "drone", + "symbol": "drone", + "name": "Drone" + }, + { + "id": "drop-2", + "symbol": "drop", + "name": "DROP" + }, + { + "id": "dropee", + "symbol": "dropee", + "name": "Dropee" + }, + { + "id": "drops", + "symbol": "drops", + "name": "Drops" + }, + { + "id": "drops-ownership-power", + "symbol": "dop", + "name": "Drops Ownership Power" + }, + { + "id": "drop-staked-atom", + "symbol": "datom", + "name": "Drop Staked ATOM" + }, + { + "id": "drop-staked-init", + "symbol": "deinit", + "name": "Drop Staked INIT" + }, + { + "id": "drop-staked-ntrn", + "symbol": "dntrn", + "name": "Drop Staked NTRN" + }, + { + "id": "drop-staked-tia", + "symbol": "dtia", + "name": "Drop Staked TIA" + }, + { + "id": "drop-wireless-infrastructure", + "symbol": "dwin", + "name": "Drop Wireless Infrastructure" + }, + { + "id": "drpepe-ai", + "symbol": "bryan", + "name": "DrPepe.ai" + }, + { + "id": "druid-ai", + "symbol": "dru", + "name": "Druid AI" + }, + { + "id": "drunk-chicken-centipede", + "symbol": "dcc", + "name": "Drunk Chicken Centipede" + }, + { + "id": "drunk-robots", + "symbol": "metal", + "name": "Badmad Robots" + }, + { + "id": "drx", + "symbol": "drx", + "name": "DRX Token" + }, + { + "id": "dsc", + "symbol": "dsc", + "name": "DSC" + }, + { + "id": "dsun-token", + "symbol": "dsun", + "name": "Dsun Token" + }, + { + "id": "dtec-token", + "symbol": "dtec", + "name": "Dtec token" + }, + { + "id": "dtelecom", + "symbol": "dtel", + "name": "dTelecom" + }, + { + "id": "dt-inu", + "symbol": "dti", + "name": "DT Inu" + }, + { + "id": "dtng", + "symbol": "dtng", + "name": "DTNG" + }, + { + "id": "dtravel", + "symbol": "trvl", + "name": "Dtravel" + }, + { + "id": "dtrinity-s", + "symbol": "ds", + "name": "dTRINITY S" + }, + { + "id": "dtrinity-staked-dusd", + "symbol": "sdusd", + "name": "dTRINITY Staked dUSD" + }, + { + "id": "dtrinity-usd", + "symbol": "dusd", + "name": "dTRINITY USD" + }, + { + "id": "dtrxbt-by-virtuals", + "symbol": "dtrxbt", + "name": "DTRXBT by Virtuals" + }, + { + "id": "dtsla", + "symbol": "dtsla", + "name": "Tesla Tokenized Stock Defichain" + }, + { + "id": "dubbz", + "symbol": "dubbz", + "name": "Dubbz" + }, + { + "id": "dubcat", + "symbol": "dubcat", + "name": "Dubcat" + }, + { + "id": "dub-duck", + "symbol": "$dub", + "name": "dub duck" + }, + { + "id": "dubx", + "symbol": "dub", + "name": "DUBX" + }, + { + "id": "ducatus", + "symbol": "ducx", + "name": "DucatusX" + }, + { + "id": "duck", + "symbol": "duck", + "name": "DUCK" + }, + { + "id": "duck-2", + "symbol": "duck", + "name": "DUCK" + }, + { + "id": "duck-ai", + "symbol": "duckai", + "name": "Duck AI" + }, + { + "id": "duckchain-bridged-usdt-duckchain", + "symbol": "usdt", + "name": "DuckChain Bridged USDT (DuckChain)" + }, + { + "id": "duckchain-token", + "symbol": "duck", + "name": "DuckChain Token" + }, + { + "id": "duckcoin", + "symbol": "duck", + "name": "DuckCoin" + }, + { + "id": "duckdao", + "symbol": "dd", + "name": "DuckDAO" + }, + { + "id": "ducker", + "symbol": "ducker", + "name": "Ducker" + }, + { + "id": "duckereum", + "symbol": "ducker", + "name": "Duckereum" + }, + { + "id": "duckey", + "symbol": "duckey", + "name": "Duckey" + }, + { + "id": "duckie-land-multi-metaverse", + "symbol": "mmeta", + "name": "Duckie Land Multi Metaverse" + }, + { + "id": "duckies", + "symbol": "duckies", + "name": "Yellow Duckies" + }, + { + "id": "duck-the-doug", + "symbol": "doug", + "name": "Doug the Duck" + }, + { + "id": "ducky", + "symbol": "ducky", + "name": "Ducky" + }, + { + "id": "ducky-2", + "symbol": "ducky", + "name": "Ducky" + }, + { + "id": "ducky-city", + "symbol": "dcm", + "name": "Ducky City" + }, + { + "id": "duckydefi", + "symbol": "degg", + "name": "DuckyDefi" + }, + { + "id": "duckyduck", + "symbol": "ducky", + "name": "DuckyDuck" + }, + { + "id": "dudegen", + "symbol": "dudegen", + "name": "DUDEGEN" + }, + { + "id": "dude-injective", + "symbol": "dude", + "name": "DUDE (Injective)" + }, + { + "id": "dudiez-meme-token", + "symbol": "dudiez", + "name": "Dudiez Meme Token" + }, + { + "id": "dudu", + "symbol": "dudu", + "name": "Dudu" + }, + { + "id": "duel-fi", + "symbol": "duelfi", + "name": "DuelFi" + }, + { + "id": "duelmasters", + "symbol": "dm", + "name": "Duelmasters" + }, + { + "id": "duelnow", + "symbol": "dnow", + "name": "DuelNow" + }, + { + "id": "duet-protocol", + "symbol": "duet", + "name": "Duet Protocol" + }, + { + "id": "duge", + "symbol": "duge", + "name": "Duge" + }, + { + "id": "duh", + "symbol": "duh", + "name": "Duh" + }, + { + "id": "duk", + "symbol": "duk", + "name": "Duk" + }, + { + "id": "duke-inu-token", + "symbol": "duke", + "name": "Duke Inu" + }, + { + "id": "duko", + "symbol": "duko", + "name": "DUKO" + }, + { + "id": "duk-on-sol", + "symbol": "duk", + "name": "duk" + }, + { + "id": "dumbmoney", + "symbol": "gme", + "name": "DumbMoney" + }, + { + "id": "dummy", + "symbol": "dummy", + "name": "DUMMY" + }, + { + "id": "dumpling", + "symbol": "dump", + "name": "Dumpling" + }, + { + "id": "dump-trade", + "symbol": "dump", + "name": "dump.trade" + }, + { + "id": "duna-ai", + "symbol": "duna", + "name": "DUNA AI" + }, + { + "id": "dungeon-arena", + "symbol": "dun", + "name": "Dungeon Arena" + }, + { + "id": "dungeonswap", + "symbol": "dnd", + "name": "DungeonSwap" + }, + { + "id": "dungeon-token", + "symbol": "grow", + "name": "Triathon" + }, + { + "id": "duolingo-xstock", + "symbol": "duolx", + "name": "Duolingo xStock" + }, + { + "id": "dupe", + "symbol": "dupe", + "name": "Dupe" + }, + { + "id": "dupe-the-duck", + "symbol": "dupe", + "name": "Dupe The Duck" + }, + { + "id": "du-rove-s-wall", + "symbol": "$wall", + "name": "Du Rove’s Wall" + }, + { + "id": "dusd", + "symbol": "dusd", + "name": "DUSD" + }, + { + "id": "dusk-network", + "symbol": "dusk", + "name": "DUSK" + }, + { + "id": "dust-city-nectar", + "symbol": "nctr", + "name": "Nectar" + }, + { + "id": "dust-protocol", + "symbol": "dust", + "name": "Dust Protocol" + }, + { + "id": "dusty", + "symbol": "dusty", + "name": "Dusty" + }, + { + "id": "dvision-network", + "symbol": "dvi", + "name": "Dvision Network" + }, + { + "id": "dwain", + "symbol": "dwain", + "name": "DWAIN" + }, + { + "id": "dwake-on-sol", + "symbol": "dwake", + "name": "Dwake On Sol" + }, + { + "id": "d-wave-quantum-ondo-tokenized-stock", + "symbol": "qbtson", + "name": "D-Wave Quantum (Ondo Tokenized Stock)" + }, + { + "id": "dwog", + "symbol": "dwog", + "name": "dwog" + }, + { + "id": "dwog-the-dog", + "symbol": "dwog", + "name": "DWOG THE DOG" + }, + { + "id": "dxai-app-by-virtuals", + "symbol": "dxai", + "name": "DXAI.app by Virtuals" + }, + { + "id": "dxchain", + "symbol": "dx", + "name": "DxChain" + }, + { + "id": "dydx", + "symbol": "ethdydx", + "name": "dYdX" + }, + { + "id": "dydx-chain", + "symbol": "dydx", + "name": "dYdX" + }, + { + "id": "dydx-wormhole", + "symbol": "dydx", + "name": "dYdX (Wormhole)" + }, + { + "id": "dyl", + "symbol": "dyl", + "name": "Dyl" + }, + { + "id": "dymension", + "symbol": "dym", + "name": "Dymension" + }, + { + "id": "dymmax", + "symbol": "dmx", + "name": "Dymmax" + }, + { + "id": "dynachain", + "symbol": "dyna", + "name": "Dynachain" + }, + { + "id": "dynamic-crypto-index", + "symbol": "dci", + "name": "Dynamic Crypto Index" + }, + { + "id": "dynamix", + "symbol": "dyna", + "name": "Dynamix" + }, + { + "id": "dynamo", + "symbol": "dyno", + "name": "Dynamo" + }, + { + "id": "dynex", + "symbol": "dnx", + "name": "Dynex" + }, + { + "id": "dyor", + "symbol": "dyor", + "name": "DYOR" + }, + { + "id": "dyor-hub", + "symbol": "dyorhub", + "name": "DYOR hub" + }, + { + "id": "dyor-labs", + "symbol": "dyor", + "name": "Dyordotcom" + }, + { + "id": "dyor-token-2", + "symbol": "dyor", + "name": "DYOR" + }, + { + "id": "dypius", + "symbol": "dyp", + "name": "Dypius" + }, + { + "id": "dyzilla", + "symbol": "dyzilla", + "name": "DYZilla" + }, + { + "id": "dzap", + "symbol": "dzap", + "name": "DZap" + }, + { + "id": "e4c", + "symbol": "e4c", + "name": "E4C" + }, + { + "id": "eacctoken", + "symbol": "eacc", + "name": "EACCToken" + }, + { + "id": "eafin", + "symbol": "eafin", + "name": "Eafin" + }, + { + "id": "eagle-ai", + "symbol": "eai", + "name": "Eagle AI" + }, + { + "id": "eagle-coin", + "symbol": "egc", + "name": "Eagle Coin" + }, + { + "id": "eagle-of-truth", + "symbol": "egl", + "name": "Eagle of Truth" + }, + { + "id": "eagles", + "symbol": "eagles", + "name": "EAGLES" + }, + { + "id": "eagles-wings", + "symbol": "egw", + "name": "EAGLES WINGS" + }, + { + "id": "earl", + "symbol": "earl", + "name": "earl" + }, + { + "id": "early-radix", + "symbol": "early", + "name": "EARLY Radix" + }, + { + "id": "early-risers", + "symbol": "early", + "name": "Early Risers" + }, + { + "id": "earnbet", + "symbol": "ebet", + "name": "EarnBet" + }, + { + "id": "earnm", + "symbol": "earnm", + "name": "Earnm" + }, + { + "id": "earnquest", + "symbol": "earn", + "name": "EarnQuest" + }, + { + "id": "earth-2-essence", + "symbol": "ess", + "name": "Earth 2 Essence" + }, + { + "id": "earthbyt", + "symbol": "ebyt", + "name": "EarthByt" + }, + { + "id": "earthfund", + "symbol": "1earth", + "name": "EarthFund" + }, + { + "id": "earthmeta", + "symbol": "emt", + "name": "EarthMeta" + }, + { + "id": "eastworld", + "symbol": "sn94", + "name": "Eastworld" + }, + { + "id": "easycake", + "symbol": "mcake", + "name": "EasyCake" + }, + { + "id": "easyfi", + "symbol": "ez", + "name": "EasyFi V2" + }, + { + "id": "easy-swap-bot", + "symbol": "ezswap", + "name": "Easy Swap Bot" + }, + { + "id": "eat-trade-fart", + "symbol": "etf", + "name": "Eat Trade Fart" + }, + { + "id": "eaveai", + "symbol": "eave", + "name": "EaveAI" + }, + { + "id": "eazyswap-token", + "symbol": "eazy", + "name": "EazySwap Token" + }, + { + "id": "ebay-xstock", + "symbol": "ebayx", + "name": "eBay xStock" + }, + { + "id": "ebeat-ai", + "symbol": "beatai", + "name": "eBeat AI" + }, + { + "id": "ebert", + "symbol": "ebert", + "name": "EBERT" + }, + { + "id": "ebisusbay-fortune", + "symbol": "frtn", + "name": "Fortune Token" + }, + { + "id": "eblockstock", + "symbol": "ebso", + "name": "eBlockStock" + }, + { + "id": "ebtc", + "symbol": "ebtc", + "name": "eBTC" + }, + { + "id": "ebusd-stablecoin", + "symbol": "ebusd", + "name": "ebUSD Stablecoin" + }, + { + "id": "ecash", + "symbol": "xec", + "name": "eCash" + }, + { + "id": "echain-network", + "symbol": "ect", + "name": "Echain Network" + }, + { + "id": "echelon-prime", + "symbol": "prime", + "name": "Echelon Prime" + }, + { + "id": "echodex-community-portion", + "symbol": "ecp", + "name": "EchoDEX Community Portion" + }, + { + "id": "echoleaks-by-virtuals", + "symbol": "echo", + "name": "EchoLeaks by Virtuals" + }, + { + "id": "echometrix", + "symbol": "mtx", + "name": "EchoMetrix" + }, + { + "id": "echo-of-the-horizon", + "symbol": "eoth", + "name": "Echo Of The Horizon" + }, + { + "id": "echo-protocol", + "symbol": "echo", + "name": "Echo Protocol" + }, + { + "id": "ecl", + "symbol": "ecl", + "name": "ECL" + }, + { + "id": "eclipse-3", + "symbol": "es", + "name": "Eclipse" + }, + { + "id": "eclipse-bridged-usdc-eclipse", + "symbol": "usdc", + "name": "Eclipse Bridged USDC (Eclipse)" + }, + { + "id": "eclipse-fi", + "symbol": "eclip", + "name": "Eclipse Fi" + }, + { + "id": "eco-ai", + "symbol": "eco", + "name": "ECO AI" + }, + { + "id": "ecochain-token", + "symbol": "ect", + "name": "Ecochain Finance" + }, + { + "id": "ecofusion-token", + "symbol": "eft", + "name": "EcoFusion Token" + }, + { + "id": "ecoin-finance", + "symbol": "ecoin", + "name": "Ecoin Finance" + }, + { + "id": "ecomi", + "symbol": "omi", + "name": "ECOMI" + }, + { + "id": "economycoin", + "symbol": "economy", + "name": "economycoin" + }, + { + "id": "ecoreal-estate", + "symbol": "ecoreal", + "name": "Ecoreal Estate" + }, + { + "id": "ecorpay", + "symbol": "ecor", + "name": "Ecorpay" + }, + { + "id": "ecoterra", + "symbol": "ecoterra", + "name": "Ecoterra" + }, + { + "id": "ecotrader", + "symbol": "ect", + "name": "Ecotrader" + }, + { + "id": "e-d-a-s-token", + "symbol": "edas", + "name": "E.D.A.S Token" + }, + { + "id": "eddie-seal", + "symbol": "edse", + "name": "Eddie Seal" + }, + { + "id": "edelweis-coin", + "symbol": "edc", + "name": "Edelweis Coin" + }, + { + "id": "eden", + "symbol": "eden", + "name": "EDEN" + }, + { + "id": "eden-2", + "symbol": "eden", + "name": "EDEN" + }, + { + "id": "eden-3", + "symbol": "edn", + "name": "Eden" + }, + { + "id": "edena", + "symbol": "edena", + "name": "EDENA" + }, + { + "id": "edenlayer", + "symbol": "eden", + "name": "Edenlayer" + }, + { + "id": "edexa", + "symbol": "edx", + "name": "edeXa" + }, + { + "id": "edge", + "symbol": "edge", + "name": "Edge" + }, + { + "id": "edge-matrix-computing", + "symbol": "emc", + "name": "Edge Matrix Computing" + }, + { + "id": "edgen", + "symbol": "edgen", + "name": "LayerEdge" + }, + { + "id": "edgeswap", + "symbol": "egs", + "name": "EdgeSwap" + }, + { + "id": "edgevana-staked-sol", + "symbol": "edgesol", + "name": "Edgevana Staked SOL" + }, + { + "id": "edge-video-ai", + "symbol": "fast", + "name": "Edge Video AI" + }, + { + "id": "edison-bored", + "symbol": "bored", + "name": "BORED" + }, + { + "id": "edog", + "symbol": "edog", + "name": "Edog" + }, + { + "id": "edu3games", + "symbol": "egn", + "name": "Edu3Games" + }, + { + "id": "edu3labs", + "symbol": "nfe", + "name": "Edu3Labs" + }, + { + "id": "edu-chain-bridged-usdc-edu-chain", + "symbol": "usdc", + "name": "Arbitrum Bridged USDC (EDU Chain)" + }, + { + "id": "edu-chain-bridged-usdt-edu-chain", + "symbol": "usdt", + "name": "EDU Chain Bridged USDT (EDU Chain)" + }, + { + "id": "edu-coin", + "symbol": "edu", + "name": "Open Campus" + }, + { + "id": "edum", + "symbol": "edum", + "name": "EDUM" + }, + { + "id": "edu-stabledollar", + "symbol": "esd", + "name": "EDU StableDollar" + }, + { + "id": "eduvantage-ai", + "symbol": "eai", + "name": "Eduvantage AI" + }, + { + "id": "edwin", + "symbol": "edwin", + "name": "Edwin" + }, + { + "id": "eesee", + "symbol": "ese", + "name": "Eesee" + }, + { + "id": "eeth-arm-lp-token", + "symbol": "arm-weth-eeth", + "name": "eETH ARM LP Token" + }, + { + "id": "eeyor", + "symbol": "eeyor", + "name": "Eeyor" + }, + { + "id": "effect-ai", + "symbol": "effect", + "name": "Effect AI" + }, + { + "id": "effective-accelerationism", + "symbol": "e/acc", + "name": "Effective accelerationism" + }, + { + "id": "effect-network", + "symbol": "efx", + "name": "Effect AI [OLD]" + }, + { + "id": "efficientfrontier", + "symbol": "sn53", + "name": "EfficientFrontier" + }, + { + "id": "efinity", + "symbol": "efi", + "name": "Efinity" + }, + { + "id": "egg", + "symbol": "egg", + "name": "EGG" + }, + { + "id": "egg-2", + "symbol": "$egg", + "name": "Egg" + }, + { + "id": "eggdog", + "symbol": "egg", + "name": "Eggdog" + }, + { + "id": "egg-eth", + "symbol": "egg", + "name": "EGG ETH" + }, + { + "id": "eggle-energy", + "symbol": "eng", + "name": "Eggle Energy" + }, + { + "id": "eggnuke", + "symbol": "egg", + "name": "EggNuke" + }, + { + "id": "eggplant-finance", + "symbol": "eggp", + "name": "Eggplant Finance" + }, + { + "id": "eggs", + "symbol": "eggs", + "name": "Eggs" + }, + { + "id": "eggs-finance", + "symbol": "eggs", + "name": "Eggs Finance" + }, + { + "id": "eggy-the-pet-egg", + "symbol": "eggy", + "name": "Eggy The Pet Egg" + }, + { + "id": "egl1", + "symbol": "egl1", + "name": "EGL1" + }, + { + "id": "egodcoin", + "symbol": "egod", + "name": "EgodCoin" + }, + { + "id": "ego-ego", + "symbol": "ego", + "name": "Ego Ego" + }, + { + "id": "eg-token", + "symbol": "eg", + "name": "EG Token" + }, + { + "id": "egypt-cat", + "symbol": "sphynx", + "name": "Egypt Cat" + }, + { + "id": "eid-mubarak", + "symbol": "eidmubarak", + "name": "Eid Mubarak" + }, + { + "id": "eigencode", + "symbol": "code", + "name": "EIGENCODE" + }, + { + "id": "eigenlayer", + "symbol": "eigen", + "name": "EigenCloud (prev. EigenLayer)" + }, + { + "id": "eigenpie", + "symbol": "egp", + "name": "Eigenpie" + }, + { + "id": "eigenpie-ankreth", + "symbol": "mankreth", + "name": "Eigenpie ankrETH" + }, + { + "id": "eigenpie-cbeth", + "symbol": "mcbeth", + "name": "Eigenpie cbETH" + }, + { + "id": "eigenpie-ethx", + "symbol": "methx", + "name": "Eigenpie ETHx" + }, + { + "id": "eigenpie-frxeth", + "symbol": "msfrxeth", + "name": "Eigenpie frxETH" + }, + { + "id": "eigenpie-lseth", + "symbol": "mlseth", + "name": "Eigenpie LsETH" + }, + { + "id": "eigenpie-meth", + "symbol": "mmeth", + "name": "Eigenpie mETH" + }, + { + "id": "eigenpie-msteth", + "symbol": "msteth", + "name": "Eigenpie mstETH" + }, + { + "id": "eigenpie-oeth", + "symbol": "moeth", + "name": "Eigenpie oETH" + }, + { + "id": "eigenpie-oseth", + "symbol": "moseth", + "name": "Eigenpie OsETH" + }, + { + "id": "eigenpie-reth", + "symbol": "mreth", + "name": "Eigenpie rETH" + }, + { + "id": "eigenpie-wbeth", + "symbol": "mwbeth", + "name": "Eigenpie wBETH" + }, + { + "id": "einsteinium", + "symbol": "emc2", + "name": "Einsteinium" + }, + { + "id": "eiob", + "symbol": "eiob", + "name": "EIOB" + }, + { + "id": "eiqt-token", + "symbol": "eiqt", + "name": "eIQT Token" + }, + { + "id": "eiyaro", + "symbol": "ey", + "name": "Eiyaro" + }, + { + "id": "ekko-platform", + "symbol": "ekko", + "name": "EKKO-Platform" + }, + { + "id": "ekubo-protocol", + "symbol": "ekubo", + "name": "Ekubo Protocol" + }, + { + "id": "elaria", + "symbol": "elr", + "name": "Elaria" + }, + { + "id": "elastic-finance-token", + "symbol": "eefi", + "name": "Elastic Finance Token" + }, + { + "id": "elastos", + "symbol": "ela", + "name": "Elastos" + }, + { + "id": "elawn-moosk", + "symbol": "moosk", + "name": "Elawn Moosk" + }, + { + "id": "el-changuito", + "symbol": "chango", + "name": "EL CHANGUITO" + }, + { + "id": "elderglade", + "symbol": "elde", + "name": "Elderglade" + }, + { + "id": "el-dorado-exchange-base", + "symbol": "ede", + "name": "El Dorado Exchange (Base)" + }, + { + "id": "el-dorito", + "symbol": "dorito", + "name": "El Dorito" + }, + { + "id": "electra-protocol", + "symbol": "xep", + "name": "Electra Protocol" + }, + { + "id": "electric-cash", + "symbol": "elcash", + "name": "Electric Cash" + }, + { + "id": "electric-vehicle-direct-currency", + "symbol": "evdc", + "name": "Electric Vehicle Direct Currency" + }, + { + "id": "electric-vehicle-zone", + "symbol": "evz", + "name": "Electric Vehicle Zone" + }, + { + "id": "electroneum", + "symbol": "etn", + "name": "Electroneum" + }, + { + "id": "electronicgulden", + "symbol": "efl", + "name": "Electronic Gulden" + }, + { + "id": "electronic-usd", + "symbol": "eusd", + "name": "Electronic USD" + }, + { + "id": "electron-protocol", + "symbol": "ele", + "name": "Electron Protocol" + }, + { + "id": "electroswap", + "symbol": "bolt", + "name": "ElectroSwap" + }, + { + "id": "elefant", + "symbol": "ele", + "name": "Elefant" + }, + { + "id": "elektrik", + "symbol": "eltk", + "name": "Elektrik" + }, + { + "id": "element", + "symbol": "elmt", + "name": "Element" + }, + { + "id": "element-280", + "symbol": "elmnt", + "name": "Element 280" + }, + { + "id": "elephant-money", + "symbol": "elephant", + "name": "Elephant Money" + }, + { + "id": "elephant-money-trunk", + "symbol": "trunk", + "name": "Elephant Money (TRUNK)" + }, + { + "id": "elevatefi", + "symbol": "efi", + "name": "ElevateFi" + }, + { + "id": "elexium", + "symbol": "ex", + "name": "Elexium" + }, + { + "id": "el-gato", + "symbol": "elgato", + "name": "el gato" + }, + { + "id": "el-gato-2", + "symbol": "elgato", + "name": "EL GATO" + }, + { + "id": "el-gato-3", + "symbol": "gato", + "name": "EL GATO" + }, + { + "id": "el-hippo", + "symbol": "hipp", + "name": "El Hippo" + }, + { + "id": "eli5a", + "symbol": "eli5a", + "name": "Eli5a" + }, + { + "id": "eligma", + "symbol": "goc", + "name": "GoCrypto" + }, + { + "id": "eli-lilly-ondo-tokenized-stock", + "symbol": "llyon", + "name": "Eli Lilly (Ondo Tokenized Stock)" + }, + { + "id": "eli-lilly-xstock", + "symbol": "llyx", + "name": "Eli Lilly xStock" + }, + { + "id": "elixir-ai", + "symbol": "elxai", + "name": "ELIXIR AI" + }, + { + "id": "elixir-deusd", + "symbol": "deusd", + "name": "Elixir deUSD" + }, + { + "id": "elixir-finance", + "symbol": "elx", + "name": "Elixir" + }, + { + "id": "elixir-staked-deusd", + "symbol": "sdeusd", + "name": "Elixir Staked deUSD" + }, + { + "id": "elixir-token", + "symbol": "elix", + "name": "Elixir Games" + }, + { + "id": "eliza", + "symbol": "eliza", + "name": "Eliza" + }, + { + "id": "elizabath-whoren", + "symbol": "whoren", + "name": "elizabath whoren" + }, + { + "id": "eliza-finance", + "symbol": "defai", + "name": "Eliza.Finance" + }, + { + "id": "elk-finance", + "symbol": "elk", + "name": "Elk Finance" + }, + { + "id": "ella", + "symbol": "ella", + "name": "ELLA" + }, + { + "id": "ellipsis", + "symbol": "eps", + "name": "Ellipsis [OLD]" + }, + { + "id": "ellipsis-x", + "symbol": "epx", + "name": "Ellipsis X" + }, + { + "id": "ellow", + "symbol": "y", + "name": "ellow" + }, + { + "id": "elmoerc", + "symbol": "elmo", + "name": "Elmo" + }, + { + "id": "elon", + "symbol": "elon", + "name": "Eloncoin" + }, + { + "id": "elon4afd", + "symbol": "elon4afd", + "name": "Elon4AfD" + }, + { + "id": "elon-doge-token", + "symbol": "edoge", + "name": "ElonDoge.io" + }, + { + "id": "elon-goat", + "symbol": "egt", + "name": "Elon GOAT" + }, + { + "id": "elonia-trump", + "symbol": "elonia", + "name": "Elonia Trump" + }, + { + "id": "elonrwa", + "symbol": "elonrwa", + "name": "ElonRWA" + }, + { + "id": "elons-gamertag", + "symbol": "random9", + "name": "Elons Gamertag" + }, + { + "id": "elon-s-hedgehog", + "symbol": "shrub", + "name": "Elon's Hedgehog" + }, + { + "id": "elons-pet-snail", + "symbol": "gary", + "name": "Elons Pet Snail" + }, + { + "id": "elon-trump", + "symbol": "et", + "name": "Elon Trump" + }, + { + "id": "elon-trump-fart", + "symbol": "etf500", + "name": "Elon Trump Fart" + }, + { + "id": "elonxcat", + "symbol": "exc", + "name": "ElonXCat" + }, + { + "id": "el-risitas", + "symbol": "kek", + "name": "El Risitas" + }, + { + "id": "elrond-erd-2", + "symbol": "egld", + "name": "MultiversX" + }, + { + "id": "el-sapo-pepe", + "symbol": "pepe", + "name": "El Sapo Pepe" + }, + { + "id": "elseverse-world", + "symbol": "ells", + "name": "ElseVerse World" + }, + { + "id": "elucks", + "symbol": "elux", + "name": "ELUCKS" + }, + { + "id": "elur-coin", + "symbol": "elurc", + "name": "eLur-coin" + }, + { + "id": "elvis", + "symbol": "elvis", + "name": "ELVIS" + }, + { + "id": "elyfi", + "symbol": "elfi", + "name": "ELYFI" + }, + { + "id": "elympics", + "symbol": "elp", + "name": "Elympics" + }, + { + "id": "elysia", + "symbol": "el", + "name": "ELYSIA" + }, + { + "id": "elysiumg", + "symbol": "lcmg", + "name": "ElysiumG" + }, + { + "id": "elysyn-ai", + "symbol": "elysyn", + "name": "Elysyn Ai" + }, + { + "id": "elytra", + "symbol": "elytra", + "name": "ELYTRA" + }, + { + "id": "email-token", + "symbol": "emt", + "name": "EMAIL Token" + }, + { + "id": "ember", + "symbol": "ember", + "name": "Ember" + }, + { + "id": "ember-sword", + "symbol": "ember", + "name": "Ember Sword" + }, + { + "id": "emdx", + "symbol": "emdx", + "name": "EMDX" + }, + { + "id": "emeow", + "symbol": "emeow", + "name": "emeow" + }, + { + "id": "emercoin", + "symbol": "emc", + "name": "EmerCoin" + }, + { + "id": "emerge", + "symbol": "emerge", + "name": "Emerge" + }, + { + "id": "emilia", + "symbol": "emilia", + "name": "Emilia" + }, + { + "id": "emit", + "symbol": "emit", + "name": "Emit" + }, + { + "id": "emit-2", + "symbol": "emit", + "name": "EMIT" + }, + { + "id": "emmet", + "symbol": "emmet", + "name": "EMMET" + }, + { + "id": "emmy", + "symbol": "emmy", + "name": "Emmy" + }, + { + "id": "emoji-erc20", + "symbol": "$emoji", + "name": "emoji ERC20" + }, + { + "id": "e-money", + "symbol": "ngm", + "name": "e-Money" + }, + { + "id": "e-money-eur", + "symbol": "eeur", + "name": "e-Money EUR" + }, + { + "id": "emoneytoken", + "symbol": "emyc", + "name": "E Money Network" + }, + { + "id": "emorya-finance", + "symbol": "emr", + "name": "Emorya Finance" + }, + { + "id": "emoticoin-2", + "symbol": "emoti", + "name": "EMOTICOIN" + }, + { + "id": "emotional-support-alligator", + "symbol": "wally", + "name": "Emotional Support Alligator" + }, + { + "id": "emotional-support-dog", + "symbol": "magnus", + "name": "Emotional Support Dog" + }, + { + "id": "emperor", + "symbol": "empi", + "name": "Emperor" + }, + { + "id": "emperor-coin", + "symbol": "$imperium", + "name": "Emperor Coin" + }, + { + "id": "empire-token", + "symbol": "empire", + "name": "Empire" + }, + { + "id": "employees", + "symbol": "yes", + "name": "Employees" + }, + { + "id": "emp-money", + "symbol": "emp", + "name": "Emp Money" + }, + { + "id": "emp-shares-v2", + "symbol": "eshare v2", + "name": "EMP Shares" + }, + { + "id": "emptiness-coin", + "symbol": "∅", + "name": "Emptiness Coin" + }, + { + "id": "empyreal", + "symbol": "emp", + "name": "Empyreal" + }, + { + "id": "emulites", + "symbol": "emulites", + "name": "Emulites" + }, + { + "id": "encoins", + "symbol": "encs", + "name": "Encoins" + }, + { + "id": "encrypgen", + "symbol": "dna", + "name": "EncrypGen" + }, + { + "id": "encryptsim", + "symbol": "esim", + "name": "encryptSIM" + }, + { + "id": "encryptum", + "symbol": "enct", + "name": "Encryptum" + }, + { + "id": "end", + "symbol": "end", + "name": "END" + }, + { + "id": "end-federal-reserve", + "symbol": "efr", + "name": "End Federal Reserve" + }, + { + "id": "endurance", + "symbol": "ace", + "name": "Fusionist" + }, + { + "id": "endur-fi-staked-strk", + "symbol": "xstrk", + "name": "Endur.Fi Staked STRK" + }, + { + "id": "end-wokeness", + "symbol": "woke", + "name": "End Wokeness" + }, + { + "id": "enegra", + "symbol": "egx", + "name": "Enegra" + }, + { + "id": "energi", + "symbol": "nrg", + "name": "Energi" + }, + { + "id": "energi-bridged-usdc-energi", + "symbol": "usdc", + "name": "Energi Bridged USDC (Energi)" + }, + { + "id": "energi-dollar", + "symbol": "usde", + "name": "Energi Dollar" + }, + { + "id": "energiswap-wavax-energi", + "symbol": "eavax", + "name": "Energiswap WAVAX (Energi)" + }, + { + "id": "energy8", + "symbol": "e8", + "name": "Energy8" + }, + { + "id": "energy-coin", + "symbol": "energy", + "name": "ENERGY COIN" + }, + { + "id": "energy-efficient-mortgage-tokenized-stock-defichain", + "symbol": "deem", + "name": "iShares MSCI Emerging Markets ETF Defichain" + }, + { + "id": "energy-token", + "symbol": "nrg", + "name": "Energy Token" + }, + { + "id": "energy-web-token", + "symbol": "ewt", + "name": "Energy Web" + }, + { + "id": "enfineo", + "symbol": "enf", + "name": "enfineo" + }, + { + "id": "eng-crypto", + "symbol": "eng", + "name": "Eng Crypto" + }, + { + "id": "engines-of-fury", + "symbol": "fury", + "name": "Engines of Fury" + }, + { + "id": "england-coin", + "symbol": "eng", + "name": "England Coin" + }, + { + "id": "enjincoin", + "symbol": "enj", + "name": "Enjin Coin" + }, + { + "id": "enjinstarter", + "symbol": "ejs", + "name": "Enjinstarter" + }, + { + "id": "enjoy", + "symbol": "enjoy", + "name": "Enjoy" + }, + { + "id": "enki-2", + "symbol": "enki", + "name": "Enki" + }, + { + "id": "enki-protocol", + "symbol": "enki", + "name": "ENKI Protocol" + }, + { + "id": "enkrion", + "symbol": "enkrion", + "name": "Enkrion" + }, + { + "id": "enkryptedai", + "symbol": "krai", + "name": "EnKryptedAI" + }, + { + "id": "enkrypto", + "symbol": "krypt", + "name": "EnKrypto" + }, + { + "id": "enlightenment", + "symbol": "e", + "name": "Enlightenment" + }, + { + "id": "enoch", + "symbol": "enoch", + "name": "Enoch" + }, + { + "id": "enosys", + "symbol": "hln", + "name": "Ēnosys" + }, + { + "id": "enosys-usdt", + "symbol": "eusdt", + "name": "Enosys USDT" + }, + { + "id": "enrex", + "symbol": "enrx", + "name": "Enrex" + }, + { + "id": "enso", + "symbol": "enso", + "name": "Enso" + }, + { + "id": "entangle", + "symbol": "ntgl", + "name": "Entangle" + }, + { + "id": "enterbeat", + "symbol": "ebt", + "name": "ENTERBEAT" + }, + { + "id": "enterisecoin", + "symbol": "ent", + "name": "EnteriseCoin" + }, + { + "id": "entrave", + "symbol": "entrv", + "name": "Entrave" + }, + { + "id": "entro-finance", + "symbol": "entro", + "name": "Entro Finance" + }, + { + "id": "entropy-2", + "symbol": "ent", + "name": "ENTROPY" + }, + { + "id": "ents", + "symbol": "ents", + "name": "Ents" + }, + { + "id": "envida", + "symbol": "edat", + "name": "EnviDa" + }, + { + "id": "envi-foundation", + "symbol": "envi", + "name": "Envi Coin" + }, + { + "id": "envision-2", + "symbol": "vis", + "name": "Envision Labs" + }, + { + "id": "envoy-a-i", + "symbol": "envoy", + "name": "Envoy A.I" + }, + { + "id": "eolas", + "symbol": "eolas", + "name": "Eolas ☴" + }, + { + "id": "eonic", + "symbol": "eonic", + "name": "EONIC" + }, + { + "id": "eoniq", + "symbol": "eoniq", + "name": "EonIQ" + }, + { + "id": "eos", + "symbol": "eos", + "name": "EOS" + }, + { + "id": "eos-wrapped-ram", + "symbol": "wram", + "name": "EOS Wrapped RAM" + }, + { + "id": "epep", + "symbol": "epep", + "name": "Epep" + }, + { + "id": "epep-2", + "symbol": "epep", + "name": "EPEP" + }, + { + "id": "epic-cash", + "symbol": "epic", + "name": "Epic Cash" + }, + { + "id": "epic-chain", + "symbol": "epic", + "name": "Epic Chain" + }, + { + "id": "epic-fail-guy", + "symbol": "efg", + "name": "EPIC FAIL GUY" + }, + { + "id": "epic-league", + "symbol": "epl", + "name": "Epic League" + }, + { + "id": "epics-token", + "symbol": "epct", + "name": "Epics Token" + }, + { + "id": "epik-prime", + "symbol": "epik", + "name": "Epik Prime" + }, + { + "id": "epik-protocol", + "symbol": "aiepk", + "name": "EpiK Protocol" + }, + { + "id": "epoch", + "symbol": "epoch", + "name": "Epoch" + }, + { + "id": "eq9-2", + "symbol": "eq9", + "name": "EQ9" + }, + { + "id": "eqifi", + "symbol": "eqx", + "name": "EQIFi" + }, + { + "id": "equalizer-base", + "symbol": "scale", + "name": "Equalizer (BASE)" + }, + { + "id": "equalizer-on-sonic", + "symbol": "equal", + "name": "Equalizer on Sonic" + }, + { + "id": "equation", + "symbol": "equ", + "name": "Equation" + }, + { + "id": "equilibria-finance", + "symbol": "eqb", + "name": "Equilibria Finance" + }, + { + "id": "equilibrium", + "symbol": "eq", + "name": "Equilibrium Games" + }, + { + "id": "equilibrium-token", + "symbol": "eq", + "name": "Equilibrium" + }, + { + "id": "equinix-ondo-tokenized-stock", + "symbol": "eqixon", + "name": "Equinix (Ondo Tokenized Stock)" + }, + { + "id": "equinox-ai", + "symbol": "equinox", + "name": "EQUINOX AI" + }, + { + "id": "equinox-ecosystem", + "symbol": "nox", + "name": "Equinox Ecosystem" + }, + { + "id": "equitedge", + "symbol": "eeg", + "name": "EquitEdge" + }, + { + "id": "equitypay", + "symbol": "eqpay", + "name": "EquityPay" + }, + { + "id": "era7", + "symbol": "era", + "name": "Era7" + }, + { + "id": "eraape", + "symbol": "eape", + "name": "EraApe [OLD]" + }, + { + "id": "erable", + "symbol": "era", + "name": "Erable°" + }, + { + "id": "e-radix", + "symbol": "exrd", + "name": "e-Radix" + }, + { + "id": "eralabs", + "symbol": "eralab", + "name": "EraLabs" + }, + { + "id": "erbiechain", + "symbol": "erb", + "name": "ErbieChain" + }, + { + "id": "erebus", + "symbol": "erb", + "name": "erebus" + }, + { + "id": "erectusdao", + "symbol": "yuge", + "name": "ErectusDAO" + }, + { + "id": "ergo", + "symbol": "erg", + "name": "Ergo" + }, + { + "id": "ergone", + "symbol": "ergone", + "name": "ErgOne" + }, + { + "id": "erha", + "symbol": "二哈", + "name": "Erha" + }, + { + "id": "eric", + "symbol": "eric", + "name": "Elon's Pet Fish ERIC" + }, + { + "id": "eric-2", + "symbol": "eric", + "name": "Eric" + }, + { + "id": "eric-the-goldfish", + "symbol": "eric", + "name": "Eric the Goldfish" + }, + { + "id": "eris-amplified-juno", + "symbol": "ampjuno", + "name": "Eris Amplified JUNO" + }, + { + "id": "eris-amplified-luna", + "symbol": "ampluna", + "name": "Eris Amplified Luna" + }, + { + "id": "eris-amplified-mnta", + "symbol": "ampmnta", + "name": "Eris Amplified MNTA" + }, + { + "id": "eris-amplified-whale", + "symbol": "ampwhale", + "name": "Eris Amplified WHALE" + }, + { + "id": "eris-arbitrage-luna", + "symbol": "arbluna", + "name": "ERIS Arbitrage LUNA" + }, + { + "id": "ernie", + "symbol": "$ernie", + "name": "ERNIE" + }, + { + "id": "erol-musk", + "symbol": "erol", + "name": "Erol Musk" + }, + { + "id": "ertha", + "symbol": "ertha", + "name": "Ertha" + }, + { + "id": "es1m", + "symbol": "es1m", + "name": "eS1M" + }, + { + "id": "esab", + "symbol": "$esab", + "name": "ESAB" + }, + { + "id": "escaped-lab-monkeys", + "symbol": "monkey", + "name": "Escaped Lab Monkeys" + }, + { + "id": "esco-coin", + "symbol": "esco", + "name": "Esco Coin" + }, + { + "id": "escoin-token", + "symbol": "elg", + "name": "Escoin" + }, + { + "id": "escrowed-lbr", + "symbol": "eslbr", + "name": "Escrowed LBR" + }, + { + "id": "escrowed-prf", + "symbol": "esprf", + "name": "escrowed PRF" + }, + { + "id": "esg", + "symbol": "esg", + "name": "ESG" + }, + { + "id": "esm-x", + "symbol": "esmx", + "name": "ESM X" + }, + { + "id": "esporte-clube-bahia-fan-token", + "symbol": "bahia", + "name": "Esporte Clube Bahia Fan Token" + }, + { + "id": "esportplayer", + "symbol": "esport", + "name": "Esportplayer" + }, + { + "id": "espresso", + "symbol": "esp", + "name": "Espresso" + }, + { + "id": "espresso-bot", + "symbol": "espr", + "name": "Espresso Bot" + }, + { + "id": "essentia", + "symbol": "ess", + "name": "Essentia" + }, + { + "id": "estaliax", + "symbol": "esxa", + "name": "EstaliaX" + }, + { + "id": "estatex", + "symbol": "esx", + "name": "EstateX" + }, + { + "id": "estee", + "symbol": "estee", + "name": "Estee" + }, + { + "id": "esv-capital", + "symbol": "esvc", + "name": "ESV Capital" + }, + { + "id": "etarn", + "symbol": "etan", + "name": "Etarn" + }, + { + "id": "etcpow", + "symbol": "etcpow", + "name": "ETCPOW" + }, + { + "id": "eternalai", + "symbol": "eai", + "name": "EternalAI" + }, + { + "id": "eternal-ai", + "symbol": "mind", + "name": "Eternal AI" + }, + { + "id": "eternals", + "symbol": "eter", + "name": "Eternals" + }, + { + "id": "etf-rocks", + "symbol": "etf", + "name": "ETF Rocks" + }, + { + "id": "etf-the-token", + "symbol": "etf", + "name": "ETF The Token" + }, + { + "id": "eth0", + "symbol": "eth0", + "name": "Usual ETH" + }, + { + "id": "eth2-staking-by-poolx", + "symbol": "eth2", + "name": "Eth 2.0 Staking by Pool-X" + }, + { + "id": "eth-2x-flexible-leverage-index", + "symbol": "eth2x-fli", + "name": "Index Coop - ETH 2x Flexible Leverage Index" + }, + { + "id": "eth6900", + "symbol": "eth6900", + "name": "ETH6900" + }, + { + "id": "ethardio", + "symbol": "ethardio", + "name": "ETHARDIO" + }, + { + "id": "ethax", + "symbol": "ethax", + "name": "ETHAX" + }, + { + "id": "ethdown", + "symbol": "ethdown", + "name": "ETHDOWN" + }, + { + "id": "etheism", + "symbol": "e", + "name": "Etheism" + }, + { + "id": "ethena", + "symbol": "ena", + "name": "Ethena" + }, + { + "id": "ethena-staked-ena", + "symbol": "sena", + "name": "Ethena Staked ENA" + }, + { + "id": "ethena-staked-usde", + "symbol": "susde", + "name": "Ethena Staked USDe" + }, + { + "id": "ethena-usde", + "symbol": "usde", + "name": "Ethena USDe" + }, + { + "id": "ethena-ustb", + "symbol": "ustb", + "name": "Ethena UStb" + }, + { + "id": "ether-1", + "symbol": "etho", + "name": "Etho Protocol" + }, + { + "id": "etherbutts", + "symbol": "meth", + "name": "ETHERBUTTS" + }, + { + "id": "etherdoge", + "symbol": "edoge", + "name": "EtherDoge" + }, + { + "id": "ethereal", + "symbol": "ethereal", + "name": "Ethereal" + }, + { + "id": "ethereans", + "symbol": "os", + "name": "Ethereans" + }, + { + "id": "ethereum", + "symbol": "eth", + "name": "Ethereum" + }, + { + "id": "ethereum-classic", + "symbol": "etc", + "name": "Ethereum Classic" + }, + { + "id": "ethereum-doge", + "symbol": "edoge", + "name": "Ethereum Doge" + }, + { + "id": "ethereum-goddess", + "symbol": "ethera", + "name": "Ethereum Goddess" + }, + { + "id": "ethereum-is-good", + "symbol": "ebull", + "name": "ETHEREUM IS GOOD" + }, + { + "id": "ethereummax", + "symbol": "emax", + "name": "EthereumMax" + }, + { + "id": "ethereum-meta", + "symbol": "ethm", + "name": "Ethereum Meta" + }, + { + "id": "ethereum-name-service", + "symbol": "ens", + "name": "Ethereum Name Service" + }, + { + "id": "ethereum-origins", + "symbol": "laputa", + "name": "Ethereum Origins" + }, + { + "id": "ethereum-overnight", + "symbol": "eth+", + "name": "Ethereum+ (Overnight)" + }, + { + "id": "ethereum-pow-iou", + "symbol": "ethw", + "name": "EthereumPoW" + }, + { + "id": "ethereum-push-notification-service", + "symbol": "push", + "name": "Push Protocol" + }, + { + "id": "ethereum-reserve-dollar-usde", + "symbol": "usde", + "name": "Ethereum Reserve Dollar USDE" + }, + { + "id": "ethereum-volatility-index-token", + "symbol": "ethv", + "name": "Ethereum Volatility Index Token" + }, + { + "id": "ethereum-wormhole", + "symbol": "eth", + "name": "Ethereum (Wormhole)" + }, + { + "id": "ethereumx", + "symbol": "etx", + "name": "EthereumX" + }, + { + "id": "etherex", + "symbol": "rex", + "name": "Etherex" + }, + { + "id": "etherex-liquid-staking-token", + "symbol": "rex33", + "name": "Etherex Liquid Staking Token" + }, + { + "id": "ether-fi", + "symbol": "ethfi", + "name": "Ether.fi" + }, + { + "id": "ether-fi-liquid-eth", + "symbol": "liquideth", + "name": "Ether.Fi Liquid ETH" + }, + { + "id": "ether-fi-staked-btc", + "symbol": "ebtc", + "name": "Ether.fi Staked BTC" + }, + { + "id": "ether-fi-staked-eigen", + "symbol": "eeigen", + "name": "ether.fi Staked EIGEN" + }, + { + "id": "ether-fi-staked-eth", + "symbol": "eeth", + "name": "ether.fi Staked ETH" + }, + { + "id": "etherfi-weeths", + "symbol": "weeths", + "name": "ether.fi weETHs" + }, + { + "id": "etherfloki", + "symbol": "efloki", + "name": "EtherFloki" + }, + { + "id": "etherfuse-ustry", + "symbol": "ustry", + "name": "Etherfuse USTRY" + }, + { + "id": "etheria-token", + "symbol": "etrx", + "name": "Etheria Token" + }, + { + "id": "etherisc", + "symbol": "dip", + "name": "Etherisc DIP" + }, + { + "id": "etherland", + "symbol": "eland", + "name": "Etherland" + }, + { + "id": "etherlink-bridged-wbtc-etherlink", + "symbol": "wbtc", + "name": "Etherlink Bridged WBTC (Etherlink)" + }, + { + "id": "ethermax", + "symbol": "maxx", + "name": "Ethermax" + }, + { + "id": "ethermon", + "symbol": "emon", + "name": "Ethermon" + }, + { + "id": "ethernity-chain", + "symbol": "ern", + "name": "Ethernity Chain" + }, + { + "id": "ethernity-cloud", + "symbol": "ecld", + "name": "Ethernity Cloud" + }, + { + "id": "etherpos", + "symbol": "etpos", + "name": "EtherPoS" + }, + { + "id": "ethervista", + "symbol": "vista", + "name": "Ethervista" + }, + { + "id": "eth-fan-token", + "symbol": "eft", + "name": "ETH Fan Token Ecosystem" + }, + { + "id": "ethforestai", + "symbol": "ethfai", + "name": "ETHforestAI" + }, + { + "id": "ethichub", + "symbol": "ethix", + "name": "Ethix" + }, + { + "id": "ethlas", + "symbol": "els", + "name": "Ethlas" + }, + { + "id": "ethlend", + "symbol": "lend", + "name": "Aave [OLD]" + }, + { + "id": "ethos", + "symbol": "vgx", + "name": "VGX Token" + }, + { + "id": "ethos-3", + "symbol": "ethos", + "name": "Ethos" + }, + { + "id": "ethos-reserve-note", + "symbol": "ern", + "name": "Ethos Reserve Note" + }, + { + "id": "ethpad", + "symbol": "ethpad", + "name": "ETHPad" + }, + { + "id": "eth-printer", + "symbol": "ethprinter", + "name": "ETH Printer" + }, + { + "id": "ethscriptions", + "symbol": "eths", + "name": "Ethscriptions" + }, + { + "id": "eth-snek", + "symbol": "snek", + "name": "ETH Snek" + }, + { + "id": "eth-stable-mori-finance", + "symbol": "eths", + "name": "ETH Stable" + }, + { + "id": "eth-strategy", + "symbol": "strat", + "name": "ETH Strategy" + }, + { + "id": "ethup", + "symbol": "ethup", + "name": "ETHUP" + }, + { + "id": "ethy-ai", + "symbol": "ethy", + "name": "Ethy AI" + }, + { + "id": "etica", + "symbol": "eti", + "name": "Etica" + }, + { + "id": "etuktuk", + "symbol": "tuk", + "name": "eTukTuk" + }, + { + "id": "euler", + "symbol": "eul", + "name": "Euler" + }, + { + "id": "euphoria-3", + "symbol": "euph", + "name": "Euphoria" + }, + { + "id": "eureka-bridged-pax-gold-terra", + "symbol": "paxg", + "name": "Eureka Bridged PAX Gold (Terra)" + }, + { + "id": "eureka-bridged-wbtc-terra", + "symbol": "wbtc", + "name": "Eureka Bridged WBTC (Terra)" + }, + { + "id": "eure-real-yield-morpho-vault", + "symbol": "ery", + "name": "EURe Real Yield Morpho Vault" + }, + { + "id": "eurite", + "symbol": "euri", + "name": "Eurite" + }, + { + "id": "euro-coin", + "symbol": "eurc", + "name": "EURC" + }, + { + "id": "eurocoinpay", + "symbol": "ecte", + "name": "EurocoinToken" + }, + { + "id": "euruka-tech", + "symbol": "erc-ai", + "name": "Euruka Tech" + }, + { + "id": "eusd-27a558b0-8b5b-4225-a614-63539da936f4", + "symbol": "eusd", + "name": "eUSD (OLD)" + }, + { + "id": "eusd-new", + "symbol": "eusd", + "name": "eUSD" + }, + { + "id": "eutbl", + "symbol": "eutbl", + "name": "Spiko EU T-Bills Money Market Fund" + }, + { + "id": "eva", + "symbol": "eva", + "name": "EVA" + }, + { + "id": "eva-ai", + "symbol": "$eva", + "name": "eVa-ai" + }, + { + "id": "eva-ai-companion", + "symbol": "eva", + "name": "Eva AI Companion" + }, + { + "id": "evaa-protocol", + "symbol": "evaa", + "name": "EVAA Protocol" + }, + { + "id": "evai-2", + "symbol": "ev", + "name": "Evai" + }, + { + "id": "evan-2", + "symbol": "evan", + "name": "Evan" + }, + { + "id": "evana", + "symbol": "evana", + "name": "EVANA" + }, + { + "id": "eve-ai", + "symbol": "eveai", + "name": "Eve AI" + }, + { + "id": "ever", + "symbol": "evrx", + "name": "EVRX" + }, + { + "id": "everclear", + "symbol": "clear", + "name": "Everclear" + }, + { + "id": "evercraft-ecotechnologies", + "symbol": "ecet", + "name": "Evercraft Ecotechnologies" + }, + { + "id": "everdome", + "symbol": "dome", + "name": "Hum(AI)n Web3" + }, + { + "id": "evereth", + "symbol": "evereth", + "name": "EverETH Reflect" + }, + { + "id": "everid", + "symbol": "id", + "name": "Everest" + }, + { + "id": "everipedia", + "symbol": "iq", + "name": "IQ" + }, + { + "id": "everlodge", + "symbol": "eldg", + "name": "Everlodge" + }, + { + "id": "everlyn", + "symbol": "lyn", + "name": "Everlyn" + }, + { + "id": "evermoon-erc", + "symbol": "evermoon", + "name": "EverMoon ERC" + }, + { + "id": "evermoon-sol", + "symbol": "evermoon", + "name": "EVERMOON SOL" + }, + { + "id": "evernode", + "symbol": "evr", + "name": "Evernode" + }, + { + "id": "everrise", + "symbol": "rise", + "name": "EverRise" + }, + { + "id": "everscale", + "symbol": "ever", + "name": "Everscale" + }, + { + "id": "ever-sol", + "symbol": "ever", + "name": "Ever Sol" + }, + { + "id": "everton-fan-token", + "symbol": "efc", + "name": "Everton Fan Token" + }, + { + "id": "evervalue-coin", + "symbol": "eva", + "name": "EverValue Coin" + }, + { + "id": "everybody", + "symbol": "hold", + "name": "Everybody" + }, + { + "id": "everycoin", + "symbol": "evy", + "name": "EveryCoin" + }, + { + "id": "everycoin-2", + "symbol": "evcn", + "name": "EVERYCOIN" + }, + { + "id": "every-game", + "symbol": "egame", + "name": "Every Game" + }, + { + "id": "everyworld", + "symbol": "every", + "name": "Everyworld" + }, + { + "id": "evil-larry", + "symbol": "larry", + "name": "Evil Larry" + }, + { + "id": "evivo-token", + "symbol": "evivo", + "name": "EVIVO Token" + }, + { + "id": "evmos", + "symbol": "evmos", + "name": "Evmos" + }, + { + "id": "evolvai", + "symbol": "evoai", + "name": "EvolvAi" + }, + { + "id": "evolve-2", + "symbol": "evolve", + "name": "Evolve" + }, + { + "id": "evolve-network", + "symbol": "evolve", + "name": "Evolve Network" + }, + { + "id": "evolve-pro", + "symbol": "evop", + "name": "Evolve PRO" + }, + { + "id": "evopay", + "symbol": "epay", + "name": "EvoPay" + }, + { + "id": "evosimgame", + "symbol": "esim", + "name": "EvoSimGame" + }, + { + "id": "evoverses", + "symbol": "evo", + "name": "EvoVerses" + }, + { + "id": "evrmore", + "symbol": "evr", + "name": "Evrmore" + }, + { + "id": "evulus", + "symbol": "evu", + "name": "Evulus" + }, + { + "id": "exa", + "symbol": "exa", + "name": "Exactly Protocol" + }, + { + "id": "exa-2", + "symbol": "exa", + "name": "EXA" + }, + { + "id": "exactly-op", + "symbol": "exaop", + "name": "Exactly Optimism" + }, + { + "id": "exactly-usdc", + "symbol": "exausdc.e", + "name": "Exactly USD.e Coin" + }, + { + "id": "exactly-usd-coin", + "symbol": "exausdc", + "name": "Exactly USD Coin" + }, + { + "id": "exactly-wbtc", + "symbol": "exawbtc", + "name": "Exactly WBTC" + }, + { + "id": "exactly-weth", + "symbol": "exaweth", + "name": "Exactly Wrapped Ether" + }, + { + "id": "exactly-wsteth", + "symbol": "exawsteth", + "name": "Exactly Wrapped stETH" + }, + { + "id": "exatech", + "symbol": "ext", + "name": "Exatech" + }, + { + "id": "excelon", + "symbol": "xlon", + "name": "Excelon" + }, + { + "id": "exchangeart", + "symbol": "art", + "name": "ExchangeArt" + }, + { + "id": "exchangecoin", + "symbol": "excc", + "name": "ExchangeCoin" + }, + { + "id": "exeedme", + "symbol": "xed", + "name": "Exeedme [OLD]" + }, + { + "id": "exeedme-2", + "symbol": "xed", + "name": "Exeedme" + }, + { + "id": "exim", + "symbol": "exim", + "name": "Exim" + }, + { + "id": "exit-designer-token", + "symbol": "exit", + "name": "EXIT Designer Token" + }, + { + "id": "exit-liquidity", + "symbol": "retail", + "name": "Exit Liquidity" + }, + { + "id": "exmo-coin", + "symbol": "exm", + "name": "EXMO Coin" + }, + { + "id": "exmplr-ai-by-virtuals", + "symbol": "exmplr", + "name": "Exmplr.ai by Virtuals" + }, + { + "id": "exodas", + "symbol": "exo", + "name": "EXODAS" + }, + { + "id": "exodus-ai", + "symbol": "exo", + "name": "Exodus AI" + }, + { + "id": "exodus-movement-inc", + "symbol": "exod", + "name": "Exodus Movement, Inc." + }, + { + "id": "exohood", + "symbol": "exo", + "name": "Exohood" + }, + { + "id": "exosama-network", + "symbol": "sama", + "name": "Moonsama" + }, + { + "id": "exotic-markets", + "symbol": "exo", + "name": "Exotic Markets" + }, + { + "id": "expedia-xstock", + "symbol": "expex", + "name": "Expedia xStock" + }, + { + "id": "expert_money", + "symbol": "expert", + "name": "EXPERT_MONEY" + }, + { + "id": "exsat-staking-btc", + "symbol": "esbtc", + "name": "exSat Staking BTC" + }, + { + "id": "extractor-91", + "symbol": "e91", + "name": "Extractor-91" + }, + { + "id": "extradna", + "symbol": "xdna", + "name": "extraDNA" + }, + { + "id": "extra-finance", + "symbol": "extra", + "name": "Extra Finance" + }, + { + "id": "extreme-accelerationism", + "symbol": "x/acc", + "name": "Extreme Accelerationism" + }, + { + "id": "extsy", + "symbol": "xtsy", + "name": "Extsy" + }, + { + "id": "exverse", + "symbol": "exvg", + "name": "Exverse" + }, + { + "id": "exxon-mobil-xstock", + "symbol": "xomx", + "name": "Exxon Mobil xStock" + }, + { + "id": "eyare", + "symbol": "eyare", + "name": "Eyare" + }, + { + "id": "eye-am-watching-you", + "symbol": "eye", + "name": "EYE Am Watching You" + }, + { + "id": "eyed", + "symbol": "eyed", + "name": "EYED" + }, + { + "id": "eye-earn", + "symbol": "smilek", + "name": "Smilek" + }, + { + "id": "eye-future-by-virtuals", + "symbol": "eye", + "name": "Eye Future by Virtuals" + }, + { + "id": "eyeverse", + "symbol": "eye", + "name": "Eyeverse" + }, + { + "id": "eywa", + "symbol": "eywa", + "name": "EYWA" + }, + { + "id": "eyzoai", + "symbol": "eyz", + "name": "EyzoAI" + }, + { + "id": "ez1-token", + "symbol": "ez", + "name": "EZ1 TOKEN" + }, + { + "id": "ezkalibur", + "symbol": "sword", + "name": "eZKalibur" + }, + { + "id": "ezswap-protocol", + "symbol": "ezswap", + "name": "EZswap Protocol" + }, + { + "id": "f", + "symbol": "f", + "name": "F" + }, + { + "id": "fabled-adventure-fap", + "symbol": "fap", + "name": "Fabled Adventure FAP" + }, + { + "id": "fable-of-the-dragon", + "symbol": "tyrant", + "name": "Fable Of The Dragon" + }, + { + "id": "fabric", + "symbol": "fab", + "name": "Fabric" + }, + { + "id": "fabs", + "symbol": "fabs", + "name": "Fabs" + }, + { + "id": "fabwelt", + "symbol": "welt", + "name": "Fabwelt" + }, + { + "id": "facebook-tokenized-stock-defichain", + "symbol": "dfb", + "name": "Facebook Tokenized Stock Defichain" + }, + { + "id": "facedao", + "symbol": "face", + "name": "FaceDAO" + }, + { + "id": "faceless", + "symbol": "faceless", + "name": "FACELESS" + }, + { + "id": "fact0rn", + "symbol": "fact", + "name": "Factor" + }, + { + "id": "factor", + "symbol": "fctr", + "name": "Factor" + }, + { + "id": "fade-wallet-token", + "symbol": "fwt", + "name": "Fade Wallet Token" + }, + { + "id": "fadewallet-token", + "symbol": "fwt", + "name": "FadeWallet Token" + }, + { + "id": "fafo", + "symbol": "fafo", + "name": "FAFO" + }, + { + "id": "fa-fo", + "symbol": "fa=fo", + "name": "FA=FO" + }, + { + "id": "fafy-token", + "symbol": "fafy", + "name": "Fafy Token" + }, + { + "id": "fair", + "symbol": "fair", + "name": "fair" + }, + { + "id": "fair-and-free", + "symbol": "fair3", + "name": "Fair and Free" + }, + { + "id": "faircaster", + "symbol": "fair", + "name": "Faircaster" + }, + { + "id": "faircoin-2", + "symbol": "fairly", + "name": "Faircoin" + }, + { + "id": "fairerc20", + "symbol": "ferc", + "name": "FairERC20" + }, + { + "id": "fairwitness", + "symbol": "fwt", + "name": "FairWitness" + }, + { + "id": "faith", + "symbol": "faith", + "name": "FAITH" + }, + { + "id": "faith-2", + "symbol": "fbb4", + "name": "Faith" + }, + { + "id": "faithcoin-2", + "symbol": "faithcoin", + "name": "faithcoin" + }, + { + "id": "faith-tribe", + "symbol": "ftrb", + "name": "Faith Tribe" + }, + { + "id": "fakenews", + "symbol": "sn66", + "name": "FakeNews" + }, + { + "id": "falcon-finance", + "symbol": "usdf", + "name": "Falcon USD" + }, + { + "id": "falcon-finance-ff", + "symbol": "ff", + "name": "Falcon Finance" + }, + { + "id": "falcon-nine", + "symbol": "f9", + "name": "Falcon Nine" + }, + { + "id": "falcons", + "symbol": "fah", + "name": "Falcons" + }, + { + "id": "falconsinu", + "symbol": "falcon", + "name": "FalconsInu" + }, + { + "id": "fallenchungus-pinheads", + "symbol": "pinheads", + "name": "Fallenchungus pinheads" + }, + { + "id": "fallen-knight", + "symbol": "knight", + "name": "Fallen Knight" + }, + { + "id": "falx", + "symbol": "falx", + "name": "FALX" + }, + { + "id": "fame-ai", + "symbol": "fmc", + "name": "FAME AI" + }, + { + "id": "fame-mma", + "symbol": "fame", + "name": "Fame MMA" + }, + { + "id": "fame-protocol", + "symbol": "fame", + "name": "FAME Protocol" + }, + { + "id": "fame-reward-plus", + "symbol": "frp", + "name": "Fame Reward Plus" + }, + { + "id": "fame-rumble-kong-league", + "symbol": "$fame", + "name": "FAME- Rumble Kong League" + }, + { + "id": "family-2", + "symbol": "fam", + "name": "Family" + }, + { + "id": "family-guy", + "symbol": "guy", + "name": "Family Guy" + }, + { + "id": "faml", + "symbol": "faml", + "name": "FAML" + }, + { + "id": "famous-fox-federation", + "symbol": "foxy", + "name": "Famous Fox Federation" + }, + { + "id": "fanc", + "symbol": "fanc", + "name": "fanC" + }, + { + "id": "fan-token", + "symbol": "fan", + "name": "Film.io" + }, + { + "id": "fantom", + "symbol": "ftm", + "name": "Fantom" + }, + { + "id": "fantom-bridged-wbtc-fantom", + "symbol": "wbtc", + "name": "Fantom Bridged WBTC (Fantom)" + }, + { + "id": "fantom-eco-2", + "symbol": "eco", + "name": "Sonic Eco" + }, + { + "id": "fantomsonicinu-2", + "symbol": "fsonic", + "name": "Fantomsonicinu" + }, + { + "id": "fanton-token", + "symbol": "fton", + "name": "Fanton Token" + }, + { + "id": "fanzee-token", + "symbol": "fnz", + "name": "Fanzee Token" + }, + { + "id": "fapcoin-2", + "symbol": "fapcoin", + "name": "FAPCOIN" + }, + { + "id": "fapcoin-3", + "symbol": "fapcoin", + "name": "fapcoin" + }, + { + "id": "faptax", + "symbol": "faptax", + "name": "Faptax" + }, + { + "id": "faraland", + "symbol": "fara", + "name": "FaraLand" + }, + { + "id": "farcana", + "symbol": "far", + "name": "FARCANA" + }, + { + "id": "farcaster-flower", + "symbol": "flower", + "name": "Farcaster Flower" + }, + { + "id": "farcats", + "symbol": "farcats", + "name": "Farcats" + }, + { + "id": "farlaunch", + "symbol": "far", + "name": "FarLaunch" + }, + { + "id": "farm", + "symbol": "farm", + "name": "FARM" + }, + { + "id": "farm2", + "symbol": "farm2", + "name": "FARM2" + }, + { + "id": "farm-2", + "symbol": "farm", + "name": "FARM" + }, + { + "id": "farmai", + "symbol": "farmai", + "name": "FarmAI" + }, + { + "id": "fart-accelerationism", + "symbol": "f/acc", + "name": "Fart Accelerationism" + }, + { + "id": "fartboy", + "symbol": "$fartboy", + "name": "Fartboy" + }, + { + "id": "fartcat", + "symbol": "fartcat", + "name": "Fartcat" + }, + { + "id": "fartcoin", + "symbol": "fartcoin", + "name": "Fartcoin" + }, + { + "id": "fart-coin", + "symbol": "frtc", + "name": "FART COIN" + }, + { + "id": "fartcoin-2", + "symbol": "fart", + "name": "FartCoin" + }, + { + "id": "fartcoin-cash", + "symbol": "fartcash", + "name": "Fartcoin Cash" + }, + { + "id": "fartcoincro", + "symbol": "pfft", + "name": "FartcoinCRO" + }, + { + "id": "fartcoin-killer", + "symbol": "buttplug", + "name": "fartcoin killer" + }, + { + "id": "fartcredit", + "symbol": "fartcredit", + "name": "FARTCREDIT" + }, + { + "id": "fartdaddy", + "symbol": "fartdaddy", + "name": "FARTDADDY" + }, + { + "id": "fartdog", + "symbol": "fartdog", + "name": "FartDog" + }, + { + "id": "fartful", + "symbol": "fartful", + "name": "FARTFUL" + }, + { + "id": "fartgirl", + "symbol": "fartgirl", + "name": "FARTGIRL" + }, + { + "id": "fartgoat", + "symbol": "fartgoat", + "name": "FARTGOAT" + }, + { + "id": "fartgoat-2", + "symbol": "fartgoat", + "name": "FARTGOAT" + }, + { + "id": "fartgoatpengubutthole6900ai16z", + "symbol": "solana", + "name": "FartGoatPenguButthole6900ai16z" + }, + { + "id": "fartgpt", + "symbol": "fartgpt", + "name": "FartGPT" + }, + { + "id": "fartguy", + "symbol": "fartguy", + "name": "FartGuy" + }, + { + "id": "farther", + "symbol": "farther", + "name": "Farther" + }, + { + "id": "farthouse", + "symbol": "farthouse", + "name": "Farthouse" + }, + { + "id": "farthouse-2", + "symbol": "farthouse", + "name": "farthouse" + }, + { + "id": "farthub", + "symbol": "farthub", + "name": "FARTHUB" + }, + { + "id": "farting-bonk", + "symbol": "fonk", + "name": "Farting Bonk" + }, + { + "id": "farting-unicorn", + "symbol": "fu", + "name": "Farting Unicorn" + }, + { + "id": "fartless-coin", + "symbol": "fartless", + "name": "FARTLESS COIN" + }, + { + "id": "fartmommy", + "symbol": "$fartmommy", + "name": "FARTMOMMY" + }, + { + "id": "fart-money", + "symbol": "fusd", + "name": "Fart Money" + }, + { + "id": "fart-of-the-united-states", + "symbol": "fotus", + "name": "Fart Of The United States" + }, + { + "id": "fart-pig", + "symbol": "fartpig", + "name": "Fart Pig" + }, + { + "id": "fartstrategy", + "symbol": "fstr", + "name": "FartStrategy" + }, + { + "id": "fartworm", + "symbol": "fartworm", + "name": "FARTWORM" + }, + { + "id": "fashai", + "symbol": "fash", + "name": "FashAI" + }, + { + "id": "fastlane", + "symbol": "lane", + "name": "Fastlane" + }, + { + "id": "fasttoken", + "symbol": "ftn", + "name": "Fasttoken" + }, + { + "id": "fatalismftw", + "symbol": "fatal", + "name": "Fatalismftw" + }, + { + "id": "fatalismftw-elons-new-character", + "symbol": "ftw", + "name": "FatalismFTW Elons new character" + }, + { + "id": "fatality-coin", + "symbol": "fatality", + "name": "Fatality Coin" + }, + { + "id": "fat-cat", + "symbol": "fatcat", + "name": "FAT CAT" + }, + { + "id": "fatcat-2", + "symbol": "$fatcat", + "name": "FATCAT" + }, + { + "id": "fate-adventure", + "symbol": "fa", + "name": "Fate Adventure" + }, + { + "id": "fate-on-sui", + "symbol": "fate", + "name": "FATE on SUI" + }, + { + "id": "fatgf", + "symbol": "fatgf", + "name": "FATGF" + }, + { + "id": "father-of-meme-origin", + "symbol": "fomo", + "name": "Father Of Meme: Origin" + }, + { + "id": "fathom-dollar", + "symbol": "fxd", + "name": "Fathom Dollar" + }, + { + "id": "fatso", + "symbol": "fatso", + "name": "FATSO" + }, + { + "id": "fautor", + "symbol": "ftr", + "name": "Fautor" + }, + { + "id": "favolo", + "symbol": "fav", + "name": "Favolo" + }, + { + "id": "favrr", + "symbol": "favrr", + "name": "FAVRR" + }, + { + "id": "faya", + "symbol": "faya", + "name": "FAYA" + }, + { + "id": "fazesway", + "symbol": "sway", + "name": "FaZeSway" + }, + { + "id": "fbomb", + "symbol": "fbomb", + "name": "Fantom Bomb" + }, + { + "id": "fc-barcelona-fan-token", + "symbol": "bar", + "name": "FC Barcelona Fan Token" + }, + { + "id": "fcode-ai", + "symbol": "fcod", + "name": "Fcode AI" + }, + { + "id": "fc-porto", + "symbol": "porto", + "name": "FC Porto" + }, + { + "id": "fcr-coin", + "symbol": "fcr", + "name": "FCR Coin" + }, + { + "id": "fdream", + "symbol": "fdream", + "name": "FDREAM" + }, + { + "id": "fear", + "symbol": "fear", + "name": "FEAR" + }, + { + "id": "fear-of-missing-out", + "symbol": "fomo", + "name": "Fear of Missing Out" + }, + { + "id": "fear-of-missing-out-2", + "symbol": "fomo", + "name": "Fear Of Missing Out" + }, + { + "id": "feather", + "symbol": "fea", + "name": "FEATHER" + }, + { + "id": "feathercoin", + "symbol": "ftc", + "name": "Feathercoin" + }, + { + "id": "feathers", + "symbol": "$feathers", + "name": "Feathers" + }, + { + "id": "feces", + "symbol": "feces", + "name": "FECES" + }, + { + "id": "federal-ai", + "symbol": "fedai", + "name": "Federal AI" + }, + { + "id": "fedja-cat", + "symbol": "fedja", + "name": "FEDJA CAT" + }, + { + "id": "feed", + "symbol": "feed", + "name": "FEED" + }, + { + "id": "feeder-finance", + "symbol": "feed", + "name": "Feeder Finance" + }, + { + "id": "feed-gaza", + "symbol": "gaza", + "name": "FEED GAZA" + }, + { + "id": "feed-the-people", + "symbol": "ftp", + "name": "Feed The People" + }, + { + "id": "feed-the-world", + "symbol": "fw", + "name": "Feed The World" + }, + { + "id": "feedz", + "symbol": "feedz", + "name": "Feedz" + }, + { + "id": "feels-good", + "symbol": "good", + "name": "Feels Good" + }, + { + "id": "feels-good-man-2", + "symbol": "fgm", + "name": "Feels Good Man" + }, + { + "id": "feenix", + "symbol": "feenix", + "name": "Feenix" + }, + { + "id": "feenixai", + "symbol": "feenix", + "name": "FeenixAI" + }, + { + "id": "feetcoin", + "symbol": "feetcoin", + "name": "feetcoin" + }, + { + "id": "fefe", + "symbol": "fefe", + "name": "Fefe" + }, + { + "id": "fefe-2", + "symbol": "fefe", + "name": "Fefe" + }, + { + "id": "fefe-on-eth", + "symbol": "fefe", + "name": "Fefe" + }, + { + "id": "feg", + "symbol": "feg", + "name": "feg" + }, + { + "id": "feg-token-2", + "symbol": "feg", + "name": "FEED EVERY GORILLA" + }, + { + "id": "feisty-doge-nft", + "symbol": "nfd", + "name": "Feisty Doge NFT" + }, + { + "id": "fei-usd", + "symbol": "fei", + "name": "Fei USD" + }, + { + "id": "felicette-the-space-cat", + "symbol": "felicette", + "name": "Felicette the Space Cat" + }, + { + "id": "feline-fury", + "symbol": "fury", + "name": "Fury Felines" + }, + { + "id": "felis", + "symbol": "felis", + "name": "Felis" + }, + { + "id": "felix", + "symbol": "flx", + "name": "Felix" + }, + { + "id": "felix-feusd", + "symbol": "feusd", + "name": "Felix feUSD" + }, + { + "id": "felix-the-lazer-cat", + "symbol": "$peow", + "name": "Felix the lazer cat" + }, + { + "id": "fella", + "symbol": "fella", + "name": "FELLA" + }, + { + "id": "fellaz", + "symbol": "flz", + "name": "Fellaz" + }, + { + "id": "fely", + "symbol": "fely", + "name": "Fely" + }, + { + "id": "felysyum", + "symbol": "fely", + "name": "Felysyum" + }, + { + "id": "fenerbahce-token", + "symbol": "fb", + "name": "Fenerbahçe" + }, + { + "id": "fenix", + "symbol": "fnx", + "name": "Fenix" + }, + { + "id": "fennec", + "symbol": "fnnc", + "name": "Fennec" + }, + { + "id": "fentanyl-dragon", + "symbol": "fentanyl", + "name": "Fentanyl Dragon" + }, + { + "id": "ferg", + "symbol": "ferg", + "name": "FERG" + }, + { + "id": "ferma", + "symbol": "ferma", + "name": "Ferma" + }, + { + "id": "ferret-ai", + "symbol": "ferret", + "name": "Ferret AI" + }, + { + "id": "ferretcoin", + "symbol": "fec", + "name": "Ferretcoin" + }, + { + "id": "ferro", + "symbol": "fer", + "name": "Ferro" + }, + { + "id": "ferrum-network", + "symbol": "frm", + "name": "Ferrum Network" + }, + { + "id": "fetch-ai", + "symbol": "fet", + "name": "Artificial Superintelligence Alliance" + }, + { + "id": "fe-tech", + "symbol": "fets", + "name": "FE TECH" + }, + { + "id": "few-wrapped-duo-eth", + "symbol": "fwdeth", + "name": "Few Wrapped Duo ETH" + }, + { + "id": "few-wrapped-duo-usd", + "symbol": "fwdusd", + "name": "Few Wrapped Duo USD" + }, + { + "id": "few-wrapped-juice", + "symbol": "fwjuice", + "name": "Few Wrapped Juice" + }, + { + "id": "few-wrapped-orbit-protocol", + "symbol": "fworbit", + "name": "Few Wrapped Orbit Protocol" + }, + { + "id": "fffffffffffffuuuuuuuuuuuuuuuu", + "symbol": "rageguy", + "name": "FFFFFFFFFFFFFUUUUUUUUUUUUUUUU" + }, + { + "id": "fgdswap", + "symbol": "fgds", + "name": "FGDSwap" + }, + { + "id": "fiamma-btc", + "symbol": "fiabtc", + "name": "Fiamma BTC" + }, + { + "id": "fias", + "symbol": "fias", + "name": "FIAS" + }, + { + "id": "fiat24-chf", + "symbol": "chf24", + "name": "Fiat24 CHF" + }, + { + "id": "fiat24-eur", + "symbol": "eur24", + "name": "Fiat24 EUR" + }, + { + "id": "fiat24-usd", + "symbol": "usd24", + "name": "Fiat24 USD" + }, + { + "id": "fibo-token", + "symbol": "fibo", + "name": "FibSwap DEX" + }, + { + "id": "fidelity-digital-interest-token", + "symbol": "fdit", + "name": "Fidelity Digital Interest Token" + }, + { + "id": "fidira", + "symbol": "fid", + "name": "Fidira" + }, + { + "id": "fido", + "symbol": "fido", + "name": "Fido" + }, + { + "id": "fidu", + "symbol": "fidu", + "name": "Fidu" + }, + { + "id": "fifi-2", + "symbol": "fifi", + "name": "FiFi" + }, + { + "id": "fight", + "symbol": "fight", + "name": "FIGHT" + }, + { + "id": "fight-for-justice", + "symbol": "ffj", + "name": "Fight For Justice" + }, + { + "id": "fightly-ai", + "symbol": "figai", + "name": "Fightly.ai" + }, + { + "id": "fight-to-maga", + "symbol": "fight", + "name": "Fight to MAGA" + }, + { + "id": "fight-win-ai", + "symbol": "fwin-ai", + "name": "Fight Win AI" + }, + { + "id": "figma-ord-shs-ondo-tokenized-stock", + "symbol": "figon", + "name": "Figma Ord Shs (Ondo Tokenized Stock)" + }, + { + "id": "figma-xstock", + "symbol": "figx", + "name": "Figma xStock" + }, + { + "id": "figure-heloc", + "symbol": "figr_heloc", + "name": "Figure Heloc" + }, + { + "id": "fiji-exe", + "symbol": "fiji", + "name": "FIJI.EXE" + }, + { + "id": "filecoin", + "symbol": "fil", + "name": "Filecoin" + }, + { + "id": "filecoin-bridged-weth-filecoin", + "symbol": "weth", + "name": "Filecoin Bridged WETH (Filecoin)" + }, + { + "id": "filipcoin", + "symbol": "fcp", + "name": "Filipcoin" + }, + { + "id": "filter-ai-2", + "symbol": "filter", + "name": "Filter AI" + }, + { + "id": "fina", + "symbol": "fina", + "name": "Fina.cash" + }, + { + "id": "finance", + "symbol": "finance", + "name": "FINANCE" + }, + { + "id": "finance-blocks", + "symbol": "fbx", + "name": "Finance Blocks" + }, + { + "id": "finance-vote", + "symbol": "fvt", + "name": "Finance Vote" + }, + { + "id": "finance-wizard", + "symbol": "wizard", + "name": "Finance Wizard" + }, + { + "id": "financial-freedom", + "symbol": "財務自由", + "name": "財務自由 (Financial Freedom)" + }, + { + "id": "financial-transaction-system", + "symbol": "fts", + "name": "FINANCIAL TRANSACTION SYSTEM" + }, + { + "id": "financie-token", + "symbol": "fnct", + "name": "Financie Token" + }, + { + "id": "finanx-ai", + "symbol": "fnxai", + "name": "Finanx AI" + }, + { + "id": "finceptor-token", + "symbol": "finc", + "name": "Finceptor" + }, + { + "id": "find-check", + "symbol": "dyor", + "name": "DYOR Coin" + }, + { + "id": "findme", + "symbol": "findme", + "name": "FindMe" + }, + { + "id": "fine", + "symbol": "fine", + "name": "FINE" + }, + { + "id": "finedog", + "symbol": "finedog", + "name": "FineDog" + }, + { + "id": "finetuning", + "symbol": "sn37", + "name": "Finetuning" + }, + { + "id": "fingerheart", + "symbol": "🫰", + "name": "🫰 (FingerHeart)" + }, + { + "id": "finger-monkey", + "symbol": "fm", + "name": "Finger Monkey" + }, + { + "id": "finger-monkeys", + "symbol": "fmt", + "name": "Finger Monkeys" + }, + { + "id": "fink-different", + "symbol": "fink", + "name": "fink" + }, + { + "id": "finminity", + "symbol": "fmt", + "name": "Finminity" + }, + { + "id": "finna-ai", + "symbol": "finna", + "name": "Finna AI" + }, + { + "id": "finnduck", + "symbol": "fduck", + "name": "FinnDuck" + }, + { + "id": "finnputer", + "symbol": "finnputer", + "name": "FINNPUTER" + }, + { + "id": "fins", + "symbol": "fins", + "name": "FINS" + }, + { + "id": "fintrux", + "symbol": "ftx", + "name": "FintruX" + }, + { + "id": "finvesta", + "symbol": "finvesta", + "name": "Finvesta" + }, + { + "id": "finwizz", + "symbol": "fin", + "name": "Finwizz by Virtuals" + }, + { + "id": "fiona", + "symbol": "fiona", + "name": "Fiona" + }, + { + "id": "fio-protocol", + "symbol": "fio", + "name": "FIO Protocol" + }, + { + "id": "fira-cronos", + "symbol": "fira", + "name": "Defira (Cronos)" + }, + { + "id": "firebot", + "symbol": "fbx", + "name": "FireBot" + }, + { + "id": "firechicken", + "symbol": "fckn", + "name": "FireChicken" + }, + { + "id": "firecoin-2", + "symbol": "firecoin", + "name": "firecoin" + }, + { + "id": "firepool", + "symbol": "fire", + "name": "Firepool" + }, + { + "id": "fire-protocol", + "symbol": "fire", + "name": "Fire Protocol" + }, + { + "id": "firestarter", + "symbol": "flame", + "name": "FireStarter" + }, + { + "id": "fire-stokefire", + "symbol": "fire", + "name": "Fire" + }, + { + "id": "fire-token-3", + "symbol": "fire", + "name": "Fire Token" + }, + { + "id": "fireverse", + "symbol": "fir", + "name": "Fireverse" + }, + { + "id": "firmachain", + "symbol": "fct", + "name": "Firmachain" + }, + { + "id": "first", + "symbol": "first", + "name": "FIRST" + }, + { + "id": "first-ai-1951", + "symbol": "snarc", + "name": "First AI (1951)" + }, + { + "id": "first-ai-actress", + "symbol": "tilly", + "name": "first AI actress" + }, + { + "id": "first-ai-owned-dog", + "symbol": "gracie", + "name": "First AI Owned Dog" + }, + { + "id": "first-bitcoin-atm", + "symbol": "robocoin", + "name": "First Bitcoin ATM" + }, + { + "id": "first-bitcoin-kid", + "symbol": "tpu", + "name": "First bitcoin kid" + }, + { + "id": "first-convicted-raccon", + "symbol": "fred", + "name": "First Convicted RACCON" + }, + { + "id": "first-convicted-raccoon", + "symbol": "fred", + "name": "First Convicted Raccoon" + }, + { + "id": "first-digital-usd", + "symbol": "fdusd", + "name": "First Digital USD" + }, + { + "id": "first-dog-to-buy-crypto", + "symbol": "toshi", + "name": "First Dog to Buy Crypto" + }, + { + "id": "first-ever-bitcoin-cat", + "symbol": "neko", + "name": "First Ever Bitcoin Cat" + }, + { + "id": "first-ever-meme-currency", + "symbol": "kekels", + "name": "First Ever Meme Currency" + }, + { + "id": "first-grok-ai", + "symbol": "grok", + "name": "First GROK AI" + }, + { + "id": "firsthare", + "symbol": "firsthare", + "name": "FirstHare" + }, + { + "id": "first-meme", + "symbol": "lolcat", + "name": "First Meme" + }, + { + "id": "first-reply", + "symbol": "sirius", + "name": "first reply" + }, + { + "id": "fisco", + "symbol": "fscc", + "name": "FISCO Coin" + }, + { + "id": "fish", + "symbol": "fish", + "name": "🎣" + }, + { + "id": "fishkoin", + "symbol": "koin", + "name": "Fishkoin" + }, + { + "id": "fish-n-chips", + "symbol": "chippy", + "name": "Fish N Chips" + }, + { + "id": "fishwar", + "symbol": "fishw", + "name": "Fishwar" + }, + { + "id": "fishwheel", + "symbol": "fshwhl", + "name": "Fishwheel" + }, + { + "id": "fishy", + "symbol": "$fishy", + "name": "$FISHY" + }, + { + "id": "fist", + "symbol": "fist", + "name": "FIST" + }, + { + "id": "fistbump", + "symbol": "fist", + "name": "Fistbump" + }, + { + "id": "fisttrumppump", + "symbol": "ftp", + "name": "Fisttrumppump" + }, + { + "id": "fit", + "symbol": "fit", + "name": "Fit" + }, + { + "id": "fitchin-universe", + "symbol": "chin", + "name": "Fitchin Universe" + }, + { + "id": "fitcoin-2", + "symbol": "fitcoin", + "name": "Fitcoin" + }, + { + "id": "fitcoin-3", + "symbol": "fitcoin", + "name": "FITCOIN" + }, + { + "id": "fitmint", + "symbol": "fitt", + "name": "Fitmint" + }, + { + "id": "fittoken", + "symbol": "fit", + "name": "FITtoken" + }, + { + "id": "five-pillars-token", + "symbol": "5pt", + "name": "Five Pillars Token" + }, + { + "id": "five-year-cycle", + "symbol": "$fyc", + "name": "Five Year Cycle" + }, + { + "id": "fiwb-doginals", + "symbol": "fiwb", + "name": "FIWB (DRC-20)" + }, + { + "id": "fixme-ai", + "symbol": "fix", + "name": "FixMe AI" + }, + { + "id": "fjord-foundry", + "symbol": "fjo", + "name": "Fjord Foundry" + }, + { + "id": "fketh", + "symbol": "fketh", + "name": "Fketh" + }, + { + "id": "flag-coin", + "symbol": "flag", + "name": "Flag Coin" + }, + { + "id": "flagship-by-virtuals", + "symbol": "fyi", + "name": "Flagship by Virtuals" + }, + { + "id": "flair-dex", + "symbol": "fldx", + "name": "Flair Dex" + }, + { + "id": "flame-2", + "symbol": "flame", + "name": "Flame" + }, + { + "id": "flame-3", + "symbol": "flame", + "name": "Flame" + }, + { + "id": "flame-4", + "symbol": "flame", + "name": "FLAME" + }, + { + "id": "flamengo-fan-token", + "symbol": "mengo", + "name": "Flamengo Fan Token" + }, + { + "id": "flamewire", + "symbol": "sn97", + "name": "FlameWire" + }, + { + "id": "flamingo-finance", + "symbol": "flm", + "name": "Flamingo Finance" + }, + { + "id": "flap", + "symbol": "flap", + "name": "FLAP" + }, + { + "id": "flappy", + "symbol": "flappy", + "name": "Flappy" + }, + { + "id": "flappy-bird-evolution", + "symbol": "fevo", + "name": "Flappy Bird Evolution" + }, + { + "id": "flare-ai", + "symbol": "flare", + "name": "Flare AI" + }, + { + "id": "flare-bridged-xrp-flare", + "symbol": "fxrp", + "name": "Flare Bridged XRP (Flare)" + }, + { + "id": "flare-finance", + "symbol": "exfi", + "name": "Experimental Finance" + }, + { + "id": "flarefox", + "symbol": "flx", + "name": "FlareFox" + }, + { + "id": "flare-networks", + "symbol": "flr", + "name": "Flare" + }, + { + "id": "flare-staked-ether", + "symbol": "flreth", + "name": "Flare Staked Ether" + }, + { + "id": "flare-token", + "symbol": "1flr", + "name": "Flare Token" + }, + { + "id": "flash-2", + "symbol": "flash", + "name": "Flash" + }, + { + "id": "flash-liquidity-token", + "symbol": "flp.1", + "name": "Flash Liquidity Token" + }, + { + "id": "flashscreener", + "symbol": "flash", + "name": "FlashScreener" + }, + { + "id": "flash-trade", + "symbol": "faf", + "name": "Flash.Trade" + }, + { + "id": "flashwash", + "symbol": "flsh", + "name": "FlashWash" + }, + { + "id": "flat-earth", + "symbol": "flat", + "name": "Flat Earth" + }, + { + "id": "flat-earth-coin", + "symbol": "flat", + "name": "Flat Earth Coin" + }, + { + "id": "flat-money", + "symbol": "unit", + "name": "Flat Money" + }, + { + "id": "flatqube", + "symbol": "qube", + "name": "FlatQube" + }, + { + "id": "flaunchy", + "symbol": "flnchy", + "name": "Flaunchy" + }, + { + "id": "flavia-is-online", + "symbol": "flavia", + "name": "Flavia Is Online" + }, + { + "id": "flayer", + "symbol": "flay", + "name": "Flayer" + }, + { + "id": "flaze-coin", + "symbol": "flaze", + "name": "Flaze Coin" + }, + { + "id": "fleabone", + "symbol": "bone", + "name": "FLEABONE" + }, + { + "id": "fleek", + "symbol": "flk", + "name": "Fleek" + }, + { + "id": "fleth", + "symbol": "fleth", + "name": "flETH" + }, + { + "id": "flex", + "symbol": "flex", + "name": "FLEX" + }, + { + "id": "flex-2", + "symbol": "fdx", + "name": "Flex Perpetuals" + }, + { + "id": "flexmeme", + "symbol": "flex", + "name": "FlexMeme" + }, + { + "id": "flicker", + "symbol": "fkr", + "name": "Flicker" + }, + { + "id": "flight-coin", + "symbol": "flight", + "name": "Flight Coin" + }, + { + "id": "flip", + "symbol": "flip", + "name": "FLIP" + }, + { + "id": "flipcat", + "symbol": "flipcat", + "name": "FlipCat" + }, + { + "id": "flip-coin", + "symbol": "flipcoin", + "name": "Flip Coin" + }, + { + "id": "flipn", + "symbol": "fpn", + "name": "FLIPN" + }, + { + "id": "flippy", + "symbol": "flippy", + "name": "Flippy" + }, + { + "id": "flipr", + "symbol": "flipr", + "name": "Flipr" + }, + { + "id": "flip-the-frog", + "symbol": "flip", + "name": "Flip the Frog" + }, + { + "id": "flits", + "symbol": "fls", + "name": "Flits" + }, + { + "id": "flo", + "symbol": "flo", + "name": "Flo" + }, + { + "id": "floating-tim", + "symbol": "tim", + "name": "Tim" + }, + { + "id": "float-protocol", + "symbol": "bank", + "name": "Float Protocol" + }, + { + "id": "flochi", + "symbol": "flochi", + "name": "Flochi" + }, + { + "id": "flock-2", + "symbol": "flock", + "name": "FLOCK" + }, + { + "id": "flockerz", + "symbol": "flock", + "name": "Flockerz" + }, + { + "id": "flock-off", + "symbol": "sn96", + "name": "FLock OFF" + }, + { + "id": "flocky", + "symbol": "flocky", + "name": "FLOCKY" + }, + { + "id": "flocoin", + "symbol": "floco", + "name": "flocoin" + }, + { + "id": "floki", + "symbol": "floki", + "name": "FLOKI" + }, + { + "id": "floki-cash", + "symbol": "flokicash", + "name": "Floki Cash" + }, + { + "id": "floki-cat", + "symbol": "fcat", + "name": "Floki Cat" + }, + { + "id": "floki-ceo", + "symbol": "flokiceo", + "name": "FLOKI CEO" + }, + { + "id": "flokifork", + "symbol": "fork", + "name": "FlokiFork" + }, + { + "id": "flokis", + "symbol": "flokis", + "name": "Flokis" + }, + { + "id": "flokiwifhat", + "symbol": "floki", + "name": "Flokiwifhat" + }, + { + "id": "floki-x-ceo", + "symbol": "flōki", + "name": "Flōki 𝕏 CEO" + }, + { + "id": "floof", + "symbol": "floof", + "name": "FLOOF" + }, + { + "id": "floofnoodles", + "symbol": "floof", + "name": "Floofnoodles" + }, + { + "id": "floop", + "symbol": "floop", + "name": "Floop" + }, + { + "id": "floor-cheese-burger", + "symbol": "flrbrg", + "name": "Floor Cheese Burger" + }, + { + "id": "flooring-lab-credit", + "symbol": "flc", + "name": "Floor Protocol" + }, + { + "id": "floos", + "symbol": "fls", + "name": "Floos" + }, + { + "id": "floppa", + "symbol": "floppa", + "name": "FLOPPA" + }, + { + "id": "floppa-cat", + "symbol": "floppa", + "name": "Floppa" + }, + { + "id": "florence-finance-medici", + "symbol": "ffm", + "name": "Florence Finance Medici" + }, + { + "id": "flork", + "symbol": "$flork", + "name": "Flork" + }, + { + "id": "flork-cto", + "symbol": "flork", + "name": "FLORK CTO" + }, + { + "id": "flourishing-ai-token", + "symbol": "ai", + "name": "Flourishing AI" + }, + { + "id": "flovatar-dust", + "symbol": "fdust", + "name": "Flovatar Dust" + }, + { + "id": "flovi-inu", + "symbol": "flovi", + "name": "Flovi Inu" + }, + { + "id": "flow", + "symbol": "flow", + "name": "Flow" + }, + { + "id": "flow402x", + "symbol": "flow402", + "name": "flow402x" + }, + { + "id": "flow-agent", + "symbol": "flow", + "name": "Flow Agent" + }, + { + "id": "flow-bridged-pyusd-flow", + "symbol": "usdf", + "name": "Flow Bridged PYUSD (Flow)" + }, + { + "id": "flower-2", + "symbol": "flower", + "name": "Flower" + }, + { + "id": "flowerai", + "symbol": "flower", + "name": "FlowerAI" + }, + { + "id": "flower-flower", + "symbol": "花花", + "name": "花花 (flower flower)" + }, + { + "id": "flowfi", + "symbol": "flow", + "name": "FlowFi" + }, + { + "id": "flow-lending", + "symbol": "flow", + "name": "Flow Lending" + }, + { + "id": "flowmatic", + "symbol": "fm", + "name": "Flowmatic" + }, + { + "id": "flow-state", + "symbol": "flow", + "name": "flow state" + }, + { + "id": "flowx-finance", + "symbol": "flx", + "name": "FlowX Finance" + }, + { + "id": "fluence-2", + "symbol": "flt", + "name": "Fluence" + }, + { + "id": "fluffington", + "symbol": "fluffi", + "name": "Fluffington" + }, + { + "id": "fluffys", + "symbol": "fluff", + "name": "Fluffys" + }, + { + "id": "fluid-dai", + "symbol": "fdai", + "name": "Fluid DAI" + }, + { + "id": "fluidity", + "symbol": "fly", + "name": "Fluidity" + }, + { + "id": "fluid-protocol", + "symbol": "fpt", + "name": "Fluid Protocol" + }, + { + "id": "fluidtokens", + "symbol": "fldt", + "name": "FluidTokens" + }, + { + "id": "fluid-tusd", + "symbol": "ftusd", + "name": "Fluid TUSD" + }, + { + "id": "fluid-usd", + "symbol": "usdf", + "name": "Fluid USD" + }, + { + "id": "fluid-usdc", + "symbol": "fusdc", + "name": "Fluid USDC" + }, + { + "id": "fluid-wrapped-ether", + "symbol": "fweth", + "name": "Fluid Wrapped Ether" + }, + { + "id": "fluid-wrapped-staked-eth", + "symbol": "fwsteth", + "name": "Fluid Wrapped Staked ETH" + }, + { + "id": "fluminense-fc-fan-token", + "symbol": "flu", + "name": "Fluminense FC Fan Token" + }, + { + "id": "flurry", + "symbol": "flurry", + "name": "Flurry Finance" + }, + { + "id": "flute", + "symbol": "flut", + "name": "Flute" + }, + { + "id": "flux", + "symbol": "flux", + "name": "Datamine FLUX" + }, + { + "id": "flux-2", + "symbol": "flux", + "name": "Flux" + }, + { + "id": "fluxbot", + "symbol": "fluxb", + "name": "Fluxbot" + }, + { + "id": "flux-dai", + "symbol": "fdai", + "name": "Flux DAI" + }, + { + "id": "flux-frax", + "symbol": "ffrax", + "name": "Flux FRAX" + }, + { + "id": "flux-point-studios-shards", + "symbol": "shards", + "name": "Flux Point Studios SHARDS" + }, + { + "id": "flux-terminal", + "symbol": "fluxt", + "name": "Flux Terminal" + }, + { + "id": "flux-token", + "symbol": "flx", + "name": "Flux Protocol" + }, + { + "id": "fly", + "symbol": "fly", + "name": "FLY" + }, + { + "id": "fly-2", + "symbol": "fly", + "name": "Fly" + }, + { + "id": "flying-avocado-cat", + "symbol": "fac", + "name": "Flying Avocado Cat" + }, + { + "id": "flying-tulip", + "symbol": "ft", + "name": "Flying Tulip" + }, + { + "id": "flyte-ai", + "symbol": "flyte", + "name": "Flyte AI" + }, + { + "id": "foam-protocol", + "symbol": "foam", + "name": "FOAM" + }, + { + "id": "focai-fun", + "symbol": "focai", + "name": "Focai.fun" + }, + { + "id": "fodl-finance", + "symbol": "fodl", + "name": "Fodl Finance" + }, + { + "id": "fofar", + "symbol": "fofar", + "name": "Fofar" + }, + { + "id": "fofar0x71", + "symbol": "fofar", + "name": "Fofar0x71" + }, + { + "id": "fofar-2", + "symbol": "fofar", + "name": "FoFar" + }, + { + "id": "fofo", + "symbol": "fofo", + "name": "FOFO" + }, + { + "id": "fofo-token", + "symbol": "fofo", + "name": "FOFO Token" + }, + { + "id": "fog", + "symbol": "fog", + "name": "fog" + }, + { + "id": "fognet", + "symbol": "fog", + "name": "FOGnet" + }, + { + "id": "fogo", + "symbol": "fogo", + "name": "Fogo" + }, + { + "id": "foku", + "symbol": "foku", + "name": "Foku" + }, + { + "id": "fold", + "symbol": "fld", + "name": "Fold" + }, + { + "id": "folks", + "symbol": "folks", + "name": "FOLKS" + }, + { + "id": "follow-token", + "symbol": "folo", + "name": "Alpha Impact" + }, + { + "id": "fomo-2", + "symbol": "fomo", + "name": "FOMO" + }, + { + "id": "fomo-3", + "symbol": "fomo", + "name": "FOMO" + }, + { + "id": "fomo-3d", + "symbol": "fomo3d.fun", + "name": "FOMO 3D" + }, + { + "id": "fomo-4", + "symbol": "fomo", + "name": "FOMO" + }, + { + "id": "fomo-5", + "symbol": "fomo", + "name": "FOMO" + }, + { + "id": "fomo-base", + "symbol": "fomo", + "name": "FOMO Base" + }, + { + "id": "fomo-bull-club", + "symbol": "fomo", + "name": "FOMO BULL CLUB" + }, + { + "id": "fomofi", + "symbol": "fomo", + "name": "FomoFi" + }, + { + "id": "fomofox", + "symbol": "fomo", + "name": "FOMOFox" + }, + { + "id": "fomo-radio-ai", + "symbol": "radio", + "name": "FOMO RADIO AI" + }, + { + "id": "fomosfi", + "symbol": "fomos", + "name": "FomosFi" + }, + { + "id": "fomo-tocd", + "symbol": "fomo", + "name": "FOMO TOCD" + }, + { + "id": "fondue-coin", + "symbol": "$fond", + "name": "Fondue Coin" + }, + { + "id": "fonsmartchain", + "symbol": "fon", + "name": "FONSmartChain" + }, + { + "id": "fonzy", + "symbol": "fonzy", + "name": "Fonzy" + }, + { + "id": "fooday", + "symbol": "food", + "name": "Fooday" + }, + { + "id": "food-for-gaza", + "symbol": "ffg", + "name": "FOOD FOR GAZA" + }, + { + "id": "food-token-2", + "symbol": "food", + "name": "Food Token" + }, + { + "id": "fool", + "symbol": "fool", + "name": "fool" + }, + { + "id": "foom", + "symbol": "foom", + "name": "Foom" + }, + { + "id": "football-coin", + "symbol": "xfc", + "name": "Football Coin" + }, + { + "id": "football-coin-2", + "symbol": "football", + "name": "Football Coin" + }, + { + "id": "football-world-community", + "symbol": "fwc", + "name": "Football World Community" + }, + { + "id": "footcoin", + "symbol": "footcoin", + "name": "footcoin" + }, + { + "id": "forbidden-fruit-energy", + "symbol": "ffe", + "name": "Forbidden Fruit Energy" + }, + { + "id": "force-2", + "symbol": "frc", + "name": "Force" + }, + { + "id": "force-3", + "symbol": "force", + "name": "Force" + }, + { + "id": "force-bridge-usdc", + "symbol": "usdc", + "name": "Bridged USD Coin (Force Bridge)" + }, + { + "id": "forcefi", + "symbol": "forc", + "name": "Forcefi" + }, + { + "id": "force-protocol", + "symbol": "for", + "name": "ForTube" + }, + { + "id": "forest", + "symbol": "forest", + "name": "FOREST" + }, + { + "id": "forest-knight", + "symbol": "knight", + "name": "Forest Knight" + }, + { + "id": "forest-protocol", + "symbol": "forest", + "name": "Forest Protocol" + }, + { + "id": "forever", + "symbol": "forever", + "name": "FOREVER" + }, + { + "id": "forever-alone", + "symbol": "alone", + "name": "Forever Alone" + }, + { + "id": "forex-lens", + "symbol": "forexlens", + "name": "Forex Lens" + }, + { + "id": "forg", + "symbol": "forg", + "name": "Forg" + }, + { + "id": "forge3", + "symbol": "forge", + "name": "Forge3" + }, + { + "id": "forgive-me-father", + "symbol": "$purge", + "name": "Forgive Me Father" + }, + { + "id": "forgotten-playland", + "symbol": "fp", + "name": "Forgotten Playland" + }, + { + "id": "forkast", + "symbol": "cgx", + "name": "Forkast" + }, + { + "id": "fork-chain", + "symbol": "fork", + "name": "Fork Chain" + }, + { + "id": "forky", + "symbol": "forky", + "name": "FORKY" + }, + { + "id": "forky-2", + "symbol": "forky", + "name": "Forky" + }, + { + "id": "for-loot-and-glory", + "symbol": "flag", + "name": "For Loot And Glory" + }, + { + "id": "forma-robotics", + "symbol": "forma", + "name": "Forma Robotics" + }, + { + "id": "forrealog", + "symbol": "frog", + "name": "ForRealOG" + }, + { + "id": "for-sale", + "symbol": "sn47", + "name": "For Sale" + }, + { + "id": "forta", + "symbol": "fort", + "name": "Forta" + }, + { + "id": "fort-block-games", + "symbol": "fbg", + "name": "Fort Block Games" + }, + { + "id": "for-the-people-xbt", + "symbol": "ftpxbt", + "name": "FOR THE PEOPLE XBT" + }, + { + "id": "fortify-ai", + "symbol": "fai", + "name": "FORTIFY AI" + }, + { + "id": "fort-knox", + "symbol": "fortknox", + "name": "Fort Knox" + }, + { + "id": "fortress", + "symbol": "fts", + "name": "Fortress Loans" + }, + { + "id": "fortunafi-tokenized-short-term-u-s-treasury-bills-for-non-us-residents", + "symbol": "ifbill", + "name": "Fortunafi Tokenized Short-term U.S. Treasury Bills for Non US Residents" + }, + { + "id": "fortune-favours-the-brave", + "symbol": "fftb", + "name": "FORTUNE FAVOURS THE BRAVE" + }, + { + "id": "forty-two-dao-token", + "symbol": "ftd", + "name": "Forty Two DAO Token" + }, + { + "id": "forward", + "symbol": "forward", + "name": "Forward" + }, + { + "id": "forward-industries-inc", + "symbol": "ford", + "name": "Forward Industries, Inc." + }, + { + "id": "forwards-rec-bh-2024", + "symbol": "fjlt-b24", + "name": "Forwards Rec BH-2024" + }, + { + "id": "fottie", + "symbol": "fottie", + "name": "Fottie" + }, + { + "id": "found-one", + "symbol": "one", + "name": "Found One" + }, + { + "id": "foundry", + "symbol": "fdry", + "name": "Foundry" + }, + { + "id": "fountain-protocol", + "symbol": "ftp", + "name": "Fountain Protocol" + }, + { + "id": "four", + "symbol": "form", + "name": "Four" + }, + { + "id": "four-2", + "symbol": "four", + "name": "FOUR" + }, + { + "id": "four-3", + "symbol": "four", + "name": "Four" + }, + { + "id": "fourbook", + "symbol": "fb", + "name": "FourBook" + }, + { + "id": "fourcoin", + "symbol": "four", + "name": "FourCoin" + }, + { + "id": "fourth-star", + "symbol": "fstr", + "name": "Fourth Star" + }, + { + "id": "fourxbt", + "symbol": "fxbt", + "name": "Fourxbt" + }, + { + "id": "fox-bets-ai", + "symbol": "fox", + "name": "Fox Bets AI" + }, + { + "id": "foxcon", + "symbol": "fox", + "name": "Foxcon" + }, + { + "id": "foxe", + "symbol": "foxe", + "name": "FOXE" + }, + { + "id": "foxgirl", + "symbol": "foxgirl", + "name": "FoxGirl" + }, + { + "id": "foxify", + "symbol": "fox", + "name": "Foxify" + }, + { + "id": "fox-inu", + "symbol": "finu", + "name": "Fox inu" + }, + { + "id": "foxsy-ai", + "symbol": "foxsy", + "name": "Foxsy AI" + }, + { + "id": "foxy", + "symbol": "foxy", + "name": "Foxy" + }, + { + "id": "fpi-bank", + "symbol": "fpibank", + "name": "FPI Bank" + }, + { + "id": "fractal-bitcoin", + "symbol": "fb", + "name": "Fractal Bitcoin" + }, + { + "id": "fractrade", + "symbol": "frac", + "name": "FRACTRADE" + }, + { + "id": "fragma", + "symbol": "fragma", + "name": "FRAGMA" + }, + { + "id": "fragmetric", + "symbol": "frag", + "name": "Fragmetric" + }, + { + "id": "frakti", + "symbol": "frakt", + "name": "FRAKTIΛ" + }, + { + "id": "frakt-token", + "symbol": "frkt", + "name": "FRAKT" + }, + { + "id": "frame", + "symbol": "frame", + "name": "Frame" + }, + { + "id": "frame-2", + "symbol": "frame", + "name": "FRAME" + }, + { + "id": "frame-token", + "symbol": "frame", + "name": "Frame Token" + }, + { + "id": "france-coin", + "symbol": "fra", + "name": "France Coin" + }, + { + "id": "france-rev-finance", + "symbol": "frf", + "name": "FRANCE REV FINANCE" + }, + { + "id": "frankencoin", + "symbol": "zchf", + "name": "Frankencoin" + }, + { + "id": "frankenfrog", + "symbol": "ffrog", + "name": "FrankenFrog" + }, + { + "id": "frankfrankfrank", + "symbol": "$frank", + "name": "Frankfrankfrank" + }, + { + "id": "franklin", + "symbol": "fly", + "name": "Franklin" + }, + { + "id": "franklin-templeton-benji", + "symbol": "benji", + "name": "Franklin Templeton BENJI" + }, + { + "id": "frapped-usdt", + "symbol": "fusdt", + "name": "Frapped USDT" + }, + { + "id": "fraude", + "symbol": "inss", + "name": "FRAUDE" + }, + { + "id": "frax", + "symbol": "frax", + "name": "Legacy Frax Dollar" + }, + { + "id": "frax-bullas", + "symbol": "frxbullas", + "name": "FRAX Bullas" + }, + { + "id": "frax-ether", + "symbol": "frxeth", + "name": "Frax Ether" + }, + { + "id": "frax-price-index", + "symbol": "fpi", + "name": "Frax Price Index" + }, + { + "id": "frax-price-index-share", + "symbol": "fpis", + "name": "Frax Price Index Share" + }, + { + "id": "frax-share", + "symbol": "frax", + "name": "Frax (prev. FXS)" + }, + { + "id": "fraxtal", + "symbol": "fxtl", + "name": "Fraxtal" + }, + { + "id": "fraxtal-bridged-usdc-fraxtal", + "symbol": "usdc", + "name": "Fraxtal Bridged USDC (Fraxtal)" + }, + { + "id": "frax-usd", + "symbol": "frxusd", + "name": "Frax USD" + }, + { + "id": "freakoff", + "symbol": "freak", + "name": "Freakoff" + }, + { + "id": "fredenergy", + "symbol": "fred", + "name": "FRED Energy" + }, + { + "id": "fred-the-kitty", + "symbol": "fred", + "name": "fred the kitty" + }, + { + "id": "free-bridged-solvbtcb-core", + "symbol": "solvbtc.b", + "name": "Free Bridged SolvBTC.b (Core)" + }, + { + "id": "freeda", + "symbol": "freeda", + "name": "FREEDA" + }, + { + "id": "freedogs", + "symbol": "freedog", + "name": "FreeDogs" + }, + { + "id": "freedom-2", + "symbol": "fdm", + "name": "Freedom" + }, + { + "id": "freedomcoin", + "symbol": "freed", + "name": "Freedomcoin" + }, + { + "id": "freedom-coin", + "symbol": "free", + "name": "FREEdom coin" + }, + { + "id": "freedom-dollar", + "symbol": "fusd", + "name": "Freedom Dollar" + }, + { + "id": "freedom-jobs-business", + "symbol": "$fjb", + "name": "Freedom. Jobs. Business" + }, + { + "id": "freeinnovgovhopethrstx", + "symbol": "fightx", + "name": "FreeInnovGovHopeThrstX" + }, + { + "id": "freela", + "symbol": "frel", + "name": "Freela" + }, + { + "id": "freemoon-2", + "symbol": "moon", + "name": "FreeMoon" + }, + { + "id": "free-republic-of-verdis", + "symbol": "verdis", + "name": "Free Republic of Verdis" + }, + { + "id": "freerossdao", + "symbol": "free", + "name": "FreeRossDAO" + }, + { + "id": "free-shayne-coplan", + "symbol": "eagle", + "name": "FREE Shayne Coplan" + }, + { + "id": "free-speech-2", + "symbol": "x", + "name": "Free Speech" + }, + { + "id": "freestyle-classic", + "symbol": "fst", + "name": "FreeStyle Classic" + }, + { + "id": "freetrump", + "symbol": "$trump", + "name": "FreeTrump" + }, + { + "id": "freg", + "symbol": "freg", + "name": "Freg" + }, + { + "id": "frego", + "symbol": "frego", + "name": "FREGO" + }, + { + "id": "french-connection-finance", + "symbol": "zypto", + "name": "Zypto Token" + }, + { + "id": "frenchie-2", + "symbol": "fren", + "name": "FRENCHIE" + }, + { + "id": "frencoin-2", + "symbol": "fren", + "name": "Frencoin" + }, + { + "id": "frencoin-3", + "symbol": "fren", + "name": "Frencoin" + }, + { + "id": "frenly", + "symbol": "frenly", + "name": "Frenly" + }, + { + "id": "frenpet", + "symbol": "fp", + "name": "Fren Pet" + }, + { + "id": "frens-ai", + "symbol": "fren", + "name": "Frens.ai" + }, + { + "id": "frens-club", + "symbol": "$fren", + "name": "Frens Club" + }, + { + "id": "frens-of-elon", + "symbol": "frens", + "name": "Frens of Elon" + }, + { + "id": "frenz", + "symbol": "frenz", + "name": "FRENZ" + }, + { + "id": "fresco", + "symbol": "fresco", + "name": "Fresco" + }, + { + "id": "freya-by-virtuals", + "symbol": "freya", + "name": "Freya Protocol" + }, + { + "id": "freyala", + "symbol": "xya", + "name": "GameFi Crossing" + }, + { + "id": "freysa-ai", + "symbol": "fai", + "name": "Freysa AI" + }, + { + "id": "frgx-finance", + "symbol": "frgx", + "name": "FRGX Finance" + }, + { + "id": "fric", + "symbol": "fric", + "name": "FRIC" + }, + { + "id": "fric-2", + "symbol": "fric", + "name": "FRIC" + }, + { + "id": "frictionless", + "symbol": "fric", + "name": "Frictionless" + }, + { + "id": "fridonai", + "symbol": "frai", + "name": "FridonAI" + }, + { + "id": "fried-chicken", + "symbol": "fckn", + "name": "Fried Chicken" + }, + { + "id": "friend3", + "symbol": "f3", + "name": "Friend3" + }, + { + "id": "friends-with-benefit-pro", + "symbol": "fwb", + "name": "Friends With Benefits Pro" + }, + { + "id": "friends-with-benefits-pro", + "symbol": "fwb", + "name": "Friends With Benefits Pro [OLD]" + }, + { + "id": "friend-tech", + "symbol": "friend", + "name": "Friend.tech" + }, + { + "id": "fringe-finance", + "symbol": "frin", + "name": "Fringe Finance" + }, + { + "id": "frodo-the-virtual-samurai", + "symbol": "frog", + "name": "Frodo the Virtual Samurai" + }, + { + "id": "frog-3", + "symbol": "frog", + "name": "Frog" + }, + { + "id": "frog-4", + "symbol": "frog", + "name": "Frog" + }, + { + "id": "frog-5", + "symbol": "frog", + "name": "FROG" + }, + { + "id": "frog-ceo", + "symbol": "frog ceo", + "name": "FROG CEO" + }, + { + "id": "froge-finance", + "symbol": "frogex", + "name": "FrogeX" + }, + { + "id": "frogevip", + "symbol": "froge", + "name": "Froge" + }, + { + "id": "frog-games", + "symbol": "fg", + "name": "Frog Games" + }, + { + "id": "frogg-and-ratt", + "symbol": "fratt", + "name": "Frogg and Ratt" + }, + { + "id": "frogger", + "symbol": "frogger", + "name": "FROGGER" + }, + { + "id": "froggi", + "symbol": "$froggi", + "name": "Froggi" + }, + { + "id": "froggie", + "symbol": "froggie", + "name": "Froggie" + }, + { + "id": "froggies-token-2", + "symbol": "frgst", + "name": "Froggies" + }, + { + "id": "froggy-2", + "symbol": "frog", + "name": "Froggy" + }, + { + "id": "froggy-friends", + "symbol": "tad", + "name": "Froggy Friends" + }, + { + "id": "frogie", + "symbol": "frogie", + "name": "Frogie" + }, + { + "id": "frogo-2", + "symbol": "frogo", + "name": "FROGO" + }, + { + "id": "frog-on-eth", + "symbol": "frog", + "name": "Frog on ETH" + }, + { + "id": "frogonsol", + "symbol": "frog", + "name": "Frogonsol" + }, + { + "id": "frogo-the-lord", + "symbol": "frogo", + "name": "Frogo The Lord" + }, + { + "id": "frogs", + "symbol": "$frogs", + "name": "Frogs" + }, + { + "id": "frogs-2", + "symbol": "frogs", + "name": "FROGS" + }, + { + "id": "frogs-strategy", + "symbol": "frogstr", + "name": "Frogs Strategy" + }, + { + "id": "frog-wif-peen", + "symbol": "peen", + "name": "Frog Wif Peen" + }, + { + "id": "frog-x-toad-6900", + "symbol": "fxt", + "name": "Frog X Toad 6900" + }, + { + "id": "frokai", + "symbol": "frokai", + "name": "FrokAI" + }, + { + "id": "frok-ai", + "symbol": "frok", + "name": "FROK" + }, + { + "id": "fronk", + "symbol": "fronk", + "name": "Fronk" + }, + { + "id": "frontfanz-2", + "symbol": "fanx", + "name": "FrontFanz" + }, + { + "id": "frontier-stable-token", + "symbol": "frnt", + "name": "Frontier Stable Token" + }, + { + "id": "frontier-token", + "symbol": "front", + "name": "Frontier" + }, + { + "id": "front-row", + "symbol": "frr", + "name": "Frontrow" + }, + { + "id": "froodoo", + "symbol": "fodo", + "name": "FrooDoo" + }, + { + "id": "froppy", + "symbol": "froppy", + "name": "Froppy" + }, + { + "id": "froq", + "symbol": "froq", + "name": "FROQ" + }, + { + "id": "frost-2", + "symbol": "frost", + "name": "Frost" + }, + { + "id": "frostic", + "symbol": "frost", + "name": "Frostic" + }, + { + "id": "frosty-the-polar-bear", + "symbol": "frosty", + "name": "Frosty the Polar Bear" + }, + { + "id": "froth", + "symbol": "froth", + "name": "Froth" + }, + { + "id": "frox", + "symbol": "frox", + "name": "Frox" + }, + { + "id": "froyo-games", + "symbol": "froyo", + "name": "Froyo Games" + }, + { + "id": "frug", + "symbol": "frug", + "name": "FRUG" + }, + { + "id": "fruits", + "symbol": "frts", + "name": "Fruits" + }, + { + "id": "fry", + "symbol": "fry", + "name": "Fry" + }, + { + "id": "fsjal", + "symbol": "fsjal", + "name": "fsjal" + }, + { + "id": "fsn", + "symbol": "fsn", + "name": "FUSION" + }, + { + "id": "ftf100", + "symbol": "ftf100", + "name": "FTF100" + }, + { + "id": "ftmtoken", + "symbol": "ftmx", + "name": "FTMTOKEN" + }, + { + "id": "ftribe-fighters", + "symbol": "f2c", + "name": "Ftribe Fighters" + }, + { + "id": "ftx-token", + "symbol": "ftt", + "name": "FTX" + }, + { + "id": "ftx-users-debt", + "symbol": "fud", + "name": "FTX Users' Debt" + }, + { + "id": "fu", + "symbol": "fu", + "name": "FU" + }, + { + "id": "fuack", + "symbol": "fuack", + "name": "FUACK" + }, + { + "id": "fu-bao", + "symbol": "fubao", + "name": "Fu Bao" + }, + { + "id": "fubb", + "symbol": "fubb", + "name": "FUBB" + }, + { + "id": "fudernakamoto", + "symbol": "fudna", + "name": "FUDERNAKAMOTO" + }, + { + "id": "fud-the-pug", + "symbol": "fud", + "name": "Fud the Pug" + }, + { + "id": "fuego", + "symbol": "fuego", + "name": "FUEGO" + }, + { + "id": "fuel-network", + "symbol": "fuel", + "name": "Fuel Network" + }, + { + "id": "fuel-the-flame", + "symbol": "flame", + "name": "FLAME" + }, + { + "id": "fufu", + "symbol": "fufu", + "name": "Fufu" + }, + { + "id": "fufu-token", + "symbol": "fufu", + "name": "Fufu Token" + }, + { + "id": "fug", + "symbol": "fug", + "name": "FUG" + }, + { + "id": "fug-2", + "symbol": "fug", + "name": "fug" + }, + { + "id": "fujicoin", + "symbol": "fjc", + "name": "Fujicoin" + }, + { + "id": "fujimoto", + "symbol": "fuji", + "name": "Fujimoto" + }, + { + "id": "fuku", + "symbol": "fuku", + "name": "FUKU" + }, + { + "id": "fuku-2", + "symbol": "fuku", + "name": "Fuku" + }, + { + "id": "fuku-kun", + "symbol": "fuku", + "name": "Fuku-Kun" + }, + { + "id": "fukurou", + "symbol": "fukurou", + "name": "エッホエッホ" + }, + { + "id": "fulcrom", + "symbol": "ful", + "name": "Fulcrom" + }, + { + "id": "fullhouse-gg", + "symbol": "fh", + "name": "Fullhouse.gg" + }, + { + "id": "full-moon", + "symbol": "fm", + "name": "Full Moon" + }, + { + "id": "full-sail", + "symbol": "sail", + "name": "Full Sail" + }, + { + "id": "fullsend-community-coin", + "symbol": "fullsend", + "name": "Fullsend Community Coin" + }, + { + "id": "fum-coinn", + "symbol": "fum", + "name": "fUm cOiNn" + }, + { + "id": "fun", + "symbol": "fun", + "name": "FUN" + }, + { + "id": "functionland", + "symbol": "fula", + "name": "Functionland" + }, + { + "id": "funds-are-safu", + "symbol": "safu", + "name": "Funds are SAFU" + }, + { + "id": "funfair", + "symbol": "fun", + "name": "FUNToken" + }, + { + "id": "fungi", + "symbol": "fungi", + "name": "Fungi" + }, + { + "id": "fungi-2", + "symbol": "fungi", + "name": "FUNGI" + }, + { + "id": "funki-bridged-weth-funki", + "symbol": "weth", + "name": "Funki Bridged WETH (Funki)" + }, + { + "id": "funless", + "symbol": "funless", + "name": "Funless" + }, + { + "id": "furfication", + "symbol": "fur", + "name": "Furfication" + }, + { + "id": "furmula", + "symbol": "furm", + "name": "Furmula" + }, + { + "id": "fur-nancial-advisor", + "symbol": "fur", + "name": "Fur-nancial advisor" + }, + { + "id": "furo", + "symbol": "furo", + "name": "Furo" + }, + { + "id": "furucombo", + "symbol": "combo", + "name": "Furucombo" + }, + { + "id": "fusaka", + "symbol": "fusaka", + "name": "Fusaka" + }, + { + "id": "fusd-by-the-fedz", + "symbol": "fusd", + "name": "The Fedz FUSD" + }, + { + "id": "fuse-bridged-wbnb-fuse", + "symbol": "wbnb", + "name": "Fuse Bridged WBNB (Fuse)" + }, + { + "id": "fuse-bridged-wbtc-fuse", + "symbol": "wbtc", + "name": "Fuse Bridged WBTC (Fuse)" + }, + { + "id": "fuse-dollar", + "symbol": "fusd", + "name": "Fuse Dollar V3" + }, + { + "id": "fusefi", + "symbol": "volt", + "name": "Voltage Finance" + }, + { + "id": "fuse-network-token", + "symbol": "fuse", + "name": "Fuse" + }, + { + "id": "fuseon", + "symbol": "fus", + "name": "Fuseon" + }, + { + "id": "fusio", + "symbol": "fusio", + "name": "FUSIO" + }, + { + "id": "fusion-ai-2", + "symbol": "fusion", + "name": "Fusion AI" + }, + { + "id": "fusior-ai", + "symbol": "fsr", + "name": "Fusior AI" + }, + { + "id": "fusotao", + "symbol": "tao", + "name": "Fusotao" + }, + { + "id": "fust-token", + "symbol": "fust", + "name": "FUST Token" + }, + { + "id": "futu-holdings-ondo-tokenized-stock", + "symbol": "futuon", + "name": "Futu Holdings (Ondo Tokenized Stock)" + }, + { + "id": "future-arises-in-the-heart", + "symbol": "faith", + "name": "Future Arises In The Heart" + }, + { + "id": "futurespl", + "symbol": "future", + "name": "Future Protocol" + }, + { + "id": "futureswap", + "symbol": "fst", + "name": "Futureswap" + }, + { + "id": "futuresyncx", + "symbol": "fsx", + "name": "FUTURESYNCX" + }, + { + "id": "fuuuuuuuuuuuuuu", + "symbol": "fuuu", + "name": "FUUUUUUUUUUUUUU" + }, + { + "id": "fuxi-dragon", + "symbol": "fuxi", + "name": "Fuxi Dragon" + }, + { + "id": "fuzzybear", + "symbol": "fuzzy", + "name": "Fuzzybear" + }, + { + "id": "fvix", + "symbol": "fvix", + "name": "FVIX" + }, + { + "id": "fwog", + "symbol": "fwog", + "name": "Fwog" + }, + { + "id": "fx1sports", + "symbol": "fxi", + "name": "FX1Sports" + }, + { + "id": "fx-coin", + "symbol": "fx", + "name": "Function X" + }, + { + "id": "fxhash", + "symbol": "fxh", + "name": "fxhash" + }, + { + "id": "fxn", + "symbol": "fxn", + "name": "FXN" + }, + { + "id": "fxn-token", + "symbol": "fxn", + "name": "f(x) Protocol" + }, + { + "id": "f-x-protocol-fxusd", + "symbol": "fxusd", + "name": "f(x) Protocol fxUSD" + }, + { + "id": "f-x-protocol-leveraged-eth", + "symbol": "xeth", + "name": "f(x) Protocol Leveraged ETH" + }, + { + "id": "f-x-protocol-morpho-usdc", + "symbol": "fxusdc", + "name": "f(x) Protocol Morpho USDC" + }, + { + "id": "fx-rusd", + "symbol": "rusd", + "name": "f(x) rUSD" + }, + { + "id": "fx-usd-saving", + "symbol": "fxsave", + "name": "f(x) USD Saving" + }, + { + "id": "fyde", + "symbol": "fyde", + "name": "Fyde" + }, + { + "id": "fyde-treasury", + "symbol": "trsy", + "name": "Fyde Treasury" + }, + { + "id": "fyni-ai", + "symbol": "fyni", + "name": "Fyni AI by Virtuals" + }, + { + "id": "g-2", + "symbol": "g", + "name": "G" + }, + { + "id": "g8day", + "symbol": "g8d", + "name": "G8DAY" + }, + { + "id": "g920", + "symbol": "g920", + "name": "G920" + }, + { + "id": "gabin-noosum", + "symbol": "noosum", + "name": "Gabin Noosum" + }, + { + "id": "gaga-pepe", + "symbol": "gaga", + "name": "Gaga (Pepe)" + }, + { + "id": "gagarin", + "symbol": "ggr", + "name": "GAGARIN" + }, + { + "id": "g-agents-ai", + "symbol": "gty", + "name": "G-Agents AI" + }, + { + "id": "gag-token", + "symbol": "gag", + "name": "GAG Token" + }, + { + "id": "_gai16zbrielshai16zpr0", + "symbol": "gaib", + "name": "_gai16zbrielShai16zpr0" + }, + { + "id": "gaia-2", + "symbol": "sn57", + "name": "Gaia" + }, + { + "id": "gaia-3", + "symbol": "gaia", + "name": "Gaia" + }, + { + "id": "gaia-everworld", + "symbol": "gaia", + "name": "Gaia Everworld" + }, + { + "id": "gaib-ai-dollar-alpha-usdc", + "symbol": "aidausdc", + "name": "Gaib AI Dollar Alpha USDC" + }, + { + "id": "gaimin", + "symbol": "gmrx", + "name": "GAIMIN" + }, + { + "id": "gaim-studio", + "symbol": "gaim", + "name": "GAIM Studio" + }, + { + "id": "gains", + "symbol": "gains", + "name": "Gains" + }, + { + "id": "gains-network", + "symbol": "gns", + "name": "Gains Network" + }, + { + "id": "gains-network-usdc", + "symbol": "gusdc", + "name": "Gains Network USDC" + }, + { + "id": "gainzy", + "symbol": "$gnz", + "name": "gAInzy" + }, + { + "id": "gaisha-ai", + "symbol": "gaisha", + "name": "Gaisha AI" + }, + { + "id": "gaj", + "symbol": "gaj", + "name": "Gaj Finance" + }, + { + "id": "gakster", + "symbol": "gak", + "name": "Gakster" + }, + { + "id": "gala", + "symbol": "gala", + "name": "GALA" + }, + { + "id": "galactica-com", + "symbol": "gnet", + "name": "Galactica.com" + }, + { + "id": "galactic-arena-the-nftverse", + "symbol": "gan", + "name": "Galactic Arena: The NFTverse" + }, + { + "id": "galactic-bonk", + "symbol": "g-bonk", + "name": "Galactic Bonk" + }, + { + "id": "gala-music", + "symbol": "music", + "name": "Gala Music" + }, + { + "id": "galatasaray-fan-token", + "symbol": "gal", + "name": "Galatasaray Fan Token" + }, + { + "id": "galaxia", + "symbol": "gxa", + "name": "Galaxia" + }, + { + "id": "galaxis-token", + "symbol": "galaxis", + "name": "GALAXIS Token" + }, + { + "id": "galaxy-digital-inc-class-a-common-stock", + "symbol": "glxy", + "name": "Galaxy Digital Inc. Class A Common Stock" + }, + { + "id": "galaxy-digital-xstock", + "symbol": "glxyx", + "name": "Galaxy Digital xStock" + }, + { + "id": "galaxy-fight-club", + "symbol": "gcoin", + "name": "Galaxy Fight Club" + }, + { + "id": "galaxy-fox", + "symbol": "gfox", + "name": "Galaxy Fox" + }, + { + "id": "galaxy-lab", + "symbol": "gaga", + "name": "Galaxy Lab" + }, + { + "id": "galeon", + "symbol": "galeon", + "name": "Galeon" + }, + { + "id": "gallo-the-hen", + "symbol": "gallo", + "name": "Gallo the Hen" + }, + { + "id": "galvan", + "symbol": "ize", + "name": "Galvan" + }, + { + "id": "gam3s-gg", + "symbol": "g3", + "name": "GAM3S.GG" + }, + { + "id": "gama-token", + "symbol": "gama", + "name": "Gama Token" + }, + { + "id": "gambex", + "symbol": "gbe", + "name": "Gambex" + }, + { + "id": "gambit-2", + "symbol": "gambit", + "name": "Gambit" + }, + { + "id": "gambly-io", + "symbol": "gmbly", + "name": "Gambly.io" + }, + { + "id": "game", + "symbol": "gtc", + "name": "Game" + }, + { + "id": "game-3", + "symbol": "games", + "name": "GAME" + }, + { + "id": "game-5-ball", + "symbol": "ball", + "name": "Game 5 BALL" + }, + { + "id": "game7", + "symbol": "g7", + "name": "Game7" + }, + { + "id": "game-bee", + "symbol": "gbb", + "name": "Game Bee" + }, + { + "id": "gameboy", + "symbol": "gboy", + "name": "GameBoy" + }, + { + "id": "gamebuild", + "symbol": "game", + "name": "GameBuild" + }, + { + "id": "game-by-virtuals", + "symbol": "game", + "name": "GAME by Virtuals" + }, + { + "id": "game-coin", + "symbol": "gmex", + "name": "Game Coin" + }, + { + "id": "gamecredits", + "symbol": "game", + "name": "GameCredits" + }, + { + "id": "gamee", + "symbol": "gmee", + "name": "GAMEE" + }, + { + "id": "gamefantasystar", + "symbol": "gfs", + "name": "GameFantasyStar" + }, + { + "id": "game-fantasy-token", + "symbol": "gft", + "name": "Game Fantasy" + }, + { + "id": "gamefi", + "symbol": "gafi", + "name": "GameFi.org" + }, + { + "id": "gamefi-x", + "symbol": "gfx", + "name": "GameFi X" + }, + { + "id": "gameflip", + "symbol": "flp", + "name": "Gameflip" + }, + { + "id": "gamefork", + "symbol": "gamefork", + "name": "GameFork" + }, + { + "id": "gamegpt", + "symbol": "duel", + "name": "GameGPT" + }, + { + "id": "game-guide", + "symbol": "gg", + "name": "Game Guide" + }, + { + "id": "gameme-fi", + "symbol": "gmmf", + "name": "Gameme-Fi" + }, + { + "id": "game-meteor-coin", + "symbol": "gmto", + "name": "Game Meteor Coin" + }, + { + "id": "game-money", + "symbol": "gm", + "name": "Game Money" + }, + { + "id": "gamem-token", + "symbol": "gmt", + "name": "GameM Token" + }, + { + "id": "gameness-token", + "symbol": "gness", + "name": "Gameness Token" + }, + { + "id": "game-of-bitcoin-rune", + "symbol": "games", + "name": "GAME•OF•BITCOIN" + }, + { + "id": "game-of-memes", + "symbol": "gome", + "name": "Game of Memes" + }, + { + "id": "game-of-memes-eth", + "symbol": "game", + "name": "Game of Memes (ETH)" + }, + { + "id": "gameology", + "symbol": "gmy", + "name": "Gameology" + }, + { + "id": "gameonforge", + "symbol": "go4", + "name": "GameonForge" + }, + { + "id": "gamepass-network", + "symbol": "gpn", + "name": "GamePass Network" + }, + { + "id": "gameplan", + "symbol": "gplan", + "name": "Gameplan" + }, + { + "id": "gamer", + "symbol": "gmr", + "name": "GAMER" + }, + { + "id": "gamer-arena", + "symbol": "gau", + "name": "Gamer Arena" + }, + { + "id": "gamercoin", + "symbol": "ghx", + "name": "GamerCoin" + }, + { + "id": "gamer-tag", + "symbol": "gmrt", + "name": "The Game Company" + }, + { + "id": "gamesbuysell", + "symbol": "gbs", + "name": "GAMESBUYSELL" + }, + { + "id": "gamescoin", + "symbol": "gc", + "name": "GamesCoin" + }, + { + "id": "games-for-a-living", + "symbol": "gfal", + "name": "Games for a Living" + }, + { + "id": "gamestarter", + "symbol": "game", + "name": "Gamestarter" + }, + { + "id": "gamestation", + "symbol": "gamer", + "name": "GameStation" + }, + { + "id": "game-stop", + "symbol": "gme", + "name": "GME (Ethereum)" + }, + { + "id": "gamestop-2", + "symbol": "gme", + "name": "GME (Base)" + }, + { + "id": "gamestop-ondo-tokenized-stock", + "symbol": "gmeon", + "name": "GameStop (Ondo Tokenized Stock)" + }, + { + "id": "gamestop-tokenized-stock-defichain", + "symbol": "dgme", + "name": "GameStop Tokenized Stock Defichain" + }, + { + "id": "gamestop-xstock", + "symbol": "gmex", + "name": "Gamestop xStock" + }, + { + "id": "gameswap-org", + "symbol": "gswap", + "name": "Gameswap" + }, + { + "id": "gameswift", + "symbol": "gswift", + "name": "GameSwift" + }, + { + "id": "game-token", + "symbol": "game", + "name": "GAME Token" + }, + { + "id": "gamex-2", + "symbol": "gg", + "name": "GameX" + }, + { + "id": "gamext", + "symbol": "gmx", + "name": "GameXT" + }, + { + "id": "gamezone", + "symbol": "gzone", + "name": "GameZone" + }, + { + "id": "gami", + "symbol": "gami", + "name": "Gami" + }, + { + "id": "gamia", + "symbol": "gia", + "name": "Gamia" + }, + { + "id": "gaming", + "symbol": "gaming", + "name": "GAMING" + }, + { + "id": "gamium", + "symbol": "gmm", + "name": "Gamium" + }, + { + "id": "gami-world", + "symbol": "gami", + "name": "GAMI WORLD" + }, + { + "id": "gamma-strategies", + "symbol": "gamma", + "name": "Gamma Strategies" + }, + { + "id": "gammaswap", + "symbol": "gs", + "name": "GammaSwap" + }, + { + "id": "ganggang", + "symbol": "ganggang", + "name": "GangGang" + }, + { + "id": "gap-tooth-lizard", + "symbol": "$gappy", + "name": "Gap Tooth Lizard" + }, + { + "id": "garbage", + "symbol": "garbage", + "name": "Garbage" + }, + { + "id": "garden-2", + "symbol": "seed", + "name": "Garden" + }, + { + "id": "garffeldo", + "symbol": "lasagna", + "name": "Garffeldo" + }, + { + "id": "gari-network", + "symbol": "gari", + "name": "Gari Network" + }, + { + "id": "garlicoin", + "symbol": "grlc", + "name": "Garlicoin" + }, + { + "id": "garudax", + "symbol": "grdx", + "name": "GarudaX" + }, + { + "id": "gary", + "symbol": "gary", + "name": "Gary" + }, + { + "id": "gary-2", + "symbol": "gary", + "name": "Gary🐕😂" + }, + { + "id": "gary-3", + "symbol": "gary", + "name": "GARY" + }, + { + "id": "gary-gonesler", + "symbol": "gonesler", + "name": "Gary Gonesler" + }, + { + "id": "gas", + "symbol": "gas", + "name": "Gas" + }, + { + "id": "gas-dao", + "symbol": "gas", + "name": "Gas DAO" + }, + { + "id": "gashy", + "symbol": "gash", + "name": "Gashy" + }, + { + "id": "gasp-2", + "symbol": "gasp", + "name": "GASP" + }, + { + "id": "gasspas", + "symbol": "gass", + "name": "Gasspas" + }, + { + "id": "gata", + "symbol": "gata", + "name": "Gata" + }, + { + "id": "gatechain-token", + "symbol": "gt", + "name": "Gate" + }, + { + "id": "gatenet", + "symbol": "gate", + "name": "GATENet" + }, + { + "id": "gate-staked-sol", + "symbol": "gtsol", + "name": "Gate Staked SOL" + }, + { + "id": "gateway-to-mars", + "symbol": "mars", + "name": "GATEWAY TO MARS" + }, + { + "id": "gate-wrapped-btc", + "symbol": "gtbtc", + "name": "Gate Wrapped BTC" + }, + { + "id": "gather-2", + "symbol": "gat", + "name": "Gather" + }, + { + "id": "gator-group", + "symbol": "gator", + "name": "GATOR GROUP" + }, + { + "id": "gatsby", + "symbol": "gatsby", + "name": "GATSBY" + }, + { + "id": "gatsby-inu-new", + "symbol": "gatsby", + "name": "Gatsby Inu" + }, + { + "id": "gauntlet-usdc-prime-morpho-vault", + "symbol": "gtusdc", + "name": "Gauntlet USDC Prime Morpho Vault" + }, + { + "id": "gauss0x", + "symbol": "gauss", + "name": "Gauss0x" + }, + { + "id": "gavcoin", + "symbol": "gav", + "name": "GavCoin" + }, + { + "id": "gavel", + "symbol": "ibrl", + "name": "IBRL" + }, + { + "id": "gavun-wud", + "symbol": "wud", + "name": "Gavun Wud" + }, + { + "id": "gax-liquidity-token-reward", + "symbol": "gltr", + "name": "GAX Liquidity Token Reward" + }, + { + "id": "gay", + "symbol": "gay", + "name": "GAY" + }, + { + "id": "gbeast", + "symbol": "gb", + "name": "GBeast" + }, + { + "id": "gbtc6900", + "symbol": "gbtc", + "name": "GBTC6900" + }, + { + "id": "gcoin", + "symbol": "gc", + "name": "GCoin" + }, + { + "id": "gcrclassic", + "symbol": "gcr", + "name": "GCRClassic" + }, + { + "id": "gdog", + "symbol": "gdog", + "name": "GDOG" + }, + { + "id": "gear-2", + "symbol": "gea", + "name": "GEAR" + }, + { + "id": "gearbox", + "symbol": "gear", + "name": "Gearbox" + }, + { + "id": "gearup", + "symbol": "gup", + "name": "GearUp" + }, + { + "id": "gecko-inu", + "symbol": "gec", + "name": "Gecko Inu" + }, + { + "id": "gecky", + "symbol": "gecky", + "name": "Gecky" + }, + { + "id": "gecoin", + "symbol": "gec", + "name": "Gecoin" + }, + { + "id": "geegoopuzzle", + "symbol": "ggp", + "name": "Geegoopuzzle" + }, + { + "id": "geeked", + "symbol": "geeked", + "name": "geeked" + }, + { + "id": "geeq", + "symbol": "geeq", + "name": "GEEQ" + }, + { + "id": "geez-pnutz", + "symbol": "pnutz", + "name": "Geez PNutz" + }, + { + "id": "gegagedigedagedago", + "symbol": "nugget", + "name": "Gegagedigedagedago" + }, + { + "id": "gei-bear", + "symbol": "gei", + "name": "GEI BEAR" + }, + { + "id": "geist-dai", + "symbol": "gdai", + "name": "Geist Dai" + }, + { + "id": "geist-eth", + "symbol": "geth", + "name": "Geist ETH" + }, + { + "id": "geist-ftm", + "symbol": "gftm", + "name": "Geist FTM" + }, + { + "id": "geist-fusdt", + "symbol": "gfusdt", + "name": "Geist fUSDT" + }, + { + "id": "geist-usdc", + "symbol": "gusdc", + "name": "Geist USDC" + }, + { + "id": "geist-wbtc", + "symbol": "gwbtc", + "name": "Geist WBTC" + }, + { + "id": "geke", + "symbol": "geke", + "name": "Geke" + }, + { + "id": "gekko", + "symbol": "gekko", + "name": "GEKKO" + }, + { + "id": "gekko-ai", + "symbol": "gekko", + "name": "Gekko AI by Virtuals" + }, + { + "id": "geko-base", + "symbol": "geko", + "name": "Geko Base" + }, + { + "id": "gelato", + "symbol": "gel", + "name": "Gelato" + }, + { + "id": "gelato-2", + "symbol": "gel", + "name": "Gelato" + }, + { + "id": "gem", + "symbol": "gem", + "name": "GEM" + }, + { + "id": "gemach", + "symbol": "gmac", + "name": "Gemach" + }, + { + "id": "gemdetector-ai", + "symbol": "gemai", + "name": "GemDetector.ai" + }, + { + "id": "gem-dex", + "symbol": "gem", + "name": "Gem DEX" + }, + { + "id": "gem-finder", + "symbol": "finder", + "name": "Gem Finder" + }, + { + "id": "gemholic", + "symbol": "gems", + "name": "Gemholic" + }, + { + "id": "gemhub", + "symbol": "ghub", + "name": "GemHUB" + }, + { + "id": "gemini-2", + "symbol": "gemini", + "name": "Gemini" + }, + { + "id": "gemini-dollar", + "symbol": "gusd", + "name": "Gemini Dollar" + }, + { + "id": "gemlink", + "symbol": "glink", + "name": "GemLink" + }, + { + "id": "gemo", + "symbol": "gemo", + "name": "Gemo" + }, + { + "id": "gempad", + "symbol": "gems", + "name": "GemPad" + }, + { + "id": "gemston", + "symbol": "gemston", + "name": "GEMSTON" + }, + { + "id": "gems-vip", + "symbol": "gems", + "name": "Gems VIP" + }, + { + "id": "gemxbt", + "symbol": "gemxbt", + "name": "gemxbt" + }, + { + "id": "genealpha", + "symbol": "ga", + "name": "GeneAlpha" + }, + { + "id": "generaitiv", + "symbol": "gai", + "name": "Generaitiv" + }, + { + "id": "general-electric-ondo-tokenized-stock", + "symbol": "geon", + "name": "General Electric (Ondo Tokenized Stock)" + }, + { + "id": "general-impressions", + "symbol": "gen", + "name": "General Impressions" + }, + { + "id": "generate-endless-money", + "symbol": "gem", + "name": "Generate Endless Money" + }, + { + "id": "generational-wealth", + "symbol": "gen", + "name": "Generational Wealth" + }, + { + "id": "generational-wealth-3", + "symbol": "wealth", + "name": "Generational Wealth" + }, + { + "id": "generative-market-explorer", + "symbol": "aigmx", + "name": "Generative Market eXplorer" + }, + { + "id": "genesis-2", + "symbol": "gen", + "name": "Genesis" + }, + { + "id": "genesis-3", + "symbol": "genesis", + "name": "GENESIS" + }, + { + "id": "genesis-4", + "symbol": "gxn", + "name": "Genesis" + }, + { + "id": "genesis-arena", + "symbol": "genesis", + "name": "Genesis Arena" + }, + { + "id": "genesislrt-restaked-eth", + "symbol": "ineth", + "name": "Inception Restaked ETH" + }, + { + "id": "genesis-shards", + "symbol": "gs", + "name": "Genesis Shards" + }, + { + "id": "genesis-worlds", + "symbol": "genesis", + "name": "Genesis Worlds" + }, + { + "id": "genesys", + "symbol": "gsys", + "name": "Genesys" + }, + { + "id": "genesysgo-shadow", + "symbol": "shdw", + "name": "Shadow Token" + }, + { + "id": "genie-2", + "symbol": "genie", + "name": "Genie" + }, + { + "id": "geniebot", + "symbol": "genie", + "name": "GenieBot" + }, + { + "id": "genie-protocol", + "symbol": "gnp", + "name": "Genie Protocol" + }, + { + "id": "genius", + "symbol": "geni", + "name": "Genius" + }, + { + "id": "genius-2", + "symbol": "genius", + "name": "Genius" + }, + { + "id": "genius-ai", + "symbol": "gnus", + "name": "GENIUS AI" + }, + { + "id": "genius-x", + "symbol": "gensx", + "name": "Genius X" + }, + { + "id": "genius-yield", + "symbol": "gens", + "name": "Genius Yield" + }, + { + "id": "genome-protocol", + "symbol": "nome", + "name": "Genome Protocol" + }, + { + "id": "genomesdao", + "symbol": "$gene", + "name": "GenomesDAO GENE" + }, + { + "id": "genomesdao-genome", + "symbol": "genome", + "name": "GenomesDAO GENOME" + }, + { + "id": "genopet-ki", + "symbol": "ki", + "name": "Genopets KI" + }, + { + "id": "genopets", + "symbol": "gene", + "name": "Genopets" + }, + { + "id": "gensokishis-metaverse", + "symbol": "mv", + "name": "GensoKishi Metaverse" + }, + { + "id": "gentleman", + "symbol": "man", + "name": "Gentleman" + }, + { + "id": "genzai", + "symbol": "genzai", + "name": "GENZAI by Virtuals" + }, + { + "id": "gen-z-quant", + "symbol": "quant", + "name": "Gen Z Quant" + }, + { + "id": "genz-token", + "symbol": "genz", + "name": "GENZ Token" + }, + { + "id": "geodb", + "symbol": "geo", + "name": "GeoDB" + }, + { + "id": "geodnet", + "symbol": "geod", + "name": "Geodnet" + }, + { + "id": "geoff", + "symbol": "geoff", + "name": "Geoff" + }, + { + "id": "geojam", + "symbol": "jam", + "name": "Geojam" + }, + { + "id": "georgeplaysclashroyale", + "symbol": "clash", + "name": "GeorgePlaysClashRoyale" + }, + { + "id": "georgiaai", + "symbol": "geai", + "name": "GeorgiaAI" + }, + { + "id": "germany-coin", + "symbol": "ger", + "name": "Germany Coin" + }, + { + "id": "germinal", + "symbol": "germ", + "name": "Germinal" + }, + { + "id": "gerowallet", + "symbol": "gero", + "name": "GeroWallet" + }, + { + "id": "gerta", + "symbol": "gerta", + "name": "Gerta" + }, + { + "id": "gertrudedatapig", + "symbol": "gdp", + "name": "GertrudeDataPig" + }, + { + "id": "get-ai", + "symbol": "get", + "name": "Get AI" + }, + { + "id": "get-bagged", + "symbol": "bagged", + "name": "Get Bagged" + }, + { + "id": "get-out-frog", + "symbol": "gof", + "name": "Get Out Frog" + }, + { + "id": "get-rich-or-die-trying", + "symbol": "grodt", + "name": "Get Rich or Die Trying" + }, + { + "id": "get-rich-quick", + "symbol": "rich", + "name": "GET RICH QUICK" + }, + { + "id": "getthegirl", + "symbol": "gtg", + "name": "GetTheGirl" + }, + { + "id": "get-token", + "symbol": "get", + "name": "GET Protocol" + }, + { + "id": "geyser", + "symbol": "gysr", + "name": "Geyser" + }, + { + "id": "gg3", + "symbol": "ggx", + "name": "GG3" + }, + { + "id": "ggem", + "symbol": "ggem", + "name": "GGEM" + }, + { + "id": "ggez1", + "symbol": "ggez1", + "name": "GGEZ1" + }, + { + "id": "gg-token", + "symbol": "ggtk", + "name": "GG" + }, + { + "id": "gh0stc0in", + "symbol": "ghost", + "name": "gh0stc0in" + }, + { + "id": "ghffb47yii2rteeyy10op", + "symbol": "ghffb47yii2rteeyy10op", + "name": "ghffb47yii2rteeyy10op" + }, + { + "id": "ghibli-chad", + "symbol": "ghiblichad", + "name": "GHIBLI CHAD" + }, + { + "id": "ghiblicz", + "symbol": "ghibli", + "name": "GhibliCZ" + }, + { + "id": "ghiblification", + "symbol": "ghibli", + "name": "Ghiblification" + }, + { + "id": "ghibli-kapibala", + "symbol": "kapibala", + "name": "Ghibli Kapibala" + }, + { + "id": "ghibli-michi", + "symbol": "gmichi", + "name": "ghibli michi" + }, + { + "id": "ghibli-mubarak", + "symbol": "gmubarak", + "name": "Ghibli Mubarak" + }, + { + "id": "ghislaine-network", + "symbol": "ghsi", + "name": "Ghislaine Network" + }, + { + "id": "ghkan", + "symbol": "gkn", + "name": "GKHAN" + }, + { + "id": "gho", + "symbol": "gho", + "name": "GHO" + }, + { + "id": "ghoad", + "symbol": "ghoad", + "name": "GHOAD" + }, + { + "id": "ghog", + "symbol": "ghog", + "name": "GHOG" + }, + { + "id": "ghost-by-mcafee", + "symbol": "ghost", + "name": "Ghost" + }, + { + "id": "ghost-coin", + "symbol": "ghost", + "name": "Ghost Coin" + }, + { + "id": "ghostdag-org", + "symbol": "gdag", + "name": "GhostDAG.org" + }, + { + "id": "ghostfi", + "symbol": "ghostfi", + "name": "GHOSTFI" + }, + { + "id": "ghostkids", + "symbol": "boo", + "name": "GhostKids" + }, + { + "id": "ghostwareos", + "symbol": "ghost", + "name": "GhostwareOS" + }, + { + "id": "ghostwifhat", + "symbol": "gif", + "name": "Ghostwifhat" + }, + { + "id": "ghostwire", + "symbol": "gwire", + "name": "ghostwire" + }, + { + "id": "gia-by-dexfi", + "symbol": "gia", + "name": "Gia by DexFi" + }, + { + "id": "giantai", + "symbol": "giantai", + "name": "Friendly GIANT AI" + }, + { + "id": "giant-mammoth", + "symbol": "gmmt", + "name": "Giant Mammoth" + }, + { + "id": "giants-protocol", + "symbol": "g", + "name": "Giants Protocol" + }, + { + "id": "giant-token", + "symbol": "gtan", + "name": "Giant Token" + }, + { + "id": "gib-2", + "symbol": "gib", + "name": "gib" + }, + { + "id": "gib-3", + "symbol": "gib", + "name": "gib" + }, + { + "id": "gibape", + "symbol": "gib", + "name": "Gibape" + }, + { + "id": "gibx-swap", + "symbol": "x", + "name": "GIBX Swap" + }, + { + "id": "gictrade", + "symbol": "gict", + "name": "GICTrade" + }, + { + "id": "giddy", + "symbol": "giddy", + "name": "Giddy" + }, + { + "id": "giffordwear", + "symbol": "giff", + "name": "GIFFORDwear" + }, + { + "id": "gift", + "symbol": "gift", + "name": "GIFT" + }, + { + "id": "gifto", + "symbol": "gft", + "name": "Gifto" + }, + { + "id": "gifts-strategy", + "symbol": "giftstr", + "name": "Gifts Strategy" + }, + { + "id": "gigabrain", + "symbol": "giga🧠", + "name": "GIGABRAIN" + }, + { + "id": "gigabrain-by-virtuals", + "symbol": "brain", + "name": "Gigabrain by virtuals" + }, + { + "id": "giga-cat", + "symbol": "gcat", + "name": "Giga Cat" + }, + { + "id": "gigacat-2", + "symbol": "gcat", + "name": "Gigacat" + }, + { + "id": "gigacat-3", + "symbol": "gcat", + "name": "GigaCat" + }, + { + "id": "gigachad-2", + "symbol": "giga", + "name": "Gigachad" + }, + { + "id": "gigachad-eth", + "symbol": "gigachad", + "name": "GigaChad" + }, + { + "id": "gigachadgpt", + "symbol": "$giga", + "name": "GigaChadGPT" + }, + { + "id": "gigadad", + "symbol": "gigadad", + "name": "Gigadad" + }, + { + "id": "gigadot", + "symbol": "gdot", + "name": "GIGADOT" + }, + { + "id": "gigaeth", + "symbol": "geth", + "name": "GIGAETH" + }, + { + "id": "gigagirl", + "symbol": "gigi", + "name": "GIGAGIRL" + }, + { + "id": "gigaichad", + "symbol": "$gigai", + "name": "GIGAICHAD" + }, + { + "id": "gigamas", + "symbol": "gigamas", + "name": "GigaMas" + }, + { + "id": "giga-potus", + "symbol": "potus", + "name": "Giga POTUS" + }, + { + "id": "giga-stacy", + "symbol": "stacy", + "name": "Giga Stacy" + }, + { + "id": "gigaswap", + "symbol": "giga", + "name": "GigaSwap" + }, + { + "id": "giggleched", + "symbol": "ched", + "name": "giggleched" + }, + { + "id": "giggle-fund", + "symbol": "giggle", + "name": "Giggle Fund" + }, + { + "id": "giggle-panda", + "symbol": "gigl", + "name": "Giggle Panda" + }, + { + "id": "giggles", + "symbol": "giggles", + "name": "Giggles" + }, + { + "id": "giko-cat", + "symbol": "giko", + "name": "Giko Cat" + }, + { + "id": "gilgeous", + "symbol": "glg", + "name": "Gilgeous" + }, + { + "id": "gimo-staked-0g", + "symbol": "st0g", + "name": "Gimo Staked 0G" + }, + { + "id": "ginger", + "symbol": "ginger", + "name": "GINGER" + }, + { + "id": "ginger-gang", + "symbol": "ginger", + "name": "GINGER GANG" + }, + { + "id": "gingers-have-no-sol", + "symbol": "ginger", + "name": "Gingers Have No Sol" + }, + { + "id": "ging-gong-kaew", + "symbol": "ggk", + "name": "Ging Gong Kaew" + }, + { + "id": "gini", + "symbol": "$gini", + "name": "GINI" + }, + { + "id": "ginnan", + "symbol": "ginnan", + "name": "Ginnan" + }, + { + "id": "ginnan-doge-s-brother", + "symbol": "ginnan", + "name": "Ginnan Doge's Brother" + }, + { + "id": "ginnan-neko", + "symbol": "ginnan", + "name": "Ginnan Neko" + }, + { + "id": "ginnan-the-cat", + "symbol": "ginnan", + "name": "Ginnan The Cat" + }, + { + "id": "ginza-network", + "symbol": "ginza", + "name": "Ginza Network" + }, + { + "id": "girl-economy-ai", + "symbol": "girle", + "name": "girl economy ai" + }, + { + "id": "girls", + "symbol": "girls", + "name": "GIRLS" + }, + { + "id": "girls-smoking-cigs", + "symbol": "gsc", + "name": "Girls Smoking Cigs" + }, + { + "id": "girl-with-a-pearl", + "symbol": "pearl", + "name": "Girl with a Pearl" + }, + { + "id": "gitcoin", + "symbol": "gtc", + "name": "Gitcoin" + }, + { + "id": "gitopia", + "symbol": "lore", + "name": "Gitopia" + }, + { + "id": "giveback", + "symbol": "gback", + "name": "GIVEBACK" + }, + { + "id": "giver", + "symbol": "giver", + "name": "GIVER" + }, + { + "id": "givestation", + "symbol": "gvst", + "name": "GiveStation" + }, + { + "id": "giveth", + "symbol": "giv", + "name": "Giveth" + }, + { + "id": "giza", + "symbol": "giza", + "name": "GIZA" + }, + { + "id": "gizmo-imaginary-kitten-runes", + "symbol": "gizmo", + "name": "GIZMO" + }, + { + "id": "glades", + "symbol": "glds", + "name": "Glades" + }, + { + "id": "gladius", + "symbol": "gladius", + "name": "GLADIUS" + }, + { + "id": "glamorous", + "symbol": "glam", + "name": "glamorous" + }, + { + "id": "glaze", + "symbol": "glaze", + "name": "Glaze" + }, + { + "id": "gld-tokenized-stock-defichain", + "symbol": "dgld", + "name": "SPDR Gold Shares Defichain" + }, + { + "id": "gleec-coin", + "symbol": "gleec", + "name": "Gleec Coin" + }, + { + "id": "glhfstrategy", + "symbol": "glhfstr", + "name": "GLHFStrategy" + }, + { + "id": "glide-finance", + "symbol": "glide", + "name": "Glide Finance" + }, + { + "id": "glidr", + "symbol": "glidr", + "name": "Glidr" + }, + { + "id": "glif-staked-icnt", + "symbol": "sticnt", + "name": "Glif Staked ICNT" + }, + { + "id": "glint-coin", + "symbol": "glint", + "name": "Glint Coin" + }, + { + "id": "glitch", + "symbol": "glitch", + "name": "Glitch" + }, + { + "id": "glitch-gremlin-ai", + "symbol": "gremlinai", + "name": "Glitch Gremlin AI" + }, + { + "id": "glitch-protocol", + "symbol": "glch", + "name": "Glitch Protocol" + }, + { + "id": "glitzkoin", + "symbol": "gtn", + "name": "GlitzKoin" + }, + { + "id": "glo", + "symbol": "glo", + "name": "GLO" + }, + { + "id": "glo-2", + "symbol": "glo", + "name": "GLO" + }, + { + "id": "gloat", + "symbol": "gloat", + "name": "Gloat" + }, + { + "id": "globalboost", + "symbol": "bsty", + "name": "GlobalBoost" + }, + { + "id": "globalchainz", + "symbol": "gcz", + "name": "GlobalChainZ" + }, + { + "id": "global-coin-research", + "symbol": "gcr", + "name": "Global Coin Research" + }, + { + "id": "global-commercial-business", + "symbol": "gcb", + "name": "Global Commercial Business" + }, + { + "id": "global-dollar", + "symbol": "usdg", + "name": "Global Dollar" + }, + { + "id": "global-entertainment-token", + "symbol": "get", + "name": "Global Entertainment Token" + }, + { + "id": "global-innovation-platform", + "symbol": "gip", + "name": "Global Innovation Platform" + }, + { + "id": "global-money-supply", + "symbol": "m2", + "name": "GLOBAL MONEY SUPPLY" + }, + { + "id": "global-trust-coin", + "symbol": "gtc", + "name": "Global Trust Coin" + }, + { + "id": "global-virtual-coin", + "symbol": "gvc", + "name": "Global Virtual Coin" + }, + { + "id": "globe-derivative-exchange", + "symbol": "gdt", + "name": "Globe Derivative Exchange" + }, + { + "id": "globees", + "symbol": "bee", + "name": "Globees" + }, + { + "id": "globiance-exchange", + "symbol": "gbex", + "name": "Globiance Exchange" + }, + { + "id": "glo-dollar", + "symbol": "usdglo", + "name": "Glo Dollar" + }, + { + "id": "glonkybot", + "symbol": "glanker", + "name": "glonkybot" + }, + { + "id": "gloom", + "symbol": "gloom", + "name": "Gloom" + }, + { + "id": "gloom-2", + "symbol": "gloom", + "name": "GLOOM" + }, + { + "id": "gloria-ai", + "symbol": "gloria", + "name": "Gloria AI" + }, + { + "id": "glorious-looking", + "symbol": "glg", + "name": "Glorious Looking" + }, + { + "id": "glorp", + "symbol": "glorp", + "name": "Glorp" + }, + { + "id": "glow-staked-sol", + "symbol": "glowsol", + "name": "Glow Staked SOL" + }, + { + "id": "glp1", + "symbol": "glp1", + "name": "GLP1" + }, + { + "id": "glub", + "symbol": "glub", + "name": "Glub" + }, + { + "id": "glub-2", + "symbol": "glub", + "name": "glub" + }, + { + "id": "glue", + "symbol": "wglue", + "name": "Wrapped Glue" + }, + { + "id": "glue-2", + "symbol": "glue", + "name": "Glue" + }, + { + "id": "gluteus-maximus-by-virtuals", + "symbol": "gluteu", + "name": "Gluteus Maximus by Virtuals" + }, + { + "id": "glympse", + "symbol": "glmps", + "name": "Glympse" + }, + { + "id": "gm-2", + "symbol": "gm", + "name": "gm" + }, + { + "id": "gm-ai", + "symbol": "gm", + "name": "GM.AI" + }, + { + "id": "gmbase", + "symbol": "gmb", + "name": "GMBase" + }, + { + "id": "gmcoin-2", + "symbol": "gmcoin", + "name": "GMCoin" + }, + { + "id": "gme", + "symbol": "gme", + "name": "GME" + }, + { + "id": "gmeow", + "symbol": "gmeow", + "name": "GMEOW" + }, + { + "id": "gmeow-cat", + "symbol": "gmeow", + "name": "gmeow cat" + }, + { + "id": "gm-everyday", + "symbol": "gm", + "name": "GM Everyday" + }, + { + "id": "gmfam", + "symbol": "gmfam", + "name": "GMFAM" + }, + { + "id": "gm-frens", + "symbol": "gm", + "name": "GM Frens" + }, + { + "id": "gmichi", + "symbol": "gmichi", + "name": "gmichi" + }, + { + "id": "gmika", + "symbol": "state", + "name": "State of Mika by Virtuals" + }, + { + "id": "gm-machine", + "symbol": "gm", + "name": "GM Machine" + }, + { + "id": "gmonchain", + "symbol": "gm", + "name": "GMonchain" + }, + { + "id": "gmt-token", + "symbol": "gomining", + "name": "GoMining Token" + }, + { + "id": "gmx", + "symbol": "gmx", + "name": "GMX" + }, + { + "id": "gnft", + "symbol": "gnft", + "name": "GNFT" + }, + { + "id": "gnme-mining-game", + "symbol": "gnme", + "name": "GNME MINING GAME" + }, + { + "id": "gnobby", + "symbol": "gnobby", + "name": "Gnobby" + }, + { + "id": "gnom", + "symbol": "gnom", + "name": "gnom" + }, + { + "id": "gnome-2", + "symbol": "gnome", + "name": "Gnome" + }, + { + "id": "gnomeland", + "symbol": "gnome", + "name": "GnomeLand" + }, + { + "id": "gnomy", + "symbol": "gnomy", + "name": "Gnomy" + }, + { + "id": "gnosis", + "symbol": "gno", + "name": "Gnosis" + }, + { + "id": "gnosis-bridged-reth-gnosis", + "symbol": "reth", + "name": "Gnosis Bridged rETH (Gnosis)" + }, + { + "id": "gnosis-xdai-bridged-usdc-gnosis", + "symbol": "usdc", + "name": "Gnosis xDAI Bridged USDC (Gnosis)" + }, + { + "id": "gnosis-xdai-bridged-usdt-gnosis", + "symbol": "usdt", + "name": "Gnosis xDai Bridged USDT (Gnosis)" + }, + { + "id": "gnosis-xdai-bridged-wbtc-gnosis-chain", + "symbol": "wbtc", + "name": "Gnosis xDai Bridged WBTC (Gnosis Chain)" + }, + { + "id": "gnosis-xdai-bridged-weth-gnosis-chain", + "symbol": "weth", + "name": "Gnosis xDai Bridged WETH (Gnosis Chain)" + }, + { + "id": "gny", + "symbol": "gny", + "name": "GNY" + }, + { + "id": "g-o", + "symbol": "sluglord", + "name": "🌻ᔕᒪᑌGᒪOᖇᗪ🌻" + }, + { + "id": "goask", + "symbol": "ask", + "name": "GoAsk" + }, + { + "id": "goat", + "symbol": "goat", + "name": "Goat" + }, + { + "id": "goat-bridged-binance-bitcoin-goat", + "symbol": "btcb", + "name": "Goat Bridged Binance Bitcoin (Goat)" + }, + { + "id": "goatcoin-2", + "symbol": "goat", + "name": "Goatcoin" + }, + { + "id": "goated-2", + "symbol": "goated", + "name": "GOATED" + }, + { + "id": "goat-gains", + "symbol": "ggains", + "name": "GOAT GAINS" + }, + { + "id": "goatindex-ai", + "symbol": "aiai", + "name": "GoatIndex.ai" + }, + { + "id": "goatly-farm", + "symbol": "gtf", + "name": "Goatly.farm" + }, + { + "id": "goat-network", + "symbol": "goated", + "name": "GOAT Network" + }, + { + "id": "goat-protocol", + "symbol": "goa", + "name": "Goat Protocol" + }, + { + "id": "goats-2", + "symbol": "goats", + "name": "GOATS" + }, + { + "id": "goatse", + "symbol": "goatse", + "name": "GOATSE" + }, + { + "id": "goatse-forest-rave", + "symbol": "gfr", + "name": "Goatse Forest Rave" + }, + { + "id": "goatseglebe", + "symbol": "glebe", + "name": "goatseglebe" + }, + { + "id": "goatseus-maximus", + "symbol": "goat", + "name": "Goatseus Maximus" + }, + { + "id": "goatseus-maximus-on-eth", + "symbol": "goat", + "name": "Goatseus Maximus" + }, + { + "id": "goatseus-poppimus", + "symbol": "popgoat", + "name": "Goatseus Poppimus" + }, + { + "id": "goat-trading", + "symbol": "goat", + "name": "Goat Trading" + }, + { + "id": "goatwifhat", + "symbol": "gif", + "name": "goatwifhat" + }, + { + "id": "goatx", + "symbol": "goatx", + "name": "GOATX" + }, + { + "id": "goatxai", + "symbol": "goai", + "name": "GOATxAI" + }, + { + "id": "gobi", + "symbol": "gobi", + "name": "GOBI" + }, + { + "id": "gobl", + "symbol": "gobl", + "name": "GOBL" + }, + { + "id": "goblintown", + "symbol": "goblintown", + "name": "goblintown" + }, + { + "id": "goblintown-2", + "symbol": "gob", + "name": "gob" + }, + { + "id": "gobstrategy", + "symbol": "gobstr", + "name": "GobStrategy" + }, + { + "id": "gobtc", + "symbol": "gobtc", + "name": "goBTC" + }, + { + "id": "gochain", + "symbol": "go", + "name": "GoChain" + }, + { + "id": "gocharge-tech", + "symbol": "charged", + "name": "GoCharge Tech" + }, + { + "id": "gochu", + "symbol": "gochu", + "name": "Gochu" + }, + { + "id": "gochujangcoin", + "symbol": "gochu", + "name": "Gochujangcoin" + }, + { + "id": "gocryptome", + "symbol": "gcme", + "name": "GoCryptoMe" + }, + { + "id": "god-coin", + "symbol": "god", + "name": "GOD Coin" + }, + { + "id": "godcoin-2", + "symbol": "god", + "name": "Godcoin" + }, + { + "id": "gode-chain", + "symbol": "gode", + "name": "Gode Chain" + }, + { + "id": "god-of-ethereum", + "symbol": "goe", + "name": "God Of Ethereum" + }, + { + "id": "godsdotfun", + "symbol": "gods", + "name": "GodsDotFun" + }, + { + "id": "gods-unchained", + "symbol": "gods", + "name": "Gods Unchained" + }, + { + "id": "god-the-dog", + "symbol": "god", + "name": "God The Dog" + }, + { + "id": "godyence", + "symbol": "goden", + "name": "Godyence" + }, + { + "id": "godzilla", + "symbol": "godz", + "name": "Godzilla" + }, + { + "id": "goerli-eth", + "symbol": "geth", + "name": "Goerli ETH" + }, + { + "id": "goeth", + "symbol": "goeth", + "name": "goETH" + }, + { + "id": "go-fu-k-yourself", + "symbol": "gfy", + "name": "go fu*k yourself." + }, + { + "id": "gofundmeme", + "symbol": "gfm", + "name": "GoFundMeme" + }, + { + "id": "go-game-token", + "symbol": "ggt", + "name": "Go Game Token" + }, + { + "id": "gogolcoin", + "symbol": "gol", + "name": "GogolCoin" + }, + { + "id": "gogopool", + "symbol": "ggp", + "name": "GoGoPool" + }, + { + "id": "gogopool-ggavax", + "symbol": "stavax", + "name": "Hypha Staked AVAX" + }, + { + "id": "gogowifcone", + "symbol": "gogo", + "name": "gogowifcone" + }, + { + "id": "gohacker-ai", + "symbol": "buidl", + "name": "GoHacker.AI" + }, + { + "id": "gohome", + "symbol": "gohome", + "name": "GOHOME" + }, + { + "id": "gohost", + "symbol": "gohost", + "name": "GoHost" + }, + { + "id": "going-to-the-moon", + "symbol": "gttm", + "name": "Going To The Moon" + }, + { + "id": "goku", + "symbol": "goku", + "name": "Goku" + }, + { + "id": "golazo-world", + "symbol": "gol", + "name": "Golazo.world" + }, + { + "id": "gold-2", + "symbol": "gold", + "name": "Gold" + }, + { + "id": "gold-5", + "symbol": "gold", + "name": "GOLD" + }, + { + "id": "gold-6", + "symbol": "$gold", + "name": "$GOLD" + }, + { + "id": "gold-7", + "symbol": "gold", + "name": "GOLD" + }, + { + "id": "gold8", + "symbol": "gold8", + "name": "GOLD8" + }, + { + "id": "gold-8", + "symbol": "xau", + "name": "Gold" + }, + { + "id": "gold-bnb", + "symbol": "gbnb", + "name": "GOLD BNB" + }, + { + "id": "goldbrick", + "symbol": "gbck", + "name": "GoldBrick" + }, + { + "id": "goldcoin", + "symbol": "glc", + "name": "Goldcoin" + }, + { + "id": "goldcoin-2", + "symbol": "goldcoin", + "name": "goldcoin" + }, + { + "id": "gold-dao", + "symbol": "goldao", + "name": "Gold DAO" + }, + { + "id": "golddigger", + "symbol": "gdig", + "name": "Golddigger" + }, + { + "id": "golden-age-2", + "symbol": "golden", + "name": "Golden Age" + }, + { + "id": "golden-ape", + "symbol": "gape", + "name": "Golden Ape" + }, + { + "id": "golden-bailey", + "symbol": "bailey", + "name": "Golden Bailey" + }, + { + "id": "goldenboys", + "symbol": "gold", + "name": "GoldenBoys" + }, + { + "id": "goldencat", + "symbol": "cats", + "name": "GoldenCat" + }, + { + "id": "golden-celestial-ratio", + "symbol": "gcr", + "name": "Golden Celestial Ratio" + }, + { + "id": "golden-doge", + "symbol": "gdoge", + "name": "Golden Doge" + }, + { + "id": "golden-donkey", + "symbol": "gdk", + "name": "Golden Donkey" + }, + { + "id": "golden-inu", + "symbol": "golden", + "name": "Golden Inu" + }, + { + "id": "golden-inu-token", + "symbol": "golden", + "name": "Golden Inu" + }, + { + "id": "golden-kappa", + "symbol": "gkappa", + "name": "Golden Kappa" + }, + { + "id": "goldenrat", + "symbol": "rats", + "name": "GoldenRat" + }, + { + "id": "gold-fever-native-gold", + "symbol": "ngl", + "name": "Gold Fever Native Gold" + }, + { + "id": "goldfinch", + "symbol": "gfi", + "name": "Goldfinch" + }, + { + "id": "gold-fintech-coin", + "symbol": "gf", + "name": "Gold Fintech Coin" + }, + { + "id": "goldilocks-dao", + "symbol": "locks", + "name": "Goldilocks DAO" + }, + { + "id": "goldman-sachs-ondo-tokenized-stock", + "symbol": "gson", + "name": "Goldman Sachs (Ondo Tokenized Stock)" + }, + { + "id": "goldman-sachs-xstock", + "symbol": "gsx", + "name": "Goldman Sachs xStock" + }, + { + "id": "goldminer", + "symbol": "gm", + "name": "GoldMiner" + }, + { + "id": "goldn", + "symbol": "goldn", + "name": "Goldn" + }, + { + "id": "gold-park", + "symbol": "gpt", + "name": "Gold Park" + }, + { + "id": "goldpesa-option", + "symbol": "gpo", + "name": "GoldPesa Option" + }, + { + "id": "gold-reserve", + "symbol": "gor", + "name": "Gold Reserve" + }, + { + "id": "gold-standard", + "symbol": "bar", + "name": "Gold Standard" + }, + { + "id": "gold-token", + "symbol": "gldt", + "name": "Gold Token" + }, + { + "id": "gold-xstock", + "symbol": "gldx", + "name": "Gold xStock" + }, + { + "id": "golem", + "symbol": "glm", + "name": "Golem" + }, + { + "id": "golff", + "symbol": "gof", + "name": "Golff" + }, + { + "id": "goliath", + "symbol": "goliath", + "name": "Goliath" + }, + { + "id": "golteum", + "symbol": "gltm", + "name": "Golteum" + }, + { + "id": "gomble", + "symbol": "gm", + "name": "Gomble" + }, + { + "id": "gomu-gator", + "symbol": "gomu", + "name": "Gomu Gator" + }, + { + "id": "gondola", + "symbol": "gondola", + "name": "Gondola" + }, + { + "id": "gone", + "symbol": "gone", + "name": "Gone" + }, + { + "id": "gong", + "symbol": "gong", + "name": "GONG" + }, + { + "id": "gonnamakeit", + "symbol": "gmi", + "name": "GonnaMakeIt" + }, + { + "id": "gooby", + "symbol": "gooby", + "name": "Gooby" + }, + { + "id": "gooch", + "symbol": "gooch", + "name": "Gooch" + }, + { + "id": "gooch-coin", + "symbol": "gooch coin", + "name": "gooch coin" + }, + { + "id": "goodboy", + "symbol": "goodboy", + "name": "GoodBoy" + }, + { + "id": "good-boy", + "symbol": "boy", + "name": "Good Boy" + }, + { + "id": "good-coin", + "symbol": "good", + "name": "Good Coin" + }, + { + "id": "goodcryptox", + "symbol": "good", + "name": "goodcryptoX" + }, + { + "id": "gooddollar", + "symbol": "$g", + "name": "GoodDollar" + }, + { + "id": "good-entry", + "symbol": "good", + "name": "Good Entry" + }, + { + "id": "good-games-guild", + "symbol": "ggg", + "name": "Good Games Guild" + }, + { + "id": "good-game-us-dollar", + "symbol": "ggusd", + "name": "Good Game US Dollar" + }, + { + "id": "good-gensler", + "symbol": "genslr", + "name": "Good Gensler" + }, + { + "id": "goodle", + "symbol": "$goodle", + "name": "Goodle" + }, + { + "id": "good-martian", + "symbol": "gm", + "name": "Good Martian" + }, + { + "id": "goodmorning", + "symbol": "gm", + "name": "GoodMorning" + }, + { + "id": "good-morning-3", + "symbol": "gm", + "name": "Good Morning!" + }, + { + "id": "good-morning-4", + "symbol": "早上好", + "name": "早上好 (Good Morning)" + }, + { + "id": "good-person-coin", + "symbol": "gpcx", + "name": "Good Person Coin" + }, + { + "id": "good-rudi", + "symbol": "goodrudi", + "name": "Good Rudi" + }, + { + "id": "goody", + "symbol": "gdy", + "name": "Goody" + }, + { + "id": "gooey-guys", + "symbol": "gooey", + "name": "Gooey Guys" + }, + { + "id": "gooeys", + "symbol": "goo", + "name": "Gooeys" + }, + { + "id": "goofy-2", + "symbol": "goofy", + "name": "GOOFY" + }, + { + "id": "goofy-inu", + "symbol": "goofy", + "name": "Goofy Inu" + }, + { + "id": "googles", + "symbol": "goglz", + "name": "GOGGLES" + }, + { + "id": "google-tokenized-stock-defichain", + "symbol": "dgoogl", + "name": "Google Tokenized Stock Defichain" + }, + { + "id": "goompy", + "symbol": "goompy", + "name": "Goompy" + }, + { + "id": "goon", + "symbol": "goon", + "name": "GOON" + }, + { + "id": "goon-2", + "symbol": "goon", + "name": "GOON" + }, + { + "id": "gooncoin", + "symbol": "goonc", + "name": "gooncoin" + }, + { + "id": "gooncoin-2", + "symbol": "goon", + "name": "GOONCOIN" + }, + { + "id": "gooncoin-3", + "symbol": "gooncoin", + "name": "gooncoin" + }, + { + "id": "gooner", + "symbol": "gooner", + "name": "Gooner" + }, + { + "id": "gooner-2", + "symbol": "gonner", + "name": "Gooner" + }, + { + "id": "goonfi", + "symbol": "gf", + "name": "GoonFi" + }, + { + "id": "goons-of-balatroon", + "symbol": "gob", + "name": "Goons of Balatroon" + }, + { + "id": "goose", + "symbol": "goose", + "name": "Goose" + }, + { + "id": "gooseai", + "symbol": "goose", + "name": "GOOSEAI" + }, + { + "id": "goose-finance", + "symbol": "egg", + "name": "Goose Finance" + }, + { + "id": "goosefx", + "symbol": "gofx", + "name": "GooseFX" + }, + { + "id": "goosepumpsai", + "symbol": "goosepumps", + "name": "GoosepumpsAI" + }, + { + "id": "goplus-security", + "symbol": "gps", + "name": "GoPlus Security" + }, + { + "id": "gopulse", + "symbol": "go", + "name": "GoPulse" + }, + { + "id": "goracle-network", + "symbol": "gora", + "name": "Gora" + }, + { + "id": "gorbagana", + "symbol": "gor", + "name": "Gorbagana" + }, + { + "id": "gorbagana-acceleration", + "symbol": "gor/acc", + "name": "Gorbagana Acceleration" + }, + { + "id": "gorbagana-daemon", + "symbol": "oscar", + "name": "Gorbagana Daemon" + }, + { + "id": "gordon-ai", + "symbol": "ggai", + "name": "Gordon AI" + }, + { + "id": "gorecats", + "symbol": "gcats", + "name": "GoreCats" + }, + { + "id": "go-rest-offline", + "symbol": "grof", + "name": "Go Rest Offline" + }, + { + "id": "gorf", + "symbol": "gorf", + "name": "GORF" + }, + { + "id": "gorilla", + "symbol": "gorilla", + "name": "Gorilla" + }, + { + "id": "gorilla-3", + "symbol": "gorilla", + "name": "Gorilla" + }, + { + "id": "gorilla-finance", + "symbol": "gorilla", + "name": "Gorilla Finance" + }, + { + "id": "gorilla-in-a-coupe", + "symbol": "giac", + "name": "Gorilla In A Coupe" + }, + { + "id": "gorillas-in-the-mist", + "symbol": "mistape", + "name": "Gorillas In The Mist" + }, + { + "id": "gork", + "symbol": "gork", + "name": "@gork" + }, + { + "id": "gorth", + "symbol": "gorth", + "name": "Gorth" + }, + { + "id": "gosh", + "symbol": "gosh", + "name": "GOSH" + }, + { + "id": "gospodin", + "symbol": "gospodin", + "name": "Gospodin" + }, + { + "id": "goth16z", + "symbol": "g16z", + "name": "Goth16z" + }, + { + "id": "gotm", + "symbol": "gotm", + "name": "GOTM" + }, + { + "id": "gotti-token", + "symbol": "gotti", + "name": "Gotti Token" + }, + { + "id": "gou", + "symbol": "gou", + "name": "Gou" + }, + { + "id": "gourmetgalaxy", + "symbol": "gum", + "name": "Gourmet Galaxy" + }, + { + "id": "gout", + "symbol": "gout", + "name": "GOUT" + }, + { + "id": "gout-coin", + "symbol": "gout coin", + "name": "GOUT Coin" + }, + { + "id": "governance-algo", + "symbol": "galgo", + "name": "Governance Algo" + }, + { + "id": "governance-ohm", + "symbol": "gohm", + "name": "Governance OHM" + }, + { + "id": "govi", + "symbol": "govi", + "name": "CVI" + }, + { + "id": "govworld", + "symbol": "gov", + "name": "GovWorld" + }, + { + "id": "goztepe-s-k-fan-token", + "symbol": "goz", + "name": "Göztepe S.K. Fan Token" + }, + { + "id": "gpt360", + "symbol": "g360", + "name": "GPT360" + }, + { + "id": "gptplus", + "symbol": "gptplus", + "name": "GPTPlus" + }, + { + "id": "gpt-wars", + "symbol": "gptw", + "name": "GPT Wars" + }, + { + "id": "gpuai", + "symbol": "gpuai", + "name": "GPUAI" + }, + { + "id": "gpu-ai", + "symbol": "gpuai", + "name": "GPU AI" + }, + { + "id": "gpu-ai-rich", + "symbol": "rich", + "name": "GPU ai Rich" + }, + { + "id": "gpu-inu", + "symbol": "gpuinu", + "name": "GPU Inu" + }, + { + "id": "gpunet", + "symbol": "gpu", + "name": "GPUnet" + }, + { + "id": "grab-ai", + "symbol": "grab", + "name": "GRAB AI" + }, + { + "id": "grabway", + "symbol": "grab", + "name": "GRABWAY" + }, + { + "id": "gracy", + "symbol": "gracy", + "name": "Gracy" + }, + { + "id": "grade", + "symbol": "grd", + "name": "Grade" + }, + { + "id": "gradient", + "symbol": "gray", + "name": "Gradient" + }, + { + "id": "gradient-protocol", + "symbol": "gdt", + "name": "Gradient Protocol" + }, + { + "id": "gradients", + "symbol": "sn56", + "name": "Gradients" + }, + { + "id": "grafi", + "symbol": "grafi", + "name": "Grafi" + }, + { + "id": "grai", + "symbol": "grai", + "name": "Grai" + }, + { + "id": "grain-2", + "symbol": "grain", + "name": "GRAIN" + }, + { + "id": "gram-2", + "symbol": "gram", + "name": "Gram" + }, + { + "id": "gram-ecosystem", + "symbol": "grampus", + "name": "GRAM Ecosystem" + }, + { + "id": "gram-gold", + "symbol": "gramg", + "name": "Gram Gold" + }, + { + "id": "gram-platinum", + "symbol": "gramp", + "name": "Gram Platinum" + }, + { + "id": "gram-silver", + "symbol": "grams", + "name": "Gram Silver" + }, + { + "id": "granary", + "symbol": "grain", + "name": "Granary" + }, + { + "id": "grand-base", + "symbol": "gb", + "name": "Grand Base" + }, + { + "id": "grand-gangsta-city", + "symbol": "$ggc", + "name": "Grand Gangsta City" + }, + { + "id": "grandpatrenchlive", + "symbol": "gramps", + "name": "GrandpaTrenchLive" + }, + { + "id": "grape-2", + "symbol": "grape", + "name": "Grape Protocol" + }, + { + "id": "grape-2-2", + "symbol": "grp", + "name": "Grape" + }, + { + "id": "graphai", + "symbol": "gai", + "name": "GraphAI" + }, + { + "id": "graphite", + "symbol": "sn43", + "name": "Graphite" + }, + { + "id": "graphite-network", + "symbol": "@g", + "name": "Graphite Network" + }, + { + "id": "graphite-protocol", + "symbol": "gp", + "name": "Graphite Protocol" + }, + { + "id": "graphlinq-protocol", + "symbol": "glq", + "name": "GraphLinq Chain" + }, + { + "id": "graphlinq-wrapped-eth", + "symbol": "weth", + "name": "GraphLinq Wrapped ETH" + }, + { + "id": "grass", + "symbol": "grass", + "name": "Grass" + }, + { + "id": "grass-2", + "symbol": "grass", + "name": "Grass" + }, + { + "id": "grass-3", + "symbol": "$grass", + "name": "GRASS" + }, + { + "id": "grassito", + "symbol": "grassito", + "name": "Grassito" + }, + { + "id": "graviton", + "symbol": "grav", + "name": "Graviton" + }, + { + "id": "gravity-finance", + "symbol": "gfi", + "name": "Gravity Finance [OLD]" + }, + { + "id": "gravity-finance-2", + "symbol": "gfi", + "name": "Gravity Finance" + }, + { + "id": "grdm", + "symbol": "grdm", + "name": "GRDM" + }, + { + "id": "greasycex", + "symbol": "gcx", + "name": "GreasyCEX" + }, + { + "id": "great-bounty-dealer", + "symbol": "gbd", + "name": "Great Bounty Dealer" + }, + { + "id": "greatestofavaxtrenches", + "symbol": "goat", + "name": "GreatestOfAVAXTrenches" + }, + { + "id": "green", + "symbol": "green", + "name": "Green" + }, + { + "id": "green-2", + "symbol": "green", + "name": "GREEN" + }, + { + "id": "green-beli", + "symbol": "grbe", + "name": "Green Beli" + }, + { + "id": "green-bitcoin", + "symbol": "gbtc", + "name": "Green Bitcoin" + }, + { + "id": "green-cult-of-investors", + "symbol": "gci", + "name": "Green Cult of Investors" + }, + { + "id": "greendex", + "symbol": "ged", + "name": "GreenDex" + }, + { + "id": "green-dildo-coin", + "symbol": "dildo", + "name": "Green Dildo Coin" + }, + { + "id": "green-dollar-coin", + "symbol": "gdc", + "name": "Green Dollar Coin" + }, + { + "id": "greenenvcoalition", + "symbol": "gec", + "name": "GreenEnvCoalition" + }, + { + "id": "greenenvironmentalcoins", + "symbol": "gec", + "name": "GreenEnvironmentalCoins" + }, + { + "id": "greengold", + "symbol": "$greengold", + "name": "GREENGOLD" + }, + { + "id": "greenland-rare-bear", + "symbol": "nordo", + "name": "Greenland Rare Bear" + }, + { + "id": "greenlers", + "symbol": "grnl", + "name": "Greenlers" + }, + { + "id": "green-life-energy", + "symbol": "gle", + "name": "Green Life Energy" + }, + { + "id": "green-planet", + "symbol": "gamma", + "name": "Green Planet" + }, + { + "id": "green-rwa", + "symbol": "green", + "name": "Green RWA" + }, + { + "id": "green-satoshi-token", + "symbol": "gst-sol", + "name": "STEPN Green Satoshi Token on Solana" + }, + { + "id": "green-satoshi-token-bsc", + "symbol": "gst-bsc", + "name": "STEPN Green Satoshi Token on BSC" + }, + { + "id": "green-shiba-inu", + "symbol": "ginux", + "name": "Green Shiba Inu" + }, + { + "id": "greensolo", + "symbol": "greensolo", + "name": "GREENSOLO" + }, + { + "id": "greentrust", + "symbol": "gnt", + "name": "GreenTrust" + }, + { + "id": "greenzonex", + "symbol": "gzx", + "name": "GreenZoneX" + }, + { + "id": "greg16676935420", + "symbol": "greg", + "name": "greg16676935420" + }, + { + "id": "grelf", + "symbol": "grelf", + "name": "GRELF" + }, + { + "id": "gremly", + "symbol": "$gremly", + "name": "Gremly" + }, + { + "id": "gridcoin-research", + "symbol": "grc", + "name": "Gridcoin" + }, + { + "id": "griddy", + "symbol": "griddy", + "name": "Griddy" + }, + { + "id": "grid-protocol", + "symbol": "grid", + "name": "Grid Protocol" + }, + { + "id": "grid-wtf", + "symbol": "grid", + "name": "grid.wtf" + }, + { + "id": "griffain", + "symbol": "griffain", + "name": "GRIFFAIN" + }, + { + "id": "griffain-new-hedge-fund", + "symbol": "citadail", + "name": "Griffain New Hedge Fund" + }, + { + "id": "griffin-ai", + "symbol": "gain", + "name": "Griffin AI [OLD]" + }, + { + "id": "griffin-ai-2", + "symbol": "gain", + "name": "Griffin AI" + }, + { + "id": "grif_gg", + "symbol": "grif_gg", + "name": "grif_gg" + }, + { + "id": "grimoire-finance-token", + "symbol": "grim", + "name": "Grimoire Finance Token" + }, + { + "id": "grimreaper", + "symbol": "grim", + "name": "Grimreaper" + }, + { + "id": "grin", + "symbol": "grin", + "name": "Grin" + }, + { + "id": "grind", + "symbol": "grind", + "name": "GRIND" + }, + { + "id": "grindery-x", + "symbol": "gx", + "name": "Grindery X" + }, + { + "id": "gringo", + "symbol": "gringo", + "name": "gringo" + }, + { + "id": "grippy", + "symbol": "grippy", + "name": "GRIPPY" + }, + { + "id": "grix", + "symbol": "grix", + "name": "Grix" + }, + { + "id": "grizzly-honey", + "symbol": "ghny", + "name": "Grizzly Honey" + }, + { + "id": "grodo-ai", + "symbol": "grodo", + "name": "Grodo AI" + }, + { + "id": "groestlcoin", + "symbol": "grs", + "name": "Groestlcoin" + }, + { + "id": "groggo-by-matt-furie", + "symbol": "groggo", + "name": "Groggo By Matt Furie" + }, + { + "id": "grok-2", + "symbol": "grok", + "name": "Grok" + }, + { + "id": "grok2-0", + "symbol": "grok2.0", + "name": "Grok2.0" + }, + { + "id": "grok-3", + "symbol": "xai", + "name": "Grok" + }, + { + "id": "grok-4", + "symbol": "grok", + "name": "GROK" + }, + { + "id": "grok-6", + "symbol": "grok", + "name": "GROK" + }, + { + "id": "grokan-app", + "symbol": "grokan", + "name": "GROKAN APP" + }, + { + "id": "grok-bank", + "symbol": "grokbank", + "name": "Grok Bank" + }, + { + "id": "grok-by-grok-com", + "symbol": "grōk", + "name": "Grok by Grōk.com" + }, + { + "id": "grok-cat", + "symbol": "grokcat", + "name": "Grok Cat" + }, + { + "id": "grokchain", + "symbol": "grokchain", + "name": "GROKCHAIN" + }, + { + "id": "grok-companions", + "symbol": "jarvis", + "name": "Grok Companions" + }, + { + "id": "grokdogex", + "symbol": "gdx", + "name": "GrokDogeX" + }, + { + "id": "grok-elo", + "symbol": "gelo", + "name": "Grok Elo" + }, + { + "id": "grok-girl", + "symbol": "grokgirl", + "name": "Grok Girl" + }, + { + "id": "grok-inu", + "symbol": "grokinu", + "name": "Grok Inu" + }, + { + "id": "grok-moon", + "symbol": "grokmoon", + "name": "Grok Moon" + }, + { + "id": "grok-queen", + "symbol": "grokqueen", + "name": "Grok Queen" + }, + { + "id": "grokrooms", + "symbol": "grokrooms", + "name": "Grokrooms" + }, + { + "id": "grokster", + "symbol": "grk", + "name": "Grokster" + }, + { + "id": "gronke", + "symbol": "gronke", + "name": "GRONKE" + }, + { + "id": "groove", + "symbol": "groove", + "name": "GROOVE" + }, + { + "id": "groq", + "symbol": "groq", + "name": "GROQ" + }, + { + "id": "group7", + "symbol": "group7", + "name": "Group7" + }, + { + "id": "group7-2", + "symbol": "group7", + "name": "Group7" + }, + { + "id": "grove", + "symbol": "grv", + "name": "GroveCoin" + }, + { + "id": "grovecoin-gburn", + "symbol": "gburn", + "name": "GBURN" + }, + { + "id": "grow", + "symbol": "grow", + "name": "Grow" + }, + { + "id": "grow-2", + "symbol": "$grow", + "name": "Grow" + }, + { + "id": "growth", + "symbol": "gro", + "name": "Growth" + }, + { + "id": "growthdefi-gbtc", + "symbol": "gbtc", + "name": "GrowthDefi GBTC" + }, + { + "id": "grow-token-3", + "symbol": "grow", + "name": "Grow Token" + }, + { + "id": "groyper", + "symbol": "groyper", + "name": "Groyper" + }, + { + "id": "groyper-2", + "symbol": "groyper", + "name": "Groyper" + }, + { + "id": "grrr", + "symbol": "grrr", + "name": "Grrr" + }, + { + "id": "grug", + "symbol": "grug", + "name": "GRUG" + }, + { + "id": "grumpy-cat-coin", + "symbol": "grumpy", + "name": "Grumpy Cat Coin" + }, + { + "id": "grynvault-the-bitcoin-dragon", + "symbol": "gryn", + "name": "GRYNVAULT•THE•BITCOIN•DRAGON" + }, + { + "id": "gsnake", + "symbol": "gsnake", + "name": "gSNAKE" + }, + { + "id": "gt3-finance", + "symbol": "gt3", + "name": "GT3 Finance" + }, + { + "id": "gteth", + "symbol": "gteth", + "name": "GTETH" + }, + { + "id": "g-token", + "symbol": "g", + "name": "Gravity (by Galxe)" + }, + { + "id": "gt-protocol", + "symbol": "gtai", + "name": "GT Protocol" + }, + { + "id": "gtrok", + "symbol": "gtrok", + "name": "GTROK" + }, + { + "id": "gu-2", + "symbol": "gu", + "name": "Gu" + }, + { + "id": "gua", + "symbol": "gua", + "name": "GUA" + }, + { + "id": "guacamole", + "symbol": "guac", + "name": "Guacamole" + }, + { + "id": "guanciale", + "symbol": "guan", + "name": "Guanciale by Virtuals" + }, + { + "id": "guano", + "symbol": "guano", + "name": "GUANO" + }, + { + "id": "guarantee", + "symbol": "tee", + "name": "Guarantee" + }, + { + "id": "guarded-ether", + "symbol": "geth", + "name": "Guarded Ether" + }, + { + "id": "guardian-dog", + "symbol": "gdog", + "name": "Guardian Dog" + }, + { + "id": "guardian-golden-ball", + "symbol": "gbt", + "name": "Guardian Golden Ball" + }, + { + "id": "guardians-of-the-spark", + "symbol": "gots", + "name": "Guardians Of The Spark" + }, + { + "id": "guardian-token", + "symbol": "guard", + "name": "Guardian GUARD" + }, + { + "id": "guardian-token-2", + "symbol": "guardian", + "name": "Guardian Token" + }, + { + "id": "guaridos", + "symbol": "gudos", + "name": "GuaridOS" + }, + { + "id": "guberto", + "symbol": "guberto", + "name": "Guberto" + }, + { + "id": "guccipepe", + "symbol": "guccipepe", + "name": "GucciPepe" + }, + { + "id": "gud-tech", + "symbol": "gud", + "name": "Gud Tech" + }, + { + "id": "gud-tek", + "symbol": "gudtek", + "name": "GUD TEK" + }, + { + "id": "guessit", + "symbol": "guess", + "name": "GuessIT" + }, + { + "id": "gugo", + "symbol": "gugo", + "name": "Gugo" + }, + { + "id": "gui-inu", + "symbol": "gui", + "name": "Gui Inu" + }, + { + "id": "guildfi", + "symbol": "gf", + "name": "GuildFi" + }, + { + "id": "guild-of-guardians", + "symbol": "gog", + "name": "Guild of Guardians" + }, + { + "id": "guild-of-heroes", + "symbol": "goh", + "name": "Guild of Heroes" + }, + { + "id": "gulfcoin-2", + "symbol": "gulf", + "name": "GulfCoin" + }, + { + "id": "gull", + "symbol": "gull", + "name": "GULL" + }, + { + "id": "gummy", + "symbol": "gummy", + "name": "GUMMY" + }, + { + "id": "gunda", + "symbol": "gunda", + "name": "Gunda" + }, + { + "id": "gun-game", + "symbol": "gg", + "name": "Gun Game" + }, + { + "id": "gunstar-metaverse", + "symbol": "gsts", + "name": "Gunstar Metaverse" + }, + { + "id": "gunz", + "symbol": "gun", + "name": "Gunz" + }, + { + "id": "gursonavax", + "symbol": "gurs", + "name": "GursOnAVAX" + }, + { + "id": "guru", + "symbol": "guru", + "name": "Guru" + }, + { + "id": "guru-network", + "symbol": "guru", + "name": "Guru Network" + }, + { + "id": "gus", + "symbol": "gus", + "name": "GUS" + }, + { + "id": "gus-2", + "symbol": "gus", + "name": "Gus" + }, + { + "id": "gusd", + "symbol": "gusd", + "name": "GUSD" + }, + { + "id": "gusd-token-49eca0d2-b7ae-4a58-bef7-2310688658f2", + "symbol": "gusd", + "name": "GUSD Token (Gaura)" + }, + { + "id": "gut-says", + "symbol": "gut", + "name": "Gut Says" + }, + { + "id": "guufy", + "symbol": "guufy", + "name": "Guufy" + }, + { + "id": "guy-fawkes-mask", + "symbol": "anon", + "name": "Guy Fawkes mask" + }, + { + "id": "guzzler", + "symbol": "gzlr", + "name": "Guzzler" + }, + { + "id": "gvnr", + "symbol": "gvnr", + "name": "GVNR" + }, + { + "id": "gwendolion", + "symbol": "gwendolion", + "name": "Gwendolion" + }, + { + "id": "gx3-a", + "symbol": "gx3", + "name": "GX3 A" + }, + { + "id": "gxchain", + "symbol": "gxc", + "name": "GXChain" + }, + { + "id": "gyat-coin", + "symbol": "gyat", + "name": "GYAT Coin" + }, + { + "id": "gyen", + "symbol": "gyen", + "name": "GYEN" + }, + { + "id": "gym-network", + "symbol": "gymnet", + "name": "Gym Network" + }, + { + "id": "gyoshi", + "symbol": "gyoshi", + "name": "GYOSHI" + }, + { + "id": "gyoza", + "symbol": "gyoza", + "name": "Gyoza" + }, + { + "id": "gyroscope", + "symbol": "gyfi", + "name": "Gyroscope" + }, + { + "id": "gyroscope-gyd", + "symbol": "gyd", + "name": "Gyroscope GYD" + }, + { + "id": "h", + "symbol": "h", + "name": "H" + }, + { + "id": "h0l0", + "symbol": "h0l0", + "name": "H0L0" + }, + { + "id": "h1dr4-by-virtuals", + "symbol": "h1dr4", + "name": "H1DR4 by Virtuals" + }, + { + "id": "h2", + "symbol": "$h2", + "name": "H2 Finance" + }, + { + "id": "h-2", + "symbol": "h", + "name": "H" + }, + { + "id": "h2finance", + "symbol": "yfih2", + "name": "H2Finance" + }, + { + "id": "h2o-2", + "symbol": "h2o", + "name": "H2O" + }, + { + "id": "h2o-dao", + "symbol": "h2o", + "name": "H2O Dao" + }, + { + "id": "h2o-securities", + "symbol": "h2on", + "name": "H2O Securities" + }, + { + "id": "h2w6gm6jz", + "symbol": "h2w6gm6jz", + "name": "h2w6gm6jz" + }, + { + "id": "h4ck-terminal-by-virtuals", + "symbol": "h4ck", + "name": "H4CK Terminal by Virtuals" + }, + { + "id": "h4shfund", + "symbol": "h4sh", + "name": "H4SHFund" + }, + { + "id": "habi", + "symbol": "habi", + "name": "Habi" + }, + { + "id": "habibi", + "symbol": "habibi", + "name": "Habibi" + }, + { + "id": "habibi-sol", + "symbol": "habibi", + "name": "Habibi (Sol)" + }, + { + "id": "habitat-2", + "symbol": "habitat", + "name": "Habitat" + }, + { + "id": "hacash", + "symbol": "hac", + "name": "Hacash" + }, + { + "id": "hacash-diamond", + "symbol": "hacd", + "name": "Hacash Diamond" + }, + { + "id": "hachi", + "symbol": "hachi", + "name": "Hachi" + }, + { + "id": "hachiko-2", + "symbol": "hachiko", + "name": "Hachiko" + }, + { + "id": "hachiko-inu-meme", + "symbol": "hachi", + "name": "Hachiko Inu" + }, + { + "id": "hachiko-sol", + "symbol": "hachi", + "name": "Hachiko Sol" + }, + { + "id": "hachikosolana", + "symbol": "hachi", + "name": "HachikoSolana" + }, + { + "id": "hachi-kun", + "symbol": "hachi", + "name": "HACHI-KUN" + }, + { + "id": "hackenai", + "symbol": "hai", + "name": "Hacken" + }, + { + "id": "hades", + "symbol": "hades", + "name": "Hades" + }, + { + "id": "hades-3", + "symbol": "hades", + "name": "HADES" + }, + { + "id": "hadesai-by-virtuals", + "symbol": "hades", + "name": "HadesAI by Virtuals" + }, + { + "id": "haedal", + "symbol": "haedal", + "name": "Haedal Protocol" + }, + { + "id": "haedal-staked-sui", + "symbol": "hasui", + "name": "Haedal Staked SUI" + }, + { + "id": "haedal-staked-wal", + "symbol": "hawal", + "name": "Haedal Staked WAL" + }, + { + "id": "haggord", + "symbol": "haggord", + "name": "HAGGORD" + }, + { + "id": "haha", + "symbol": "haha", + "name": "HAHA" + }, + { + "id": "hahayes", + "symbol": "rizo", + "name": "HahaYes" + }, + { + "id": "hahype", + "symbol": "hahype", + "name": "haHYPE" + }, + { + "id": "haio", + "symbol": "haio", + "name": "HAiO" + }, + { + "id": "hair", + "symbol": "hair", + "name": "HAIR" + }, + { + "id": "hairdao", + "symbol": "hair", + "name": "HairDAO" + }, + { + "id": "hairyplotterftx", + "symbol": "ftx", + "name": "HairyPlotterFTX" + }, + { + "id": "hairypotheadtrempsanic69inu", + "symbol": "solana", + "name": "HAIRYPOTHEADTREMPSANIC69INU" + }, + { + "id": "hairy-the-bene", + "symbol": "hairy", + "name": "Hairy The Bene" + }, + { + "id": "hakimi", + "symbol": "哈基米", + "name": "哈基米 (Hajimi)" + }, + { + "id": "hakka-finance", + "symbol": "hakka", + "name": "Hakka Finance" + }, + { + "id": "haku", + "symbol": "haku", + "name": "HAKU" + }, + { + "id": "half-of-pepe", + "symbol": "pe", + "name": "Half of Pepe" + }, + { + "id": "half-orange-drinking-lemonade", + "symbol": "hodl", + "name": "Half Orange Drinking Lemonade" + }, + { + "id": "half-shiba-inu", + "symbol": "shib0.5", + "name": "Half Shiba Inu" + }, + { + "id": "hall-of-legends", + "symbol": "hol", + "name": "Hall of Legends" + }, + { + "id": "halo-2", + "symbol": "hlo", + "name": "Halo" + }, + { + "id": "halo-ai", + "symbol": "halo", + "name": "HALO AI" + }, + { + "id": "halo-coin", + "symbol": "halo", + "name": "Halo Coin" + }, + { + "id": "halo-network", + "symbol": "ho", + "name": "HALO Network" + }, + { + "id": "halonft-art", + "symbol": "halo", + "name": "HALOnft.art" + }, + { + "id": "halo-usd", + "symbol": "husd", + "name": "Halo USD" + }, + { + "id": "hami", + "symbol": "$hami", + "name": "HAMI" + }, + { + "id": "hamilton-lane-senior-credit-opportunities-securitize-fund", + "symbol": "hlscope", + "name": "Hamilton Lane Senior Credit Opportunities Securitize Fund" + }, + { + "id": "hamilton-ust", + "symbol": "hust", + "name": "Hamilton UST" + }, + { + "id": "hammer-of-justice", + "symbol": "hammer", + "name": "Hammer Of Justice" + }, + { + "id": "hammy", + "symbol": "hammy", + "name": "HAMMY" + }, + { + "id": "hamster", + "symbol": "ham", + "name": "Hamster" + }, + { + "id": "hamsterbatya", + "symbol": "batya", + "name": "HAMSTERBATYA" + }, + { + "id": "hamster-kombat", + "symbol": "hmstr", + "name": "Hamster Kombat" + }, + { + "id": "hamster-wheel-breaker", + "symbol": "breaker", + "name": "Hamster Wheel Breaker" + }, + { + "id": "hamster-wif-hat", + "symbol": "wif", + "name": "HAMSTER WIF HAT" + }, + { + "id": "hamz", + "symbol": "hamz", + "name": "HAMZ" + }, + { + "id": "hana", + "symbol": "hana", + "name": "Hana" + }, + { + "id": "hanabi-chan", + "symbol": "hanabi", + "name": "Hanabi-chan" + }, + { + "id": "hana-by-virtuals", + "symbol": "hana", + "name": "Hana by Virtuals" + }, + { + "id": "hana-network", + "symbol": "hana", + "name": "Hana Network" + }, + { + "id": "hanbao", + "symbol": "hanbao", + "name": "Hanbao" + }, + { + "id": "hanchain", + "symbol": "han", + "name": "HanChain" + }, + { + "id": "hand-guy", + "symbol": "handguy", + "name": "Hand Guy" + }, + { + "id": "handle-fi", + "symbol": "forex", + "name": "handle.fi" + }, + { + "id": "handshake", + "symbol": "hns", + "name": "Handshake" + }, + { + "id": "handy", + "symbol": "handy", + "name": "Handy" + }, + { + "id": "handz-of-gods", + "symbol": "handz", + "name": "Handz of Gods" + }, + { + "id": "haneplatform", + "symbol": "hanep", + "name": "HANePlatform" + }, + { + "id": "hank", + "symbol": "hank", + "name": "Hank" + }, + { + "id": "hanu-yokia", + "symbol": "hanu", + "name": "Hanu Yokia" + }, + { + "id": "hapi", + "symbol": "hapi", + "name": "HAPI" + }, + { + "id": "happi-cat", + "symbol": "happi", + "name": "happi cat" + }, + { + "id": "happy-acid", + "symbol": "acid", + "name": "Happy Acid" + }, + { + "id": "happyai-2", + "symbol": "sn103", + "name": "HappyAI" + }, + { + "id": "happy-birthday-coin", + "symbol": "hbdc", + "name": "Happy Birthday Coin" + }, + { + "id": "happycat-2", + "symbol": "happy", + "name": "Happy Cat" + }, + { + "id": "happy-dog", + "symbol": "happydog", + "name": "Happy Dog" + }, + { + "id": "happyfans", + "symbol": "happy", + "name": "HappyFans" + }, + { + "id": "happy-puppy-club", + "symbol": "hpc", + "name": "Happy Puppy Club" + }, + { + "id": "hapticai", + "symbol": "hai", + "name": "HapticAI" + }, + { + "id": "haram", + "symbol": "$haram", + "name": "Haram" + }, + { + "id": "harambe", + "symbol": "harambe", + "name": "Harambe" + }, + { + "id": "harambe-2", + "symbol": "harambe", + "name": "Harambe on Solana" + }, + { + "id": "harambe-ai", + "symbol": "harambeai", + "name": "Harambe AI" + }, + { + "id": "harambecoin", + "symbol": "harambe", + "name": "HarambeCoin" + }, + { + "id": "hara-token", + "symbol": "hart", + "name": "Hara" + }, + { + "id": "harbor-3", + "symbol": "hbr", + "name": "Harbor" + }, + { + "id": "hardwaire-dao", + "symbol": "hard", + "name": "hardwAIre DAO" + }, + { + "id": "hare-token", + "symbol": "hare", + "name": "Hare [OLD]" + }, + { + "id": "harlod", + "symbol": "harlod", + "name": "HARLOD" + }, + { + "id": "harmonix-khype", + "symbol": "hakhype", + "name": "Harmonix kHYPE" + }, + { + "id": "harmony", + "symbol": "one", + "name": "Harmony" + }, + { + "id": "harmonybot", + "symbol": "chaos", + "name": "harmonybot" + }, + { + "id": "harmony-horizen-bridged-busd-harmony", + "symbol": "busd", + "name": "Harmony Horizen Bridged BUSD (Harmony)" + }, + { + "id": "harmony-horizen-bridged-usdc-harmony", + "symbol": "1usdc", + "name": "Harmony Horizon Bridged USDC (Harmony)" + }, + { + "id": "harmony-horizon-bridged-ceth-harmony-shard-0", + "symbol": "1eth", + "name": "Harmony Horizon Bridged cETH (Harmony Shard 0)" + }, + { + "id": "harmony-horizon-bridged-dai-harmony-shard-0", + "symbol": "dai", + "name": "Harmony Horizon Bridged DAI (Harmony Shard 0)" + }, + { + "id": "harold", + "symbol": "harold", + "name": "Harold" + }, + { + "id": "haroldonsol", + "symbol": "harold", + "name": "Harold" + }, + { + "id": "harry-pepe", + "symbol": "harry", + "name": "Harry Pepe" + }, + { + "id": "harrypotterhypermarioliquidfentjeffspectrum47i", + "symbol": "hype", + "name": "HarryPotterHyperMarioLiquidFentJeffSpectrum47i" + }, + { + "id": "harrypottermtvpokemon911", + "symbol": "millennial", + "name": "harrypottermtvpokemon911" + }, + { + "id": "harrypotterobamapacman8inu", + "symbol": "xrp", + "name": "HarryPotterObamaPacMan8Inu" + }, + { + "id": "harrypotterobamasonic10in", + "symbol": "bitcoin", + "name": "HarryPotterObamaSonic10Inu (ETH)" + }, + { + "id": "harrypotterobamasonic10inu", + "symbol": "bitcoin", + "name": "HarryPotterObamaSonic10Inu" + }, + { + "id": "harrypottertrumphomersimpson777inu", + "symbol": "ethereum", + "name": "HarryPotterTrumpHomerSimpson777Inu" + }, + { + "id": "harrypotterwifhatmyrowynn", + "symbol": "solana", + "name": "HarryPotterWifHatMyroWynn" + }, + { + "id": "harvestai", + "symbol": "bth", + "name": "HarvestAI" + }, + { + "id": "harvest-finance", + "symbol": "farm", + "name": "Harvest Finance" + }, + { + "id": "hasbulla-game", + "symbol": "hasbull", + "name": "Hasbulla Game" + }, + { + "id": "hasbulla-s-cat", + "symbol": "barsik", + "name": "Hasbulla's Cat" + }, + { + "id": "hasbulla-s-chicken", + "symbol": "conor", + "name": "Hasbulla's Chicken" + }, + { + "id": "hash-2", + "symbol": "hash", + "name": "Provenance Blockchain" + }, + { + "id": "hashai", + "symbol": "hashai", + "name": "HashAI" + }, + { + "id": "hashbit", + "symbol": "hbit", + "name": "HashBit [OLD]" + }, + { + "id": "hashbit-2", + "symbol": "hbit", + "name": "HashBit" + }, + { + "id": "hashflow", + "symbol": "hft", + "name": "Hashflow" + }, + { + "id": "hashgard", + "symbol": "gard", + "name": "Hashgard" + }, + { + "id": "hash-hunter", + "symbol": "hntr", + "name": "Hash Hunter" + }, + { + "id": "hashkey-bridged-usdt-hashkey", + "symbol": "usdt", + "name": "HashKey Bridged USDT (HashKey)" + }, + { + "id": "hashkey-ecopoints", + "symbol": "hsk", + "name": "HashKey Platform Token" + }, + { + "id": "hashnote-usyc", + "symbol": "usyc", + "name": "Circle USYC" + }, + { + "id": "hashpack", + "symbol": "pack", + "name": "HashPack" + }, + { + "id": "hashpanda", + "symbol": "panda", + "name": "HashPanda" + }, + { + "id": "hashport-bridged-link", + "symbol": "link[hts]", + "name": "Hashport Bridged LINK" + }, + { + "id": "hashport-bridged-qnt", + "symbol": "qnt[hts]", + "name": "Hashport Bridged QNT" + }, + { + "id": "hashport-bridged-wavax", + "symbol": "wavax[hts]", + "name": "Hashport Bridged wAVAX" + }, + { + "id": "hashtagger", + "symbol": "mooo", + "name": "Hashtagger" + }, + { + "id": "hat", + "symbol": "hat", + "name": "Hat" + }, + { + "id": "hatch-2", + "symbol": "hatch", + "name": "Hatch" + }, + { + "id": "hatchypocket", + "symbol": "hatchy", + "name": "HatchyPocket" + }, + { + "id": "hathor", + "symbol": "htr", + "name": "Hathor" + }, + { + "id": "hatom", + "symbol": "htm", + "name": "Hatom" + }, + { + "id": "hato-world", + "symbol": "haties", + "name": "HATO WORLD" + }, + { + "id": "hat-solana", + "symbol": "hat", + "name": "HAT Solana" + }, + { + "id": "haust", + "symbol": "haust", + "name": "Haust" + }, + { + "id": "hava-coin", + "symbol": "hava", + "name": "Hava Coin" + }, + { + "id": "havah", + "symbol": "hvh", + "name": "HAVAH" + }, + { + "id": "haven1", + "symbol": "h1", + "name": "Haven1" + }, + { + "id": "haven1-bridged-coinbase-wrapped-btc", + "symbol": "hcbbtc", + "name": "Haven1 Bridged Coinbase Wrapped BTC" + }, + { + "id": "haven1-bridged-coinbase-wrapped-staked-eth", + "symbol": "hcbeth", + "name": "Haven1 Bridged Coinbase Wrapped Staked ETH" + }, + { + "id": "haven1-bridged-staked-eth", + "symbol": "hseth", + "name": "Haven1 Bridged Staked ETH" + }, + { + "id": "haven1-bridged-usdc-haven1", + "symbol": "husdc", + "name": "Haven1 Bridged USDC (Haven1)" + }, + { + "id": "haven1-bridged-wrapped-eth", + "symbol": "heth", + "name": "Haven1 Bridged Wrapped ETH" + }, + { + "id": "haven-2", + "symbol": "haven", + "name": "Haven" + }, + { + "id": "haven-coin", + "symbol": "havenx", + "name": "Haven Coin" + }, + { + "id": "havven", + "symbol": "snx", + "name": "Synthetix" + }, + { + "id": "hawex", + "symbol": "hawex", + "name": "Hawex" + }, + { + "id": "hawk-2", + "symbol": "hawk", + "name": "Hawk" + }, + { + "id": "hawksight", + "symbol": "hawk", + "name": "Hawksight" + }, + { + "id": "hawk-tuah", + "symbol": "hawktuah", + "name": "Hawk Tuah" + }, + { + "id": "haycoin", + "symbol": "hay", + "name": "HayCoin" + }, + { + "id": "haystack", + "symbol": "hay", + "name": "Haystack" + }, + { + "id": "hazel", + "symbol": "hazel", + "name": "Hazel" + }, + { + "id": "hazmat", + "symbol": "hzmt", + "name": "Hazmat" + }, + { + "id": "hbarbarian", + "symbol": "hbarbarian", + "name": "HBARbarian" + }, + { + "id": "hbark", + "symbol": "hbark", + "name": "hBARK" + }, + { + "id": "hbarx", + "symbol": "hbarx", + "name": "HBARX" + }, + { + "id": "hdoki", + "symbol": "oki", + "name": "HDOKI" + }, + { + "id": "headline", + "symbol": "hdl", + "name": "Headline" + }, + { + "id": "head-of-d-o-g-e", + "symbol": "vivek", + "name": "Head of D.O.G.E" + }, + { + "id": "head-of-d-o-g-e-2", + "symbol": "vivek", + "name": "Head of D.O.G.E" + }, + { + "id": "headstarter", + "symbol": "hst", + "name": "HeadStarter" + }, + { + "id": "healix-ai", + "symbol": "hxai", + "name": "Healix AI" + }, + { + "id": "health-and-wealth", + "symbol": "hewe", + "name": "Health and Wealth" + }, + { + "id": "healthbuddyai", + "symbol": "hbud", + "name": "HealthBuddyAI" + }, + { + "id": "healthmedi", + "symbol": "hmd", + "name": "Healthmedi" + }, + { + "id": "healthsci-ai", + "symbol": "hsai", + "name": "HealthSci.AI" + }, + { + "id": "heart-sparkle-mermaid", + "symbol": "hsm", + "name": "Heart Sparkle Mermaid" + }, + { + "id": "heaven", + "symbol": "light", + "name": "Light" + }, + { + "id": "heavenland-hto", + "symbol": "hto", + "name": "Heavenland HTO" + }, + { + "id": "hebeblock", + "symbol": "hebe", + "name": "HebeBlock" + }, + { + "id": "hectic-turkey", + "symbol": "hect", + "name": "Hectic Turkey" + }, + { + "id": "hector-dao", + "symbol": "hec", + "name": "Hector Network" + }, + { + "id": "hedera-guild-game", + "symbol": "hgg", + "name": "Hedera Guild Game" + }, + { + "id": "hedera-hashgraph", + "symbol": "hbar", + "name": "Hedera" + }, + { + "id": "hedera-liquity", + "symbol": "hlqt", + "name": "Hedera Liquity" + }, + { + "id": "hedera-swiss-franc", + "symbol": "hchf", + "name": "Hedera Swiss Franc" + }, + { + "id": "hedge", + "symbol": "hedge", + "name": "HEDGE" + }, + { + "id": "hedgefi", + "symbol": "hedge", + "name": "HedgeFi" + }, + { + "id": "hedgehog", + "symbol": "hedgehog", + "name": "Hedgehog" + }, + { + "id": "hedgehog-in-the-fog", + "symbol": "hif", + "name": "Hedgehog in the fog" + }, + { + "id": "hedget", + "symbol": "hget", + "name": "Hedget" + }, + { + "id": "hedgetrade", + "symbol": "hedg", + "name": "HedgeTrade" + }, + { + "id": "hedge-usd", + "symbol": "ush", + "name": "Hedge USD" + }, + { + "id": "hedgewaterdao", + "symbol": "$hwtr", + "name": "HedgewaterDAO" + }, + { + "id": "hedgy-the-hedgehog", + "symbol": "hedgy", + "name": "Hedgy the hedgehog" + }, + { + "id": "hedron", + "symbol": "hdrn", + "name": "Hedron" + }, + { + "id": "heeeheee", + "symbol": "heehee", + "name": "HeeeHeee" + }, + { + "id": "hefe", + "symbol": "hefe", + "name": "HEFE" + }, + { + "id": "hege", + "symbol": "hege", + "name": "Hege" + }, + { + "id": "hegic", + "symbol": "hegic", + "name": "Hegic" + }, + { + "id": "hegic-yvault", + "symbol": "yvhegic", + "name": "HEGIC yVault" + }, + { + "id": "hehecat", + "symbol": "hehe", + "name": "hehe" + }, + { + "id": "heheh", + "symbol": "heheh", + "name": "heheh" + }, + { + "id": "heidrun", + "symbol": "heidrun", + "name": "Heidrun" + }, + { + "id": "heima", + "symbol": "hei", + "name": "Heima" + }, + { + "id": "heir", + "symbol": "heir", + "name": "HEIR" + }, + { + "id": "hela", + "symbol": "hela", + "name": "HeLa" + }, + { + "id": "helal-para-coin", + "symbol": "hpc", + "name": "Helal Para Coin" + }, + { + "id": "hela-usd", + "symbol": "hlusd", + "name": "HeLa USD" + }, + { + "id": "hela-usdc", + "symbol": "husdc", + "name": "Hela USDC" + }, + { + "id": "helder", + "symbol": "hldr", + "name": "Helder" + }, + { + "id": "helga-inu", + "symbol": "helga", + "name": "Helga Inu" + }, + { + "id": "helichain", + "symbol": "heli", + "name": "HeliChain" + }, + { + "id": "helicopter-finance", + "symbol": "copter", + "name": "Helicopter Finance" + }, + { + "id": "helio-2", + "symbol": "helio", + "name": "Helio" + }, + { + "id": "helio-protocol-hay", + "symbol": "lisusd", + "name": "Lista USD" + }, + { + "id": "helios", + "symbol": "hlx", + "name": "HELIOS" + }, + { + "id": "heliswap-bridged-usdc-hts", + "symbol": "usdc[hts]", + "name": "Hashport Bridged USDC (Hedera)" + }, + { + "id": "helium", + "symbol": "hnt", + "name": "Helium" + }, + { + "id": "helium-iot", + "symbol": "iot", + "name": "Helium IOT" + }, + { + "id": "helium-mobile", + "symbol": "mobile", + "name": "Helium Mobile" + }, + { + "id": "helius-medical-technologies-xstock", + "symbol": "hsdtx", + "name": "Helius Medical Technologies xStock" + }, + { + "id": "helius-staked-sol", + "symbol": "hsol", + "name": "Helius Staked SOL" + }, + { + "id": "helix-2", + "symbol": "helix", + "name": "Helix" + }, + { + "id": "hellcat", + "symbol": "hcat", + "name": "HELLCAT" + }, + { + "id": "hello-labs", + "symbol": "hello", + "name": "HELLO" + }, + { + "id": "helloworld", + "symbol": "helloworld", + "name": "HELLOWORLD" + }, + { + "id": "hell-yeah", + "symbol": "hellyeah", + "name": "HELL YEAH" + }, + { + "id": "helmet-insure", + "symbol": "helmet", + "name": "Helmet Insure" + }, + { + "id": "help", + "symbol": "help", + "name": "Help" + }, + { + "id": "helpful-coin", + "symbol": "helpful", + "name": "Helpful Coin" + }, + { + "id": "helpkidz-coin", + "symbol": "hkc", + "name": "HelpKidz Coin" + }, + { + "id": "help-me-beat-cancer", + "symbol": "cancer", + "name": "HELP ME BEAT CANCER" + }, + { + "id": "hemi", + "symbol": "hemi", + "name": "Hemi" + }, + { + "id": "hemi-bitcoin", + "symbol": "hemibtc", + "name": "Hemi Bitcoin" + }, + { + "id": "hemi-bridged-usdt-hemi", + "symbol": "usdt", + "name": "Hemi Bridged USDT (Hemi)" + }, + { + "id": "hemi-bridged-wbtc-hemi", + "symbol": "wbtc", + "name": "Hemi Bridged WBTC (Hemi)" + }, + { + "id": "hemi-bridged-weth-hemi", + "symbol": "weth", + "name": "Hemi Bridged WETH (Hemi)" + }, + { + "id": "hempy", + "symbol": "hempy", + "name": "Hempy" + }, + { + "id": "hemule", + "symbol": "hemule", + "name": "Hemule" + }, + { + "id": "henlo-2", + "symbol": "henlo", + "name": "Henlo" + }, + { + "id": "henlo-3", + "symbol": "henlo", + "name": "Henlo" + }, + { + "id": "henlo-kart", + "symbol": "kart", + "name": "Henlo Kart" + }, + { + "id": "henny", + "symbol": "henny", + "name": "Henny" + }, + { + "id": "hera-finance", + "symbol": "hera", + "name": "Hera Finance" + }, + { + "id": "herbalist-token", + "symbol": "herb", + "name": "Herbalist" + }, + { + "id": "herbcoin", + "symbol": "herb", + "name": "HERBCOIN" + }, + { + "id": "hercules-token", + "symbol": "torch", + "name": "Hercules Token" + }, + { + "id": "herity-network", + "symbol": "her", + "name": "Herity Network" + }, + { + "id": "hermes-2", + "symbol": "hermes", + "name": "HERMES" + }, + { + "id": "hermes-ai-investment-fund", + "symbol": "hermes", + "name": "Hermes AI Investment Fund" + }, + { + "id": "hermes-dao", + "symbol": "hmx", + "name": "Hermes DAO" + }, + { + "id": "hermes-protocol", + "symbol": "hermes", + "name": "Hermes Protocol" + }, + { + "id": "hermetica-usdh", + "symbol": "usdh", + "name": "Hermetica USDh" + }, + { + "id": "hermeto", + "symbol": "hermeto", + "name": "Hermeto" + }, + { + "id": "hermez-network-token", + "symbol": "hez", + "name": "Hermez Network" + }, + { + "id": "hermy-the-stallion", + "symbol": "hermy", + "name": "Hermy The Stallion" + }, + { + "id": "heroeschained", + "symbol": "hec", + "name": "HeroesChained" + }, + { + "id": "heroes-of-mavia", + "symbol": "mavia", + "name": "Heroes of Mavia" + }, + { + "id": "heroes-of-nft", + "symbol": "hon", + "name": "Heroes of NFT" + }, + { + "id": "heroes-td", + "symbol": "htd", + "name": "Heroes TD" + }, + { + "id": "hero-meme", + "symbol": "hero", + "name": "Hero" + }, + { + "id": "hestia", + "symbol": "hestia", + "name": "Hestia" + }, + { + "id": "heurist", + "symbol": "heu", + "name": "Heurist" + }, + { + "id": "hex", + "symbol": "hex", + "name": "HEX" + }, + { + "id": "hexagon", + "symbol": "hexa", + "name": "Hexagon" + }, + { + "id": "hexar-ai", + "symbol": "hexar", + "name": "HEXAR AI" + }, + { + "id": "hex-com-diamond", + "symbol": "dmnd", + "name": "HEX.COM DIAMOND" + }, + { + "id": "hex-dollar-coin", + "symbol": "hexdc", + "name": "HEX Dollar Coin" + }, + { + "id": "hexfire", + "symbol": "fire", + "name": "HEXFIRE" + }, + { + "id": "hexly", + "symbol": "$hex", + "name": "Hexly" + }, + { + "id": "hex-orange-address", + "symbol": "hoa", + "name": "Hex Orange Address" + }, + { + "id": "hex-pulsechain", + "symbol": "hex", + "name": "HEX (PulseChain)" + }, + { + "id": "hex-trust-usdx", + "symbol": "usdx", + "name": "Hex Trust USD" + }, + { + "id": "heyanon", + "symbol": "anon", + "name": "Hey Anon" + }, + { + "id": "hf-realx", + "symbol": "hf", + "name": "HF RealX" + }, + { + "id": "hibernates", + "symbol": "hiber", + "name": "Hibernates" + }, + { + "id": "hiblocks", + "symbol": "hibs", + "name": "Hiblocks" + }, + { + "id": "hi-dollar", + "symbol": "hi", + "name": "hi Dollar" + }, + { + "id": "hiero-terminal", + "symbol": "hterm", + "name": "Hiero Terminal" + }, + { + "id": "hifi-finance", + "symbol": "hifi", + "name": "Hifi Finance" + }, + { + "id": "high", + "symbol": "high", + "name": "High" + }, + { + "id": "high-af", + "symbol": "ath", + "name": "High AF" + }, + { + "id": "higher", + "symbol": "higher", + "name": "higher" + }, + { + "id": "highkey", + "symbol": "highkey", + "name": "HighKey" + }, + { + "id": "highstreet", + "symbol": "high", + "name": "Highstreet" + }, + { + "id": "high-yield-usd-base", + "symbol": "hyusd", + "name": "High Yield USD (Base)" + }, + { + "id": "hikikomori", + "symbol": "hiki", + "name": "hikikomori" + }, + { + "id": "hillstone", + "symbol": "hsf", + "name": "Hillstone Finance" + }, + { + "id": "hilo-2", + "symbol": "hilo", + "name": "HILO" + }, + { + "id": "himitsu", + "symbol": "him", + "name": "Himitsu" + }, + { + "id": "hims-hers-health-ondo-tokenized-stock", + "symbol": "himson", + "name": "Hims & Hers Health (Ondo Tokenized Stock)" + }, + { + "id": "hinagi", + "symbol": "hinagi", + "name": "Hinagi" + }, + { + "id": "hinkal-staked-eth", + "symbol": "heth", + "name": "Hinkal Staked ETH" + }, + { + "id": "hinted-data", + "symbol": "hint", + "name": "Hinted Data" + }, + { + "id": "hipo-finance", + "symbol": "hpo", + "name": "Hipo Finance" + }, + { + "id": "hipo-governance-token", + "symbol": "hpo", + "name": "Hipo Governance Token" + }, + { + "id": "hipo-staked-ton", + "symbol": "hton", + "name": "Hipo Staked TON" + }, + { + "id": "hippius", + "symbol": "sn75", + "name": "Hippius" + }, + { + "id": "hippop", + "symbol": "hip", + "name": "HIPPOP" + }, + { + "id": "hippopotamus", + "symbol": "hpo", + "name": "Hippo Wallet" + }, + { + "id": "hippo-protocol", + "symbol": "hp", + "name": "Hippo Protocol" + }, + { + "id": "hippo-token", + "symbol": "hip", + "name": "Hippo" + }, + { + "id": "hiro", + "symbol": "hrt", + "name": "HIRO" + }, + { + "id": "his-name-gort", + "symbol": "gort", + "name": "His name gort" + }, + { + "id": "hispanic-doge", + "symbol": "doncho", + "name": "hispanic doge" + }, + { + "id": "hispanic-pepe", + "symbol": "concho", + "name": "hispanic pepe" + }, + { + "id": "history-of-pepe", + "symbol": "hope", + "name": "History of Pepe" + }, + { + "id": "hitbtc-token", + "symbol": "hit", + "name": "HitBTC" + }, + { + "id": "hitdex", + "symbol": "hit", + "name": "HITDEX" + }, + { + "id": "hitmakr", + "symbol": "hmkr", + "name": "Hitmakr" + }, + { + "id": "hit-meeee-upp", + "symbol": "hmu", + "name": "hit meeee upp" + }, + { + "id": "hive", + "symbol": "hive", + "name": "Hive" + }, + { + "id": "hive-2", + "symbol": "hive", + "name": "HIVE" + }, + { + "id": "hive-ai", + "symbol": "buzz", + "name": "Hive AI" + }, + { + "id": "hive_dollar", + "symbol": "hbd", + "name": "Hive Dollar" + }, + { + "id": "hive-game-token", + "symbol": "hgt", + "name": "Hive Game Token" + }, + { + "id": "hive-intelligence", + "symbol": "hint", + "name": "Hive Intelligence" + }, + { + "id": "hivello", + "symbol": "hvlo", + "name": "Hivello" + }, + { + "id": "hivemapper", + "symbol": "honey", + "name": "Hivemapper" + }, + { + "id": "hive-network", + "symbol": "hny", + "name": "Honey" + }, + { + "id": "hiveswap", + "symbol": "hivp", + "name": "HiveSwap" + }, + { + "id": "hive-token", + "symbol": "hive", + "name": "Hive Token" + }, + { + "id": "hivewater", + "symbol": "hivewater", + "name": "hiveWater" + }, + { + "id": "hkava", + "symbol": "hkava", + "name": "hKAVA" + }, + { + "id": "hl-gato", + "symbol": "hlgato", + "name": "Hl Gato" + }, + { + "id": "hlp0", + "symbol": "hlp0", + "name": "HLP0" + }, + { + "id": "hmmm", + "symbol": "hmmm", + "name": "hmmm" + }, + { + "id": "hmmonsol", + "symbol": "hmm", + "name": "HmmOnSOL" + }, + { + "id": "hmx", + "symbol": "hmx", + "name": "HMX" + }, + { + "id": "hnb-protocol", + "symbol": "hnb", + "name": "HNB Protocol" + }, + { + "id": "hobbes", + "symbol": "hobbes", + "name": "Hobbes [OLD]" + }, + { + "id": "hobbes-new", + "symbol": "hobbes", + "name": "Hobbes" + }, + { + "id": "hocus-pocus-finance", + "symbol": "hoc", + "name": "Hocus Pocus Finance" + }, + { + "id": "hodl", + "symbol": "hodl", + "name": "HODL" + }, + { + "id": "hodl-2", + "symbol": "hodl", + "name": "HODL" + }, + { + "id": "hodl-3", + "symbol": "hodl", + "name": "HODL" + }, + { + "id": "hodl-4", + "symbol": "bruvs", + "name": "OnlyBruvs" + }, + { + "id": "hodl-5", + "symbol": "hodl", + "name": "HODL" + }, + { + "id": "hodl-6", + "symbol": "hodl", + "name": "HODL" + }, + { + "id": "hodlassets", + "symbol": "hodl", + "name": "HodlAssets" + }, + { + "id": "hodl-coin", + "symbol": "hodl", + "name": "HODL Coin" + }, + { + "id": "hodless-coin", + "symbol": "hodless", + "name": "HODLess Coin" + }, + { + "id": "hodl-etf", + "symbol": "sn118", + "name": "HODL ETF" + }, + { + "id": "hodl-meme", + "symbol": "hodl", + "name": "HODL" + }, + { + "id": "hodooi-com", + "symbol": "hod", + "name": "HoDooi.com" + }, + { + "id": "hog", + "symbol": "hog", + "name": "Hog" + }, + { + "id": "hog-2", + "symbol": "hog", + "name": "HOG" + }, + { + "id": "hoge-finance", + "symbol": "hoge", + "name": "Hoge Finance" + }, + { + "id": "hoichi", + "symbol": "hoichi", + "name": "Hoichi" + }, + { + "id": "hokkaido-inu", + "symbol": "$hokk", + "name": "Hokkaidu Inu" + }, + { + "id": "hokkaido-inu-token", + "symbol": "hinu", + "name": "Hokkaido Inu Token" + }, + { + "id": "hokkaido-ken", + "symbol": "doken", + "name": "Hokkaido Ken" + }, + { + "id": "hokkaidu-inu", + "symbol": "hokk", + "name": "HOKK Finance" + }, + { + "id": "hokkaidu-inu-2", + "symbol": "hokk", + "name": "Hokkaidu Inu" + }, + { + "id": "hold-2", + "symbol": "earn", + "name": "HOLD" + }, + { + "id": "holdcoin", + "symbol": "hold", + "name": "Holdcoin" + }, + { + "id": "holder", + "symbol": "doggy", + "name": "HOLDER" + }, + { + "id": "holdium", + "symbol": "hm", + "name": "Holdium" + }, + { + "id": "holdme-token", + "symbol": "holdme", + "name": "HoldME Token" + }, + { + "id": "holdon4dearlife", + "symbol": "hodl", + "name": "HoldOn4DearLife" + }, + { + "id": "hold-on-for-dear-life-hodl", + "symbol": "hodl", + "name": "Hold on for dear life HODL" + }, + { + "id": "holdr", + "symbol": "hldr", + "name": "Holdr" + }, + { + "id": "hold-sloth", + "symbol": "zzz", + "name": "Hold Sloth" + }, + { + "id": "holdstation", + "symbol": "hold", + "name": "Holdstation [OLD]" + }, + { + "id": "holdstation-2", + "symbol": "hold", + "name": "Holdstation" + }, + { + "id": "holdstation-usd-coin", + "symbol": "hsusdc", + "name": "Holdstation USDC" + }, + { + "id": "holdstation-utility-gold", + "symbol": "ugold", + "name": "Holdstation Utility GOLD" + }, + { + "id": "hold-vip", + "symbol": "hold", + "name": "Hold VIP" + }, + { + "id": "holi", + "symbol": "holi", + "name": "Holi" + }, + { + "id": "holo", + "symbol": "holo", + "name": "holo" + }, + { + "id": "holo-2", + "symbol": "holo", + "name": "HOLO" + }, + { + "id": "holograph", + "symbol": "hlg", + "name": "Holograph" + }, + { + "id": "holoride", + "symbol": "ride", + "name": "holoride" + }, + { + "id": "holotoken", + "symbol": "hot", + "name": "Holo" + }, + { + "id": "holoworld", + "symbol": "holo", + "name": "Holoworld" + }, + { + "id": "holozone", + "symbol": "holo", + "name": "Holozone" + }, + { + "id": "holy-coin", + "symbol": "holy", + "name": "Holy Coin" + }, + { + "id": "holygrail", + "symbol": "hly", + "name": "HolyGrail" + }, + { + "id": "holy-liquid", + "symbol": "hl", + "name": "Holy Liquid" + }, + { + "id": "home", + "symbol": "home", + "name": "HOME" + }, + { + "id": "home3", + "symbol": "hts", + "name": "Home3" + }, + { + "id": "homebrew-robotics-club", + "symbol": "brew", + "name": "Homebrew Robotics Club" + }, + { + "id": "home-depot-xstock", + "symbol": "hdx", + "name": "Home Depot xStock" + }, + { + "id": "homeless-coin", + "symbol": "homeless", + "name": "homeless coin" + }, + { + "id": "homie", + "symbol": "homie", + "name": "Homie" + }, + { + "id": "homo-memetus", + "symbol": "homo", + "name": "Homo Memetus" + }, + { + "id": "honest-mining", + "symbol": "hnst", + "name": "Honest" + }, + { + "id": "honey", + "symbol": "hny", + "name": "Honey" + }, + { + "id": "honey-3", + "symbol": "honey", + "name": "Honey" + }, + { + "id": "honey-badger-2", + "symbol": "hoba", + "name": "Honey Badger" + }, + { + "id": "honeyfun-ai", + "symbol": "aibera", + "name": "HoneyFun AI" + }, + { + "id": "honey-is-money", + "symbol": "him", + "name": "Honey Is Money" + }, + { + "id": "honeyland-honey", + "symbol": "hxd", + "name": "Honeyland" + }, + { + "id": "honeymoon-token", + "symbol": "moon", + "name": "HoneyMOON" + }, + { + "id": "honeywell-xstock", + "symbol": "honx", + "name": "Honeywell xStock" + }, + { + "id": "hongkongdao", + "symbol": "hkd", + "name": "HongKongDAO" + }, + { + "id": "honk", + "symbol": "honk", + "name": "Honk" + }, + { + "id": "honkler", + "symbol": "honkler", + "name": "Honkler" + }, + { + "id": "honor-world-token", + "symbol": "hwt", + "name": "Honor World Token" + }, + { + "id": "hood", + "symbol": "hood", + "name": "HOOD" + }, + { + "id": "hood-cat", + "symbol": "hood", + "name": "Hood Cat" + }, + { + "id": "hooded-cult", + "symbol": "hooded", + "name": "Hooded Cult" + }, + { + "id": "hoodog", + "symbol": "hoodog", + "name": "HOODOG" + }, + { + "id": "hoodrat", + "symbol": "hoodrat", + "name": "Hoodrat" + }, + { + "id": "hood-rat", + "symbol": "hoodrat", + "name": "hood rat" + }, + { + "id": "hoodrat-2", + "symbol": "hoodrat", + "name": "Hoodrat" + }, + { + "id": "hooffather", + "symbol": "hoof", + "name": "Hooffather" + }, + { + "id": "hooked-protocol", + "symbol": "hook", + "name": "Hooked Protocol" + }, + { + "id": "hoonicorn-lol", + "symbol": "hooni", + "name": "hoonicorn.lol" + }, + { + "id": "hoot-solana", + "symbol": "hoot", + "name": "HOOT Solana" + }, + { + "id": "hop-cat", + "symbol": "hop", + "name": "hop cat" + }, + { + "id": "hope-2", + "symbol": "hope", + "name": "Hope.money" + }, + { + "id": "hopecoin", + "symbol": "$hope", + "name": "Hopecoin" + }, + { + "id": "hopecore", + "symbol": "hope", + "name": "Hopecore" + }, + { + "id": "hopium", + "symbol": "$hopium", + "name": "HOPIUM" + }, + { + "id": "hopper-the-rabbit", + "symbol": "hopper", + "name": "Hopper the Rabbit" + }, + { + "id": "hop-protocol", + "symbol": "hop", + "name": "Hop Protocol" + }, + { + "id": "hoppy-meme", + "symbol": "hoppy", + "name": "Hoppy" + }, + { + "id": "hoppy-the-frog", + "symbol": "hoppy", + "name": "Hoppy The Frog" + }, + { + "id": "hoppy-token", + "symbol": "hoppy", + "name": "Hoppy Token" + }, + { + "id": "hopr", + "symbol": "hopr", + "name": "HOPR" + }, + { + "id": "hopr-2", + "symbol": "xhopr", + "name": "HOPR" + }, + { + "id": "hord", + "symbol": "hord", + "name": "Hord" + }, + { + "id": "horizon-2", + "symbol": "hzn", + "name": "Horizon" + }, + { + "id": "horizon-4", + "symbol": "hrz", + "name": "Horizon" + }, + { + "id": "horizon-oracles", + "symbol": "horizon", + "name": "Horizon Oracles" + }, + { + "id": "horizon-protocol", + "symbol": "hzn", + "name": "Xpanse" + }, + { + "id": "horny", + "symbol": "$horny", + "name": "$horny" + }, + { + "id": "hornycoin", + "symbol": "69420", + "name": "hornyCoin" + }, + { + "id": "horny-jail", + "symbol": "jail", + "name": "Horny Jail" + }, + { + "id": "hosico-cat", + "symbol": "hosico", + "name": "Hosico Cat" + }, + { + "id": "hosky", + "symbol": "hosky", + "name": "Hosky" + }, + { + "id": "hot-cherry", + "symbol": "cherry", + "name": "Hot Cherry" + }, + { + "id": "hotcocoa", + "symbol": "hotcocoa", + "name": "HotCocoa" + }, + { + "id": "hot-cross", + "symbol": "hotcross", + "name": "Hot Cross" + }, + { + "id": "hot-dad", + "symbol": "hotdad", + "name": "Hot Dad" + }, + { + "id": "hotdog", + "symbol": "hotdog", + "name": "Hotdog" + }, + { + "id": "hot-doge", + "symbol": "hotdoge", + "name": "HotDoge [OLD]" + }, + { + "id": "hot-doge-2", + "symbol": "hotdoge", + "name": "Hot Doge" + }, + { + "id": "hotelium", + "symbol": "htl", + "name": "Hotelium" + }, + { + "id": "hotkeyswap", + "symbol": "hotkey", + "name": "HotKeySwap" + }, + { + "id": "hot-mom", + "symbol": "hotmom", + "name": "Hot Mom" + }, + { + "id": "hotmoon", + "symbol": "hotmoon", + "name": "HotMoon" + }, + { + "id": "hot-n-cold-finance", + "symbol": "hnc", + "name": "Hot'n Cold Finance" + }, + { + "id": "hottie-froggie", + "symbol": "hottie", + "name": "Hottie Froggie" + }, + { + "id": "houdini-swap", + "symbol": "lock", + "name": "Houdini Swap" + }, + { + "id": "hourglass", + "symbol": "wait", + "name": "Hourglass" + }, + { + "id": "housecoin-2", + "symbol": "house", + "name": "Housecoin" + }, + { + "id": "house-gold", + "symbol": "hold", + "name": "House + Gold" + }, + { + "id": "houston-token", + "symbol": "hou", + "name": "Houston Token" + }, + { + "id": "hover-cat", + "symbol": "hcat", + "name": "Hover Cat" + }, + { + "id": "how-did-you-make-it", + "symbol": "crypto", + "name": "How Did You Make It?" + }, + { + "id": "howdysol", + "symbol": "howdy", + "name": "HowdySol" + }, + { + "id": "howinu", + "symbol": "how", + "name": "HowInu" + }, + { + "id": "howl-city", + "symbol": "hwl", + "name": "Howl City" + }, + { + "id": "how-to-fly", + "symbol": "puff", + "name": "HOW TO FLY" + }, + { + "id": "howtopay", + "symbol": "htp", + "name": "HowToPay" + }, + { + "id": "hq", + "symbol": "hq", + "name": "HQ" + }, + { + "id": "hseth", + "symbol": "hseth", + "name": "hsETH" + }, + { + "id": "hsuite", + "symbol": "hsuite", + "name": "HubSuite" + }, + { + "id": "htx-dao", + "symbol": "htx", + "name": "HTX DAO" + }, + { + "id": "hua-hua", + "symbol": "huahua", + "name": "HUA HUA" + }, + { + "id": "huanghuali-token", + "symbol": "hlt", + "name": "Huanghuali Token" + }, + { + "id": "hubble", + "symbol": "hbb", + "name": "Hubble" + }, + { + "id": "huch", + "symbol": "huch", + "name": "Huch" + }, + { + "id": "huckleberry", + "symbol": "finn", + "name": "Huckleberry" + }, + { + "id": "hudi", + "symbol": "hudi", + "name": "Hudi" + }, + { + "id": "huebel-bolt", + "symbol": "bolt", + "name": "Huebel Bolt" + }, + { + "id": "huey", + "symbol": "huey", + "name": "Huey" + }, + { + "id": "hug", + "symbol": "hug", + "name": "HUG" + }, + { + "id": "hughug-coin", + "symbol": "hghg", + "name": "HUGHUG" + }, + { + "id": "huh-cat", + "symbol": "huhcat", + "name": "Huh cat" + }, + { + "id": "huhu-cat", + "symbol": "huhu", + "name": "Huhu Cat" + }, + { + "id": "hulvin", + "symbol": "hulvin", + "name": "HULVIN" + }, + { + "id": "huma-finance", + "symbol": "huma", + "name": "Huma Finance" + }, + { + "id": "human-300", + "symbol": "human", + "name": "Human 300" + }, + { + "id": "humandao", + "symbol": "hdao", + "name": "humanDAO" + }, + { + "id": "human-intelligence-machin", + "symbol": "him", + "name": "Human Intelligence Machin" + }, + { + "id": "humanity", + "symbol": "h", + "name": "Humanity" + }, + { + "id": "humanize", + "symbol": "$hmt", + "name": "Humanize" + }, + { + "id": "humanode", + "symbol": "hmnd", + "name": "Humanode" + }, + { + "id": "human-protocol", + "symbol": "hmt", + "name": "HUMAN Protocol" + }, + { + "id": "humans-ai", + "symbol": "heart", + "name": "Humans.ai" + }, + { + "id": "humidifi", + "symbol": "wet", + "name": "HumidiFi" + }, + { + "id": "hummingbird-finance-2", + "symbol": "hmng", + "name": "Hummingbird Finance" + }, + { + "id": "hummingbot", + "symbol": "hbot", + "name": "Hummingbot" + }, + { + "id": "hummus", + "symbol": "hum", + "name": "Hummus" + }, + { + "id": "humo", + "symbol": "humo", + "name": "HUMO" + }, + { + "id": "hump", + "symbol": "hump", + "name": "Hump" + }, + { + "id": "hund", + "symbol": "hund", + "name": "Hund" + }, + { + "id": "hundred", + "symbol": "hundred", + "name": "HUNDRED" + }, + { + "id": "hungarian-vizsla-inu", + "symbol": "hvi", + "name": "Hungarian Vizsla Inu" + }, + { + "id": "hunny-love-token", + "symbol": "love", + "name": "HunnyDAO" + }, + { + "id": "hunt", + "symbol": "hunt", + "name": "HUNT" + }, + { + "id": "hunter", + "symbol": "hntr", + "name": "Hunter Token" + }, + { + "id": "hunter-biden-s-laptop", + "symbol": "laptop", + "name": "Hunter Biden's Laptop" + }, + { + "id": "hunter-boden", + "symbol": "huntboden", + "name": "Hunter Boden" + }, + { + "id": "hunter-by-virtuals", + "symbol": "drpxbt", + "name": "Hunter by Virtuals" + }, + { + "id": "hunt-token", + "symbol": "hunt", + "name": "Hunt" + }, + { + "id": "huobi-btc", + "symbol": "hbtc", + "name": "Huobi BTC" + }, + { + "id": "huobi-btc-wormhole", + "symbol": "hbtc", + "name": "Huobi BTC (Wormhole)" + }, + { + "id": "huobi-token", + "symbol": "ht", + "name": "Huobi" + }, + { + "id": "hurricaneswap-token", + "symbol": "hct", + "name": "HurricaneSwap" + }, + { + "id": "husd", + "symbol": "husd", + "name": "HUSD" + }, + { + "id": "hush", + "symbol": "hush", + "name": "Hush" + }, + { + "id": "hushr", + "symbol": "hushr", + "name": "hushr" + }, + { + "id": "husky-2", + "symbol": "$husky", + "name": "Husky" + }, + { + "id": "husky-avax", + "symbol": "husky", + "name": "Husky Avax" + }, + { + "id": "husky-seal", + "symbol": "$husky", + "name": "Husky Seal" + }, + { + "id": "hut-8-xstock", + "symbol": "hutx", + "name": "Hut 8 xStock" + }, + { + "id": "hwusd", + "symbol": "hwusd", + "name": "hwUSD" + }, + { + "id": "hxro", + "symbol": "hxro", + "name": "HXRO" + }, + { + "id": "hybrid-2", + "symbol": "hyb", + "name": "Hybrid" + }, + { + "id": "hybridge", + "symbol": "bridge", + "name": "HyBridge" + }, + { + "id": "hybridge-bridged-link-hyperevm", + "symbol": "link0", + "name": "Hybridge Bridged LINK (HyperEVM)" + }, + { + "id": "hydra", + "symbol": "hydra", + "name": "Hydra" + }, + { + "id": "hydra-3", + "symbol": "hydra", + "name": "HYDRA" + }, + { + "id": "hydra-bridged-usdc-hydra", + "symbol": "usdc", + "name": "Hydra Bridged USDC (Hydra)" + }, + { + "id": "hydrachain-bridged-wbtc-hydra", + "symbol": "wbtc", + "name": "Hydrachain Bridged WBTC (Hydra)" + }, + { + "id": "hydradao", + "symbol": "hydra", + "name": "HydraDAO" + }, + { + "id": "hydradx", + "symbol": "hdx", + "name": "Hydration" + }, + { + "id": "hydranet", + "symbol": "hdn", + "name": "Hydranet" + }, + { + "id": "hydrated-dollar", + "symbol": "hollar", + "name": "Hydrated Dollar" + }, + { + "id": "hydrex", + "symbol": "hydx", + "name": "Hydrex" + }, + { + "id": "hydro-protocol-2", + "symbol": "hdro", + "name": "Hydro Protocol" + }, + { + "id": "hydt-protocol-hydt", + "symbol": "hydt", + "name": "HYDT" + }, + { + "id": "hygt", + "symbol": "hygt", + "name": "HYGT" + }, + { + "id": "hylo-leveraged-sol", + "symbol": "xsol", + "name": "Hylo Leveraged SOL" + }, + { + "id": "hylo-staked-sol", + "symbol": "hylosol", + "name": "Hylo Staked SOL" + }, + { + "id": "hylo-usd", + "symbol": "hyusd", + "name": "Hylo USD" + }, + { + "id": "hype-2", + "symbol": "hype", + "name": "HYPE" + }, + { + "id": "hype-3", + "symbol": "hype", + "name": "HYPE" + }, + { + "id": "hype3-cool", + "symbol": "cool", + "name": "HYPE3.cool" + }, + { + "id": "hypefun", + "symbol": "hyfu", + "name": "HypeFun" + }, + { + "id": "hypehub", + "symbol": "hpe", + "name": "HypeHUB" + }, + { + "id": "hyper-3", + "symbol": "eon", + "name": "Hyper" + }, + { + "id": "hyper-4", + "symbol": "hyper", + "name": "Hyper" + }, + { + "id": "hyperbc", + "symbol": "hbt", + "name": "HyperBC" + }, + { + "id": "hyperbeat-lst-vault", + "symbol": "lsthype", + "name": "Hyperbeat LST Vault" + }, + { + "id": "hyperbeat-ultra-hype", + "symbol": "hbhype", + "name": "Hyperbeat Ultra HYPE" + }, + { + "id": "hyperbeat-usdt", + "symbol": "hbusdt", + "name": "Hyperbeat USDT" + }, + { + "id": "hyperbeat-x-ether-fi-hype", + "symbol": "behype", + "name": "Hyperbeat x Ether.fi HYPE" + }, + { + "id": "hyperbolic-protocol", + "symbol": "hype", + "name": "Hyperbolic Protocol" + }, + { + "id": "hyperboreal-infinity", + "symbol": "hypr∞", + "name": "HYPERBOREAL INFINITY" + }, + { + "id": "hyperbot", + "symbol": "bot", + "name": "Hyperbot" + }, + { + "id": "hyperbridge-2", + "symbol": "bridge", + "name": "Hyperbridge" + }, + { + "id": "hyperchainx", + "symbol": "hpx", + "name": "HyperChainX" + }, + { + "id": "hypercycle", + "symbol": "hypc", + "name": "HyperCycle" + }, + { + "id": "hyperdust", + "symbol": "hypt", + "name": "HyperAGI" + }, + { + "id": "hyperfly", + "symbol": "fly", + "name": "HyperFly" + }, + { + "id": "hyperfy", + "symbol": "hyper", + "name": "Hyperfy" + }, + { + "id": "hypergpt", + "symbol": "hgpt", + "name": "HyperGPT" + }, + { + "id": "hyperion-2", + "symbol": "rion", + "name": "Hyperion" + }, + { + "id": "hyperion-staked-aptos", + "symbol": "stapt", + "name": "Hyperion Staked Aptos" + }, + { + "id": "hyperlane", + "symbol": "hyper", + "name": "Hyperlane" + }, + { + "id": "hyperlane-bridged-cbbtc-superseed", + "symbol": "cbbtc", + "name": "Hyperlane Bridged cbBTC (Superseed)" + }, + { + "id": "hyperlane-bridged-sol-eclipse", + "symbol": "sol", + "name": "Hyperlane Bridged SOL (Eclipse)" + }, + { + "id": "hyperlauncher", + "symbol": "launch", + "name": "Hyperlauncher" + }, + { + "id": "hyperlend-interest-bearing-usdt0-wrapped-hlp", + "symbol": "husdt0 (whlp)", + "name": "Hyperlend Interest Bearing USDT0 (Wrapped HLP)" + }, + { + "id": "hyperliquid", + "symbol": "hype", + "name": "Hyperliquid" + }, + { + "id": "hypernode", + "symbol": "hyper", + "name": "Hypernode" + }, + { + "id": "hyper-pay", + "symbol": "hpy", + "name": "Hyper Pay" + }, + { + "id": "hyperpie-staked-mhype", + "symbol": "mhype", + "name": "SpinUp Staked mHYPE" + }, + { + "id": "hyperpigmentation", + "symbol": "$hyper", + "name": "Hyperpigmentation" + }, + { + "id": "hyperquantum", + "symbol": "hq", + "name": "HyperQuantum" + }, + { + "id": "hyperseed", + "symbol": "hpr", + "name": "HyperSeed" + }, + { + "id": "hypersign-identity-token", + "symbol": "hid", + "name": "Hypersign Identity" + }, + { + "id": "hyperskids", + "symbol": "hyperskids", + "name": "$HYPERSKIDS" + }, + { + "id": "hyperstable", + "symbol": "ush", + "name": "Hyperstable USD" + }, + { + "id": "hyperstrategy", + "symbol": "hstr", + "name": "HyperStrategy" + }, + { + "id": "hyperswap", + "symbol": "swap", + "name": "HyperSwap" + }, + { + "id": "hyperswap-ai", + "symbol": "hylx", + "name": "HyperSwap AI" + }, + { + "id": "hypertrics", + "symbol": "hytr", + "name": "Hypertrics" + }, + { + "id": "hyper-usd", + "symbol": "usdhl", + "name": "Hyper USD" + }, + { + "id": "hyper-utility", + "symbol": "hypu", + "name": "Hyper Utility" + }, + { + "id": "hyperwave", + "symbol": "hwave", + "name": "Hyperwave" + }, + { + "id": "hyperwave-hlp", + "symbol": "hwhlp", + "name": "Hyperwave HLP" + }, + { + "id": "hyperwave-hype", + "symbol": "hwhype", + "name": "Hyperwave HYPE" + }, + { + "id": "hyperwo", + "symbol": "wo", + "name": "HyperWo" + }, + { + "id": "hyperx", + "symbol": "hyp", + "name": "HyperX" + }, + { + "id": "hype-sphere", + "symbol": "sphere", + "name": "Hype Sphere" + }, + { + "id": "hypr", + "symbol": "hypr", + "name": "Hypr" + }, + { + "id": "hypurr-fun", + "symbol": "hfun", + "name": "Hypurr Fun" + }, + { + "id": "hypurrstrategy", + "symbol": "hypstr", + "name": "HypurrStrategy" + }, + { + "id": "hyruleswap", + "symbol": "rupee", + "name": "HyruleSwap" + }, + { + "id": "hytopia", + "symbol": "topia", + "name": "TOPIA" + }, + { + "id": "hyusdt0-hwhlp-11", + "symbol": "hyusdt0(hwhlp)-11", + "name": "hyUSDT0 (hwHLP) - 11" + }, + { + "id": "hyve", + "symbol": "hyve", + "name": "Hyve" + }, + { + "id": "hyzen-ai", + "symbol": "hai", + "name": "Hyzen.AI" + }, + { + "id": "iaero-protocol-liq", + "symbol": "liq", + "name": "iAero Protocol LIQ" + }, + { + "id": "iagent-protocol", + "symbol": "$agnt", + "name": "iAgent Protocol" + }, + { + "id": "iagon", + "symbol": "iag", + "name": "Iagon" + }, + { + "id": "iai-token-2", + "symbol": "iai", + "name": "iAI Token" + }, + { + "id": "iamai", + "symbol": "iamai", + "name": "IAMAI" + }, + { + "id": "i-am-him", + "symbol": "him", + "name": "I am Him" + }, + { + "id": "iamx", + "symbol": "iamx", + "name": "IAMX" + }, + { + "id": "i-aped", + "symbol": "aped", + "name": "i aped" + }, + { + "id": "ibc-bridged-usdc", + "symbol": "usdc.n", + "name": "Noble USDC" + }, + { + "id": "ibc-bridged-usdt", + "symbol": "usdt", + "name": "IBC Bridged USDT" + }, + { + "id": "ibc-index", + "symbol": "ibcx", + "name": "IBC Index" + }, + { + "id": "ibg-token", + "symbol": "ibg", + "name": "iBG Finance (BSC)" + }, + { + "id": "ibiza-final-boss", + "symbol": "boss", + "name": "Ibiza Final Boss" + }, + { + "id": "ibiza-final-boss-2", + "symbol": "boss", + "name": "Ibiza Final Boss" + }, + { + "id": "ibm-ondo-tokenized-stock", + "symbol": "ibmon", + "name": "IBM (Ondo Tokenized Stock)" + }, + { + "id": "iboxx-high-yield-corporate-bond-etf-ondo-tokenized-etf", + "symbol": "hygon", + "name": "iBoxx $ High Yield Corporate Bond ETF (Ondo Tokenized ETF)" + }, + { + "id": "ibs-2", + "symbol": "ibs", + "name": "IBS" + }, + { + "id": "ibtc-2", + "symbol": "ibtc", + "name": "Indigo Protocol iBTC" + }, + { + "id": "icb-network", + "symbol": "icbx", + "name": "ICB Network" + }, + { + "id": "ice", + "symbol": "ice", + "name": "Ice Open Network" + }, + { + "id": "ice-bucket-challenge", + "symbol": "ice", + "name": "ice bucket challenge" + }, + { + "id": "icecream", + "symbol": "ice", + "name": "IceCreamSwap" + }, + { + "id": "icecream-ai", + "symbol": "icecream", + "name": "IceCream AI" + }, + { + "id": "icecreamswap-wcore", + "symbol": "wcore", + "name": "IceCreamSwap WCORE" + }, + { + "id": "ice-land-on-eth", + "symbol": "iceland", + "name": "Ice Land" + }, + { + "id": "iceraids", + "symbol": "$iceraids", + "name": "ICE Raids" + }, + { + "id": "ice-token", + "symbol": "ice", + "name": "Popsicle Finance" + }, + { + "id": "ic-ghost", + "symbol": "ghost", + "name": "IC Ghost" + }, + { + "id": "ichi-farm", + "symbol": "ichi", + "name": "ICHI" + }, + { + "id": "i-choose-rich-everytime", + "symbol": "nick", + "name": "I Choose Rich Everytime" + }, + { + "id": "iclighthouse-dao", + "symbol": "icl", + "name": "ICLighthouse DAO" + }, + { + "id": "icm-run", + "symbol": "icm", + "name": "ICM.RUN" + }, + { + "id": "icommunity", + "symbol": "icom", + "name": "iCommunity" + }, + { + "id": "icon", + "symbol": "icx", + "name": "ICON" + }, + { + "id": "icons", + "symbol": "icons", + "name": "ICONS" + }, + { + "id": "icon-x-world", + "symbol": "icnx", + "name": "Icon.X World" + }, + { + "id": "icopax", + "symbol": "$ipax", + "name": "Icopax" + }, + { + "id": "icosa", + "symbol": "icsa", + "name": "Icosa" + }, + { + "id": "icosa-eth", + "symbol": "icsa", + "name": "Icosa (ETH)" + }, + { + "id": "icpanda-dao", + "symbol": "panda", + "name": "ICPanda DAO" + }, + { + "id": "icpswap-token", + "symbol": "ics", + "name": "ICPSwap Token" + }, + { + "id": "icrypex-token", + "symbol": "icpx", + "name": "Icrypex Token" + }, + { + "id": "ictech", + "symbol": "ict", + "name": "ICTech" + }, + { + "id": "icy", + "symbol": "ic", + "name": "Icy" + }, + { + "id": "icy-2", + "symbol": "icy", + "name": "Icy" + }, + { + "id": "icycro", + "symbol": "icy", + "name": "IcyCRO" + }, + { + "id": "idavoll-network", + "symbol": "idv", + "name": "Idavoll DAO" + }, + { + "id": "ideafoundry-subsidies-agent", + "symbol": "subs", + "name": "IdeaFoundry Subsidies Agent" + }, + { + "id": "ideaology", + "symbol": "idea", + "name": "Ideaology" + }, + { + "id": "idena", + "symbol": "idna", + "name": "Idena" + }, + { + "id": "identified-flying-objects", + "symbol": "ifo", + "name": "Identified Flying Objects" + }, + { + "id": "idexo-token", + "symbol": "ido", + "name": "Idexo" + }, + { + "id": "idia", + "symbol": "idia", + "name": "Impossible Finance Launchpad" + }, + { + "id": "idle", + "symbol": "idle", + "name": "Idle Finance" + }, + { + "id": "idle-dai-risk-adjusted", + "symbol": "idledaisafe", + "name": "IdleDAI (Risk Adjusted)" + }, + { + "id": "idle-dai-yield", + "symbol": "idledaiyield", + "name": "IdleDAI (Best Yield)" + }, + { + "id": "idlemine", + "symbol": "idle", + "name": "IdleMine" + }, + { + "id": "idle-network", + "symbol": "idle", + "name": "Idle Network" + }, + { + "id": "idle-susd-yield", + "symbol": "idlesusdyield", + "name": "IdleSUSD (Yield)" + }, + { + "id": "idle-tusd-yield", + "symbol": "idletusdyield", + "name": "IdleTUSD (Best Yield)" + }, + { + "id": "idle-usdc-risk-adjusted", + "symbol": "idleusdcsafe", + "name": "IdleUSDC (Risk Adjusted)" + }, + { + "id": "idle-usdc-yield", + "symbol": "idleusdcyield", + "name": "IdleUSDC (Yield)" + }, + { + "id": "idle-usdt-risk-adjusted", + "symbol": "idleusdtsafe", + "name": "IdleUSDT (Risk Adjusted)" + }, + { + "id": "idle-usdt-yield", + "symbol": "idleusdtyield", + "name": "IdleUSDT (Yield)" + }, + { + "id": "idle-wbtc-yield", + "symbol": "idlewbtcyield", + "name": "IdleWBTC (Best Yield)" + }, + { + "id": "i-dont-know", + "symbol": "idk", + "name": "i dont know" + }, + { + "id": "idriss", + "symbol": "idriss", + "name": "IDRISS" + }, + { + "id": "idrx", + "symbol": "idrx", + "name": "IDRX" + }, + { + "id": "iexec-rlc", + "symbol": "rlc", + "name": "iExec RLC" + }, + { + "id": "ifarm", + "symbol": "ifarm", + "name": "iFARM" + }, + { + "id": "if-science", + "symbol": "ifsci", + "name": "IF Science" + }, + { + "id": "ig3", + "symbol": "tops", + "name": "iG3" + }, + { + "id": "iggy-the-iguana", + "symbol": "iggy", + "name": "Iggy The Iguana" + }, + { + "id": "ignis", + "symbol": "ignis", + "name": "Ignis" + }, + { + "id": "ignition-fbtc", + "symbol": "fbtc", + "name": "Function FBTC" + }, + { + "id": "ignore-fud", + "symbol": "4token", + "name": "Ignore Fud" + }, + { + "id": "iguverse", + "symbol": "igup", + "name": "IguVerse IGUP" + }, + { + "id": "iguverse-igu", + "symbol": "igu", + "name": "IguVerse IGU" + }, + { + "id": "iiii-lovvv-youuuu", + "symbol": "ily", + "name": "iiii lovvvv youuuu" + }, + { + "id": "ika", + "symbol": "ika", + "name": "Ika" + }, + { + "id": "ikigai", + "symbol": "ikigai", + "name": "Ikigai" + }, + { + "id": "i-know-ball", + "symbol": "ball", + "name": "i know ball" + }, + { + "id": "ikon", + "symbol": "ikon", + "name": "Ikon" + }, + { + "id": "ikun", + "symbol": "ikun", + "name": "IKUN" + }, + { + "id": "ilcoin", + "symbol": "ilc", + "name": "ILCOIN" + }, + { + "id": "ilence", + "symbol": "$ilence", + "name": "$ilence" + }, + { + "id": "i-like-it-stable-dao", + "symbol": "ilis", + "name": "I Like It Stable DAO" + }, + { + "id": "i-like-my-sootcase", + "symbol": "sootcase", + "name": "I like my sootcase" + }, + { + "id": "illumicati", + "symbol": "milk", + "name": "Illumicati" + }, + { + "id": "illuminati", + "symbol": "ilum", + "name": "Illuminati" + }, + { + "id": "illuminaticoin", + "symbol": "nati", + "name": "IlluminatiCoin" + }, + { + "id": "illuminex", + "symbol": "ix", + "name": "illumineX" + }, + { + "id": "illusion", + "symbol": "illusion", + "name": "illusion" + }, + { + "id": "illusion-of-life", + "symbol": "spark", + "name": "Illusion of Life" + }, + { + "id": "illusion-of-trader", + "symbol": "retard", + "name": "Illusion of Trader" + }, + { + "id": "illusive-ai", + "symbol": "kaia", + "name": "Illusive AI" + }, + { + "id": "illuvium", + "symbol": "ilv", + "name": "Illuvium" + }, + { + "id": "i-love-puppies", + "symbol": "puppies", + "name": "I love puppies" + }, + { + "id": "i-love-puppies-2", + "symbol": "puppies", + "name": "I love puppies " + }, + { + "id": "iloveyousomatcha", + "symbol": "ilysm", + "name": "iloveyousomatcha" + }, + { + "id": "iluminary-token", + "symbol": "ilmt", + "name": "iLuminary Token" + }, + { + "id": "ima-bridged-usdc-skale", + "symbol": "usdc", + "name": "Skale IMA Bridged USDC (Skale)" + }, + { + "id": "i-made-it-up", + "symbol": "source", + "name": "I MADE IT UP" + }, + { + "id": "imagen-ai", + "symbol": "image", + "name": "Imagen Network" + }, + { + "id": "imagen-network-bsc", + "symbol": "image", + "name": "Imagen Network (BSC)" + }, + { + "id": "imaginary-ones", + "symbol": "bubble", + "name": "Imaginary Ones" + }, + { + "id": "imagine", + "symbol": "imagine", + "name": "Imagine" + }, + { + "id": "imagine-2", + "symbol": "imagine", + "name": "IMAGINE" + }, + { + "id": "imaro", + "symbol": "imaro", + "name": "IMARO" + }, + { + "id": "imbue-network", + "symbol": "imbu", + "name": "Imbue Network" + }, + { + "id": "ime-lab", + "symbol": "lime", + "name": "iMe Lab" + }, + { + "id": "imgn-labs", + "symbol": "imgn", + "name": "IMGN Labs" + }, + { + "id": "immortal-com", + "symbol": "immortal", + "name": "IMMORTAL.COM" + }, + { + "id": "immortal-token", + "symbol": "imt", + "name": "Immortal Token" + }, + { + "id": "immutable", + "symbol": "dara", + "name": "Immutable" + }, + { + "id": "immutable-x", + "symbol": "imx", + "name": "Immutable" + }, + { + "id": "immutable-zkevm-bridged-eth", + "symbol": "eth", + "name": "Immutable zkEVM Bridged ETH" + }, + { + "id": "imnotthewolf", + "symbol": "wolf", + "name": "ImNotTheWolf" + }, + { + "id": "imnotwrongimearly", + "symbol": "early", + "name": "imnotwrongimearly" + }, + { + "id": "imo", + "symbol": "imo", + "name": "IMO" + }, + { + "id": "imonster-ai", + "symbol": "imon", + "name": "iMonster Ai" + }, + { + "id": "imov", + "symbol": "imt", + "name": "IMOV" + }, + { + "id": "imperium-empires", + "symbol": "ime", + "name": "Imperium Empires" + }, + { + "id": "impermax-2", + "symbol": "ibex", + "name": "Impermax" + }, + { + "id": "impls-finance", + "symbol": "impls", + "name": "IMPLS Finance" + }, + { + "id": "impossible-cloud-network-token", + "symbol": "icnt", + "name": "Impossible Cloud Network Token" + }, + { + "id": "impossible-finance", + "symbol": "if", + "name": "Impossible Finance" + }, + { + "id": "impostors-blood", + "symbol": "blood", + "name": "Impostors Blood" + }, + { + "id": "impt", + "symbol": "impt", + "name": "IMPT" + }, + { + "id": "impulse-2", + "symbol": "impulse", + "name": "IMPULSE" + }, + { + "id": "inbred-cat", + "symbol": "inbred", + "name": "Inbred Cat" + }, + { + "id": "incept", + "symbol": "incept", + "name": "Incept" + }, + { + "id": "inception-restaked-eigen", + "symbol": "ineigen", + "name": "Inception Restaked EIGEN" + }, + { + "id": "inception-restaked-lseth", + "symbol": "inlseth", + "name": "Inception lsETH" + }, + { + "id": "inception-restaked-meth", + "symbol": "inmeth", + "name": "Inception mETH" + }, + { + "id": "inception-restaked-oseth", + "symbol": "inoseth", + "name": "Inception osETH" + }, + { + "id": "inception-restaked-sfrax", + "symbol": "insfrax", + "name": "Inception Restaked sFRAX" + }, + { + "id": "inception-restaked-slisbnb", + "symbol": "inslisbnb", + "name": "Inception Restaked slisBNB" + }, + { + "id": "inception-restaked-tbtc", + "symbol": "intbtc", + "name": "Inception Restaked tBTC" + }, + { + "id": "incinerator", + "symbol": "inc", + "name": "Incinerator" + }, + { + "id": "incognifi", + "symbol": "infi", + "name": "IncogniFi" + }, + { + "id": "incoin-2", + "symbol": "in", + "name": "Incoin" + }, + { + "id": "inc-reward-service", + "symbol": "irs", + "name": "INC Reward Service" + }, + { + "id": "incrypt", + "symbol": "inc", + "name": "Incrypt" + }, + { + "id": "incum", + "symbol": "incum", + "name": "INCUM" + }, + { + "id": "index-avalanche-defi", + "symbol": "ixad", + "name": "Index Avalanche DeFi" + }, + { + "id": "index-coop-coindesk-eth-trend-index", + "symbol": "cdeti", + "name": "Index Coop CoinDesk ETH Trend Index" + }, + { + "id": "index-cooperative", + "symbol": "index", + "name": "Index Cooperative" + }, + { + "id": "index-coop-eth-2x-flexible-leverage-index", + "symbol": "eth2x-fli-p", + "name": "Index Coop - ETH 2x Flexible Leverage Index (Polygon)" + }, + { + "id": "index-token", + "symbol": "it", + "name": "Index Token" + }, + { + "id": "indexy", + "symbol": "i", + "name": "Indexy" + }, + { + "id": "indi", + "symbol": "indi", + "name": "Indi" + }, + { + "id": "indian-call-center", + "symbol": "icc", + "name": "Indian Call Center" + }, + { + "id": "indian-premier-league-fan-token", + "symbol": "ipl", + "name": "Indian Premier League Fan Token" + }, + { + "id": "indie-crush", + "symbol": "indie", + "name": "INDIE CRUSH" + }, + { + "id": "indigg-kratos-cash", + "symbol": "kcash", + "name": "IndiGG Kratos Cash" + }, + { + "id": "indigo-dao-governance-token", + "symbol": "indy", + "name": "Indigo Protocol" + }, + { + "id": "indigo-protocol-ieth", + "symbol": "ieth", + "name": "Indigo Protocol iETH" + }, + { + "id": "indowealth-token", + "symbol": "iwt", + "name": "IndoWealth Token" + }, + { + "id": "inery", + "symbol": "$inr", + "name": "Inery" + }, + { + "id": "inf", + "symbol": "inf++", + "name": "Inf++" + }, + { + "id": "inferium", + "symbol": "ifr", + "name": "Inferium" + }, + { + "id": "inferno-2", + "symbol": "inf", + "name": "INFERNO" + }, + { + "id": "infinaeon", + "symbol": "inf", + "name": "Infinaeon" + }, + { + "id": "infinifi-locked-iusd-1week", + "symbol": "liusd", + "name": "infiniFi Locked iUSD (1week)" + }, + { + "id": "infinifi-locked-iusd-2week", + "symbol": "liusd", + "name": "infiniFi Locked iUSD (2week)" + }, + { + "id": "infinifi-locked-iusd-4week", + "symbol": "liusd", + "name": "infiniFi Locked iUSD (4week)" + }, + { + "id": "infinifi-locked-iusd-8week", + "symbol": "liusd", + "name": "infiniFi Locked iUSD (8week)" + }, + { + "id": "infinifi-staked-iusd", + "symbol": "siusd", + "name": "InfiniFi Staked iUSD" + }, + { + "id": "infinifi-usd", + "symbol": "iusd", + "name": "InfiniFi USD" + }, + { + "id": "infinit", + "symbol": "in", + "name": "INFINIT" + }, + { + "id": "infinitar-governance-token", + "symbol": "igt", + "name": "Infinitar Governance Token" + }, + { + "id": "infinite-backrooms", + "symbol": "ib", + "name": "infinite backrooms" + }, + { + "id": "infinite-btc-reward", + "symbol": "ibr", + "name": "Infinite BTC Reward" + }, + { + "id": "infinitee", + "symbol": "inftee", + "name": "Infinitee" + }, + { + "id": "infinite-games", + "symbol": "sn6", + "name": "Infinite Games" + }, + { + "id": "infinitehash", + "symbol": "sn89", + "name": "InfiniteHash" + }, + { + "id": "infinite-money-glitch", + "symbol": "img", + "name": "Infinite Money Glitch" + }, + { + "id": "infinite-money-glitch-2", + "symbol": "img", + "name": "Infinite Money Glitch" + }, + { + "id": "infinite-money-glitch-x2", + "symbol": "imgx2", + "name": "Infinite Money Glitch X2" + }, + { + "id": "infinite-sui-glitch", + "symbol": "isg", + "name": "Infinite Sui Glitch" + }, + { + "id": "infinite-trading-protocol", + "symbol": "itp", + "name": "Infinite Trading Protocol" + }, + { + "id": "infinite-truths", + "symbol": "truths", + "name": "Infinite Truths" + }, + { + "id": "infiniticoin", + "symbol": "inco", + "name": "InfinitiCoin" + }, + { + "id": "infinitorr", + "symbol": "torr", + "name": "InfiniTORR" + }, + { + "id": "infinity-2", + "symbol": "8", + "name": "Infinity" + }, + { + "id": "infinity-3", + "symbol": "infinity", + "name": "INFINITY" + }, + { + "id": "infinity-ai", + "symbol": "infy", + "name": "Infinity AI" + }, + { + "id": "infinity-angel", + "symbol": "ing", + "name": "Infinity Games" + }, + { + "id": "infinitybit-token", + "symbol": "ibit", + "name": "InfinityBit Token" + }, + { + "id": "infinity-ground", + "symbol": "ain", + "name": "Infinity Ground" + }, + { + "id": "infinity-pad-2", + "symbol": "ipad", + "name": "Infinity PAD" + }, + { + "id": "infinity-rocket-token", + "symbol": "irt", + "name": "Infinity Rocket" + }, + { + "id": "infinity-skies", + "symbol": "isky", + "name": "Infinity Skies" + }, + { + "id": "inflatable-buttplug", + "symbol": "buttplug", + "name": "Inflatable Buttplug" + }, + { + "id": "inflation-hedging-coin", + "symbol": "ihc", + "name": "Inflation Hedging Coin" + }, + { + "id": "inflection-ai", + "symbol": "inf", + "name": "Inflection AI" + }, + { + "id": "influenceher", + "symbol": "influ", + "name": "InfluenceHer" + }, + { + "id": "infopunks", + "symbol": "infopunks", + "name": "infopunks" + }, + { + "id": "infrafred-bgt", + "symbol": "ibgt", + "name": "Infrared BGT" + }, + { + "id": "infrared-bera", + "symbol": "ibera", + "name": "Infrared Bera" + }, + { + "id": "infrasta", + "symbol": "infras", + "name": "Infrasta" + }, + { + "id": "infrax", + "symbol": "infra", + "name": "infraX" + }, + { + "id": "ini", + "symbol": "ini", + "name": "INI" + }, + { + "id": "init", + "symbol": "init", + "name": "Inite" + }, + { + "id": "initia", + "symbol": "init", + "name": "Initia" + }, + { + "id": "initia-bridged-usdc-initia", + "symbol": "usdc", + "name": "Initia Bridged USDC (Initia)" + }, + { + "id": "injective-bridged-usdt-injective", + "symbol": "usdt", + "name": "Injective Bridged USDT (Injective)" + }, + { + "id": "injective-kings", + "symbol": "ikings", + "name": "Injective Kings" + }, + { + "id": "injective-protocol", + "symbol": "inj", + "name": "Injective" + }, + { + "id": "injective-quants", + "symbol": "qunt", + "name": "Injective Quants" + }, + { + "id": "ink", + "symbol": "ink", + "name": "Ink" + }, + { + "id": "ink-3", + "symbol": "ink", + "name": "Ink" + }, + { + "id": "ink-bridged-weth-ink", + "symbol": "weth", + "name": "Ink Bridged WETH (Ink)" + }, + { + "id": "ink-finance", + "symbol": "quill", + "name": "Ink Finance" + }, + { + "id": "ink-usdt-veda-vault", + "symbol": "inkedusdt", + "name": "Ink USDT Veda Vault" + }, + { + "id": "in-memes-we-trust", + "symbol": "$trust", + "name": "IN MEMES WE TRUST" + }, + { + "id": "inn", + "symbol": "block inn", + "name": "INN" + }, + { + "id": "innova", + "symbol": "inn", + "name": "Innova" + }, + { + "id": "innoviatrust", + "symbol": "invaai", + "name": "Innovia AI" + }, + { + "id": "innovosens", + "symbol": "isens", + "name": "Innovosens" + }, + { + "id": "inoai", + "symbol": "ino", + "name": "InoAi" + }, + { + "id": "in-pepe-we-trust", + "symbol": "ipwt", + "name": "IN PEPE WE TRUST" + }, + { + "id": "inpulse-x-2", + "symbol": "ipx", + "name": "InpulseX" + }, + { + "id": "in-real-life-coin", + "symbol": "irlcoin", + "name": "in real life coin" + }, + { + "id": "insane-labz", + "symbol": "labz", + "name": "Insane Labz (Sol)" + }, + { + "id": "insane-labz-base", + "symbol": "labz", + "name": "Insane Labz (Base)" + }, + { + "id": "inscribe", + "symbol": "ins", + "name": "Inscribe" + }, + { + "id": "inscription-dao", + "symbol": "icda", + "name": "Inscription DAO" + }, + { + "id": "insect", + "symbol": "insp", + "name": "INSPAD" + }, + { + "id": "insightx", + "symbol": "inx", + "name": "InsightX" + }, + { + "id": "inspect", + "symbol": "insp", + "name": "Inspect" + }, + { + "id": "inspira", + "symbol": "inspi", + "name": "Inspira" + }, + { + "id": "insrt-finance", + "symbol": "$insrt", + "name": "Insrt Finance" + }, + { + "id": "instabridge-wrapped-eth", + "symbol": "xeth", + "name": "Instabridge Wrapped ETH (Radix)" + }, + { + "id": "instabridge-wrapped-usdt", + "symbol": "xusdt", + "name": "Instabridge Wrapped USDT (Radix)" + }, + { + "id": "instadapp", + "symbol": "fluid", + "name": "Fluid" + }, + { + "id": "instadapp-dai", + "symbol": "idai", + "name": "Instadapp DAI" + }, + { + "id": "instadapp-eth", + "symbol": "ieth", + "name": "iETH v1" + }, + { + "id": "instadapp-eth-v2", + "symbol": "ieth v2", + "name": "Instadapp ETH v2" + }, + { + "id": "instadapp-usdc", + "symbol": "iusdc", + "name": "Instadapp USDC" + }, + { + "id": "instadapp-wbtc", + "symbol": "iwbtc", + "name": "Instadapp WBTC" + }, + { + "id": "insula", + "symbol": "isla", + "name": "Insula" + }, + { + "id": "insurace", + "symbol": "insur", + "name": "InsurAce" + }, + { + "id": "insurance-2", + "symbol": "insurance", + "name": "INSURANCE" + }, + { + "id": "insure", + "symbol": "sure", + "name": "inSure DeFi" + }, + { + "id": "insurex", + "symbol": "ixt", + "name": "iXledger" + }, + { + "id": "integral", + "symbol": "itgr", + "name": "Integral" + }, + { + "id": "integritee", + "symbol": "teer", + "name": "Integritee" + }, + { + "id": "integrity-dao", + "symbol": "id", + "name": "Integrity DAO" + }, + { + "id": "intellika-ai", + "symbol": "intai", + "name": "intellika AI" + }, + { + "id": "intellix", + "symbol": "itx", + "name": "Intellix" + }, + { + "id": "intel-ondo-tokenized-stock", + "symbol": "intcon", + "name": "Intel (Ondo Tokenized Stock)" + }, + { + "id": "intel-xstock", + "symbol": "intcx", + "name": "Intel xStock" + }, + { + "id": "intenet", + "symbol": "int", + "name": "InteNet" + }, + { + "id": "interactively", + "symbol": "$ixly", + "name": "Interactively" + }, + { + "id": "interbtc", + "symbol": "ibtc", + "name": "interBTC" + }, + { + "id": "interest-bearing-eth", + "symbol": "ibeth", + "name": "Interest Bearing ETH" + }, + { + "id": "interlay", + "symbol": "intr", + "name": "Interlay" + }, + { + "id": "inter-milan-fan-token", + "symbol": "inter", + "name": "Inter Milan Fan Token" + }, + { + "id": "intern", + "symbol": "intern", + "name": "Intern" + }, + { + "id": "international-business-machines-xstock", + "symbol": "ibmx", + "name": "International Business Machines xStock" + }, + { + "id": "international-klein-blue", + "symbol": "ikb", + "name": "International Klein Blue" + }, + { + "id": "international-meme-fund", + "symbol": "imf", + "name": "International Meme Fund" + }, + { + "id": "international-meme-fund-2", + "symbol": "imf", + "name": "International Meme Fund" + }, + { + "id": "international-stable-currency", + "symbol": "isc", + "name": "International Stable Currency" + }, + { + "id": "internet2-fund", + "symbol": "betanet", + "name": "Internet2 Fund" + }, + { + "id": "internet-capital-memes", + "symbol": "icm", + "name": "Internet Capital Memes" + }, + { + "id": "internet-computer", + "symbol": "icp", + "name": "Internet Computer" + }, + { + "id": "internet-doge", + "symbol": "idoge", + "name": "Internet Doge" + }, + { + "id": "internet-money", + "symbol": "im", + "name": "Internet Money (ETH)" + }, + { + "id": "internet-money-bsc", + "symbol": "im", + "name": "Internet Money (BSC)" + }, + { + "id": "internet-of-energy-network", + "symbol": "ioen", + "name": "Internet of Energy Network" + }, + { + "id": "internet-of-intelligence", + "symbol": "sn108", + "name": "Internet of Intelligence" + }, + { + "id": "internet-token-2", + "symbol": "int", + "name": "Internet Token" + }, + { + "id": "internosaur", + "symbol": "$intern", + "name": "Internosaur" + }, + { + "id": "interport-token", + "symbol": "itp", + "name": "Interport Token" + }, + { + "id": "inter-stable-token", + "symbol": "ist", + "name": "Inter Stable Token" + }, + { + "id": "interstellar-domain-order", + "symbol": "ido", + "name": "Interstellar Domain Order" + }, + { + "id": "in-the-meme-time", + "symbol": "itmt", + "name": "In The MEME Time" + }, + { + "id": "int-os", + "symbol": "intos", + "name": "INT OS" + }, + { + "id": "intrepid-token", + "symbol": "int", + "name": "Intrepid Token" + }, + { + "id": "introvert-coin", + "symbol": "introvert", + "name": "Introvert Coin" + }, + { + "id": "intuition", + "symbol": "trust", + "name": "Intuition" + }, + { + "id": "intuit-ondo-tokenized-stock", + "symbol": "intuon", + "name": "Intuit (Ondo Tokenized Stock)" + }, + { + "id": "inu", + "symbol": "inu", + "name": "Inu." + }, + { + "id": "inu-hariko", + "symbol": "hariko", + "name": "Inu Hariko" + }, + { + "id": "inu-inu", + "symbol": "inuinu", + "name": "Inu Inu" + }, + { + "id": "inuki", + "symbol": "inuki", + "name": "Inuki" + }, + { + "id": "inusol", + "symbol": "inu", + "name": "INU" + }, + { + "id": "inu-token-63736428-0d5c-4281-8038-3e62c35ac278", + "symbol": "inu", + "name": "Inu Token" + }, + { + "id": "invariant", + "symbol": "invt", + "name": "Invariant" + }, + { + "id": "inverse-ethereum-volatility-index-token", + "symbol": "iethv", + "name": "Inverse Ethereum Volatility Index Token" + }, + { + "id": "inverse-finance", + "symbol": "inv", + "name": "Inverse Finance" + }, + { + "id": "invesco-qqq-etf-ondo-tokenized-etf", + "symbol": "qqqon", + "name": "Invesco QQQ ETF (Ondo Tokenized ETF)" + }, + { + "id": "investin", + "symbol": "ivn", + "name": "Investin" + }, + { + "id": "invest-to-earn", + "symbol": "invest", + "name": "INVEST TO EARN" + }, + { + "id": "invest-zone", + "symbol": "ivfun", + "name": "Invest Zone" + }, + { + "id": "invify-ai", + "symbol": "invify", + "name": "INVIFY AI" + }, + { + "id": "invinos", + "symbol": "vinos", + "name": "Invinos" + }, + { + "id": "invisible-cat", + "symbol": "kieth", + "name": "Invisible Cat" + }, + { + "id": "invite-token", + "symbol": "invite", + "name": "INVITE Token" + }, + { + "id": "inx-token-2", + "symbol": "inx", + "name": "INX Token" + }, + { + "id": "io", + "symbol": "io", + "name": "io.net" + }, + { + "id": "iobusd", + "symbol": "iobusd", + "name": "ioBUSD" + }, + { + "id": "ioeth", + "symbol": "ioeth", + "name": "ioETH" + }, + { + "id": "ioi-token", + "symbol": "ioi", + "name": "IOI Token" + }, + { + "id": "ion", + "symbol": "ion", + "name": "Ion" + }, + { + "id": "iona-by-virtuals", + "symbol": "iona", + "name": "Iona by Virtuals" + }, + { + "id": "ionex-token", + "symbol": "inx", + "name": "Ionex Token" + }, + { + "id": "ionic-protocol", + "symbol": "ion", + "name": "Ionic Protocol" + }, + { + "id": "ionic-tether-usd", + "symbol": "ionusdt", + "name": "Ionic Tether USD" + }, + { + "id": "ionic-usd-coin", + "symbol": "ionusdc", + "name": "Ionic USD Coin" + }, + { + "id": "ioq-wallet", + "symbol": "ioq wallet", + "name": "iOQ Wallet" + }, + { + "id": "iostoken", + "symbol": "iost", + "name": "IOST" + }, + { + "id": "iota", + "symbol": "iota", + "name": "IOTA" + }, + { + "id": "iota-2", + "symbol": "sn9", + "name": "iota" + }, + { + "id": "iotai", + "symbol": "iotai", + "name": "IoTAI" + }, + { + "id": "iota-velocimeter", + "symbol": "ivm", + "name": "Iota Velocimeter" + }, + { + "id": "iotex", + "symbol": "iotx", + "name": "IoTeX" + }, + { + "id": "iotex-bridged-busd-iotex", + "symbol": "busd", + "name": "IoTeX Bridged BUSD (IoTeX)" + }, + { + "id": "iotube-bridged-geod-iotex", + "symbol": "geod", + "name": "ioTube Bridged GEOD (IoTeX)" + }, + { + "id": "iotube-bridged-wifi-iotex", + "symbol": "wifi", + "name": "ioTube Bridged WIFI (IoTeX)" + }, + { + "id": "iotube-bridged-wnt-iotex", + "symbol": "wnt", + "name": "ioTube Bridged WNT (IoTeX)" + }, + { + "id": "iotube-bridged-xnet-iotex", + "symbol": "xnet", + "name": "ioTube Bridged XNET (IoTeX)" + }, + { + "id": "iousdc", + "symbol": "iousdc", + "name": "Bridged USD Coin (IoTeX)" + }, + { + "id": "iousdt", + "symbol": "iousdt", + "name": "Bridged Tether (IoTeX)" + }, + { + "id": "iowbtc", + "symbol": "iowbtc", + "name": "ioWBTC" + }, + { + "id": "ipmb", + "symbol": "gpro", + "name": "GoldPro" + }, + { + "id": "ippy", + "symbol": "ippy", + "name": "IPPY" + }, + { + "id": "ip-tokens-of-ipnft-129", + "symbol": "claw", + "name": "IP Tokens of IPNFT #129" + }, + { + "id": "iq50", + "symbol": "iq50", + "name": "IQ50" + }, + { + "id": "iq6900", + "symbol": "iq", + "name": "IQ6900 [OLD]" + }, + { + "id": "iq6900-2", + "symbol": "iq", + "name": "IQ Labs" + }, + { + "id": "iq-protocol", + "symbol": "qhub", + "name": "QHUB" + }, + { + "id": "i-remember-when", + "symbol": "nostalgic", + "name": "I Remember When" + }, + { + "id": "irena-green-energy", + "symbol": "irena", + "name": "Irena Coin Apps" + }, + { + "id": "iridescent-rabbit-shark", + "symbol": "irs", + "name": "iridescent rabbit shark" + }, + { + "id": "i-r-i-s", + "symbol": "iris", + "name": "I.R.I.S" + }, + { + "id": "iris-ai", + "symbol": "iris", + "name": "IRIS AI" + }, + { + "id": "iris-chain", + "symbol": "irc", + "name": "IRIS Chain" + }, + { + "id": "iris-ecosystem", + "symbol": "iristoken", + "name": "Iris Ecosystem" + }, + { + "id": "iris-network", + "symbol": "iris", + "name": "IRISnet" + }, + { + "id": "iris-token-2", + "symbol": "iris", + "name": "Iris" + }, + { + "id": "irl-ani", + "symbol": "uri", + "name": "IRL ANI" + }, + { + "id": "iro-chan", + "symbol": "iro", + "name": "Iro-Chan" + }, + { + "id": "iron-bank", + "symbol": "ib", + "name": "Iron Bank" + }, + { + "id": "iron-bank-euro", + "symbol": "ibeur", + "name": "Iron Bank EUR" + }, + { + "id": "iron-finance", + "symbol": "ice", + "name": "Iron Finance" + }, + { + "id": "iron-fish", + "symbol": "iron", + "name": "Iron Fish" + }, + { + "id": "iron-stablecoin", + "symbol": "iron", + "name": "Iron" + }, + { + "id": "iron-titanium-token", + "symbol": "titan", + "name": "IRON Titanium" + }, + { + "id": "isaac-x", + "symbol": "isaacx", + "name": "Isaac X" + }, + { + "id": "isengard-nft-marketplace", + "symbol": "iset-84e55e", + "name": "Isengard NFT Marketplace" + }, + { + "id": "ishares-20-year-treasury-bond-etf-ondo-tokenized-etf", + "symbol": "tlton", + "name": "iShares 20+ Year Treasury Bond ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-core-msci-eafe-etf-ondo-tokenized-etf", + "symbol": "iefaon", + "name": "iShares Core MSCI EAFE ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-core-msci-emerging-markets-etf-ondo-tokenized-etf", + "symbol": "iemgon", + "name": "iShares Core MSCI Emerging Markets ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-core-s-p-500-etf-ondo-tokenized-etf", + "symbol": "ivvon", + "name": "iShares Core S&P 500 ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-core-s-p-midcap-etf-ondo-tokenized-etf", + "symbol": "ijhon", + "name": "iShares Core S&P MidCap ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-core-s-p-total-us-stock-market-etf-ondo-tokenized-etf", + "symbol": "itoton", + "name": "iShares Core S&P Total US Stock Market ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-core-us-aggregate-bond-etf-ondo-tokenized-etf", + "symbol": "aggon", + "name": "iShares Core US Aggregate Bond ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-gold-trust-ondo-tokenized-stock", + "symbol": "iauon", + "name": "iShares Gold Trust (Ondo Tokenized Stock)" + }, + { + "id": "ishares-msci-eafe-etf-ondo-tokenized-etf", + "symbol": "efaon", + "name": "iShares MSCI EAFE ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-msci-emerging-markets-etf-ondo-tokenized-etf", + "symbol": "eemon", + "name": "iShares MSCI Emerging Markets ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-msci-world-etf-tokenized-stock-defichain", + "symbol": "durth", + "name": "iShares MSCI World ETF Tokenized Stock Defichain" + }, + { + "id": "ishares-russell-1000-growth-etf-ondo-tokenized-etf", + "symbol": "iwfon", + "name": "iShares Russell 1000 Growth ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-russell-2000-etf-ondo-tokenized-etf", + "symbol": "iwmon", + "name": "iShares Russell 2000 ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-russell-2000-value-etf-ondo-tokenized-etf", + "symbol": "iwnon", + "name": "iShares Russell 2000 Value ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishares-silver-trust-ondo-tokenized-stock", + "symbol": "slvon", + "name": "iShares Silver Trust (Ondo Tokenized Stock)" + }, + { + "id": "ishares-tips-bond-etf-ondo-tokenized-etf", + "symbol": "tipon", + "name": "iShares TIPS Bond ETF (Ondo Tokenized ETF)" + }, + { + "id": "ishi", + "symbol": "ishi", + "name": "Ishi" + }, + { + "id": "ishi-go", + "symbol": "ishi", + "name": "Ishi Go" + }, + { + "id": "isiklar-coin", + "symbol": "isikc", + "name": "Isiklar Coin" + }, + { + "id": "iskra-token", + "symbol": "isk", + "name": "ISKRA Token" + }, + { + "id": "islamic-coin", + "symbol": "islm", + "name": "Islamic Coin" + }, + { + "id": "islander", + "symbol": "isa", + "name": "Islander" + }, + { + "id": "island-token", + "symbol": "island", + "name": "ISLAND Token" + }, + { + "id": "ispolink", + "symbol": "isp", + "name": "Ispolink" + }, + { + "id": "istanbul-basaksehir-fan-token", + "symbol": "ibfk", + "name": "İstanbul Başakşehir Fan Token" + }, + { + "id": "istarai-by-virtuals", + "symbol": "istar", + "name": "ISTARAI by Virtuals" + }, + { + "id": "italian-brainrot", + "symbol": "italianrot", + "name": "Italian Brainrot" + }, + { + "id": "italian-coin", + "symbol": "ita", + "name": "Italian Coin" + }, + { + "id": "italian-national-football-team-fan-token", + "symbol": "ita", + "name": "Italian National Football Team Fan Token" + }, + { + "id": "itam-games", + "symbol": "itam", + "name": "ITAM Games" + }, + { + "id": "itc", + "symbol": "itc", + "name": "ITC" + }, + { + "id": "it-coin", + "symbol": "it", + "name": "It Coin" + }, + { + "id": "itforthebiscuit", + "symbol": "risk", + "name": "ItForTheBiscuit" + }, + { + "id": "ithaca-protocol", + "symbol": "ithaca", + "name": "Ithaca Protocol" + }, + { + "id": "itheum", + "symbol": "itheum", + "name": "Itheum" + }, + { + "id": "ito", + "symbol": "$ito", + "name": "ITO" + }, + { + "id": "itronixai", + "symbol": "itxs", + "name": "ItronixAI" + }, + { + "id": "itsai", + "symbol": "sn32", + "name": "ItsAI" + }, + { + "id": "its-as-shrimple-as-that", + "symbol": "shrimple", + "name": "its as shrimple as that" + }, + { + "id": "it-s-just-a-dog", + "symbol": "dog", + "name": "It's just a Dog" + }, + { + "id": "its-just-a-dog", + "symbol": "dog", + "name": "It's just a Dog" + }, + { + "id": "it-s-just-a-rock", + "symbol": "rock", + "name": "Rock" + }, + { + "id": "it-s-so-over", + "symbol": "over", + "name": "It's so over" + }, + { + "id": "itty-bitty", + "symbol": "itty", + "name": "Itty Bitty" + }, + { + "id": "iusd", + "symbol": "iusd", + "name": "Indigo Protocol iUSD" + }, + { + "id": "ivault", + "symbol": "ivt", + "name": "ivault" + }, + { + "id": "ivendpay", + "symbol": "ivpay", + "name": "IVPAY" + }, + { + "id": "ivipcoin", + "symbol": "ivip", + "name": "iVipCoin" + }, + { + "id": "ivy-2", + "symbol": "ivy", + "name": "IVY" + }, + { + "id": "i-wish-i-held", + "symbol": "regret", + "name": "I wish I held" + }, + { + "id": "ixfi", + "symbol": "ixfi", + "name": "IXFI" + }, + { + "id": "ixicash", + "symbol": "ixi", + "name": "IXI" + }, + { + "id": "ixirswap", + "symbol": "ixir", + "name": "IXIR" + }, + { + "id": "ixo", + "symbol": "ixo", + "name": "IXO" + }, + { + "id": "ixorapad", + "symbol": "ixora", + "name": "IXORAPAD" + }, + { + "id": "ix-swap", + "symbol": "ixs", + "name": "IXS" + }, + { + "id": "ix-token", + "symbol": "ixt", + "name": "Planet IX" + }, + { + "id": "iykyk", + "symbol": "iykyk", + "name": "IYKYK" + }, + { + "id": "iyo-chan", + "symbol": "iyo", + "name": "IYO-CHAN" + }, + { + "id": "izky", + "symbol": "izky", + "name": "IZKY" + }, + { + "id": "izumi-bond-usd", + "symbol": "iusd", + "name": "iZUMi Bond USD" + }, + { + "id": "izumi-chan", + "symbol": "izumi", + "name": "Izumi-chan" + }, + { + "id": "izumi-finance", + "symbol": "izi", + "name": "iZUMi Finance" + }, + { + "id": "izzy", + "symbol": "izzy", + "name": "Izzy" + }, + { + "id": "izzy-2", + "symbol": "izzy", + "name": "Izzy" + }, + { + "id": "j3ff-by-virtuals", + "symbol": "j3ff", + "name": "J3FF by Virtuals" + }, + { + "id": "jace", + "symbol": "jace", + "name": "Jace" + }, + { + "id": "jack", + "symbol": "jack", + "name": "JACK" + }, + { + "id": "jack-2", + "symbol": "jack", + "name": "JACK" + }, + { + "id": "jack-3", + "symbol": "jack", + "name": "JACK" + }, + { + "id": "jackal-protocol", + "symbol": "jkl", + "name": "Jackal Protocol" + }, + { + "id": "jackpool-finance", + "symbol": "jfi", + "name": "JackPool.finance" + }, + { + "id": "jackpot-on-solana", + "symbol": "jackpot", + "name": "Jackpot on Solana" + }, + { + "id": "jack-potts-by-virtuals", + "symbol": "jack", + "name": "Jack Potts by Virtuals" + }, + { + "id": "jack-the-goat", + "symbol": "jack", + "name": "Jack The Goat" + }, + { + "id": "jacky", + "symbol": "$jacky", + "name": "jacky" + }, + { + "id": "jade", + "symbol": "jade", + "name": "DeFi Kingdoms Jade" + }, + { + "id": "jade-city-token", + "symbol": "jct", + "name": "Jade City Token" + }, + { + "id": "jade-currency", + "symbol": "jade", + "name": "Jade Currency" + }, + { + "id": "jager-hunter", + "symbol": "jager", + "name": "Jager Hunter" + }, + { + "id": "jaiho-crypto", + "symbol": "jaiho", + "name": "Jaiho Crypto" + }, + { + "id": "jaihoz", + "symbol": "jaihoz", + "name": "Jaihoz by Virtuals" + }, + { + "id": "jailbreakme", + "symbol": "jail", + "name": "JailbreakMe" + }, + { + "id": "jail-cat", + "symbol": "cuff", + "name": "Jail Cat" + }, + { + "id": "jak", + "symbol": "jak", + "name": "JAK" + }, + { + "id": "jake", + "symbol": "jake", + "name": "Jake" + }, + { + "id": "jake-newman-enterprises", + "symbol": "jne", + "name": "Jake Newman Enterprises" + }, + { + "id": "jakpot-games", + "symbol": "jakpot", + "name": "Jakpot Games" + }, + { + "id": "jambo", + "symbol": "j", + "name": "Jambo" + }, + { + "id": "jambo-2", + "symbol": "jambo", + "name": "JAMBO" + }, + { + "id": "jam-cat", + "symbol": "jam", + "name": "jam cat" + }, + { + "id": "janet", + "symbol": "janet", + "name": "Janet" + }, + { + "id": "jani", + "symbol": "jani", + "name": "JANI" + }, + { + "id": "janitooor", + "symbol": "$jani", + "name": "janitooor" + }, + { + "id": "janitor", + "symbol": "janitor", + "name": "Janitor" + }, + { + "id": "janny", + "symbol": "janny", + "name": "Janny" + }, + { + "id": "janro-the-rat", + "symbol": "janro", + "name": "Janro The Rat" + }, + { + "id": "janus-henderson-anemoy-aaa-clo-fund", + "symbol": "jaaa", + "name": "Janus Henderson Anemoy AAA CLO Fund" + }, + { + "id": "janus-henderson-anemoy-treasury-fund", + "symbol": "jtrsy", + "name": "Janus Henderson Anemoy Treasury Fund" + }, + { + "id": "japan-coin", + "symbol": "japan", + "name": "Japan Coin" + }, + { + "id": "japanese-pygmy-hippo", + "symbol": "uta", + "name": "Japanese Pygmy Hippo" + }, + { + "id": "japan-open-chain", + "symbol": "joc", + "name": "Japan Open Chain" + }, + { + "id": "jarvis-2", + "symbol": "jarvis", + "name": "Jarvis" + }, + { + "id": "jarvis-3", + "symbol": "jarvis", + "name": "Jarvis" + }, + { + "id": "jarvis-ai-2", + "symbol": "jarvis", + "name": "Jarvis AI" + }, + { + "id": "jarvis-reward-token", + "symbol": "jrt", + "name": "Jarvis Reward" + }, + { + "id": "jarvis-synthetic-euro", + "symbol": "jeur", + "name": "Jarvis Synthetic Euro" + }, + { + "id": "jarvis-synthetic-swiss-franc", + "symbol": "jchf", + "name": "Jarvis Synthetic Swiss Franc" + }, + { + "id": "jaseonmun", + "symbol": "jsm", + "name": "Joseon-Mun" + }, + { + "id": "jasmycoin", + "symbol": "jasmy", + "name": "JasmyCoin" + }, + { + "id": "jason-derulo", + "symbol": "jason", + "name": "Jason Derulo" + }, + { + "id": "jason-eth", + "symbol": "jason", + "name": "Jason (Eth)" + }, + { + "id": "jason-sol", + "symbol": "jason", + "name": "Jason (Sol)" + }, + { + "id": "jasper", + "symbol": "jasper", + "name": "Jasper" + }, + { + "id": "jasse-polluk", + "symbol": "polluk", + "name": "Jasse Polluk" + }, + { + "id": "jasset-jusd", + "symbol": "jusd", + "name": "jAsset jUSD" + }, + { + "id": "jatevo", + "symbol": "jtvo", + "name": "Jatevo" + }, + { + "id": "jatevo-ai-foundation", + "symbol": "jtvf", + "name": "Jatevo AI Foundation" + }, + { + "id": "javlis", + "symbol": "javlis", + "name": "Javlis" + }, + { + "id": "javsphere", + "symbol": "jav", + "name": "Javsphere" + }, + { + "id": "jaxinu", + "symbol": "jaxinu", + "name": "JAXInu" + }, + { + "id": "jax-network", + "symbol": "wjxn", + "name": "Jax.Network" + }, + { + "id": "jaypegggers", + "symbol": "jay", + "name": "Jaypeggers" + }, + { + "id": "jd-com-ondo-tokenized-stock", + "symbol": "jdon", + "name": "JD.com (Ondo Tokenized Stock)" + }, + { + "id": "jeeter-on-solana", + "symbol": "$jeet", + "name": "Jeeter on solana" + }, + { + "id": "jeeteroo", + "symbol": "jeet", + "name": "Jeeteroo" + }, + { + "id": "jeetjail", + "symbol": "jeet", + "name": "Jeetjail" + }, + { + "id": "jefe", + "symbol": "jefe", + "name": "Jefe [OLD]" + }, + { + "id": "jefe-3", + "symbol": "jefe", + "name": "Jefe" + }, + { + "id": "jeff", + "symbol": "jeff", + "name": "Jeff" + }, + { + "id": "jeff-2", + "symbol": "jeff", + "name": "JEFF" + }, + { + "id": "jeff-3", + "symbol": "jeff", + "name": "Jeff" + }, + { + "id": "jeffworld-token", + "symbol": "jeff", + "name": "JEFFWorld Token" + }, + { + "id": "jeje", + "symbol": "jj", + "name": "JEJE" + }, + { + "id": "jellffishcoin", + "symbol": "jellyfc", + "name": "JellfFishCoin" + }, + { + "id": "jelli", + "symbol": "jelli", + "name": "Jelli" + }, + { + "id": "jellification", + "symbol": "jelly", + "name": "Jellification" + }, + { + "id": "jelly-ai", + "symbol": "jai", + "name": "JELLY AI" + }, + { + "id": "jelly-my-jelly", + "symbol": "jellyjelly", + "name": "Jelly-My-Jelly" + }, + { + "id": "jelly-time", + "symbol": "jelly", + "name": "JELLY TIME" + }, + { + "id": "jellyverse", + "symbol": "jly", + "name": "Jellyverse" + }, + { + "id": "jen-hsun-huang", + "symbol": "jhh", + "name": "JHH" + }, + { + "id": "jenna", + "symbol": "jenna", + "name": "Jenna" + }, + { + "id": "jennyco", + "symbol": "jco", + "name": "JennyCo" + }, + { + "id": "jeo-boden", + "symbol": "boden", + "name": "Jeo Boden" + }, + { + "id": "jeo-rogen", + "symbol": "rogen", + "name": "jeo rogen" + }, + { + "id": "jerry-the-turtle-by-matt-furie", + "symbol": "jyai", + "name": "Jerry The Turtle By Matt Furie" + }, + { + "id": "jes", + "symbol": "jes", + "name": "jes" + }, + { + "id": "jester", + "symbol": "jest", + "name": "Jester" + }, + { + "id": "jesus-coin", + "symbol": "jesus", + "name": "Jesus Coin" + }, + { + "id": "jesus-on-sol", + "symbol": "jesus", + "name": "JESUS ON SOL" + }, + { + "id": "jet", + "symbol": "jet", + "name": "JET" + }, + { + "id": "jetcat", + "symbol": "jetcat", + "name": "Jetcat" + }, + { + "id": "jetset", + "symbol": "jts", + "name": "Jetset" + }, + { + "id": "jett-crypto", + "symbol": "jett", + "name": "JETT CRYPTO" + }, + { + "id": "jetton", + "symbol": "jetton", + "name": "JetTon Games" + }, + { + "id": "jetvoy", + "symbol": "voy", + "name": "Jetvoy" + }, + { + "id": "jewels-da-goat", + "symbol": "jewels", + "name": "Jewels Da Goat" + }, + { + "id": "jexchange", + "symbol": "jex", + "name": "JEXchange" + }, + { + "id": "jfin-coin", + "symbol": "jfin", + "name": "JFIN Coin" + }, + { + "id": "jiffpom", + "symbol": "jiff", + "name": "Jiffpom" + }, + { + "id": "jigsaw-usd", + "symbol": "jusd", + "name": "Jigsaw USD" + }, + { + "id": "jill-boden", + "symbol": "jillboden", + "name": "Jill Boden" + }, + { + "id": "jimmy-on-solana", + "symbol": "jimmy", + "name": "Jimmy on Solana" + }, + { + "id": "jindo-dog", + "symbol": "jindo", + "name": "Jindo Dog 진돗개" + }, + { + "id": "jindojinju", + "symbol": "jindojinju", + "name": "JindoJinju" + }, + { + "id": "jingle", + "symbol": "jingle", + "name": "Jingle" + }, + { + "id": "jinpeng", + "symbol": "jin", + "name": "JinPeng" + }, + { + "id": "jin-the-snake", + "symbol": "jin", + "name": "Jin the Snake" + }, + { + "id": "jinx", + "symbol": "jinx", + "name": "JINX" + }, + { + "id": "jito-governance-token", + "symbol": "jto", + "name": "Jito" + }, + { + "id": "jito-staked-sol", + "symbol": "jitosol", + "name": "Jito Staked SOL" + }, + { + "id": "jiwa-lucky-frog", + "symbol": "jiwa", + "name": "Jiwa Lucky Frog | 吉蛙" + }, + { + "id": "jizzrocket", + "symbol": "jizz", + "name": "JizzRocket" + }, + { + "id": "jjmoji", + "symbol": "jj", + "name": "Jjmoji" + }, + { + "id": "jjmoji-2", + "symbol": "jj", + "name": "JJmoji (Sol)" + }, + { + "id": "jlaunchpad", + "symbol": "jlp", + "name": "Jlaunchpad" + }, + { + "id": "jobchain", + "symbol": "job", + "name": "Jobchain" + }, + { + "id": "jobcoin-2", + "symbol": "jobcoin", + "name": "JOBCOIN" + }, + { + "id": "jobiess", + "symbol": "jobiess", + "name": "JobIess" + }, + { + "id": "jobless", + "symbol": "jobless", + "name": "jobless" + }, + { + "id": "jobseek", + "symbol": "$jobseek", + "name": "JOBSEEK" + }, + { + "id": "jocx", + "symbol": "jocx", + "name": "JOCX" + }, + { + "id": "joe", + "symbol": "joe", + "name": "JOE" + }, + { + "id": "joe-2", + "symbol": "joe", + "name": "Joe" + }, + { + "id": "joe-coin", + "symbol": "joe", + "name": "Joe Coin" + }, + { + "id": "joe-hat-token", + "symbol": "hat", + "name": "Joe Hat" + }, + { + "id": "joeing737", + "symbol": "jeoing737", + "name": "Joeing737" + }, + { + "id": "joel", + "symbol": "joel", + "name": "Joel" + }, + { + "id": "joey", + "symbol": "joey", + "name": "Joey" + }, + { + "id": "jogeco-dog", + "symbol": "jogeco", + "name": "Jogeco Dog" + }, + { + "id": "john-mcaifee", + "symbol": "mcaifee", + "name": "John McAIfee" + }, + { + "id": "johnny-suede", + "symbol": "suede", + "name": "Johnny Suede" + }, + { + "id": "john-pork", + "symbol": "pork", + "name": "john pork" + }, + { + "id": "john-pork-2", + "symbol": "pork", + "name": "John Pork" + }, + { + "id": "johnson-johnson-xstock", + "symbol": "jnjx", + "name": "Johnson & Johnson xStock" + }, + { + "id": "john-the-coin", + "symbol": "john", + "name": "John the Coin" + }, + { + "id": "john-tsubasa-rivals", + "symbol": "john", + "name": "John Tsubasa Rivals" + }, + { + "id": "joi", + "symbol": "joi", + "name": "Joi" + }, + { + "id": "jojo", + "symbol": "jojo", + "name": "JOJO" + }, + { + "id": "jojo-2", + "symbol": "jojo", + "name": "JOJO" + }, + { + "id": "jojo-3", + "symbol": "jojo", + "name": "JOJO" + }, + { + "id": "jojoworld", + "symbol": "jojo", + "name": "JojoWorld" + }, + { + "id": "joke", + "symbol": "joke", + "name": "JOKE" + }, + { + "id": "joker-2", + "symbol": "joker", + "name": "Joker" + }, + { + "id": "joker-3", + "symbol": "joker", + "name": "JOKER" + }, + { + "id": "jokinthebox", + "symbol": "jok", + "name": "JokInTheBox" + }, + { + "id": "joltify", + "symbol": "jolt", + "name": "Joltify" + }, + { + "id": "jomon", + "symbol": "jomon", + "name": "JOMON" + }, + { + "id": "jonah", + "symbol": "jonah", + "name": "Jonah" + }, + { + "id": "jones", + "symbol": "$jones", + "name": "$JONES" + }, + { + "id": "jones-dao", + "symbol": "jones", + "name": "Jones DAO" + }, + { + "id": "jones-glp", + "symbol": "jglp", + "name": "Jones GLP" + }, + { + "id": "jonny-five", + "symbol": "jfive", + "name": "Jonny Five" + }, + { + "id": "jooce", + "symbol": "jooce", + "name": "JOOCE" + }, + { + "id": "jooce-memecoin-index", + "symbol": "jmx", + "name": "JOOCE Memecoin Index" + }, + { + "id": "joram-poowel", + "symbol": "poowel", + "name": "JORAM POOWEL" + }, + { + "id": "jorkin", + "symbol": "jorkin", + "name": "Jorkin" + }, + { + "id": "jose", + "symbol": "jose", + "name": "Jose" + }, + { + "id": "joss-money", + "symbol": "jmoney", + "name": "Joss Money" + }, + { + "id": "joule-2", + "symbol": "joule", + "name": "Joule" + }, + { + "id": "journart", + "symbol": "jart", + "name": "JournArt [OLD]" + }, + { + "id": "jovjou", + "symbol": "jovjou", + "name": "JovJou" + }, + { + "id": "joyless-boy", + "symbol": "joboy", + "name": "Joyless Boy" + }, + { + "id": "joystick-labs", + "symbol": "jsk", + "name": "JoyStick" + }, + { + "id": "joystream", + "symbol": "joy", + "name": "Joystream" + }, + { + "id": "jp", + "symbol": "jp", + "name": "JP" + }, + { + "id": "jpeg-d", + "symbol": "jpeg", + "name": "JPEG'd (OLD)" + }, + { + "id": "jpg-store", + "symbol": "jpg", + "name": "JPG" + }, + { + "id": "jpmorgan-chase-ondo-tokenized-stock", + "symbol": "jpmon", + "name": "JPMorgan Chase (Ondo Tokenized Stock)" + }, + { + "id": "jpmorgan-chase-xstock", + "symbol": "jpmx", + "name": "JPMorgan Chase xStock" + }, + { + "id": "jpool", + "symbol": "jsol", + "name": "JPool Staked SOL" + }, + { + "id": "jpow-ai", + "symbol": "jpow", + "name": "JPOW AI" + }, + { + "id": "jpyc", + "symbol": "jpyc", + "name": "JPY Coin v1" + }, + { + "id": "jpycoin", + "symbol": "jpyc", + "name": "JPY Coin" + }, + { + "id": "jpy-coin", + "symbol": "jpyc", + "name": "JPY Coin" + }, + { + "id": "juan", + "symbol": "juan", + "name": "JUAN" + }, + { + "id": "judge-mental", + "symbol": "mental", + "name": "Judge MENTAL" + }, + { + "id": "juggernaut", + "symbol": "jgn", + "name": "Juggernaut" + }, + { + "id": "jugni", + "symbol": "jugni", + "name": "JUGNI" + }, + { + "id": "juice", + "symbol": "$juice", + "name": "Juice" + }, + { + "id": "juice-2", + "symbol": "juc", + "name": "Juice" + }, + { + "id": "juicebox", + "symbol": "jbx", + "name": "Juicebox" + }, + { + "id": "juice-finance", + "symbol": "juice", + "name": "Juice Finance" + }, + { + "id": "juicy", + "symbol": "juicy", + "name": "JUICY" + }, + { + "id": "juju", + "symbol": "juju", + "name": "JUJU" + }, + { + "id": "jujube", + "symbol": "jujube", + "name": "Jujube" + }, + { + "id": "juliaos", + "symbol": "jos", + "name": "JuliaOS" + }, + { + "id": "julia-swarm-syndicate", + "symbol": "jss", + "name": "Julia Swarm Syndicate" + }, + { + "id": "julswap", + "symbol": "juld", + "name": "JulSwap" + }, + { + "id": "jumoney", + "symbol": "jum", + "name": "Jumoney" + }, + { + "id": "jumpbox-eth", + "symbol": "jumpbox.eth", + "name": "JUMPBOX.ETH" + }, + { + "id": "jumptoken", + "symbol": "jmpt", + "name": "JumpToken" + }, + { + "id": "jungle-bay-memes", + "symbol": "jbm", + "name": "jungle bay memes" + }, + { + "id": "jungledoge", + "symbol": "jungle", + "name": "JungleDoge" + }, + { + "id": "jungle-labz", + "symbol": "jngl", + "name": "Jungle Labz" + }, + { + "id": "junior", + "symbol": "junior", + "name": "Junior" + }, + { + "id": "junkcoin", + "symbol": "jkc", + "name": "Junkcoin" + }, + { + "id": "junkcoin-doge-real-name", + "symbol": "junkcoin", + "name": "JunkCoin Doge Real Name" + }, + { + "id": "juno-network", + "symbol": "juno", + "name": "JUNO" + }, + { + "id": "jupiter", + "symbol": "jup", + "name": "Jupiter Project" + }, + { + "id": "jupiter-exchange-solana", + "symbol": "jup", + "name": "Jupiter" + }, + { + "id": "jupiter-perpetuals-liquidity-provider-token", + "symbol": "jlp", + "name": "Jupiter Perpetuals Liquidity Provider Token" + }, + { + "id": "jupiter-staked-sol", + "symbol": "jupsol", + "name": "Jupiter Staked SOL" + }, + { + "id": "juris-protocol", + "symbol": "juris", + "name": "Juris Protocol" + }, + { + "id": "ju-rugan", + "symbol": "ju", + "name": "ju rugan" + }, + { + "id": "jusd", + "symbol": "jusd", + "name": "JUSD" + }, + { + "id": "just", + "symbol": "jst", + "name": "JUST" + }, + { + "id": "just-a-based-guy", + "symbol": "basedguy", + "name": "Just a based guy" + }, + { + "id": "just-a-black-rock-on-base", + "symbol": "rock", + "name": "Just a Black Rock on Base" + }, + { + "id": "just-a-boring-guy", + "symbol": "boring guy", + "name": "Just A Boring Guy" + }, + { + "id": "just-a-chill-guy", + "symbol": "chillguy", + "name": "Just a chill guy (ETH)" + }, + { + "id": "just-a-circle", + "symbol": "crcl", + "name": "Just a Circle" + }, + { + "id": "just-a-coin", + "symbol": "coin", + "name": "Just a coin" + }, + { + "id": "just-a-dead-guy", + "symbol": "deadguy", + "name": "Just a dead guy" + }, + { + "id": "just-a-little-guy", + "symbol": "littleguy", + "name": "just a little guy" + }, + { + "id": "just-a-lotto", + "symbol": "$lotto", + "name": "Just a LOTTO" + }, + { + "id": "justanegg-2", + "symbol": "egg", + "name": "JustAnEgg" + }, + { + "id": "just-a-normie", + "symbol": "normie", + "name": "Just a Normie" + }, + { + "id": "just-a-pulse-guy", + "symbol": "pulseguy", + "name": "Just a pulse guy" + }, + { + "id": "just-a-shitcoin", + "symbol": "shitcoin", + "name": "just a shitcoin" + }, + { + "id": "just-buy-1bnb", + "symbol": "1bnb", + "name": "just buy 1bnb" + }, + { + "id": "just-buy-1-of-this-coin", + "symbol": "¥1", + "name": "just buy ¥1 of this coin" + }, + { + "id": "just-buy-1-worth-of-this-coin", + "symbol": "$1", + "name": "just buy $1 worth of this coin" + }, + { + "id": "just-can-t-prove-it", + "symbol": "detective", + "name": "Just can't prove it" + }, + { + "id": "justcoin", + "symbol": "just", + "name": "Justcoin" + }, + { + "id": "just-cuz", + "symbol": "cuz", + "name": "Just Cuz" + }, + { + "id": "just-elizabeth-cat", + "symbol": "elizabeth", + "name": "Just Elizabeth Cat" + }, + { + "id": "justice-for-honey", + "symbol": "$honey", + "name": "Justice For Honey" + }, + { + "id": "justice-for-iryna", + "symbol": "iryna", + "name": "Justice for Iryna" + }, + { + "id": "justice-for-peanut", + "symbol": "jfp", + "name": "JUSTICE FOR PEANUT" + }, + { + "id": "justice-for-pizza-guy", + "symbol": "pizzaguy", + "name": "Justice For Pizza Guy" + }, + { + "id": "justice-for-pnut-and-fred", + "symbol": "justice", + "name": "Justice for Pnut and Fred" + }, + { + "id": "justice-for-zachxbt", + "symbol": "zachxbt", + "name": "Justice for Zachxbt" + }, + { + "id": "just-juni-by-virtuals", + "symbol": "juni", + "name": "Just Juni by Virtuals" + }, + { + "id": "just-kira", + "symbol": "kirai", + "name": "JUST KIRA" + }, + { + "id": "just-memecoin", + "symbol": "memecoin", + "name": "just memecoin" + }, + { + "id": "just-memecoin-2", + "symbol": "memecoin", + "name": "just memecoin" + }, + { + "id": "justmoney-2", + "symbol": "jm", + "name": "JustMoney" + }, + { + "id": "just-mooncoin", + "symbol": "moon", + "name": "just mooncoin" + }, + { + "id": "just-need-some-rest", + "symbol": "rest", + "name": "Just need some rest" + }, + { + "id": "just-stablecoin", + "symbol": "usdj", + "name": "JUST Stablecoin" + }, + { + "id": "just-the-tip", + "symbol": "tips", + "name": "Just The Tip" + }, + { + "id": "justus", + "symbol": "jtt", + "name": "Justus" + }, + { + "id": "just-woot", + "symbol": "woot", + "name": "Just Woot" + }, + { + "id": "juventus-fan-token", + "symbol": "juv", + "name": "Juventus Fan Token" + }, + { + "id": "jvault-token", + "symbol": "jvt", + "name": "JVault Token" + }, + { + "id": "k21", + "symbol": "k21", + "name": "K21" + }, + { + "id": "k9-finance-dao", + "symbol": "knine", + "name": "K9 Finance DAO" + }, + { + "id": "k-9-killed-in-shootout", + "symbol": "titan", + "name": "K-9 Killed in Shootout" + }, + { + "id": "kabal", + "symbol": "rwt", + "name": "RWT" + }, + { + "id": "kabila", + "symbol": "kbl", + "name": "Kabila" + }, + { + "id": "kabochan", + "symbol": "kabo", + "name": "KaboChan" + }, + { + "id": "kaboom", + "symbol": "kaboom", + "name": "Kaboom" + }, + { + "id": "kabosu", + "symbol": "kabosu", + "name": "Kabosu" + }, + { + "id": "kabosu-3", + "symbol": "$kabosu", + "name": "Kabosu" + }, + { + "id": "kabosu-arbitrum", + "symbol": "kabosu", + "name": "Kabosu (Arbitrum)" + }, + { + "id": "kabosu-bnb", + "symbol": "kabosu", + "name": "Kabosu (BNB)" + }, + { + "id": "kabosu-erc20", + "symbol": "kabosu", + "name": "Kabosu ERC20" + }, + { + "id": "kabosu-inu", + "symbol": "kabosu", + "name": "Kabosu Inu" + }, + { + "id": "kabosu-kabosucoin-erc", + "symbol": "kabosu", + "name": "Kabosu" + }, + { + "id": "kabosu-on-sol", + "symbol": "kabosu", + "name": "Kabosu on SOL" + }, + { + "id": "kaby-arena", + "symbol": "kaby", + "name": "Kaby Arena" + }, + { + "id": "kaching", + "symbol": "kch", + "name": "Kaching" + }, + { + "id": "kadena", + "symbol": "kda", + "name": "Kadena" + }, + { + "id": "kaeru-the-frog", + "symbol": "kaeru", + "name": "Kaeru The Frog" + }, + { + "id": "kafenio-coin", + "symbol": "kfn", + "name": "Kafenio Coin" + }, + { + "id": "kafka-ai", + "symbol": "kafka", + "name": "KAFKA ai" + }, + { + "id": "kaga-no-fuuka-go-sapporo-kagasou", + "symbol": "estee", + "name": "Kaga No Fuuka Go Sapporo Kagasou" + }, + { + "id": "kage-network", + "symbol": "kage", + "name": "KAGE NETWORK" + }, + { + "id": "kai", + "symbol": "kai", + "name": "KAI" + }, + { + "id": "kaia", + "symbol": "kaia", + "name": "Kaia" + }, + { + "id": "kaia-bridged-usdt-kaia", + "symbol": "usdt", + "name": "Kaia Bridged USDT (Kaia)" + }, + { + "id": "kaijuno8", + "symbol": "kaiju", + "name": "KAIJUNO8" + }, + { + "id": "kai-ken", + "symbol": "kai", + "name": "Kai Ken" + }, + { + "id": "kaiko", + "symbol": "kai", + "name": "KAIKO" + }, + { + "id": "kailith", + "symbol": "kaily", + "name": "Kailith" + }, + { + "id": "kairos-sniper-bot", + "symbol": "kairos", + "name": "Kairos Sniper Bot" + }, + { + "id": "kaito", + "symbol": "kaito", + "name": "KAITO" + }, + { + "id": "kaizen", + "symbol": "kzen", + "name": "Kaizen.Finance" + }, + { + "id": "kaka", + "symbol": "kaka", + "name": "KAKA" + }, + { + "id": "kaka-the-cat", + "symbol": "kaka", + "name": "KAKA the cat" + }, + { + "id": "kakaxa", + "symbol": "kakaxa", + "name": "Kakaxa" + }, + { + "id": "kalao", + "symbol": "klo", + "name": "Kalao" + }, + { + "id": "kaleidocube", + "symbol": "$kalei", + "name": "KaleidoCube" + }, + { + "id": "kalichain", + "symbol": "kalis", + "name": "Kalichain" + }, + { + "id": "kalijo", + "symbol": "seed", + "name": "Kalijo" + }, + { + "id": "kalmar", + "symbol": "kalm", + "name": "KALM" + }, + { + "id": "kalycoin", + "symbol": "klc", + "name": "KalyChain" + }, + { + "id": "kamabla", + "symbol": "kamabla", + "name": "Kamabla" + }, + { + "id": "kamala-horris", + "symbol": "kama", + "name": "Kamala Horris" + }, + { + "id": "kambria", + "symbol": "kat", + "name": "Kambria" + }, + { + "id": "kame", + "symbol": "kame", + "name": "KAME" + }, + { + "id": "kamigotchi-onyx", + "symbol": "onyx", + "name": "ONYX" + }, + { + "id": "kamino", + "symbol": "kmno", + "name": "Kamino" + }, + { + "id": "kan", + "symbol": "kan", + "name": "KAN" + }, + { + "id": "kanagawa-nami", + "symbol": "okinami", + "name": "Kanagawa Nami" + }, + { + "id": "kanga-exchange", + "symbol": "kng", + "name": "Kanga Exchange" + }, + { + "id": "kangal", + "symbol": "kangal", + "name": "Kangal" + }, + { + "id": "kangamoon", + "symbol": "kang", + "name": "Kangamoon" + }, + { + "id": "kangarhold", + "symbol": "kanga", + "name": "Kangarhold" + }, + { + "id": "kangaroo-the-jumping-co-in", + "symbol": "$roo", + "name": "Kangaroo the Jumping Co​in" + }, + { + "id": "kango", + "symbol": "kango", + "name": "KANGO" + }, + { + "id": "kanstar", + "symbol": "$kanstar", + "name": "KANSTAR" + }, + { + "id": "kanye", + "symbol": "ye", + "name": "Kanye" + }, + { + "id": "kanzzai", + "symbol": "kaai", + "name": "KanzzAI" + }, + { + "id": "kapiplara", + "symbol": "kapi", + "name": "KapiPlara" + }, + { + "id": "kapi-plara", + "symbol": "kapi", + "name": "Kapi Plara" + }, + { + "id": "kapital-dao", + "symbol": "kap", + "name": "KAP Games" + }, + { + "id": "kappy", + "symbol": "kappy", + "name": "Kappy" + }, + { + "id": "kappy-2", + "symbol": "kappy", + "name": "KAPPY" + }, + { + "id": "kapsel", + "symbol": "kapsel", + "name": "KAPSEL" + }, + { + "id": "karasou", + "symbol": "intellique", + "name": "KARASOU" + }, + { + "id": "karastar-umy", + "symbol": "umy", + "name": "KaraStar UMY" + }, + { + "id": "karat", + "symbol": "kat", + "name": "Karat" + }, + { + "id": "karate-combat", + "symbol": "karate", + "name": "Karate Combat" + }, + { + "id": "karat-galaxy", + "symbol": "karat", + "name": "KARAT Galaxy" + }, + { + "id": "karbo", + "symbol": "krb", + "name": "Karbo" + }, + { + "id": "kardiachain", + "symbol": "kai", + "name": "KardiaChain" + }, + { + "id": "karen", + "symbol": "karen", + "name": "Karen" + }, + { + "id": "karencoin", + "symbol": "karen", + "name": "KarenCoin" + }, + { + "id": "karen-onchain", + "symbol": "karen", + "name": "KAREN ONCHAIN" + }, + { + "id": "karlsen", + "symbol": "kls", + "name": "Karlsen" + }, + { + "id": "karmacoin", + "symbol": "karma", + "name": "KarmaCoin" + }, + { + "id": "karmacoin-2", + "symbol": "karma", + "name": "Karmacoin" + }, + { + "id": "karmaverse", + "symbol": "knot", + "name": "Karmaverse" + }, + { + "id": "karmaverse-by-virtuals", + "symbol": "karma", + "name": "KarmaVerse by Virtuals" + }, + { + "id": "karrat", + "symbol": "karrat", + "name": "Karrat" + }, + { + "id": "kartel", + "symbol": "kartel", + "name": "Kartel" + }, + { + "id": "karum", + "symbol": "karum", + "name": "Karum" + }, + { + "id": "karura", + "symbol": "kar", + "name": "Karura" + }, + { + "id": "kaspa", + "symbol": "kas", + "name": "Kaspa" + }, + { + "id": "kasper", + "symbol": "kasper", + "name": "Kasper" + }, + { + "id": "kaspy", + "symbol": "kaspy", + "name": "Kaspy" + }, + { + "id": "kassandra", + "symbol": "kacy", + "name": "Kassandra" + }, + { + "id": "kasta", + "symbol": "kasta", + "name": "Kasta" + }, + { + "id": "kat", + "symbol": "kat", + "name": "KAT" + }, + { + "id": "katana-bridged-pol-katana", + "symbol": "pol", + "name": "Katana Bridged POL (Katana)" + }, + { + "id": "katana-inu", + "symbol": "kata", + "name": "Katana Inu" + }, + { + "id": "katana-network-token", + "symbol": "kat", + "name": "Katana Network Token" + }, + { + "id": "katchusol", + "symbol": "katchu", + "name": "KatchuSol" + }, + { + "id": "kattana", + "symbol": "ktn", + "name": "Kattana" + }, + { + "id": "kava", + "symbol": "kava", + "name": "Kava" + }, + { + "id": "kava-lend", + "symbol": "hard", + "name": "Kava Lend" + }, + { + "id": "kavari", + "symbol": "kavr", + "name": "Kavari" + }, + { + "id": "kava-swap", + "symbol": "swp", + "name": "Kava Swap" + }, + { + "id": "kawakami-2", + "symbol": "kami", + "name": "Kawakami" + }, + { + "id": "kawz", + "symbol": "kawz", + "name": "Kawz" + }, + { + "id": "kazonomics", + "symbol": "kazonomics", + "name": "kazonomics" + }, + { + "id": "kcal", + "symbol": "kcal", + "name": "KCAL" + }, + { + "id": "kcc-bridged-weth-kucoin-community-chain", + "symbol": "weth", + "name": "KCC Bridged WETH (Kucoin Community Chain)" + }, + { + "id": "kccpad", + "symbol": "kccpad", + "name": "KCCPad" + }, + { + "id": "kdag", + "symbol": "kdag", + "name": "King DAG" + }, + { + "id": "kdr", + "symbol": "kdr", + "name": "KDR" + }, + { + "id": "keanu", + "symbol": "knu", + "name": "Keanu" + }, + { + "id": "kebapp", + "symbol": "kebabs", + "name": "KebApp" + }, + { + "id": "keefer-bunny", + "symbol": "kfr", + "name": "Keefer Bunny" + }, + { + "id": "keep3rv1", + "symbol": "kp3r", + "name": "Keep3rV1" + }, + { + "id": "keep-finance", + "symbol": "keep", + "name": "Keep Finance" + }, + { + "id": "keep-gambling", + "symbol": "gamble", + "name": "Keep Gambling" + }, + { + "id": "keep-network", + "symbol": "keep", + "name": "Keep Network" + }, + { + "id": "keeshond-2", + "symbol": "kee", + "name": "Keeshond" + }, + { + "id": "keeta", + "symbol": "kta", + "name": "Keeta" + }, + { + "id": "kei-finance", + "symbol": "kei", + "name": "KEI Finance" + }, + { + "id": "keira", + "symbol": "keira", + "name": "Keira" + }, + { + "id": "keiro", + "symbol": "keiro", + "name": "KEIRO" + }, + { + "id": "kei-stablecoin", + "symbol": "kei", + "name": "KEI Stablecoin" + }, + { + "id": "kek", + "symbol": "keke", + "name": "KEK" + }, + { + "id": "kek-2", + "symbol": "$kek", + "name": "$KEK" + }, + { + "id": "kek-3", + "symbol": "kek", + "name": "Kek" + }, + { + "id": "kek-4", + "symbol": "kek", + "name": "KEK" + }, + { + "id": "kek-5", + "symbol": "kek", + "name": "Kek" + }, + { + "id": "kekcoin-eth", + "symbol": "kek", + "name": "Kekcoin (ETH)" + }, + { + "id": "keke", + "symbol": "keke", + "name": "Keke" + }, + { + "id": "keke-inu", + "symbol": "keke", + "name": "Keke Inu" + }, + { + "id": "keke-terminal", + "symbol": "keke", + "name": "KEKE Terminal" + }, + { + "id": "kekistan", + "symbol": "kek", + "name": "Kekistan" + }, + { + "id": "kekius", + "symbol": "kekius", + "name": "KEKIUS" + }, + { + "id": "kekius-maximus", + "symbol": "kekius", + "name": "Kekius Maximus" + }, + { + "id": "kekius-maximus-2", + "symbol": "km", + "name": "Kekius Maximus" + }, + { + "id": "kekius-maximus-3", + "symbol": "kekius", + "name": "Kekius Maximus" + }, + { + "id": "kekius-maximus-4", + "symbol": "km", + "name": "Kekius Maximus" + }, + { + "id": "kekius-maximus-5", + "symbol": "$kekius", + "name": "Kekius Maximus" + }, + { + "id": "kekius-maximusa", + "symbol": "kekiusa", + "name": "Kekius Maximusa" + }, + { + "id": "keko", + "symbol": "keko", + "name": "Keko" + }, + { + "id": "kek-on-sol", + "symbol": "kek", + "name": "Kek on Sol" + }, + { + "id": "kelp-dao", + "symbol": "kelp", + "name": "Kelp DAO" + }, + { + "id": "kelpdao-bridged-rseth-arbitrum", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Arbitrum)" + }, + { + "id": "kelpdao-bridged-rseth-base", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Base)" + }, + { + "id": "kelpdao-bridged-rseth-blast", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Blast)" + }, + { + "id": "kelpdao-bridged-rseth-mode", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Mode)" + }, + { + "id": "kelpdao-bridged-rseth-scroll", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Scroll)" + }, + { + "id": "kelpdao-bridged-rseth-unichain", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Unichain)" + }, + { + "id": "kelp-dao-restaked-eth", + "symbol": "rseth", + "name": "Kelp DAO Restaked ETH" + }, + { + "id": "kelp-gain", + "symbol": "ageth", + "name": "Kelp Gain" + }, + { + "id": "kelvpn", + "symbol": "kel", + "name": "KelVPN" + }, + { + "id": "ken", + "symbol": "ken", + "name": "Ken" + }, + { + "id": "kenda", + "symbol": "knda", + "name": "Kenda" + }, + { + "id": "kendo-ai", + "symbol": "$realkendo", + "name": "Kendo AI" + }, + { + "id": "kendu-inu", + "symbol": "kendu", + "name": "Kendu" + }, + { + "id": "kendu-inu-2", + "symbol": "kendu", + "name": "Kendu Inu" + }, + { + "id": "kenesis", + "symbol": "ken", + "name": "KENESIS" + }, + { + "id": "kenji", + "symbol": "kenji", + "name": "Kenji" + }, + { + "id": "kensei", + "symbol": "kensei", + "name": "Kensei" + }, + { + "id": "kensetsu-token", + "symbol": "ken", + "name": "Kensetsu Token" + }, + { + "id": "kenshi-2", + "symbol": "kns", + "name": "Kenshi" + }, + { + "id": "kenya-digital-token", + "symbol": "kdt", + "name": "Kenya Digital Token" + }, + { + "id": "kepithor", + "symbol": "kepi", + "name": "Kepithor" + }, + { + "id": "kepler", + "symbol": "avia", + "name": "Kepler" + }, + { + "id": "keptchain", + "symbol": "kept", + "name": "KeptChain" + }, + { + "id": "kerc", + "symbol": "kerc", + "name": "KERC" + }, + { + "id": "keren", + "symbol": "keren", + "name": "Keren" + }, + { + "id": "kermit-cc0e2d66-4b46-4eaf-9f4e-5caa883d1c09", + "symbol": "kermit", + "name": "Kermit" + }, + { + "id": "kernel-2", + "symbol": "kernel", + "name": "KernelDAO" + }, + { + "id": "kerosene", + "symbol": "kerosene", + "name": "Kerosene" + }, + { + "id": "ket", + "symbol": "ket", + "name": "Ket" + }, + { + "id": "ketaicoin", + "symbol": "ethereum", + "name": "Ketaicoin" + }, + { + "id": "ketamine-cat", + "symbol": "ket", + "name": "Ketamine Cat" + }, + { + "id": "ketnipz", + "symbol": "nipz", + "name": "Ketnipz" + }, + { + "id": "kevin-2", + "symbol": "kevin", + "name": "Kevin" + }, + { + "id": "kevin-3", + "symbol": "kevin", + "name": "KEVIN" + }, + { + "id": "key-2", + "symbol": "key", + "name": "KEY" + }, + { + "id": "keyboard-cat", + "symbol": "keycat", + "name": "Keyboard Cat" + }, + { + "id": "keyboard-cat-base", + "symbol": "keycat", + "name": "Keyboard Cat (Base)" + }, + { + "id": "keydog", + "symbol": "$keydog", + "name": "KEYDOG" + }, + { + "id": "keyfi", + "symbol": "keyfi", + "name": "KeyFi" + }, + { + "id": "keyoflife", + "symbol": "kol", + "name": "KeyOfLife" + }, + { + "id": "keysatin", + "symbol": "keysatin", + "name": "KeySATIN" + }, + { + "id": "keys-token", + "symbol": "keys", + "name": "Keys" + }, + { + "id": "kgen", + "symbol": "kgen", + "name": "KGeN" + }, + { + "id": "khadija", + "symbol": "kha", + "name": "KHADIJA" + }, + { + "id": "khamoo", + "symbol": "$khamoo", + "name": "Khamoo" + }, + { + "id": "khaokheowzoo", + "symbol": "kheowzoo", + "name": "khaokheowzoo" + }, + { + "id": "ki", + "symbol": "xki", + "name": "KI" + }, + { + "id": "kiatoken", + "symbol": "kia", + "name": "KIATOKEN" + }, + { + "id": "kiba-inu", + "symbol": "kiba", + "name": "Kiba Inu" + }, + { + "id": "kibble", + "symbol": "kibble", + "name": "Kibble" + }, + { + "id": "kibho-coin", + "symbol": "kbc", + "name": "Kibho Coin" + }, + { + "id": "kibo-2", + "symbol": "kibo", + "name": "KIBO" + }, + { + "id": "kiboshib", + "symbol": "kibshi", + "name": "KiboShib" + }, + { + "id": "kick", + "symbol": "kick", + "name": "Kick" + }, + { + "id": "kickpad", + "symbol": "kpad", + "name": "KickPad" + }, + { + "id": "kigu", + "symbol": "kigu", + "name": "KIGU" + }, + { + "id": "kiirocoin", + "symbol": "kiiro", + "name": "Kiirocoin" + }, + { + "id": "kiki-2", + "symbol": "kiki", + "name": "KIKICat" + }, + { + "id": "kiki-sol", + "symbol": "kiki", + "name": "kiki (SOL)" + }, + { + "id": "kill-big-beautiful-bill", + "symbol": "kbbb", + "name": "KILL BIG BEAUTIFUL BILL" + }, + { + "id": "killer-bean", + "symbol": "bean", + "name": "Killer Bean" + }, + { + "id": "killer-bean-2", + "symbol": "bean", + "name": "Bean Coin" + }, + { + "id": "kill-zero", + "symbol": "k0", + "name": "Kill Zero" + }, + { + "id": "kiloex", + "symbol": "kilo", + "name": "KiloEx" + }, + { + "id": "kilopi-8ee65670-efa5-4414-b9b4-1a1240415d74", + "symbol": "lop", + "name": "Kilopi" + }, + { + "id": "kilt-protocol-2", + "symbol": "kilt", + "name": "KILT Protocol" + }, + { + "id": "kima", + "symbol": "kima", + "name": "Kima Network" + }, + { + "id": "kimbo", + "symbol": "kimbo", + "name": "Kimbo" + }, + { + "id": "kimchi-finance", + "symbol": "kimchi", + "name": "KIMCHI.finance" + }, + { + "id": "kim-token", + "symbol": "kim", + "name": "KIM Token" + }, + { + "id": "kin", + "symbol": "kin", + "name": "Kin" + }, + { + "id": "kindnesscoin", + "symbol": "kind", + "name": "KindnessCoin" + }, + { + "id": "kindness-for-the-soul-soul", + "symbol": "soul", + "name": "Kindness For The Soul SOUL" + }, + { + "id": "kine-protocol", + "symbol": "kine", + "name": "Kine Protocol" + }, + { + "id": "kinesis-bridged-kda-ethereum", + "symbol": "kb-kda", + "name": "Kinesis Bridged KDA (Ethereum)" + }, + { + "id": "kinesis-gold", + "symbol": "kau", + "name": "Kinesis Gold" + }, + { + "id": "kinesis-silver", + "symbol": "kag", + "name": "Kinesis Silver" + }, + { + "id": "kinesis-velocity-token", + "symbol": "kvt", + "name": "Kinesis Velocity Token" + }, + { + "id": "kinetic-staked-hype", + "symbol": "khype", + "name": "Kinetiq Staked HYPE" + }, + { + "id": "kinetiq", + "symbol": "kntq", + "name": "Kinetiq" + }, + { + "id": "kinetiq-earn-vault", + "symbol": "vkhype", + "name": "Kinetiq Earn Vault" + }, + { + "id": "kinetixfi", + "symbol": "kai", + "name": "Kinetix Finance Token" + }, + { + "id": "king-2", + "symbol": "king", + "name": "KING Coin" + }, + { + "id": "king-3", + "symbol": "king", + "name": "KING" + }, + { + "id": "king-bonk", + "symbol": "kingbonk", + "name": "King Bonk" + }, + { + "id": "king-cat", + "symbol": "kingcat", + "name": "King Cat" + }, + { + "id": "kingdom-game-4-0", + "symbol": "kdg", + "name": "KingdomStarter" + }, + { + "id": "kingdomx", + "symbol": "kt", + "name": "KingdomX" + }, + { + "id": "king-forever", + "symbol": "kfr", + "name": "KING FOREVER" + }, + { + "id": "king-kovu", + "symbol": "lazy", + "name": "King Kovu" + }, + { + "id": "king-myco", + "symbol": "$myco", + "name": "KING MYCO" + }, + { + "id": "kingnet-ai", + "symbol": "knet", + "name": "Kingnet AI" + }, + { + "id": "king-of-legends-2", + "symbol": "kol", + "name": "King of Legends" + }, + { + "id": "king-of-meme", + "symbol": "lion", + "name": "King Of Meme" + }, + { + "id": "king-of-memes", + "symbol": "king", + "name": "King Of Memes" + }, + { + "id": "king-of-radfi", + "symbol": "radking", + "name": "King of Radfi" + }, + { + "id": "king-shiba", + "symbol": "kingshib", + "name": "King Shiba" + }, + { + "id": "kingshit", + "symbol": "kingshit", + "name": "Kingshit" + }, + { + "id": "king-sugar-glider", + "symbol": "ksg", + "name": "King Sugar Glider" + }, + { + "id": "kingyton", + "symbol": "kingy", + "name": "KingyTON" + }, + { + "id": "kini", + "symbol": "kini", + "name": "Kini" + }, + { + "id": "kinka", + "symbol": "xnk", + "name": "Kinka" + }, + { + "id": "kino-2", + "symbol": "kino", + "name": "KINO" + }, + { + "id": "kinto", + "symbol": "k", + "name": "Kinto" + }, + { + "id": "kintsugi", + "symbol": "kint", + "name": "Kintsugi" + }, + { + "id": "kintsugi-btc", + "symbol": "kbtc", + "name": "Kintsugi BTC" + }, + { + "id": "kintsu-staked-hype", + "symbol": "shype", + "name": "Kintsu Staked Hype" + }, + { + "id": "kinza-babylon-staked-btc", + "symbol": "kbtc", + "name": "Kinza Babylon Staked BTC" + }, + { + "id": "kip", + "symbol": "kip", + "name": "KIP" + }, + { + "id": "kippahstayson-sol", + "symbol": "kippah", + "name": "Kippahstayson.sol" + }, + { + "id": "kira-3", + "symbol": "kira", + "name": "KIRA" + }, + { + "id": "kira-ai", + "symbol": "kira", + "name": "Kira AI" + }, + { + "id": "kirakuru", + "symbol": "kra", + "name": "KiraKuru" + }, + { + "id": "kira-network", + "symbol": "kex", + "name": "KIRA Network" + }, + { + "id": "kira-the-injective-cat", + "symbol": "kira", + "name": "Kira the Injective Cat" + }, + { + "id": "kiri", + "symbol": "kiri", + "name": "KIRI" + }, + { + "id": "kishu-inu", + "symbol": "kishu", + "name": "Kishu Inu" + }, + { + "id": "kissan", + "symbol": "ksn", + "name": "Kissan" + }, + { + "id": "kita", + "symbol": "$kita", + "name": "KITA" + }, + { + "id": "kita-2", + "symbol": "$kita", + "name": "KITA" + }, + { + "id": "kitcoin-2", + "symbol": "kitty", + "name": "KitCoin" + }, + { + "id": "kite", + "symbol": "kite", + "name": "Kite" + }, + { + "id": "kite-2", + "symbol": "kite", + "name": "Kite" + }, + { + "id": "kiteai", + "symbol": "kiteai", + "name": "KITEAI" + }, + { + "id": "kith-gil", + "symbol": "gil", + "name": "Kith Gil" + }, + { + "id": "kitnet-token", + "symbol": "kitnet", + "name": "KITNET TOKEN" + }, + { + "id": "kito", + "symbol": "kito", + "name": "KITO" + }, + { + "id": "kitsu", + "symbol": "kitsu", + "name": "Kitsu" + }, + { + "id": "kitsumon", + "symbol": "$kmc", + "name": "Kitsumon" + }, + { + "id": "kitsune", + "symbol": "kit", + "name": "Kitsune" + }, + { + "id": "kitsune-2", + "symbol": "$kit", + "name": "Kitsune" + }, + { + "id": "kittee-2", + "symbol": "kte", + "name": "KITTEE" + }, + { + "id": "kittehcoin-2", + "symbol": "meow", + "name": "KittehCoin" + }, + { + "id": "kittehcoin-3", + "symbol": "meow", + "name": "KittehCoin" + }, + { + "id": "kittekoin", + "symbol": "koin", + "name": "Kittekoin" + }, + { + "id": "kittenfinance", + "symbol": "kif", + "name": "KittenFinance" + }, + { + "id": "kitten-haimer", + "symbol": "khai", + "name": "Kitten Haimer" + }, + { + "id": "kittenswap", + "symbol": "kitten", + "name": "Kittenswap" + }, + { + "id": "kitten-wif-hat", + "symbol": "kwif", + "name": "Kitten Wif Hat" + }, + { + "id": "kitti", + "symbol": "kitti", + "name": "KITTI" + }, + { + "id": "kitty-ai", + "symbol": "kitty", + "name": "Kitty AI" + }, + { + "id": "kittycake", + "symbol": "kcake", + "name": "KittyCake" + }, + { + "id": "kitty-coin-solana", + "symbol": "kitty", + "name": "Kitty Coin Solana" + }, + { + "id": "kitty-kult", + "symbol": "kult", + "name": "Kitty Kult" + }, + { + "id": "kittyminecoin", + "symbol": "kmc", + "name": "KittyMineCoin" + }, + { + "id": "kitty-run", + "symbol": "ktr", + "name": "Kitty Run" + }, + { + "id": "kittyspin", + "symbol": "ks", + "name": "kittyspin" + }, + { + "id": "kittywifhat", + "symbol": "kwh", + "name": "Kittywifhat" + }, + { + "id": "kiwi-2", + "symbol": "kiwi", + "name": "Kiwi" + }, + { + "id": "kiwi-meme", + "symbol": "kiwi", + "name": "Kiwi" + }, + { + "id": "kizuna", + "symbol": "kizuna", + "name": "Kizuna" + }, + { + "id": "klaus", + "symbol": "klaus", + "name": "KLAUS" + }, + { + "id": "klaydice", + "symbol": "dice", + "name": "Klaydice" + }, + { + "id": "klayr", + "symbol": "kly", + "name": "Klayr" + }, + { + "id": "klayswap-protocol", + "symbol": "ksp", + "name": "KlaySwap Protocol" + }, + { + "id": "klaytn-dai", + "symbol": "kdai", + "name": "Klaytn Dai" + }, + { + "id": "klay-token", + "symbol": "klay", + "name": "Klaytn" + }, + { + "id": "klaytu", + "symbol": "ktu", + "name": "Klaytu" + }, + { + "id": "kled-ai", + "symbol": "kled", + "name": "Kled AI" + }, + { + "id": "kleekai", + "symbol": "klee", + "name": "KleeKai" + }, + { + "id": "kleros", + "symbol": "pnk", + "name": "Kleros" + }, + { + "id": "kleva", + "symbol": "kleva", + "name": "KLEVA" + }, + { + "id": "klever", + "symbol": "klv", + "name": "Klever" + }, + { + "id": "klever-finance", + "symbol": "kfi", + "name": "Klever Finance" + }, + { + "id": "kleverkid-coin", + "symbol": "kid", + "name": "Kleverkid Coin" + }, + { + "id": "klima-dao", + "symbol": "klima", + "name": "KlimaDAO [OLD]" + }, + { + "id": "klima-dao-2", + "symbol": "k2", + "name": "Klima Protocol K2" + }, + { + "id": "klima-dao-old", + "symbol": "kvcm", + "name": "Klima Protocol kVCM" + }, + { + "id": "klink-finance", + "symbol": "klink", + "name": "Klink Finance" + }, + { + "id": "klip-ai", + "symbol": "klip", + "name": "KLIP AI" + }, + { + "id": "klout-bet", + "symbol": "klout", + "name": "klout.bet" + }, + { + "id": "knight", + "symbol": "knight", + "name": "Darkness" + }, + { + "id": "knightswap", + "symbol": "knight", + "name": "KnightSwap" + }, + { + "id": "knit-finance", + "symbol": "kft", + "name": "Knit Finance" + }, + { + "id": "knob", + "symbol": "knob", + "name": "KNOB$" + }, + { + "id": "knockout-games", + "symbol": "gg", + "name": "KnockOut Games" + }, + { + "id": "knot-diffie-hellman", + "symbol": "knot", + "name": "Knot Diffie-Hellman" + }, + { + "id": "know-2", + "symbol": "know", + "name": "KNOW" + }, + { + "id": "knox-dollar", + "symbol": "knox", + "name": "KNOX Dollar" + }, + { + "id": "knut-from-zoo", + "symbol": "knut", + "name": "Knut From Zoo" + }, + { + "id": "knuxx", + "symbol": "knuxx", + "name": "KNUXX" + }, + { + "id": "koala", + "symbol": "koala", + "name": "Koala" + }, + { + "id": "koala-ai", + "symbol": "koko", + "name": "KOALA AI" + }, + { + "id": "koala-governance-token", + "symbol": "koala", + "name": "Koala Governance Token" + }, + { + "id": "koba", + "symbol": "koba", + "name": "KOBA" + }, + { + "id": "koban", + "symbol": "koban", + "name": "KOBAN" + }, + { + "id": "kobe-the-shiba-inu", + "symbol": "kobe", + "name": "Kobe the Shiba Inu" + }, + { + "id": "kobushi", + "symbol": "kobushi", + "name": "Kobushi" + }, + { + "id": "kochi-inu", + "symbol": "kochi", + "name": "Kochi Inu" + }, + { + "id": "kochi-ken-eth", + "symbol": "kochi", + "name": "Kochi Ken ETH" + }, + { + "id": "kofi-aptos", + "symbol": "kapt", + "name": "Kofi Aptos" + }, + { + "id": "kogecoin", + "symbol": "kogecoin", + "name": "KogeCoin" + }, + { + "id": "kogin-by-virtuals", + "symbol": "kogin", + "name": "Kogin by Virtuals" + }, + { + "id": "kohaku", + "symbol": "kohaku", + "name": "KOHAKU" + }, + { + "id": "kohenoor", + "symbol": "ken", + "name": "KOHENOOR" + }, + { + "id": "kohler", + "symbol": "kohler", + "name": "Kohler" + }, + { + "id": "koi", + "symbol": "koi", + "name": "KOI" + }, + { + "id": "koi-3", + "symbol": "koi", + "name": "Koi" + }, + { + "id": "koi-4", + "symbol": "koai", + "name": "KOI" + }, + { + "id": "koi-5", + "symbol": "koi", + "name": "KOI" + }, + { + "id": "koii", + "symbol": "koii", + "name": "Koii" + }, + { + "id": "koinbay-token", + "symbol": "kbt", + "name": "KoinBay Token" + }, + { + "id": "koinos", + "symbol": "koin", + "name": "Koinos" + }, + { + "id": "koji", + "symbol": "koji", + "name": "Koji" + }, + { + "id": "kok", + "symbol": "kok", + "name": "KOK" + }, + { + "id": "kokodi", + "symbol": "koko", + "name": "Kokodi" + }, + { + "id": "kokok-the-roach", + "symbol": "kokok", + "name": "KoKoK The Roach" + }, + { + "id": "koku-the-shikoku", + "symbol": "$koku", + "name": "Koku The Shikoku" + }, + { + "id": "kolana", + "symbol": "kolana", + "name": "KOLANA" + }, + { + "id": "kolana-2", + "symbol": "kol", + "name": "Kolana" + }, + { + "id": "kol-exe", + "symbol": "kol", + "name": "KOL.exe" + }, + { + "id": "kolibri-usd", + "symbol": "kusd", + "name": "Kolibri USD" + }, + { + "id": "kolin-2", + "symbol": "kolin", + "name": "Kolin" + }, + { + "id": "kollector", + "symbol": "kltr", + "name": "Kollector" + }, + { + "id": "kols", + "symbol": "kols", + "name": "KOLS" + }, + { + "id": "kolscan", + "symbol": "kolscan", + "name": "kolscan" + }, + { + "id": "kolscope", + "symbol": "$ksco", + "name": "Kolscope" + }, + { + "id": "kolt", + "symbol": "$kolt", + "name": "KOLT" + }, + { + "id": "kolwai", + "symbol": "vibes", + "name": "Kolwaii by Virtuals" + }, + { + "id": "kolytics", + "symbol": "kolt", + "name": "Kolytics" + }, + { + "id": "kolz", + "symbol": "kolz", + "name": "KOLZ" + }, + { + "id": "koma-inu", + "symbol": "koma", + "name": "Koma Inu" + }, + { + "id": "komari", + "symbol": "koma", + "name": "Komari" + }, + { + "id": "kome-chan", + "symbol": "kome", + "name": "Kome Chan" + }, + { + "id": "komi", + "symbol": "komi", + "name": "KOMI" + }, + { + "id": "kommunitas", + "symbol": "kom", + "name": "Kommunitas [OLD]" + }, + { + "id": "kommunitas-2", + "symbol": "kom", + "name": "Kommunitas" + }, + { + "id": "kommunity-take-over", + "symbol": "kto", + "name": "Kommunity Take Over" + }, + { + "id": "komodo", + "symbol": "kmd", + "name": "Komodo" + }, + { + "id": "kompete", + "symbol": "kompete", + "name": "KOMPETE" + }, + { + "id": "komputai", + "symbol": "kai", + "name": "Komputai" + }, + { + "id": "kona", + "symbol": "kona", + "name": "KONA" + }, + { + "id": "konan-of-kaspa", + "symbol": "konan", + "name": "Konan of Kaspa" + }, + { + "id": "kondux-v2", + "symbol": "kndx", + "name": "KONDUX" + }, + { + "id": "konet", + "symbol": "konet", + "name": "KONET" + }, + { + "id": "kong", + "symbol": "kong", + "name": "KONG" + }, + { + "id": "kong-2", + "symbol": "kong", + "name": "CyberKongz" + }, + { + "id": "kong-sui", + "symbol": "kong", + "name": "KONG SUI" + }, + { + "id": "kongswap", + "symbol": "kong", + "name": "KongSwap" + }, + { + "id": "konnect", + "symbol": "kct", + "name": "Konnect" + }, + { + "id": "konomi-network", + "symbol": "kono", + "name": "Konomi Network" + }, + { + "id": "kontos", + "symbol": "kos", + "name": "Kontos" + }, + { + "id": "kook", + "symbol": "kook", + "name": "kook" + }, + { + "id": "kooky", + "symbol": "kooky", + "name": "KOOKY" + }, + { + "id": "kora", + "symbol": "sn71", + "name": "Kora" + }, + { + "id": "kori", + "symbol": "kori", + "name": "Kori" + }, + { + "id": "korico", + "symbol": "korico", + "name": "Korico" + }, + { + "id": "koro-go", + "symbol": "koro", + "name": "Koro Go" + }, + { + "id": "korra", + "symbol": "korra", + "name": "KORRA" + }, + { + "id": "kortana", + "symbol": "kora", + "name": "Kortana" + }, + { + "id": "koru", + "symbol": "koru", + "name": "Koru" + }, + { + "id": "kotanosuke", + "symbol": "豆柴", + "name": "Kotanosuke (豆柴)" + }, + { + "id": "kotaro", + "symbol": "kotaro", + "name": "Kotaro" + }, + { + "id": "koto-2", + "symbol": "koto", + "name": "Koto" + }, + { + "id": "koubek", + "symbol": "kbk", + "name": "Koubek" + }, + { + "id": "kounotori", + "symbol": "kto", + "name": "Kounotori" + }, + { + "id": "kovin-segnocchi", + "symbol": "kovin", + "name": "Kovin Segnocchi" + }, + { + "id": "kovu", + "symbol": "$kovu", + "name": "Kovu" + }, + { + "id": "koyo", + "symbol": "kyo", + "name": "Kōyō" + }, + { + "id": "koyo-6e93c7c7-03a3-4475-86a1-f0bc80ee09d6", + "symbol": "koy", + "name": "Koyo" + }, + { + "id": "kozue", + "symbol": "kozue", + "name": "Kozue" + }, + { + "id": "kpk", + "symbol": "kpk", + "name": "kpk" + }, + { + "id": "kpop", + "symbol": "kpop", + "name": "KPOP" + }, + { + "id": "k-pop-click-coin", + "symbol": "kpc", + "name": "K-POP CLICK COIN" + }, + { + "id": "kpop-coin", + "symbol": "kpop", + "name": "KPOP Coin" + }, + { + "id": "k-pop-on-solana", + "symbol": "kpop", + "name": "K-Pop on Solana" + }, + { + "id": "kraken-ink", + "symbol": "kraken", + "name": "Kraken" + }, + { + "id": "kraken-wrapped-btc", + "symbol": "kbtc", + "name": "Kraken Wrapped BTC" + }, + { + "id": "krampus", + "symbol": "krampus", + "name": "KRAMPUS" + }, + { + "id": "krasnalcoin", + "symbol": "kc", + "name": "Krasnalcoin" + }, + { + "id": "krav", + "symbol": "krav", + "name": "Rave" + }, + { + "id": "krazy-n-d", + "symbol": "krazy", + "name": "krazy n.d." + }, + { + "id": "kreaitor", + "symbol": "kai", + "name": "Kreaitor" + }, + { + "id": "krees", + "symbol": "krees", + "name": "Krees" + }, + { + "id": "krest", + "symbol": "krest", + "name": "Krest" + }, + { + "id": "krex", + "symbol": "krex", + "name": "Krex" + }, + { + "id": "kris", + "symbol": "kris", + "name": "Kris" + }, + { + "id": "kriyadex", + "symbol": "kdx", + "name": "Kriya" + }, + { + "id": "kroak-on-kaspa", + "symbol": "kroak", + "name": "Kroak on Kaspa" + }, + { + "id": "krogan", + "symbol": "kro", + "name": "Krogan" + }, + { + "id": "kromatika", + "symbol": "krom", + "name": "Kromatika" + }, + { + "id": "krown", + "symbol": "krw", + "name": "KROWN" + }, + { + "id": "krwo", + "symbol": "krwo", + "name": "KRWO" + }, + { + "id": "krwt", + "symbol": "krwq", + "name": "KRWQ" + }, + { + "id": "kryll", + "symbol": "krl", + "name": "KRYLL" + }, + { + "id": "krypto-cock", + "symbol": "cock", + "name": "Krypto Cock" + }, + { + "id": "krypto-fraxtal-chicken", + "symbol": "kfc", + "name": "Krypto Fraxtal Chicken" + }, + { + "id": "kryptokrona", + "symbol": "xkr", + "name": "Kryptokrona" + }, + { + "id": "krypton-dao", + "symbol": "krd", + "name": "Krypton DAO" + }, + { + "id": "kryptonite", + "symbol": "seilor", + "name": "Kryptonite" + }, + { + "id": "kryza-network", + "symbol": "krn", + "name": "KRYZA Network" + }, + { + "id": "kton-staked-kton", + "symbol": "kton", + "name": "KTON" + }, + { + "id": "ktoshi", + "symbol": "ktoshi", + "name": "ktoshi" + }, + { + "id": "ktx-finance", + "symbol": "ktc", + "name": "KTX.Finance" + }, + { + "id": "kucoin-bridged-usdc-kucoin-community-chain", + "symbol": "usdc", + "name": "KCC Bridged USDC (KuCoin Community Chain)" + }, + { + "id": "kucoin-bridged-usdt-kucoin-community-chain", + "symbol": "usdt", + "name": "KCC Bridged USDT (Kucoin Community Chain)" + }, + { + "id": "kucoin-shares", + "symbol": "kcs", + "name": "KuCoin" + }, + { + "id": "kudai", + "symbol": "kudai", + "name": "Kudai" + }, + { + "id": "kujira", + "symbol": "kuji", + "name": "Kujira" + }, + { + "id": "kuka", + "symbol": "kūka", + "name": "KŪKA" + }, + { + "id": "kuku", + "symbol": "kuku", + "name": "KuKu" + }, + { + "id": "kula", + "symbol": "kula", + "name": "Kula" + }, + { + "id": "kulu-the-pangolin", + "symbol": "kulu", + "name": "Kulu the Pangolin" + }, + { + "id": "kuma-2", + "symbol": "kuma", + "name": "Kuma" + }, + { + "id": "kumadex-token", + "symbol": "dkuma", + "name": "KumaDex Token" + }, + { + "id": "kuma-inu", + "symbol": "kuma", + "name": "Kuma Inu" + }, + { + "id": "kumaneene", + "symbol": "kumaneene", + "name": "Kumaneene" + }, + { + "id": "kuma-protocol-fr-kuma-interest-bearing-token", + "symbol": "frk", + "name": "KUMA Protocol FR KUMA Interest Bearing Token" + }, + { + "id": "kuma-protocol-wrapped-frk", + "symbol": "wfrk", + "name": "KUMA Protocol Wrapped FRK" + }, + { + "id": "kuma-world", + "symbol": "kuma", + "name": "Kuma World" + }, + { + "id": "kunaikash", + "symbol": "kunai", + "name": "KunaiKash" + }, + { + "id": "kunci-coin", + "symbol": "kunci", + "name": "Kunci Coin" + }, + { + "id": "kundalini-is-a-real-girl", + "symbol": "kundalini", + "name": "Kundalini is a real girl" + }, + { + "id": "kung-fucat", + "symbol": "kfucat", + "name": "Kung-Fucat" + }, + { + "id": "kunji-finance", + "symbol": "knj", + "name": "Kunji Finance" + }, + { + "id": "kura", + "symbol": "kura", + "name": "Kura" + }, + { + "id": "kura-liquid-staking-token", + "symbol": "k33", + "name": "Kura Liquid Staking Token" + }, + { + "id": "kurbi", + "symbol": "kurbi", + "name": "kurbi" + }, + { + "id": "kuro-2", + "symbol": "kuro", + "name": "KURO" + }, + { + "id": "kurobi", + "symbol": "kuro", + "name": "Kurobi" + }, + { + "id": "kurt", + "symbol": "kurt", + "name": "Kurt" + }, + { + "id": "kurumi", + "symbol": "ku-chan", + "name": "KURUMI" + }, + { + "id": "kurumi-2", + "symbol": "kurumi", + "name": "Kurumi" + }, + { + "id": "kusama", + "symbol": "ksm", + "name": "Kusama" + }, + { + "id": "kusunoki-samurai", + "symbol": "kusunoki", + "name": "Kusunoki Samurai" + }, + { + "id": "kuswap", + "symbol": "kus", + "name": "KuSwap" + }, + { + "id": "kuusou", + "symbol": "kuusou", + "name": "Kuusou" + }, + { + "id": "kvants-ai", + "symbol": "kvai", + "name": "Kvants AI" + }, + { + "id": "kwak", + "symbol": "kwak", + "name": "KWAK" + }, + { + "id": "kwantxbt", + "symbol": "kwant", + "name": "kwantxbt" + }, + { + "id": "kween", + "symbol": "kween", + "name": "KWEEN" + }, + { + "id": "kwenta", + "symbol": "kwenta", + "name": "Kwenta" + }, + { + "id": "kyberdyne", + "symbol": "kbd", + "name": "Kyberdyne" + }, + { + "id": "kyber-network", + "symbol": "kncl", + "name": "Kyber Network Crystal Legacy" + }, + { + "id": "kyber-network-crystal", + "symbol": "knc", + "name": "Kyber Network Crystal" + }, + { + "id": "kylacoin", + "symbol": "kcn", + "name": "Kylacoin" + }, + { + "id": "kylie", + "symbol": "kylie", + "name": "Kylie" + }, + { + "id": "kylo-the-doge", + "symbol": "kylo", + "name": "Kylo The Doge" + }, + { + "id": "kyotoswap", + "symbol": "kswap", + "name": "KyotoSwap" + }, + { + "id": "kyra", + "symbol": "kyra", + "name": "KYRA" + }, + { + "id": "kyro", + "symbol": "kyro", + "name": "Kyro" + }, + { + "id": "kyros", + "symbol": "kyros", + "name": "Kyros" + }, + { + "id": "kyros-restaked-jto", + "symbol": "kyjto", + "name": "Kyros Restaked JTO" + }, + { + "id": "kyros-restaked-sol", + "symbol": "kysol", + "name": "Kyros Restaked SOL" + }, + { + "id": "kyrrex", + "symbol": "krrx", + "name": "Kyrrex" + }, + { + "id": "kyte-one", + "symbol": "kte", + "name": "Kyte.One" + }, + { + "id": "kyuzo-s-friends", + "symbol": "ko", + "name": "Kyuzo's Friends" + }, + { + "id": "kyve-network", + "symbol": "kyve", + "name": "KYVE Network" + }, + { + "id": "kzl", + "symbol": "kzl", + "name": "kzl" + }, + { + "id": "kz-token", + "symbol": "kz", + "name": "KZ" + }, + { + "id": "l", + "symbol": "l", + "name": "L" + }, + { + "id": "l24ai-agent", + "symbol": "l24ai", + "name": "L24AI AGENT" + }, + { + "id": "l2-standard-bridged-dai-base", + "symbol": "dai", + "name": "L2 Standard Bridged DAI (Base)" + }, + { + "id": "l2-standard-bridged-usdt-base", + "symbol": "usdt", + "name": "L2 Standard Bridged USDT (Base)" + }, + { + "id": "l2-standard-bridged-weth-abstract", + "symbol": "weth", + "name": "L2 Standard Bridged WETH (Abstract)" + }, + { + "id": "l2-standard-bridged-weth-base", + "symbol": "weth", + "name": "L2 Standard Bridged WETH (Base)" + }, + { + "id": "l2-standard-bridged-weth-blast", + "symbol": "weth", + "name": "L2 Standard Bridged WETH (Blast)" + }, + { + "id": "l2-standard-bridged-weth-modee", + "symbol": "weth", + "name": "L2 Standard Bridged WETH (Mode)" + }, + { + "id": "l2-standard-bridged-weth-optimism", + "symbol": "weth", + "name": "L2 Standard Bridged WETH (Optimism)" + }, + { + "id": "l2token", + "symbol": "l2t", + "name": "L2 Token" + }, + { + "id": "l2ve-inu", + "symbol": "l2ve", + "name": "L2VE INU" + }, + { + "id": "l3usd", + "symbol": "l3usd", + "name": "L3USD" + }, + { + "id": "lab", + "symbol": "lab", + "name": "LAB" + }, + { + "id": "labda", + "symbol": "lab", + "name": "Labda" + }, + { + "id": "label-foundation", + "symbol": "lbl", + "name": "LABEL AI" + }, + { + "id": "labradorbitcoin", + "symbol": "labi", + "name": "LabradorBitcoin" + }, + { + "id": "labs", + "symbol": "labs", + "name": "LABS" + }, + { + "id": "lack-of-memes", + "symbol": "memeless", + "name": "Lack Of Memes" + }, + { + "id": "lack-of-memes-2", + "symbol": "memeless", + "name": "Lack Of Memes" + }, + { + "id": "lad", + "symbol": "lad", + "name": "LAD" + }, + { + "id": "ladyluck", + "symbol": "lucky", + "name": "LadyLuck" + }, + { + "id": "lagrange", + "symbol": "la", + "name": "Lagrange" + }, + { + "id": "lahara", + "symbol": "laa", + "name": "LAHARA" + }, + { + "id": "laid", + "symbol": "laid", + "name": "LAID" + }, + { + "id": "laifu-2", + "symbol": "来福", + "name": "来福" + }, + { + "id": "laika", + "symbol": "laika", + "name": "Laika" + }, + { + "id": "laika-3", + "symbol": "laika", + "name": "Laika" + }, + { + "id": "laika-4", + "symbol": "laïka", + "name": "Laïka" + }, + { + "id": "laika-ai", + "symbol": "lki", + "name": "Laika AI" + }, + { + "id": "laika-bridged-wdoge-laika", + "symbol": "wdoge", + "name": "Laika Bridged WDOGE (Laika)" + }, + { + "id": "laikachain", + "symbol": "laika", + "name": "Laïka" + }, + { + "id": "laine-stake", + "symbol": "lainesol", + "name": "Laine Staked SOL" + }, + { + "id": "lair", + "symbol": "lair", + "name": "Lair" + }, + { + "id": "lair-staked-kaia", + "symbol": "stkaia", + "name": "Lair Staked KAIA" + }, + { + "id": "lake", + "symbol": "lak3", + "name": "LAKE" + }, + { + "id": "lakeviewmeta", + "symbol": "lvm", + "name": "LakeViewMeta" + }, + { + "id": "lamanan", + "symbol": "lama", + "name": "LAMANAN" + }, + { + "id": "lamas-finance", + "symbol": "lmf", + "name": "Lamas Finance" + }, + { + "id": "lama-trust-coin-v2", + "symbol": "vlama", + "name": "LAMA Trust Coin V2" + }, + { + "id": "lambda-markets", + "symbol": "lmda", + "name": "Lambda Markets" + }, + { + "id": "lambo-0fcbf0f7-1a8f-470d-ba09-797d5e95d836", + "symbol": "lambo", + "name": "$LAMBO" + }, + { + "id": "lambo-2", + "symbol": "lambo", + "name": "Lambo" + }, + { + "id": "lambo-3", + "symbol": "$lambo", + "name": "LAMBO" + }, + { + "id": "lambo-4", + "symbol": "lambo", + "name": "LAMBO" + }, + { + "id": "lambo-5", + "symbol": "lambo", + "name": "lambo" + }, + { + "id": "lambosforvirgins", + "symbol": "virgin", + "name": "LambosForVirgins" + }, + { + "id": "lamina1", + "symbol": "l1", + "name": "Lamina1" + }, + { + "id": "lanacoin", + "symbol": "lana", + "name": "LanaCoin" + }, + { + "id": "lana-the-sol-girl", + "symbol": "lana", + "name": "LANA THE SOL GIRL" + }, + { + "id": "landboard", + "symbol": "land", + "name": "Landboard" + }, + { + "id": "lander", + "symbol": "tcl", + "name": "Lander" + }, + { + "id": "landlord-roland", + "symbol": "$landlord", + "name": "Landlord Ronald" + }, + { + "id": "land-of-heroes-2", + "symbol": "loh", + "name": "Land Of Heroes" + }, + { + "id": "landrocker", + "symbol": "lrt", + "name": "LandRocker" + }, + { + "id": "landshare", + "symbol": "land", + "name": "Landshare" + }, + { + "id": "landtorn-shard", + "symbol": "shard", + "name": "Landtorn Shard" + }, + { + "id": "landwolf", + "symbol": "wolf", + "name": "LandWolf" + }, + { + "id": "landwolf-0x67", + "symbol": "wolf", + "name": "LandWolf" + }, + { + "id": "landwolf-2", + "symbol": "wolf", + "name": "Landwolf" + }, + { + "id": "landwolf-3", + "symbol": "landwolf", + "name": "LANDWOLF" + }, + { + "id": "landwolf-base", + "symbol": "wolf", + "name": "Landwolf" + }, + { + "id": "landwolf-eth", + "symbol": "wolf", + "name": "Landwolf" + }, + { + "id": "landwolfina", + "symbol": "wolfina", + "name": "LandWolfina" + }, + { + "id": "landwolf-on-avax", + "symbol": "wolf", + "name": "Landwolf on AVAX" + }, + { + "id": "land-wu", + "symbol": "landwu", + "name": "Land Wu" + }, + { + "id": "landx-governance-token", + "symbol": "lndx", + "name": "LandX Governance Token" + }, + { + "id": "lanlan-cat", + "symbol": "lanlan", + "name": "LanLan Cat" + }, + { + "id": "lan-network", + "symbol": "lan", + "name": "LAN Network" + }, + { + "id": "lantern-staked-sol", + "symbol": "lanternsol", + "name": "Lantern Staked SOL" + }, + { + "id": "la-peseta-2", + "symbol": "ptas", + "name": "La Peseta" + }, + { + "id": "lapupu", + "symbol": "lapupu", + "name": "Lapupu" + }, + { + "id": "laqira-protocol", + "symbol": "lqr", + "name": "Laqira Protocol" + }, + { + "id": "lara", + "symbol": "lara", + "name": "Lara" + }, + { + "id": "large-ani-model", + "symbol": "lam", + "name": "Large Ani Model" + }, + { + "id": "large-language-model", + "symbol": "llm", + "name": "Large Language Model" + }, + { + "id": "larissa-blockchain", + "symbol": "lrs", + "name": "Larissa Blockchain" + }, + { + "id": "larix", + "symbol": "larix", + "name": "Larix" + }, + { + "id": "larpai", + "symbol": "larpai", + "name": "LarpAI" + }, + { + "id": "larp-ai", + "symbol": "lai", + "name": "Larp AI" + }, + { + "id": "larp-detective-agency", + "symbol": "$agency", + "name": "Larp Detective Agency" + }, + { + "id": "larry", + "symbol": "larry", + "name": "Larry" + }, + { + "id": "larva-lads", + "symbol": "lad", + "name": "Larva Lads" + }, + { + "id": "laser-gas", + "symbol": "lgas", + "name": "Laser Gas" + }, + { + "id": "laser-shark", + "symbol": "ls", + "name": "Laser Shark" + }, + { + "id": "last-usd", + "symbol": "usdxl", + "name": "Last USD" + }, + { + "id": "latam-residential-sstl", + "symbol": "pc0000089", + "name": "LatAm Residential SSTL" + }, + { + "id": "latch-staked-eth", + "symbol": "ateth", + "name": "Latch Staked ETH" + }, + { + "id": "latch-staked-usdt", + "symbol": "atusd", + "name": "Latch Staked USDT" + }, + { + "id": "late-capitalism", + "symbol": "l8cap", + "name": "Late Capitalism" + }, + { + "id": "latenightonbase", + "symbol": "latenightonbase", + "name": "latenightonbase" + }, + { + "id": "latent-arena", + "symbol": "latent", + "name": "LATENT ARENA" + }, + { + "id": "latina-language-model", + "symbol": "llm", + "name": "Latina Language Model" + }, + { + "id": "latoken", + "symbol": "la", + "name": "LA" + }, + { + "id": "latte", + "symbol": "latte", + "name": "Latte" + }, + { + "id": "lattice-token", + "symbol": "ltx", + "name": "Lattice" + }, + { + "id": "laugh", + "symbol": "laugh", + "name": "Laugh" + }, + { + "id": "launchbot", + "symbol": "rocketai", + "name": "launchbot" + }, + { + "id": "launchium", + "symbol": "lnchm", + "name": "Launchium" + }, + { + "id": "launch-on-pump", + "symbol": "launch", + "name": "Launch On Pump" + }, + { + "id": "launch-on-usd1", + "symbol": "l", + "name": "Launch On USD1" + }, + { + "id": "launchpool", + "symbol": "lpool", + "name": "Launchpool" + }, + { + "id": "launchtokenbot", + "symbol": "capo", + "name": "LaunchTokenBot" + }, + { + "id": "laura-ai", + "symbol": "laura", + "name": "Laura AI" + }, + { + "id": "laura-ai-agent", + "symbol": "laai", + "name": "Laura Ai Agent" + }, + { + "id": "lava", + "symbol": "lava", + "name": "Lava" + }, + { + "id": "lavandos", + "symbol": "lave", + "name": "Lavandos" + }, + { + "id": "lava-network", + "symbol": "lava", + "name": "Lava Network" + }, + { + "id": "law", + "symbol": "law", + "name": "LAW" + }, + { + "id": "law-blocks", + "symbol": "lbt", + "name": "Law Blocks" + }, + { + "id": "lawn", + "symbol": "lawn", + "name": "LAWN" + }, + { + "id": "law-of-attraction", + "symbol": "loa", + "name": "Law of Attraction" + }, + { + "id": "law-of-attraction-2", + "symbol": "loa", + "name": "Law of Attraction" + }, + { + "id": "law-service-token", + "symbol": "lst", + "name": "Law Service Token" + }, + { + "id": "laws-of-blockchain", + "symbol": "code", + "name": "Laws of Blockchain" + }, + { + "id": "layer2dao", + "symbol": "l2dao", + "name": "Layer2DAO" + }, + { + "id": "layer3", + "symbol": "l3", + "name": "Layer3" + }, + { + "id": "layer4-network", + "symbol": "layer4", + "name": "Layer4 Network" + }, + { + "id": "layerium", + "symbol": "lyum", + "name": "Layerium" + }, + { + "id": "layerk", + "symbol": "lyk", + "name": "LayerK" + }, + { + "id": "layernet", + "symbol": "net", + "name": "LayerNet" + }, + { + "id": "layer-one-x-2", + "symbol": "l1x", + "name": "Layer One X" + }, + { + "id": "layerzero", + "symbol": "zro", + "name": "LayerZero" + }, + { + "id": "layerzero-bridged-rseth-linea", + "symbol": "rseth", + "name": "KelpDAO Bridged rsETH (Linea)" + }, + { + "id": "layerzero-bridged-sei", + "symbol": "sei", + "name": "LayerZero Bridged Sei" + }, + { + "id": "layerzero-bridged-swbtc-swellchain", + "symbol": "swbtc", + "name": "Layerzero Bridged swBTC (Swellchain)" + }, + { + "id": "layerzero-bridged-swell", + "symbol": "swell", + "name": "Layerzero Bridged Swell" + }, + { + "id": "layerzero-bridged-trx-avalanche", + "symbol": "trx", + "name": "LayerZero Bridged TRX (Avalanche)" + }, + { + "id": "layerzero-bridged-usdc-aptos", + "symbol": "usdc", + "name": "LayerZero Bridged USDC (Aptos)" + }, + { + "id": "layerzero-bridged-usdc-etherlink", + "symbol": "usdc", + "name": "Etherlink Bridged USDC (Etherlink)" + }, + { + "id": "layerzero-bridged-usdt-aptos", + "symbol": "lzusdt", + "name": "LayerZero Bridged USDT (Aptos)" + }, + { + "id": "layerzero-bridged-usdt-etherlink", + "symbol": "usdt", + "name": "Bridged USDT (Etherlink)" + }, + { + "id": "layerzero-bridged-wbtc-aptos", + "symbol": "zwbtc", + "name": "LayerZero Bridged WBTC (Aptos)" + }, + { + "id": "layerzero-bridged-weth-aptos", + "symbol": "weth", + "name": "Aptos Bridged WETH (Aptos)" + }, + { + "id": "layerzero-bridged-wrapped-ether-swellchain", + "symbol": "weth", + "name": "Layerzero Bridged Wrapped Ether (Swellchain)" + }, + { + "id": "layerzero-usdc", + "symbol": "lzusdc", + "name": "LayerZero Bridged USDC (Fantom)" + }, + { + "id": "lazer-eyez", + "symbol": "lzr", + "name": "Lazer Eyez" + }, + { + "id": "lazio-fan-token", + "symbol": "lazio", + "name": "Lazio Fan Token" + }, + { + "id": "lbry-credits", + "symbol": "lbc", + "name": "LBRY Credits" + }, + { + "id": "lcp", + "symbol": "lcp", + "name": "LCP" + }, + { + "id": "lc-shib", + "symbol": "lc", + "name": "LC SHIB" + }, + { + "id": "lcx", + "symbol": "lcx", + "name": "LCX" + }, + { + "id": "lea-ai", + "symbol": "lea", + "name": "LEA AI" + }, + { + "id": "lead-ai", + "symbol": "lai", + "name": "Lead Ai" + }, + { + "id": "lead-wrapped-bitcoin", + "symbol": "leadbtc", + "name": "Lead Wrapped Bitcoin" + }, + { + "id": "league-of-ancients", + "symbol": "loa", + "name": "League of Ancients" + }, + { + "id": "league-of-kingdoms", + "symbol": "loka", + "name": "League of Kingdoms" + }, + { + "id": "league-of-traders", + "symbol": "lot", + "name": "League of Traders" + }, + { + "id": "leash", + "symbol": "leash", + "name": "Doge Killer" + }, + { + "id": "le-bleu-elefant", + "symbol": "bleu", + "name": "Le Bleu Elefant" + }, + { + "id": "lebowskis-the-first-memecoin", + "symbol": "lbw", + "name": "Lebowskis - the first memecoin" + }, + { + "id": "lecksis", + "symbol": "leks", + "name": "Lecksis" + }, + { + "id": "ledger-ai", + "symbol": "ledger", + "name": "Ledger AI" + }, + { + "id": "ledgity-token", + "symbol": "ldy", + "name": "Ledgity Token" + }, + { + "id": "ledog-dog", + "symbol": "dog", + "name": "LEDOG (DOG)" + }, + { + "id": "lee", + "symbol": "lee", + "name": "Lee" + }, + { + "id": "leemonhead", + "symbol": "leemon", + "name": "LeemonHead" + }, + { + "id": "lee-quid", + "symbol": "lee", + "name": "Lee Quid" + }, + { + "id": "leeroy-jenkins", + "symbol": "leeroy", + "name": "LEEROY JENKINS" + }, + { + "id": "leetswap-canto", + "symbol": "leet", + "name": "LeetSwap (Canto)" + }, + { + "id": "legacy-ichi", + "symbol": "ichi", + "name": "Legacy ICHI" + }, + { + "id": "legacy-media-killer", + "symbol": "x", + "name": "Legacy Media Killer" + }, + { + "id": "legacy-token", + "symbol": "lgct", + "name": "Legacy Token" + }, + { + "id": "legal", + "symbol": "legal", + "name": "LEGAL" + }, + { + "id": "legend", + "symbol": "legend", + "name": "LEGEND" + }, + { + "id": "legend-2", + "symbol": "legend", + "name": "Legend" + }, + { + "id": "legend-3", + "symbol": "$legend", + "name": "Legend" + }, + { + "id": "legend-of-annihilation", + "symbol": "loa", + "name": "Legend of Annihilation" + }, + { + "id": "legend-of-fantasy-war", + "symbol": "lfw", + "name": "Linked Finance World" + }, + { + "id": "legends-of-elysium", + "symbol": "loe", + "name": "Legends of Elysium" + }, + { + "id": "legends-of-sol", + "symbol": "legend", + "name": "Legends Of SOL" + }, + { + "id": "legendx", + "symbol": "lgndx", + "name": "LegendX" + }, + { + "id": "legia-warsaw-fan-token", + "symbol": "leg", + "name": "Legia Warsaw Fan Token" + }, + { + "id": "legion-network", + "symbol": "lgx", + "name": "Legion Network" + }, + { + "id": "legion-ventures", + "symbol": "$legion", + "name": "Legion Ventures" + }, + { + "id": "legit", + "symbol": "legit", + "name": "LEGIT" + }, + { + "id": "lehman-brothers", + "symbol": "leh", + "name": "Lehman Brothers" + }, + { + "id": "leia", + "symbol": "leia", + "name": "Leia" + }, + { + "id": "leia-the-cat", + "symbol": "leia", + "name": "Leia the Cat" + }, + { + "id": "leisuremeta", + "symbol": "lm", + "name": "LeisureMeta" + }, + { + "id": "lemmy-the-bat", + "symbol": "lbai", + "name": "Lemmy The Bat" + }, + { + "id": "lemon-2", + "symbol": "lemx", + "name": "Lemon" + }, + { + "id": "lemon-3", + "symbol": "lemon", + "name": "Lemon" + }, + { + "id": "lemonade-stand-duck", + "symbol": "duck", + "name": "Lemonade Stand Duck" + }, + { + "id": "lemond", + "symbol": "lemd", + "name": "Lemond" + }, + { + "id": "lemonrocks", + "symbol": "lemon", + "name": "Lemonrocks" + }, + { + "id": "lenard", + "symbol": "lenard", + "name": "Lenard" + }, + { + "id": "lenda-on-chain", + "symbol": "lenda", + "name": "lenda on chain" + }, + { + "id": "lendfi-finance", + "symbol": "lendfi", + "name": "Lendfi Finance" + }, + { + "id": "lendle", + "symbol": "lend", + "name": "Lendle" + }, + { + "id": "lendr", + "symbol": "rwal", + "name": "Lendr" + }, + { + "id": "lends", + "symbol": "lends", + "name": "Lends" + }, + { + "id": "lenny", + "symbol": "lenny", + "name": "Lenny" + }, + { + "id": "lenny-face", + "symbol": "( ͡° ͜ʖ ͡°)", + "name": "Lenny Face" + }, + { + "id": "lens", + "symbol": "lens", + "name": "LENS" + }, + { + "id": "lens-bridged-usdc-lens", + "symbol": "usdc", + "name": "Lens Bridged USDC (Lens)" + }, + { + "id": "lens-bridged-weth-lens", + "symbol": "weth", + "name": "Lens Bridged WETH (Lens)" + }, + { + "id": "leo-2", + "symbol": "leo", + "name": "Leo" + }, + { + "id": "leonardo-ai", + "symbol": "leonai", + "name": "Leonardo AI" + }, + { + "id": "leonard-the-lizard", + "symbol": "lenni", + "name": "Leonard The Lizard" + }, + { + "id": "leoono", + "symbol": "leo", + "name": "LEOONO by Virtuals" + }, + { + "id": "leopard", + "symbol": "leopard", + "name": "Leopard" + }, + { + "id": "leopold", + "symbol": "leo", + "name": "LEO" + }, + { + "id": "leo-token", + "symbol": "leo", + "name": "LEO Token" + }, + { + "id": "leox", + "symbol": "leox", + "name": "LEOX" + }, + { + "id": "leper", + "symbol": "leper", + "name": "LEPER" + }, + { + "id": "lern360-ai", + "symbol": "lern", + "name": "Lern360 AI" + }, + { + "id": "lernitas", + "symbol": "2192", + "name": "LERNITAS" + }, + { + "id": "lesbian-inu", + "symbol": "lesbian", + "name": "Lesbian Inu" + }, + { + "id": "leslie", + "symbol": "leslie", + "name": "Leslie" + }, + { + "id": "lessfngas", + "symbol": "lfg", + "name": "LessFnGas" + }, + { + "id": "lester", + "symbol": "lester", + "name": "Lester" + }, + { + "id": "lester-by-virtuals", + "symbol": "lester", + "name": "LESTER by Virtuals" + }, + { + "id": "lethe", + "symbol": "lethe", + "name": "Lethe" + }, + { + "id": "let-him-cook", + "symbol": "$cook", + "name": "Let Him Cook" + }, + { + "id": "let-me-do-it-for-you", + "symbol": "nose", + "name": "Let me do it for you" + }, + { + "id": "lets-bonk", + "symbol": "letsbonk", + "name": "Let's BONK" + }, + { + "id": "let-s-bonk-ai", + "symbol": "bonkai", + "name": "Let's Bonk AI" + }, + { + "id": "letscro", + "symbol": "lfc", + "name": "LetsCRO" + }, + { + "id": "let-s-farty", + "symbol": "farty", + "name": "Let's Farty" + }, + { + "id": "let-s-get-hai", + "symbol": "hai", + "name": "Let's Get HAI" + }, + { + "id": "lets-get-this-bread", + "symbol": "lgtb", + "name": "Lets Get This Bread" + }, + { + "id": "lets-go-brandon", + "symbol": "letsgo", + "name": "Lets Go Brandon" + }, + { + "id": "letstop", + "symbol": "stop", + "name": "LETSTOP" + }, + { + "id": "let-that-sink-in", + "symbol": "sink", + "name": "Let that sink in" + }, + { + "id": "levana-protocol", + "symbol": "lvn", + "name": "Levana" + }, + { + "id": "level", + "symbol": "lvl", + "name": "Level" + }, + { + "id": "level-governance", + "symbol": "lgo", + "name": "Level Governance" + }, + { + "id": "level-staked-usd", + "symbol": "slvlusd", + "name": "Staked Level USD" + }, + { + "id": "level-usd", + "symbol": "lvlusd", + "name": "Level USD" + }, + { + "id": "lever", + "symbol": "lever", + "name": "LeverFi" + }, + { + "id": "leveraged-cvx", + "symbol": "xcvx", + "name": "Leveraged CVX" + }, + { + "id": "leveraged-eeth", + "symbol": "xeeth", + "name": "Leveraged eETH" + }, + { + "id": "leveraged-ezeth", + "symbol": "xezeth", + "name": "Leveraged ezETH" + }, + { + "id": "leveraged-frxeth", + "symbol": "xfrxeth", + "name": "Leveraged frxETH" + }, + { + "id": "leveraged-steth", + "symbol": "xsteth", + "name": "Leveraged stETH" + }, + { + "id": "leverage-wbtc", + "symbol": "xwbtc", + "name": "Leverage WBTC" + }, + { + "id": "leverj-gluon", + "symbol": "l2", + "name": "Leverj Gluon" + }, + { + "id": "leviathan-points", + "symbol": "squid", + "name": "Leviathan Points" + }, + { + "id": "levia_us", + "symbol": "lev", + "name": "Levia_us" + }, + { + "id": "levva-protocol", + "symbol": "lvva", + "name": "Levva Protocol" + }, + { + "id": "lexicon", + "symbol": "lexicon", + "name": "Lexicon" + }, + { + "id": "lf", + "symbol": "lf", + "name": "LF" + }, + { + "id": "lfgswap-finance", + "symbol": "lfg", + "name": "LFGSwap Finance" + }, + { + "id": "lfgswap-finance-core", + "symbol": "lfg", + "name": "LFGSwap Finance(CORE)" + }, + { + "id": "lfit", + "symbol": "lfit", + "name": "LFIT" + }, + { + "id": "lgcy-network", + "symbol": "lgcy", + "name": "LGCY Network" + }, + { + "id": "lianpu", + "symbol": "脸谱", + "name": "脸谱" + }, + { + "id": "liberland-lld", + "symbol": "lld", + "name": "Liberland LLD" + }, + { + "id": "liberland-merit", + "symbol": "llm", + "name": "Liberland Merit" + }, + { + "id": "libertai", + "symbol": "ltai", + "name": "LibertAI" + }, + { + "id": "libertarian-dog", + "symbol": "liberta", + "name": "Libertarian Dog" + }, + { + "id": "libertum", + "symbol": "lbm", + "name": "Libertum" + }, + { + "id": "liberty-square-filth", + "symbol": "flth", + "name": "Liberty Square Filth" + }, + { + "id": "libfi", + "symbol": "libfi", + "name": "Liberty Finance" + }, + { + "id": "libra-4", + "symbol": "libra", + "name": "Libra" + }, + { + "id": "libra-5", + "symbol": "libra", + "name": "Libra" + }, + { + "id": "libra-incentix", + "symbol": "lixx", + "name": "Libra Incentix" + }, + { + "id": "libra-protocol", + "symbol": "lbr", + "name": "Libra Protocol" + }, + { + "id": "libre", + "symbol": "libre", + "name": "Libre" + }, + { + "id": "licker", + "symbol": "licker", + "name": "Licker" + }, + { + "id": "lickgoat", + "symbol": "lick", + "name": "LICKGOAT" + }, + { + "id": "licko", + "symbol": "licko", + "name": "LICKO" + }, + { + "id": "licko-2", + "symbol": "licko", + "name": "LICKO" + }, + { + "id": "licko-3", + "symbol": "lcko", + "name": "LICKO" + }, + { + "id": "licore", + "symbol": "licore", + "name": "liCORE" + }, + { + "id": "lido-dao", + "symbol": "ldo", + "name": "Lido DAO" + }, + { + "id": "lido-dao-wormhole", + "symbol": "ldo", + "name": "Lido DAO (Wormhole)" + }, + { + "id": "lido-staked-matic", + "symbol": "stmatic", + "name": "Lido Staked Matic" + }, + { + "id": "lido-staked-sol", + "symbol": "stsol", + "name": "Lido Staked SOL" + }, + { + "id": "lien", + "symbol": "lien", + "name": "Lien" + }, + { + "id": "lif3", + "symbol": "lif3", + "name": "LIF3 (OLD)" + }, + { + "id": "lif3-2", + "symbol": "lif3", + "name": "Lif3" + }, + { + "id": "lif3-lshare", + "symbol": "lshare", + "name": "LIF3 LSHARE (OLD)" + }, + { + "id": "lif3-lshare-new", + "symbol": "lshare", + "name": "LIF3 LSHARE" + }, + { + "id": "life-2", + "symbol": "life", + "name": "LIFE" + }, + { + "id": "life-changing-pill", + "symbol": "pill", + "name": "life changing pill" + }, + { + "id": "life-crypto", + "symbol": "life", + "name": "Life Crypto" + }, + { + "id": "lifedog", + "symbol": "lfdog", + "name": "lifedog" + }, + { + "id": "lifeform", + "symbol": "lft", + "name": "Lifeform" + }, + { + "id": "lifi", + "symbol": "lifi", + "name": "LIFI" + }, + { + "id": "lifinity", + "symbol": "lfnty", + "name": "Lifinity" + }, + { + "id": "lift-dollar", + "symbol": "usdl", + "name": "Lift Dollar" + }, + { + "id": "lightbeam-courier-coin", + "symbol": "lbcc", + "name": "Lightbeam Courier Coin" + }, + { + "id": "lightchain-ai", + "symbol": "lcai", + "name": "Lightchain AI" + }, + { + "id": "light-defi", + "symbol": "light", + "name": "Light Defi" + }, + { + "id": "lightlink", + "symbol": "ll", + "name": "LightLink" + }, + { + "id": "lightning-protocol", + "symbol": "light", + "name": "Lightning Protocol" + }, + { + "id": "lightspeed", + "symbol": "speed", + "name": "Lightspeed" + }, + { + "id": "light-speed-cat", + "symbol": "lscat", + "name": "Light Speed Cat" + }, + { + "id": "ligma-node", + "symbol": "ligma", + "name": "Ligma Node" + }, + { + "id": "ligo-ordinals", + "symbol": "ligo", + "name": "Ligo (Ordinals)" + }, + { + "id": "lihua", + "symbol": "lihua", + "name": "Lihua" + }, + { + "id": "likecoin-2", + "symbol": "like", + "name": "LikeCoin" + }, + { + "id": "likes", + "symbol": "likes", + "name": "likes" + }, + { + "id": "lilai", + "symbol": "lilai", + "name": "LilAI" + }, + { + "id": "lil-brett", + "symbol": "lilb", + "name": "Lil Brett" + }, + { + "id": "lil-bub-on-sol", + "symbol": "bub", + "name": "LIL BUB" + }, + { + "id": "lilcat", + "symbol": "lilcat", + "name": "lilcat" + }, + { + "id": "lil-frog", + "symbol": "lilfrog", + "name": "Lil Frog" + }, + { + "id": "lillius", + "symbol": "llt", + "name": "LILLIUS" + }, + { + "id": "lillo-ai", + "symbol": "$lillo", + "name": "Lillo AI" + }, + { + "id": "lilly", + "symbol": "$lilly", + "name": "LILLY" + }, + { + "id": "lilmanyu", + "symbol": "manyu", + "name": "LilManyu" + }, + { + "id": "lil-pump", + "symbol": "lilpump", + "name": "Lil Pump" + }, + { + "id": "lily", + "symbol": "liy", + "name": "Lily" + }, + { + "id": "lily-2", + "symbol": "lily", + "name": "LILY" + }, + { + "id": "lily-s-coin", + "symbol": "lily", + "name": "Lily's Coin" + }, + { + "id": "limbo", + "symbol": "limbo", + "name": "LIMBO" + }, + { + "id": "lime-cat", + "symbol": "lime", + "name": "Lime Cat" + }, + { + "id": "limewire-token", + "symbol": "lmwr", + "name": "LimeWire" + }, + { + "id": "liminal-agent", + "symbol": "lmnl", + "name": "Liminal Agent by Virtuals" + }, + { + "id": "limitless", + "symbol": "limitless", + "name": "LIMITLESS" + }, + { + "id": "limitless-2", + "symbol": "nzt48", + "name": "Limitless" + }, + { + "id": "limitless-3", + "symbol": "lmts", + "name": "Limitless" + }, + { + "id": "limitless-coin", + "symbol": "limitiess", + "name": "Limitless Coin" + }, + { + "id": "limitus", + "symbol": "lmt", + "name": "LIMITUS" + }, + { + "id": "limocoin-swap", + "symbol": "lmcswap", + "name": "Limocoin Swap" + }, + { + "id": "limoverse", + "symbol": "limo", + "name": "Limoverse" + }, + { + "id": "linda-2", + "symbol": "linda", + "name": "Linda" + }, + { + "id": "linde-plc-ondo-tokenized-stock", + "symbol": "linon", + "name": "Linde plc (Ondo Tokenized Stock)" + }, + { + "id": "linde-xstock", + "symbol": "linx", + "name": "Linde xStock" + }, + { + "id": "linea", + "symbol": "linea", + "name": "Linea" + }, + { + "id": "linea-bridged-gno-linea", + "symbol": "gno", + "name": "Linea Bridged GNO (Linea)" + }, + { + "id": "linea-bridged-ldo-linea", + "symbol": "ldo", + "name": "Linea Bridged LDO (Linea)" + }, + { + "id": "linea-bridged-link-linea", + "symbol": "link", + "name": "Linea Bridged LINK (Linea)" + }, + { + "id": "linea-bridged-uni-linea", + "symbol": "uni", + "name": "Linea Bridged UNI (Linea)" + }, + { + "id": "linea-bridged-wbtc-linea", + "symbol": "wbtc", + "name": "Linea Bridged WBTC (Linea)" + }, + { + "id": "linea-bridged-wsteth-linea", + "symbol": "wsteth", + "name": "Linea Bridged wstETH (Linea)" + }, + { + "id": "linear", + "symbol": "lina", + "name": "Linear" + }, + { + "id": "linear-protocol", + "symbol": "linear", + "name": "LiNEAR Protocol Staked NEAR" + }, + { + "id": "linear-protocol-lnr", + "symbol": "lnr", + "name": "LiNEAR Protocol LNR" + }, + { + "id": "linea-voyage-xp", + "symbol": "lxp", + "name": "Linea Voyage XP" + }, + { + "id": "line-protocol", + "symbol": "line", + "name": "Line Protocol" + }, + { + "id": "lin-gang-melon", + "symbol": "lingang", + "name": "Lin Gang Melon" + }, + { + "id": "lingo", + "symbol": "lingo", + "name": "Lingo" + }, + { + "id": "lingyan", + "symbol": "lingyan", + "name": "Lingyan" + }, + { + "id": "linkcom", + "symbol": "lcom", + "name": "LCOM" + }, + { + "id": "linkednation", + "symbol": "$nation", + "name": "LinkedNation" + }, + { + "id": "linkfi", + "symbol": "linkfi", + "name": "LINKFI" + }, + { + "id": "link-on-sol", + "symbol": "link", + "name": "Link on Sol" + }, + { + "id": "linkpool", + "symbol": "lpl", + "name": "LinkPool" + }, + { + "id": "links", + "symbol": "links", + "name": "Links" + }, + { + "id": "links-2", + "symbol": "links", + "name": "Links" + }, + { + "id": "link-yvault", + "symbol": "yvlink", + "name": "LINK yVault" + }, + { + "id": "linos-ai", + "symbol": "lns", + "name": "Linos AI" + }, + { + "id": "linpuss", + "symbol": "lpuss", + "name": "Linpuss" + }, + { + "id": "linqai", + "symbol": "lnq", + "name": "LinqAI" + }, + { + "id": "lion-cat", + "symbol": "lcat", + "name": "Lion Cat" + }, + { + "id": "lion-dao", + "symbol": "roar", + "name": "Lion DAO" + }, + { + "id": "lioness", + "symbol": "lioness", + "name": "Lioness" + }, + { + "id": "lion-scrub-money-2", + "symbol": "lion", + "name": "Lion Scrub Money" + }, + { + "id": "liora", + "symbol": "liora", + "name": "Liora" + }, + { + "id": "liq-protocol", + "symbol": "liq", + "name": "LIQ Protocol" + }, + { + "id": "liquid-agent", + "symbol": "liquid", + "name": "Liquid Agent" + }, + { + "id": "liquid-ai", + "symbol": "liqai", + "name": "Liquid AI" + }, + { + "id": "liquid-astr", + "symbol": "nastr", + "name": "Liquid ASTR" + }, + { + "id": "liquidated", + "symbol": "liqq", + "name": "LIQUIDATED" + }, + { + "id": "liquid-atom", + "symbol": "latom", + "name": "Liquid ATOM" + }, + { + "id": "liquid-bgt", + "symbol": "lbgt", + "name": "Liquid BGT" + }, + { + "id": "liquid-cro", + "symbol": "lcro", + "name": "Liquid CRO" + }, + { + "id": "liquid-crypto", + "symbol": "lqdx", + "name": "Reddex" + }, + { + "id": "liquiddriver", + "symbol": "lqdr", + "name": "LiquidDriver" + }, + { + "id": "liquid-driver-livethe", + "symbol": "livethe", + "name": "Abacus liveTHE" + }, + { + "id": "liquid-finance", + "symbol": "liqd", + "name": "Liquid Finance" + }, + { + "id": "liquid-gold", + "symbol": "piss", + "name": "liquid gold" + }, + { + "id": "liquid-hydra", + "symbol": "lydra", + "name": "Liquid Hydra" + }, + { + "id": "liquid-hype-yield", + "symbol": "liquidhype", + "name": "Liquid HYPE Yield" + }, + { + "id": "liquidifty", + "symbol": "lqt", + "name": "Lifty" + }, + { + "id": "liquidity", + "symbol": "sn77", + "name": "Liquidity" + }, + { + "id": "liquidity-provisioning", + "symbol": "sn106", + "name": "Liquidity Provisioning" + }, + { + "id": "liquidium-token", + "symbol": "liq", + "name": "LIQUIDIUM•TOKEN (Runes)" + }, + { + "id": "liquid-ksm", + "symbol": "lksm", + "name": "Liquid KSM" + }, + { + "id": "liquidlaunch", + "symbol": "liqd", + "name": "LiquidLaunch" + }, + { + "id": "liquidlayer", + "symbol": "lila", + "name": "LiquidLayer" + }, + { + "id": "liquid-loans", + "symbol": "loan", + "name": "Liquid Loans" + }, + { + "id": "liquid-loans-usdl", + "symbol": "usdl", + "name": "Liquid Loans USDL" + }, + { + "id": "liquid-mercury", + "symbol": "merc", + "name": "Liquid Mercury" + }, + { + "id": "liquidops", + "symbol": "lqd", + "name": "LiquidOps" + }, + { + "id": "liquidpump", + "symbol": "lp", + "name": "Liquidpump [OLD]" + }, + { + "id": "liquidpump-2", + "symbol": "lp", + "name": "Liquidpump" + }, + { + "id": "liquid-ron", + "symbol": "lron", + "name": "Liquid RON" + }, + { + "id": "liquid-savings-dai", + "symbol": "lsdai", + "name": "Liquid Savings DAI" + }, + { + "id": "liquidscan", + "symbol": "lqscan", + "name": "LiquidScan" + }, + { + "id": "liquid-solana-derivative", + "symbol": "lsd", + "name": "Liquid Solana Derivative" + }, + { + "id": "liquid-sonic-drop", + "symbol": "lsd", + "name": "Liquid Sonic Drop" + }, + { + "id": "liquid-staked-ethereum", + "symbol": "lseth", + "name": "Liquid Staked ETH" + }, + { + "id": "liquid-staked-flow", + "symbol": "stflow", + "name": "Increment Staked FLOW" + }, + { + "id": "liquid-staked-sol", + "symbol": "lssol", + "name": "Liquid Staked SOL" + }, + { + "id": "liquid-staking-derivative", + "symbol": "lsd", + "name": "Liquid Staking Derivative" + }, + { + "id": "liquid-staking-token", + "symbol": "lst", + "name": "Liquid Staking Token" + }, + { + "id": "liquidswap-2", + "symbol": "lsd", + "name": "Liquidswap" + }, + { + "id": "liquidus", + "symbol": "liq", + "name": "Liquidus (Old)" + }, + { + "id": "liquidus-2", + "symbol": "liq", + "name": "Liquidus" + }, + { + "id": "liquidy", + "symbol": "lqdy", + "name": "Liquidy" + }, + { + "id": "liquify-network", + "symbol": "liquify", + "name": "Liquify Network" + }, + { + "id": "liquihub", + "symbol": "liqui", + "name": "LiquiHub" + }, + { + "id": "liquina", + "symbol": "lqna", + "name": "Liquina" + }, + { + "id": "liquity", + "symbol": "lqty", + "name": "Liquity" + }, + { + "id": "liquity-bold", + "symbol": "bold", + "name": "Legacy BOLD" + }, + { + "id": "liquity-bold-2", + "symbol": "bold", + "name": "BOLD" + }, + { + "id": "liquity-usd", + "symbol": "lusd", + "name": "Liquity USD" + }, + { + "id": "liquor", + "symbol": "liq", + "name": "Liquor" + }, + { + "id": "liqwid-finance", + "symbol": "lq", + "name": "Liqwid Finance" + }, + { + "id": "lirat", + "symbol": "tryt", + "name": "LiraT" + }, + { + "id": "lisk", + "symbol": "lsk", + "name": "Lisk" + }, + { + "id": "lisk-bridged-usdc", + "symbol": "usdc.e", + "name": "Lisk Bridged USDC (Lisk)" + }, + { + "id": "lisk-bridged-usdt", + "symbol": "usdt", + "name": "Lisk Bridged USDT (Lisk)" + }, + { + "id": "lisk-bridged-wbtc-lisk", + "symbol": "wbtc", + "name": "Lisk Bridged Wrapped Bitcoin (Lisk)" + }, + { + "id": "lisk-bridged-weth-lisk", + "symbol": "weth", + "name": "Lisk Bridged WETH (Lisk)" + }, + { + "id": "lisk-bridged-wsteth-lisk", + "symbol": "wsteth", + "name": "Lisk Bridged wstETH (Lisk)" + }, + { + "id": "lista", + "symbol": "lista", + "name": "Lista DAO" + }, + { + "id": "listapie", + "symbol": "ltp", + "name": "Listapie" + }, + { + "id": "listen-rs", + "symbol": "listen", + "name": "listen-rs" + }, + { + "id": "lit", + "symbol": "lit", + "name": "LIT" + }, + { + "id": "litas", + "symbol": "litas", + "name": "LITAS" + }, + { + "id": "litecoin", + "symbol": "ltc", + "name": "Litecoin" + }, + { + "id": "litecoin-cash", + "symbol": "lcc", + "name": "Litecoin Cash" + }, + { + "id": "litecoin-mascot", + "symbol": "lester", + "name": "Litecoin Mascot" + }, + { + "id": "litentry", + "symbol": "lit", + "name": "Litentry" + }, + { + "id": "literally-me", + "symbol": "me", + "name": "Literally Me" + }, + { + "id": "literally-nothing", + "symbol": "nothing", + "name": "LITERALLY NOTHING" + }, + { + "id": "lither-coin", + "symbol": "lth", + "name": "Lither Coin" + }, + { + "id": "lithium-finance", + "symbol": "lith", + "name": "Lithium Finance" + }, + { + "id": "lithos", + "symbol": "lith", + "name": "Lithos" + }, + { + "id": "litlab-games", + "symbol": "litt", + "name": "LitLab Games" + }, + { + "id": "lit-protocol", + "symbol": "litkey", + "name": "Lit Protocol" + }, + { + "id": "litr", + "symbol": "litr", + "name": "LITR" + }, + { + "id": "little", + "symbol": "bao", + "name": "LITTLE 袋子" + }, + { + "id": "little-angry-bunny-v2", + "symbol": "lab-v2", + "name": "Little Angry Bunny v2" + }, + { + "id": "little-buck", + "symbol": "littlebuck", + "name": "Little Buck" + }, + { + "id": "littlemanyu", + "symbol": "manyu", + "name": "littlemanyu" + }, + { + "id": "little-pepe-2", + "symbol": "lilpepe", + "name": "Little Pepe" + }, + { + "id": "little-pepe-3", + "symbol": "lilpepe", + "name": "Little Pepe" + }, + { + "id": "little-pepe-4", + "symbol": "lilpepe", + "name": "Little Pepe" + }, + { + "id": "little-pepe-5", + "symbol": "lilpepe", + "name": "Little Pepe" + }, + { + "id": "little-rabbit-v2", + "symbol": "ltrbt", + "name": "Little Rabbit V2" + }, + { + "id": "little-ugly-duck", + "symbol": "lud", + "name": "Little Ugly Duck" + }, + { + "id": "live", + "symbol": "live", + "name": "SecondLive" + }, + { + "id": "live-ai", + "symbol": "lau", + "name": "Live Ai" + }, + { + "id": "liveart", + "symbol": "art", + "name": "LiveArt" + }, + { + "id": "live-on-toilet-until-50m", + "symbol": "shitcoin", + "name": "Live On Toilet Until 50M" + }, + { + "id": "live-on-treadmill-till-100mill", + "symbol": "runner", + "name": "live on treadmill till 100mill" + }, + { + "id": "livepeer", + "symbol": "lpt", + "name": "Livepeer" + }, + { + "id": "living-the-dream", + "symbol": "ltd", + "name": "Living the Dream" + }, + { + "id": "lizard", + "symbol": "lizard", + "name": "Lizard" + }, + { + "id": "lizard-2", + "symbol": "lizard", + "name": "Lizard" + }, + { + "id": "lizardai", + "symbol": "lizai", + "name": "LizardAi" + }, + { + "id": "lizcoin", + "symbol": "liz", + "name": "Lizcoin" + }, + { + "id": "llama", + "symbol": "llama", + "name": "Llama" + }, + { + "id": "lmao", + "symbol": "lmao!", + "name": "LMAO!" + }, + { + "id": "lmeow", + "symbol": "lmeow", + "name": "lmeow" + }, + { + "id": "lmeow-2", + "symbol": "lmeow", + "name": "lmeow" + }, + { + "id": "lmgrouptoken", + "symbol": "lmgx", + "name": "LMGroupToken" + }, + { + "id": "lnfi-network", + "symbol": "ln", + "name": "Lnfi Network" + }, + { + "id": "lnkd-networks", + "symbol": "lnkd", + "name": "LNKD Networks" + }, + { + "id": "loaded-lions", + "symbol": "lion", + "name": "Loaded Lions" + }, + { + "id": "loaf", + "symbol": "loaf", + "name": "LOAF" + }, + { + "id": "loafcat", + "symbol": "loafcat", + "name": "LOAFCAT" + }, + { + "id": "loaf-token", + "symbol": "loaf", + "name": "Loaf Token" + }, + { + "id": "lobo", + "symbol": "lobo", + "name": "LOBO" + }, + { + "id": "lobo-the-wolf-pup-runes", + "symbol": "lobo", + "name": "LOBO•THE•WOLF•PUP" + }, + { + "id": "lobster", + "symbol": "$lobster", + "name": "LOBSTER" + }, + { + "id": "localcoinswap", + "symbol": "lcs", + "name": "LocalCoinSwap" + }, + { + "id": "localtrade", + "symbol": "ltt", + "name": "LocalTrade" + }, + { + "id": "lockchain", + "symbol": "loc", + "name": "LockTrip" + }, + { + "id": "locked-money", + "symbol": "lmy", + "name": "Locked Money" + }, + { + "id": "lockheed-martin-inu", + "symbol": "lmi", + "name": "Lockheed Martin Inu" + }, + { + "id": "lockheed-ondo-tokenized-stock", + "symbol": "lmton", + "name": "Lockheed (Ondo Tokenized Stock)" + }, + { + "id": "lock-in", + "symbol": "lockin", + "name": "LOCK IN" + }, + { + "id": "lock-in-on-base", + "symbol": "$lockin", + "name": "Lock In on Base" + }, + { + "id": "lockness", + "symbol": "lkn", + "name": "Lockness" + }, + { + "id": "lockon-active-index", + "symbol": "lai", + "name": "LOCKON Active Index" + }, + { + "id": "lockon-passive-index", + "symbol": "lpi", + "name": "LOCKON Passive Index" + }, + { + "id": "locus-chain", + "symbol": "locus", + "name": "Locus Chain" + }, + { + "id": "locus-finance", + "symbol": "locus", + "name": "Locus Finance" + }, + { + "id": "locust-pocus", + "symbol": "cicada", + "name": "Locust Pocus" + }, + { + "id": "lodestar", + "symbol": "lode", + "name": "Lodestar" + }, + { + "id": "lode-token", + "symbol": "lod3", + "name": "LOD3 Token" + }, + { + "id": "lofi-2", + "symbol": "lofi", + "name": "LOFI" + }, + { + "id": "logarithm-games", + "symbol": "logg", + "name": "Logarithm games" + }, + { + "id": "loge", + "symbol": "$loge", + "name": "LOGE" + }, + { + "id": "logicnet", + "symbol": "sn35", + "name": "LogicNet" + }, + { + "id": "logosai", + "symbol": "logos", + "name": "LOGOSAI" + }, + { + "id": "logx", + "symbol": "logx", + "name": "Legacy Of Game" + }, + { + "id": "logx-2", + "symbol": "logx", + "name": "LogX Network" + }, + { + "id": "lok", + "symbol": "lok", + "name": "LOK" + }, + { + "id": "lokr", + "symbol": "lkr", + "name": "Lokr" + }, + { + "id": "loky-by-virtuals", + "symbol": "loky", + "name": "Loky by Virtuals" + }, + { + "id": "lol-2", + "symbol": "lol", + "name": "LOL" + }, + { + "id": "lol-3", + "symbol": "lol", + "name": "LOL" + }, + { + "id": "lol-4", + "symbol": "lol", + "name": "LOL" + }, + { + "id": "lola", + "symbol": "lola", + "name": "LOLA" + }, + { + "id": "lola-2", + "symbol": "lola", + "name": "Lola" + }, + { + "id": "lola-3", + "symbol": "lola", + "name": "Lola" + }, + { + "id": "lola-cat", + "symbol": "$lola", + "name": "Lola Cat" + }, + { + "id": "lolcat-2", + "symbol": "lolcat", + "name": "Lolcat" + }, + { + "id": "lol-guy", + "symbol": "lol", + "name": "Lol Guy" + }, + { + "id": "lol-land", + "symbol": "lol", + "name": "LOL Land" + }, + { + "id": "lollybomb", + "symbol": "bomb", + "name": "LollyBomb" + }, + { + "id": "lombard-protocol", + "symbol": "bard", + "name": "Lombard" + }, + { + "id": "lombard-staked-btc", + "symbol": "lbtc", + "name": "Lombard Staked BTC" + }, + { + "id": "loner", + "symbol": "loner", + "name": "loner" + }, + { + "id": "long", + "symbol": "long", + "name": "LOONG" + }, + { + "id": "long-2", + "symbol": "long", + "name": "Long 龙" + }, + { + "id": "long-3", + "symbol": "long", + "name": "Long" + }, + { + "id": "long-4", + "symbol": "long", + "name": "LONG" + }, + { + "id": "long-5", + "symbol": "龙long", + "name": "龙Long" + }, + { + "id": "long-bitcoin", + "symbol": "long", + "name": "Long Bitcoin" + }, + { + "id": "long-boi", + "symbol": "long", + "name": "long boi" + }, + { + "id": "longcat", + "symbol": "long", + "name": "Longcat" + }, + { + "id": "longcat-2", + "symbol": "shiro", + "name": "Longcat" + }, + { + "id": "longcat-3", + "symbol": "nobiko", + "name": "Longcat" + }, + { + "id": "longevity", + "symbol": "longevity", + "name": "longevity" + }, + { + "id": "longevity-ai", + "symbol": "longai", + "name": "Longevity AI" + }, + { + "id": "long-mao", + "symbol": "lmao", + "name": "Long Mao" + }, + { + "id": "long-nose-dog", + "symbol": "long", + "name": "Long Nose Dog" + }, + { + "id": "lonk-on-near", + "symbol": "lonk", + "name": "Lonk" + }, + { + "id": "looby-by-stephen-bliss", + "symbol": "looby", + "name": "Looby by Stephen Bliss" + }, + { + "id": "look", + "symbol": "look", + "name": "LOOK" + }, + { + "id": "look-bro", + "symbol": "look", + "name": "Look bro" + }, + { + "id": "looking-for-cooks", + "symbol": "$scanning", + "name": "looking for cooks" + }, + { + "id": "looking-up", + "symbol": "up", + "name": "Looking Up" + }, + { + "id": "lookscoin", + "symbol": "look", + "name": "LooksCoin" + }, + { + "id": "looks-good", + "symbol": "sendit", + "name": "looks good" + }, + { + "id": "looks-good-2", + "symbol": "sendit", + "name": "Looks Good" + }, + { + "id": "looksrare", + "symbol": "looks", + "name": "LooksRare" + }, + { + "id": "loom", + "symbol": "loom", + "name": "Loom" + }, + { + "id": "loomlay", + "symbol": "lay", + "name": "Loomlay" + }, + { + "id": "loom-network", + "symbol": "loomold", + "name": "Loom Network (OLD)" + }, + { + "id": "loom-network-new", + "symbol": "loom", + "name": "Loom Network (NEW)" + }, + { + "id": "loomsync", + "symbol": "loom", + "name": "LoomSync" + }, + { + "id": "loong", + "symbol": "loong", + "name": "Loong" + }, + { + "id": "loopburn", + "symbol": "lbp", + "name": "LoopBurn" + }, + { + "id": "loopcoin", + "symbol": "lpc", + "name": "Loopcoin" + }, + { + "id": "looped-hype", + "symbol": "lhype", + "name": "Looped Hype" + }, + { + "id": "loop-eth", + "symbol": "lpeth", + "name": "Loop ETH" + }, + { + "id": "looping-collective", + "symbol": "loop", + "name": "Looping Collective" + }, + { + "id": "loopin-network", + "symbol": "loopin", + "name": "LooPIN Network" + }, + { + "id": "loopnetwork", + "symbol": "loop", + "name": "LoopNetwork" + }, + { + "id": "loop-of-infinity", + "symbol": "loi", + "name": "Loop Of Infinity" + }, + { + "id": "loopring", + "symbol": "lrc", + "name": "Loopring" + }, + { + "id": "loopy", + "symbol": "loopy", + "name": "Loopy [OLD]" + }, + { + "id": "loopy-sui", + "symbol": "loopy", + "name": "LOOPY" + }, + { + "id": "loose", + "symbol": "loose", + "name": "Loose" + }, + { + "id": "loot", + "symbol": "loot", + "name": "Lootex" + }, + { + "id": "lootbot", + "symbol": "loot", + "name": "LootBot" + }, + { + "id": "looter", + "symbol": "looter", + "name": "Looter" + }, + { + "id": "lopo", + "symbol": "lopo", + "name": "LOPO" + }, + { + "id": "lord-of-dragons", + "symbol": "logt", + "name": "Lord of Dragons" + }, + { + "id": "lord-of-sol", + "symbol": "los", + "name": "Lord Of SOL" + }, + { + "id": "lords", + "symbol": "lords", + "name": "LORDS" + }, + { + "id": "lore", + "symbol": "lore", + "name": "Lore" + }, + { + "id": "lore-ai", + "symbol": "lore", + "name": "LORE AI" + }, + { + "id": "lorenzo-protocol", + "symbol": "bank", + "name": "Lorenzo Protocol" + }, + { + "id": "lorenzo-stbtc", + "symbol": "stbtc", + "name": "Lorenzo stBTC" + }, + { + "id": "lorenzo-wrapped-bitcoin", + "symbol": "enzobtc", + "name": "Lorenzo Wrapped Bitcoin" + }, + { + "id": "lormhole", + "symbol": "l", + "name": "Lormhole" + }, + { + "id": "loserchick-egg", + "symbol": "egg", + "name": "LoserChick EGG" + }, + { + "id": "loser-coin", + "symbol": "lowb", + "name": "Loser Coin" + }, + { + "id": "lossless", + "symbol": "lss", + "name": "Lossless" + }, + { + "id": "lost", + "symbol": "lost", + "name": "Lost" + }, + { + "id": "lost-bitcoin-layer", + "symbol": "atom", + "name": "Lost Bitcoin Layer" + }, + { + "id": "lotion-coin", + "symbol": "lotion", + "name": "Lotion AI" + }, + { + "id": "lottery-token-2", + "symbol": "lot", + "name": "Lottery Token" + }, + { + "id": "lotus", + "symbol": "lotus", + "name": "LOTUS" + }, + { + "id": "lou", + "symbol": "lou", + "name": "lou" + }, + { + "id": "loud", + "symbol": "loud", + "name": "Loud" + }, + { + "id": "louder", + "symbol": "louder", + "name": "LOUDER" + }, + { + "id": "louie", + "symbol": "louie", + "name": "Louie" + }, + { + "id": "louie-lambo", + "symbol": "lambo", + "name": "Louie Lambo" + }, + { + "id": "louie-the-raccoon", + "symbol": "$louie", + "name": "Louie the Raccoon" + }, + { + "id": "loulou", + "symbol": "loulou", + "name": "LOULOU" + }, + { + "id": "loungem", + "symbol": "lzm", + "name": "LoungeM" + }, + { + "id": "love", + "symbol": "love", + "name": "LOVE" + }, + { + "id": "lovebit", + "symbol": "lb", + "name": "LoveBit" + }, + { + "id": "lovecoin", + "symbol": "lovecoin", + "name": "LOVECOIN" + }, + { + "id": "love-earn-enjoy", + "symbol": "lee", + "name": "Love Earn Enjoy" + }, + { + "id": "love-io", + "symbol": "love", + "name": "Love.io" + }, + { + "id": "lovely-inu-finance", + "symbol": "lovely", + "name": "Lovely Inu Finance" + }, + { + "id": "love-moli", + "symbol": "moli", + "name": "Love Moli" + }, + { + "id": "love-monster", + "symbol": "love", + "name": "Love Monster" + }, + { + "id": "lowcap", + "symbol": "lowcap", + "name": "LOWCAP" + }, + { + "id": "lower", + "symbol": "lower", + "name": "lower" + }, + { + "id": "low-quality-cat", + "symbol": "lqc", + "name": "Low Quality Cat" + }, + { + "id": "lox-network", + "symbol": "lox", + "name": "Lox Network" + }, + { + "id": "loyal", + "symbol": "loyal", + "name": "Loyal" + }, + { + "id": "lp-3pool-curve", + "symbol": "3crv", + "name": "LP 3pool Curve" + }, + { + "id": "lpc_ai_lumi-by-virtuals", + "symbol": "lumi", + "name": "LPC_Ai_Lumi by Virtuals" + }, + { + "id": "lp-renbtc-curve", + "symbol": "renbtccurve", + "name": "LP renBTC Curve" + }, + { + "id": "lp-scurve", + "symbol": "scurve", + "name": "LP-sCurve" + }, + { + "id": "lp-yearn-crv-vault", + "symbol": "lp-ycrv", + "name": "LP Yearn CRV Vault" + }, + { + "id": "lrsnode", + "symbol": "lrsn", + "name": "LRSNode" + }, + { + "id": "lrt-squared", + "symbol": "king", + "name": "King Protocol" + }, + { + "id": "lto-network", + "symbol": "eqty", + "name": "EQTY" + }, + { + "id": "lube", + "symbol": "lube", + "name": "LUBE" + }, + { + "id": "luca", + "symbol": "luca", + "name": "LUCA" + }, + { + "id": "luca-netz-s-dog", + "symbol": "bandit", + "name": "Luca Netz's Dog" + }, + { + "id": "luce-dog", + "symbol": "santino", + "name": "Luce Dog" + }, + { + "id": "lucha", + "symbol": "lucha", + "name": "Lucha" + }, + { + "id": "luci", + "symbol": "luci", + "name": "LUCI" + }, + { + "id": "lucia", + "symbol": "lucia", + "name": "LUCIA" + }, + { + "id": "luck-2", + "symbol": "luck", + "name": "Luck" + }, + { + "id": "luck-3", + "symbol": "luck", + "name": "Luckify" + }, + { + "id": "lucky", + "symbol": "lucky", + "name": "LUCKY" + }, + { + "id": "lucky-block", + "symbol": "lblock", + "name": "Lucky Block" + }, + { + "id": "lucky-cat-2", + "symbol": "招财猫", + "name": "招财猫 (Lucky Cat)" + }, + { + "id": "luckycoin", + "symbol": "lky", + "name": "Luckycoin" + }, + { + "id": "lucky-coin", + "symbol": "lucky", + "name": "Lucky Coin" + }, + { + "id": "lucky-dog", + "symbol": "lucky", + "name": "Lucky Dog" + }, + { + "id": "luckyinu", + "symbol": "lucky", + "name": "Luckyinu" + }, + { + "id": "lucky-moon", + "symbol": "luckymoon", + "name": "Lucky Moon" + }, + { + "id": "luckysleprecoin", + "symbol": "luckyslp", + "name": "LuckysLeprecoin" + }, + { + "id": "lucy-ai", + "symbol": "lucy", + "name": "Lucy AI" + }, + { + "id": "lucy-ai-agent", + "symbol": "lcy", + "name": "Lucy Ai Agent" + }, + { + "id": "ludus", + "symbol": "ludus", + "name": "Ludus" + }, + { + "id": "ludwig", + "symbol": "ludwig", + "name": "LUDWIG" + }, + { + "id": "lueygi", + "symbol": "lueygi", + "name": "Lueygi" + }, + { + "id": "luffy-inu", + "symbol": "luffy", + "name": "Luffy" + }, + { + "id": "luis-fabiano-token", + "symbol": "lf9", + "name": "Luis Fabiano Token" + }, + { + "id": "luka-modric", + "symbol": "modric", + "name": "Luka Modric" + }, + { + "id": "lukso-token", + "symbol": "lyxe", + "name": "LUKSO [OLD]" + }, + { + "id": "lukso-token-2", + "symbol": "lyx", + "name": "LUKSO" + }, + { + "id": "lululemon-xstock", + "symbol": "lulux", + "name": "lululemon xStock" + }, + { + "id": "lulu-the-ostrich", + "symbol": "lulu", + "name": "Lulu the Ostrich" + }, + { + "id": "lumenswap", + "symbol": "lsp", + "name": "Lumenswap" + }, + { + "id": "lumera-health", + "symbol": "lur", + "name": "Lumera Health" + }, + { + "id": "lumerin", + "symbol": "lmr", + "name": "Lumerin" + }, + { + "id": "lumi-2", + "symbol": "$lumi", + "name": "LUMI" + }, + { + "id": "lumi-3", + "symbol": "lumi", + "name": "LUMI" + }, + { + "id": "lumia", + "symbol": "lumia", + "name": "Lumia" + }, + { + "id": "lumi-agent", + "symbol": "lumi", + "name": "LUMI AGENT" + }, + { + "id": "lumichill", + "symbol": "chill", + "name": "LumiChill" + }, + { + "id": "lumi-credits", + "symbol": "lumi", + "name": "LUMI Credits" + }, + { + "id": "lumi-finance", + "symbol": "lua", + "name": "Lumi Finance" + }, + { + "id": "lumi-finance-governance-token", + "symbol": "luag", + "name": "Lumi Finance Governance Token" + }, + { + "id": "lumi-finance-luausd", + "symbol": "luausd", + "name": "Lumi Finance LUAUSD" + }, + { + "id": "luminous", + "symbol": "lum", + "name": "Luminous" + }, + { + "id": "lumint", + "symbol": "lumint", + "name": "Lumint" + }, + { + "id": "lumiterra-totem-404", + "symbol": "ltm04", + "name": "LumiTerra Totem 404" + }, + { + "id": "lumi-to-da-moon", + "symbol": "ludamoon", + "name": "Lumi to da moon" + }, + { + "id": "lum-network", + "symbol": "lum", + "name": "Lum Network" + }, + { + "id": "lumo-8b-instruct", + "symbol": "lumo", + "name": "Lumo-8B-Instruct" + }, + { + "id": "lumora", + "symbol": "lmr", + "name": "Lumora" + }, + { + "id": "lumoscoin", + "symbol": "lumos", + "name": "Lumos" + }, + { + "id": "lumox-studio", + "symbol": "lumox", + "name": "Lumox Studio" + }, + { + "id": "lumoz", + "symbol": "moz", + "name": "Lumoz" + }, + { + "id": "lumpy", + "symbol": "lumpy", + "name": "Lumpy" + }, + { + "id": "luna-by-virtuals", + "symbol": "luna", + "name": "Luna by Virtuals" + }, + { + "id": "lunachow", + "symbol": "luchow", + "name": "LunaChow" + }, + { + "id": "lunadoge", + "symbol": "loge", + "name": "LunaDoge" + }, + { + "id": "luna-inu", + "symbol": "linu", + "name": "Luna Inu" + }, + { + "id": "lunar-2", + "symbol": "lnr", + "name": "Lunar" + }, + { + "id": "lunarbits", + "symbol": "lunarbits", + "name": "Lunarbits" + }, + { + "id": "lunarlens", + "symbol": "lunarlens", + "name": "Lunarlens" + }, + { + "id": "lunar-snake-coin", + "symbol": "snake2025", + "name": "Lunar Snake Coin" + }, + { + "id": "luna-rush", + "symbol": "lus", + "name": "Luna Rush" + }, + { + "id": "lunatics", + "symbol": "lunat", + "name": "Lunatics" + }, + { + "id": "luna-wormhole", + "symbol": "lunc", + "name": "Terra Classic (Wormhole)" + }, + { + "id": "luncarmy", + "symbol": "luncarmy", + "name": "LUNCARMY" + }, + { + "id": "lunctron", + "symbol": "ltrn", + "name": "Lunctron" + }, + { + "id": "lunex", + "symbol": "lnex", + "name": "Lunex Network" + }, + { + "id": "lunr-token", + "symbol": "lunr", + "name": "LunarCrush" + }, + { + "id": "luntra-infrastructure", + "symbol": "$luntra", + "name": "Luntra Infrastructure" + }, + { + "id": "lurky", + "symbol": "lurky", + "name": "Lurky" + }, + { + "id": "lusd", + "symbol": "lusd", + "name": "LUSD [OLD]" + }, + { + "id": "lusd-2", + "symbol": "lusd", + "name": "LUSD" + }, + { + "id": "lusd-yvault", + "symbol": "yvlusd", + "name": "LUSD yVault" + }, + { + "id": "lush-ai", + "symbol": "lush", + "name": "LushAI" + }, + { + "id": "luv", + "symbol": "luv", + "name": "LUV" + }, + { + "id": "lux-sidequests", + "symbol": "lsq", + "name": "Lux SideQuests" + }, + { + "id": "lux-token", + "symbol": "lux", + "name": "Lux Token" + }, + { + "id": "luxury-travel-token", + "symbol": "ltt", + "name": "Luxury Travel Token" + }, + { + "id": "luxxcoin", + "symbol": "lux", + "name": "Luxxcoin" + }, + { + "id": "lvusd", + "symbol": "lvusd", + "name": "lvUSD" + }, + { + "id": "lybra-finance", + "symbol": "lbr", + "name": "Lybra" + }, + { + "id": "lydia-coin", + "symbol": "usad", + "name": "Lydia Coin" + }, + { + "id": "lydia-finance", + "symbol": "lyd", + "name": "Lydia Finance" + }, + { + "id": "lyfe-2", + "symbol": "lyfe", + "name": "Lyfe" + }, + { + "id": "lyfebloc", + "symbol": "lbt", + "name": "Lyfebloc" + }, + { + "id": "lylo-ai", + "symbol": "lylo", + "name": "Lylo.ai" + }, + { + "id": "lympid", + "symbol": "lyp", + "name": "Lympid" + }, + { + "id": "lympo", + "symbol": "lym", + "name": "Lympo" + }, + { + "id": "lympo-market-token", + "symbol": "lmt", + "name": "Lympo Market" + }, + { + "id": "lyn", + "symbol": "lyn", + "name": "Lyn" + }, + { + "id": "lynex", + "symbol": "lynx", + "name": "Lynex" + }, + { + "id": "lynk-coin", + "symbol": "lynk", + "name": "Lynk Coin" + }, + { + "id": "lynx", + "symbol": "lynx", + "name": "Lynx" + }, + { + "id": "lyptus-token", + "symbol": "lyptus", + "name": "Lyptus" + }, + { + "id": "lyra-2", + "symbol": "lyra", + "name": "Lyra" + }, + { + "id": "lyra-3", + "symbol": "lyra", + "name": "LYRA" + }, + { + "id": "lyra-finance", + "symbol": "lyra", + "name": "Lyra Finance" + }, + { + "id": "lyvely", + "symbol": "lvly", + "name": "Lyvely" + }, + { + "id": "m2", + "symbol": "m2", + "name": "M2" + }, + { + "id": "m-2", + "symbol": "m", + "name": "M by M0" + }, + { + "id": "m2-global-wealth-limited-mmx", + "symbol": "mmx", + "name": "MMX" + }, + { + "id": "m3m3", + "symbol": "m3m3", + "name": "M3M3" + }, + { + "id": "maal-chain", + "symbol": "maal", + "name": "Maal Chain" + }, + { + "id": "macaronswap", + "symbol": "mcrn", + "name": "MacaronSwap" + }, + { + "id": "machina", + "symbol": "mxna", + "name": "Machina" + }, + { + "id": "machine-delusions", + "symbol": "mdel", + "name": "Machine Delusions" + }, + { + "id": "machines-cash", + "symbol": "machines", + "name": "Machines-cash" + }, + { + "id": "mackerel-2", + "symbol": "macke", + "name": "Mackerel" + }, + { + "id": "macro-2", + "symbol": "$macro", + "name": "Macro" + }, + { + "id": "macrohard", + "symbol": "mhrd", + "name": "MacroHard" + }, + { + "id": "macro-millions", + "symbol": "macro", + "name": "Macro Millions" + }, + { + "id": "mad", + "symbol": "mad", + "name": "MAD" + }, + { + "id": "mad-2", + "symbol": "mad", + "name": "MAD" + }, + { + "id": "madai", + "symbol": "madai", + "name": "Morpho-Aave Dai Stablecoin" + }, + { + "id": "mad-bears-club-2", + "symbol": "mbc", + "name": "Mad Bears Club" + }, + { + "id": "mad-bucks", + "symbol": "mad", + "name": "MAD Bucks" + }, + { + "id": "made-in-america", + "symbol": "mia", + "name": "Made In America" + }, + { + "id": "made-in-usa", + "symbol": "made", + "name": "Made In USA" + }, + { + "id": "madhouse", + "symbol": "mad", + "name": "Madhouse" + }, + { + "id": "madlad", + "symbol": "mad", + "name": "MADLAD" + }, + { + "id": "madlads-strategy", + "symbol": "mlstrat", + "name": "Madlads Strategy" + }, + { + "id": "mad-meerkat-optimizer", + "symbol": "mmo", + "name": "Mad Meerkat Optimizer" + }, + { + "id": "madonna-del-gatto", + "symbol": "gatto", + "name": "Madonna del gatto" + }, + { + "id": "mad-pepe", + "symbol": "madpepe", + "name": "Mad Pepe" + }, + { + "id": "mad-scientists", + "symbol": "lab", + "name": "Mad Scientists" + }, + { + "id": "madskullz-bnz", + "symbol": "bnz", + "name": "MadSkullz BNZ" + }, + { + "id": "mad-usd", + "symbol": "musd", + "name": "Mad USD" + }, + { + "id": "maek-amuraca-graet-agun", + "symbol": "maga", + "name": "Maek Amuraca Graet Agun" + }, + { + "id": "mafia-ai-by-virtuals", + "symbol": "mafia", + "name": "MAFIA AI by Virtuals" + }, + { + "id": "mag7-ssi", + "symbol": "mag7.ssi", + "name": "MAG7.ssi" + }, + { + "id": "maga", + "symbol": "trump", + "name": "MAGA" + }, + { + "id": "maga-coin", + "symbol": "maga", + "name": "MAGA Coin BSC" + }, + { + "id": "maga-coin-eth", + "symbol": "maga", + "name": "MAGA Coin ETH" + }, + { + "id": "maga-dog", + "symbol": "atlas", + "name": "MAGA DOG" + }, + { + "id": "maga-doge", + "symbol": "magadoge", + "name": "MAGA DOGE" + }, + { + "id": "maga-hat", + "symbol": "maga", + "name": "MAGA Hat" + }, + { + "id": "magaiba", + "symbol": "magaiba", + "name": "MAGAIBA" + }, + { + "id": "magallaneer", + "symbol": "magal", + "name": "Magallaneer" + }, + { + "id": "maga-pepe", + "symbol": "magapepe", + "name": "MAGA PEPE" + }, + { + "id": "maga-pepe-2", + "symbol": "mape", + "name": "MAGA Pepe" + }, + { + "id": "maga-pepe-eth", + "symbol": "magapepe", + "name": "MAGA PEPE (ETH)" + }, + { + "id": "maga-shiba", + "symbol": "magashib", + "name": "MAGA SHIBA" + }, + { + "id": "maga-trump", + "symbol": "magatrump", + "name": "MAGA Trump" + }, + { + "id": "magaverse", + "symbol": "mvrs", + "name": "Magaverse" + }, + { + "id": "maga-vp", + "symbol": "mvp", + "name": "MAGA VP" + }, + { + "id": "magawincat", + "symbol": "mawc", + "name": "Magawincat" + }, + { + "id": "magenta", + "symbol": "$mgnt", + "name": "MAGENTA" + }, + { + "id": "magic", + "symbol": "magic", + "name": "Treasure" + }, + { + "id": "magical-blocks", + "symbol": "mblk", + "name": "Magical Blocks" + }, + { + "id": "magicaltux", + "symbol": "tux", + "name": "Magicaltux" + }, + { + "id": "magic-beasties", + "symbol": "bsts", + "name": "Magic Beasties" + }, + { + "id": "magic-carpet-ride", + "symbol": "magic", + "name": "Magic Carpet Ride" + }, + { + "id": "magiccraft", + "symbol": "mcrt", + "name": "MagicCraft" + }, + { + "id": "magic-crystal", + "symbol": "mc", + "name": "Magic Crystal" + }, + { + "id": "magic-eden", + "symbol": "me", + "name": "Magic Eden" + }, + { + "id": "magicglp", + "symbol": "magicglp", + "name": "MagicGLP" + }, + { + "id": "magic-internet-cash", + "symbol": "mic", + "name": "Magic Internet Cash" + }, + { + "id": "magic-internet-money", + "symbol": "mim", + "name": "Magic Internet Money (Ethereum)" + }, + { + "id": "magic-internet-money-arbitrum", + "symbol": "mim", + "name": "Magic Internet Money (Arbitrum)" + }, + { + "id": "magic-internet-money-avalanche", + "symbol": "mim", + "name": "Magic Internet Money (Avalanche)" + }, + { + "id": "magic-internet-money-base", + "symbol": "mim", + "name": "Magic Internet Money (Base)" + }, + { + "id": "magic-internet-money-blast", + "symbol": "mim", + "name": "Magic Internet Money (Blast)" + }, + { + "id": "magic-internet-money-fantom", + "symbol": "mim", + "name": "Magic Internet Money (Fantom)" + }, + { + "id": "magic-internet-money-linea", + "symbol": "mim", + "name": "Magic Internet Money (Linea)" + }, + { + "id": "magic-internet-money-meme", + "symbol": "mim", + "name": "Magic Internet Money (Meme)" + }, + { + "id": "magic-internet-money-meme-2", + "symbol": "mim", + "name": "Magic Internet Money (Meme)" + }, + { + "id": "magic-internet-money-moonriver", + "symbol": "mim", + "name": "Magic Internet Money (Moonriver)" + }, + { + "id": "magic-internet-money-optimism", + "symbol": "mim", + "name": "Magic Internet Money (Optimism)" + }, + { + "id": "magic-internet-money-runes", + "symbol": "mim", + "name": "MAGIC•INTERNET•MONEY (Bitcoin)" + }, + { + "id": "magic-lum", + "symbol": "mlum", + "name": "Magic LUM" + }, + { + "id": "magic-money-computers", + "symbol": "mmc", + "name": "Magic Money Computers" + }, + { + "id": "magic-power", + "symbol": "mgp", + "name": "Magic Power" + }, + { + "id": "magicring", + "symbol": "mring", + "name": "MagicRing" + }, + { + "id": "magic-square", + "symbol": "sqr", + "name": "Magic Square" + }, + { + "id": "magic-token", + "symbol": "magic", + "name": "MagicLand" + }, + { + "id": "magic-usdc-generator", + "symbol": "mug", + "name": "Magic USDC Generator" + }, + { + "id": "magikal-ai", + "symbol": "mgkl", + "name": "MAGIKAL.ai" + }, + { + "id": "magmar", + "symbol": "mgr", + "name": "Magmar" + }, + { + "id": "magma-staked-monad", + "symbol": "gmon", + "name": "Magma Staked Monad" + }, + { + "id": "magnet-2", + "symbol": "magnet", + "name": "Magnet" + }, + { + "id": "magnet6900", + "symbol": "$🧲6900", + "name": "MAGNET6900" + }, + { + "id": "magnetgold", + "symbol": "mtg", + "name": "MagnetGold" + }, + { + "id": "magnetix", + "symbol": "mag", + "name": "Magnetix" + }, + { + "id": "magnificent-7777", + "symbol": "magic", + "name": "Magnificent 7777" + }, + { + "id": "magnify-cash", + "symbol": "mag", + "name": "Magnify Cash" + }, + { + "id": "magnum-2", + "symbol": "mag", + "name": "Magnum" + }, + { + "id": "magnus", + "symbol": "mag", + "name": "Magnus" + }, + { + "id": "magnus-opus-by-virtuals", + "symbol": "magnus", + "name": "Magnus Opus by Virtuals" + }, + { + "id": "magpie", + "symbol": "mgp", + "name": "Magpie" + }, + { + "id": "mahabibi-bin-solman", + "symbol": "mbs", + "name": "Mahabibi Bin Solman" + }, + { + "id": "mahadao", + "symbol": "maha", + "name": "Maha" + }, + { + "id": "mahina-token", + "symbol": "mhna", + "name": "Mahina Token" + }, + { + "id": "mai", + "symbol": "mai", + "name": "MAI" + }, + { + "id": "maia", + "symbol": "maia", + "name": "Maia" + }, + { + "id": "maiar", + "symbol": "maiar", + "name": "MAIAR" + }, + { + "id": "mai-arbitrum", + "symbol": "mimatic", + "name": "MAI (Arbitrum)" + }, + { + "id": "maiar-dex", + "symbol": "mex", + "name": "xExchange" + }, + { + "id": "mai-avalanche", + "symbol": "mimatic", + "name": "MAI (Avalanche)" + }, + { + "id": "mai-base", + "symbol": "mimatic", + "name": "MAI (Base)" + }, + { + "id": "mai-bsc", + "symbol": "mimatic", + "name": "MAI (BSC)" + }, + { + "id": "mai-cronos", + "symbol": "mimatic", + "name": "MAI (Cronos)" + }, + { + "id": "maicrotrader", + "symbol": "maicro", + "name": "maicrotrader" + }, + { + "id": "maidsafecoin", + "symbol": "emaid", + "name": "MaidSafeCoin" + }, + { + "id": "mai-fantom", + "symbol": "mimatic", + "name": "MAI (Fantom)" + }, + { + "id": "maiga", + "symbol": "maiga", + "name": "Maiga" + }, + { + "id": "mai-kava", + "symbol": "mimatic", + "name": "MAI (Kava)" + }, + { + "id": "mai-linea", + "symbol": "mimatic", + "name": "MAI (Linea)" + }, + { + "id": "main-character", + "symbol": "main", + "name": "Main Character" + }, + { + "id": "main-character-energy", + "symbol": "mcen", + "name": "Main Character Energy" + }, + { + "id": "mainframe", + "symbol": "mft", + "name": "Mainframe" + }, + { + "id": "mainframe-2", + "symbol": "sn25", + "name": "Mainframe" + }, + { + "id": "main-street-usd", + "symbol": "msusd", + "name": "Main Street USD" + }, + { + "id": "mai-optimism", + "symbol": "mimatic", + "name": "MAI (Optimism)" + }, + { + "id": "majin", + "symbol": "majin", + "name": "Majin" + }, + { + "id": "majo", + "symbol": "majo", + "name": "Majo" + }, + { + "id": "major", + "symbol": "major", + "name": "MAJOR" + }, + { + "id": "major-frog", + "symbol": "major", + "name": "Major Frog" + }, + { + "id": "make", + "symbol": "make", + "name": "MAKE" + }, + { + "id": "make-america-based-again", + "symbol": "based", + "name": "Make America Based Again" + }, + { + "id": "make-america-healthy-again", + "symbol": "maha", + "name": "Make America Healthy Again" + }, + { + "id": "make-america-mog-again", + "symbol": "mama", + "name": "Make America Mog Again" + }, + { + "id": "make-cro-great-again", + "symbol": "mcga", + "name": "Make CRO Great Again" + }, + { + "id": "make-ethereum-great-again", + "symbol": "$mega", + "name": "Make Ethereum Great Again" + }, + { + "id": "make-eth-great-again", + "symbol": "mega", + "name": "Make ETH Great Again" + }, + { + "id": "make-europe-great-again", + "symbol": "mega", + "name": "Make Europe Great Again" + }, + { + "id": "makeform", + "symbol": "form", + "name": "Makeform" + }, + { + "id": "make-fun", + "symbol": "mf", + "name": "Make Fun" + }, + { + "id": "maker", + "symbol": "mkr", + "name": "Maker" + }, + { + "id": "makerdao-arbitrum-bridged-dai-arbitrum-one", + "symbol": "dai", + "name": "MakerDAO Arbitrum Bridged DAI (Arbitrum One)" + }, + { + "id": "makerdao-arbitrum-nova-dai-bridge-arbitrum-nova", + "symbol": "dai", + "name": "MakerDAO Arbitrum Nova DAI Bridge (Arbitrum Nova)" + }, + { + "id": "makerdao-optimism-bridged-dai-optimism", + "symbol": "dai", + "name": "MakerDAO Optimism Bridged DAI (Optimism)" + }, + { + "id": "maker-flip", + "symbol": "mkf", + "name": "Maker Flip" + }, + { + "id": "makerx", + "symbol": "mkx", + "name": "MakerX" + }, + { + "id": "make-solana-great-again", + "symbol": "$trump", + "name": "Make Solana Great Again" + }, + { + "id": "makina", + "symbol": "mak", + "name": "Makina" + }, + { + "id": "malakai", + "symbol": "malakai", + "name": "Malakai" + }, + { + "id": "malinka", + "symbol": "mlnk", + "name": "Malinka" + }, + { + "id": "malou-2", + "symbol": "马喽", + "name": "马喽 (Malou)" + }, + { + "id": "mamabull", + "symbol": "mama", + "name": "MamaBull" + }, + { + "id": "mama-coin", + "symbol": "mama", + "name": "Mama Coin" + }, + { + "id": "mamba", + "symbol": "mamba", + "name": "Mamba" + }, + { + "id": "mambo", + "symbol": "mambo", + "name": "Mambo" + }, + { + "id": "mami", + "symbol": "mami", + "name": "Mami" + }, + { + "id": "mamo", + "symbol": "mamo", + "name": "Mamo" + }, + { + "id": "mamoon", + "symbol": "mamoon", + "name": "MAMOON" + }, + { + "id": "man", + "symbol": "$man", + "name": "MAN" + }, + { + "id": "man-2", + "symbol": "3d", + "name": "MAN" + }, + { + "id": "mana3", + "symbol": "mana3", + "name": "MANA3" + }, + { + "id": "manchester-city-fan-token", + "symbol": "city", + "name": "Manchester City Fan Token" + }, + { + "id": "mandala-chain", + "symbol": "kpg", + "name": "Mandala Chain" + }, + { + "id": "mandala-exchange-token", + "symbol": "mdx", + "name": "Mandala Exchange" + }, + { + "id": "mandox-2", + "symbol": "mandox", + "name": "MandoX" + }, + { + "id": "mandy-coin", + "symbol": "mandy", + "name": "MANDY COIN" + }, + { + "id": "mane", + "symbol": "mane", + "name": "MANE" + }, + { + "id": "maneki", + "symbol": "maneki", + "name": "MANEKI" + }, + { + "id": "maneki-ai-by-virtuals", + "symbol": "maneki", + "name": "Maneki AI by Virtuals" + }, + { + "id": "maneki-neko-2", + "symbol": "neko", + "name": "Maneki Neko" + }, + { + "id": "manga-token", + "symbol": "$manga", + "name": "Manga [OLD]" + }, + { + "id": "manga-token-2", + "symbol": "hono", + "name": "HONO Protocol" + }, + { + "id": "mangoman-intelligent", + "symbol": "mmit", + "name": "MangoMan Intelligent" + }, + { + "id": "mango-markets", + "symbol": "mngo", + "name": "Mango" + }, + { + "id": "mango-network", + "symbol": "mgo", + "name": "Mango Network" + }, + { + "id": "manifest-2", + "symbol": "mfx", + "name": "Manifest" + }, + { + "id": "manifest-3", + "symbol": "manifest", + "name": "MANIFEST" + }, + { + "id": "manifest-on-sol", + "symbol": "manifest", + "name": "Manifest" + }, + { + "id": "manifold-finance", + "symbol": "fold", + "name": "Manifold Finance" + }, + { + "id": "manipulated-time", + "symbol": "time", + "name": "Manipulated Time" + }, + { + "id": "mansioncoin", + "symbol": "mansion", + "name": "Mansioncoin" + }, + { + "id": "mansory-token", + "symbol": "mnsry", + "name": "Mansory Token" + }, + { + "id": "manta-meth", + "symbol": "meth", + "name": "Manta mETH" + }, + { + "id": "manta-musd", + "symbol": "musd", + "name": "Manta mUSD" + }, + { + "id": "manta-network", + "symbol": "manta", + "name": "Manta Network" + }, + { + "id": "mantis", + "symbol": "m", + "name": "Mantis" + }, + { + "id": "mantis-2", + "symbol": "sn123", + "name": "Mantis" + }, + { + "id": "mantle", + "symbol": "mnt", + "name": "Mantle" + }, + { + "id": "mantle-bridged-usdc-mantle", + "symbol": "usdc", + "name": "Mantle Bridged USDC (Mantle)" + }, + { + "id": "mantle-bridged-usdt-mantle", + "symbol": "usdt", + "name": "Mantle Bridged USDT (Mantle)" + }, + { + "id": "mantle-index-four-fund", + "symbol": "mi4", + "name": "Mantle Index Four Fund" + }, + { + "id": "mantle-inu", + "symbol": "minu", + "name": "Mantle Inu" + }, + { + "id": "mantle-restaked-eth", + "symbol": "cmeth", + "name": "Mantle Restaked ETH" + }, + { + "id": "mantle-staked-ether", + "symbol": "meth", + "name": "Mantle Staked Ether" + }, + { + "id": "mantle-usd", + "symbol": "musd", + "name": "Mantle USD" + }, + { + "id": "mantra-bridged-usdc-mantra", + "symbol": "usdc", + "name": "Mantra Bridged USDC (Mantra)" + }, + { + "id": "mantra-dao", + "symbol": "om", + "name": "MANTRA" + }, + { + "id": "manyu", + "symbol": "manyu", + "name": "MANYU" + }, + { + "id": "manyu-2", + "symbol": "manyu", + "name": "Manyu" + }, + { + "id": "manyufest", + "symbol": "mfest", + "name": "Manyufest" + }, + { + "id": "manyu-the-shiba-inu", + "symbol": "manyu", + "name": "Manyu the Shiba Inu" + }, + { + "id": "mao", + "symbol": "mao", + "name": "mao" + }, + { + "id": "mao-2", + "symbol": "mao", + "name": "Mao" + }, + { + "id": "mao-3", + "symbol": "mao", + "name": "Mao" + }, + { + "id": "maow", + "symbol": "maow", + "name": "maow" + }, + { + "id": "maple", + "symbol": "mpl", + "name": "Maple" + }, + { + "id": "mapped-usdt", + "symbol": "usdt", + "name": "Mapped USDT" + }, + { + "id": "maps", + "symbol": "maps", + "name": "MAPS" + }, + { + "id": "map-technical-forecasting", + "symbol": "maptf", + "name": "MAP Technical Forecasting" + }, + { + "id": "mara-holdings-ondo-tokenized-stock", + "symbol": "maraon", + "name": "MARA Holdings (Ondo Tokenized Stock)" + }, + { + "id": "mara-xstock", + "symbol": "marax", + "name": "MARA xStock" + }, + { + "id": "marbitz", + "symbol": "bitz", + "name": "MARBITZ" + }, + { + "id": "marbledao-artex", + "symbol": "artex", + "name": "MarbleDAO ARTEX" + }, + { + "id": "marblex", + "symbol": "mbx", + "name": "MARBLEX" + }, + { + "id": "marcat-maker", + "symbol": "marcat", + "name": "marcat maker" + }, + { + "id": "marcopolo", + "symbol": "mapo", + "name": "MAP Protocol" + }, + { + "id": "marcus", + "symbol": "marcus", + "name": "Marcus" + }, + { + "id": "mare-finance", + "symbol": "mare", + "name": "Mare Finance" + }, + { + "id": "margaritis", + "symbol": "marga", + "name": "Margaritis" + }, + { + "id": "marginswap", + "symbol": "mfi", + "name": "Marginswap" + }, + { + "id": "marhabadefi", + "symbol": "mrhb", + "name": "MarhabaDeFi" + }, + { + "id": "maria", + "symbol": "maria", + "name": "Maria" + }, + { + "id": "maricoin", + "symbol": "mcoin", + "name": "MariCoin" + }, + { + "id": "marie-rose-ai", + "symbol": "marie", + "name": "Marie Rose AI" + }, + { + "id": "marinade", + "symbol": "mnde", + "name": "Marinade" + }, + { + "id": "marina-protocol", + "symbol": "bay", + "name": "Marina Protocol" + }, + { + "id": "marine-moguls", + "symbol": "mogul", + "name": "Marine Moguls" + }, + { + "id": "marionawfal-on-x", + "symbol": "mario", + "name": "MarioNawfal on X" + }, + { + "id": "market-cap", + "symbol": "mcap", + "name": "Market Cap" + }, + { + "id": "market-dominance", + "symbol": "md", + "name": "Market Dominance" + }, + { + "id": "market-fun", + "symbol": "market", + "name": "Market fun" + }, + { + "id": "market-maker-dao", + "symbol": "mmdao", + "name": "Market Maker DAO" + }, + { + "id": "market-making-pro", + "symbol": "mmpro", + "name": "Market Making Pro" + }, + { + "id": "market-maverick", + "symbol": "luigi", + "name": "Market Maverick" + }, + { + "id": "marketpeak", + "symbol": "peak", + "name": "PEAKDEFI" + }, + { + "id": "marketraker", + "symbol": "raker", + "name": "MarketRaker AI" + }, + { + "id": "market-stalker", + "symbol": "stlkr", + "name": "Market Stalker" + }, + { + "id": "marketvector-digital-assets-25-index", + "symbol": "mvda25", + "name": "MarketVector Digital Assets 25 Index" + }, + { + "id": "marketvector-token-terminal-fundamental-index", + "symbol": "mvtt10f", + "name": "MarketVector Token Terminal Fundamental Index" + }, + { + "id": "markkacy", + "symbol": "kacy", + "name": "markkacy" + }, + { + "id": "marlin", + "symbol": "pond", + "name": "Marlin" + }, + { + "id": "marmara-credit-loops", + "symbol": "mcl", + "name": "Marmara Credit Loops" + }, + { + "id": "marnotaur", + "symbol": "taur", + "name": "Marnotaur" + }, + { + "id": "marquee", + "symbol": "marq", + "name": "Marquee" + }, + { + "id": "mars-2", + "symbol": "mars", + "name": "Mars" + }, + { + "id": "mars-3", + "symbol": "mars", + "name": "Mars" + }, + { + "id": "mars4", + "symbol": "mars4", + "name": "MARS4" + }, + { + "id": "mars-4", + "symbol": "mars", + "name": "MARS" + }, + { + "id": "mars-5", + "symbol": "mars", + "name": "MARS" + }, + { + "id": "marscoin", + "symbol": "mars", + "name": "Marscoin" + }, + { + "id": "marscoin-2", + "symbol": "mars", + "name": "Marscoin" + }, + { + "id": "marscoin-3", + "symbol": "marscoin", + "name": "MarsCoin" + }, + { + "id": "marscolony", + "symbol": "clny", + "name": "MarsColony" + }, + { + "id": "marsdao", + "symbol": "mdao", + "name": "MarsDAO" + }, + { + "id": "mars-doge-2", + "symbol": "mdoge", + "name": "Mars Doge" + }, + { + "id": "marse", + "symbol": "marse", + "name": "Marse" + }, + { + "id": "mars-ecosystem-token", + "symbol": "xms", + "name": "Mars Ecosystem" + }, + { + "id": "marsmi", + "symbol": "marsmi", + "name": "MarsMi" + }, + { + "id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "symbol": "mars", + "name": "Mars Protocol" + }, + { + "id": "martin", + "symbol": "martin", + "name": "Martin" + }, + { + "id": "martin-shkreli-inu", + "symbol": "msi", + "name": "Martin Shkreli Inu" + }, + { + "id": "maru-dog", + "symbol": "maru", + "name": "Maru Dog" + }, + { + "id": "marumarunft", + "symbol": "maru", + "name": "marumaruNFT" + }, + { + "id": "marutaro-2", + "symbol": "$maru", + "name": "Marutaro" + }, + { + "id": "marutaro-3", + "symbol": "maru", + "name": "Marutaro" + }, + { + "id": "marv", + "symbol": "marv", + "name": "Marv" + }, + { + "id": "marvell-technology-ondo-tokenized-stock", + "symbol": "mrvlon", + "name": "Marvell Technology (Ondo Tokenized Stock)" + }, + { + "id": "marvell-xstock", + "symbol": "mrvlx", + "name": "Marvell xStock" + }, + { + "id": "marvelous-nfts", + "symbol": "mnft", + "name": "Marvelous NFTs" + }, + { + "id": "marvin-2", + "symbol": "marvin", + "name": "Marvin" + }, + { + "id": "marvin-inu", + "symbol": "marvin", + "name": "Marvin Inu" + }, + { + "id": "marvin-inu-2", + "symbol": "marvin", + "name": "Marvin Inu" + }, + { + "id": "marvin-on-base", + "symbol": "mob", + "name": "Marvin On Base" + }, + { + "id": "marvin-the-robot", + "symbol": "marvin", + "name": "Marvin The Robot" + }, + { + "id": "masa-finance", + "symbol": "masa", + "name": "Masa" + }, + { + "id": "mascot-of-the-trenches", + "symbol": "rug", + "name": "mascot of the trenches" + }, + { + "id": "mascot-of-the-unholy-year", + "symbol": "buio", + "name": "Mascot of the Unholy Year" + }, + { + "id": "mashida", + "symbol": "mshd", + "name": "Mashida" + }, + { + "id": "mask-network", + "symbol": "mask", + "name": "Mask Network" + }, + { + "id": "masknumber", + "symbol": "mask", + "name": "MaskNumber" + }, + { + "id": "masq", + "symbol": "masq", + "name": "MASQ" + }, + { + "id": "massa", + "symbol": "mas", + "name": "Massa" + }, + { + "id": "massa-bridged-btc", + "symbol": "wbtc.e", + "name": "Massa Bridged BTC" + }, + { + "id": "massa-bridged-usdc-massa", + "symbol": "usdc.e", + "name": "Massa Bridged USDC (Massa)" + }, + { + "id": "massa-bridged-usdt-massa", + "symbol": "usdt.b", + "name": "Massa Bridged USDT (Massa)" + }, + { + "id": "massa-bridged-weth-b-massa", + "symbol": "weth.b", + "name": "Massa Bridged WETH.b (Massa)" + }, + { + "id": "massive-meme-outbreak", + "symbol": "rpg", + "name": "Massive Meme Outbreak" + }, + { + "id": "mass-vehicle-ledger", + "symbol": "mvl", + "name": "MVL" + }, + { + "id": "masterbot", + "symbol": "$bot", + "name": "MasterBOT" + }, + { + "id": "mastercard-ondo-tokenized-stock", + "symbol": "maon", + "name": "Mastercard (Ondo Tokenized Stock)" + }, + { + "id": "mastercard-xstock", + "symbol": "max", + "name": "Mastercard xStock" + }, + { + "id": "masterdex", + "symbol": "mdex", + "name": "MasterDEX" + }, + { + "id": "matchain", + "symbol": "mat", + "name": "Matchain" + }, + { + "id": "match-finance-eslbr", + "symbol": "meslbr", + "name": "Match Finance esLBR" + }, + { + "id": "matchy", + "symbol": "$matchy", + "name": "Matchy" + }, + { + "id": "materium", + "symbol": "mtrm", + "name": "Materium" + }, + { + "id": "mates", + "symbol": "mates", + "name": "MATES" + }, + { + "id": "math", + "symbol": "math", + "name": "MATH" + }, + { + "id": "matic-aave-aave", + "symbol": "maaave", + "name": "Matic Aave Interest Bearing AAVE" + }, + { + "id": "matic-aave-usdc", + "symbol": "mausdc", + "name": "Matic Aave Interest Bearing USDC" + }, + { + "id": "matic-dai-stablecoin", + "symbol": "dai-matic", + "name": "Matic DAI Stablecoin" + }, + { + "id": "matic-network", + "symbol": "matic", + "name": "MATIC (migrated to POL)" + }, + { + "id": "matic-plenty-bridge", + "symbol": "matic.e", + "name": "MATIC (Plenty Bridge)" + }, + { + "id": "matic-wormhole", + "symbol": "maticpo", + "name": "MATIC (Wormhole)" + }, + { + "id": "mato-the-mouse", + "symbol": "mato", + "name": "Mato The Mouse" + }, + { + "id": "matr1x", + "symbol": "max", + "name": "Matr1x" + }, + { + "id": "matr1x-fire", + "symbol": "fire", + "name": "Matr1x Fire" + }, + { + "id": "matrix-3", + "symbol": "matrix", + "name": "MATRIX" + }, + { + "id": "matrix-4", + "symbol": "matrix", + "name": "Matrix" + }, + { + "id": "matrix-5", + "symbol": "matrix", + "name": "MATRIX" + }, + { + "id": "matrix-ai-network", + "symbol": "man", + "name": "Matrix AI Network" + }, + { + "id": "matrix-chain", + "symbol": "mtc", + "name": "Matrix Chain" + }, + { + "id": "matrixdock-gold", + "symbol": "xaum", + "name": "Matrixdock Gold" + }, + { + "id": "matrixetf", + "symbol": "mdf", + "name": "MatrixETF" + }, + { + "id": "matrix-layer-protocol", + "symbol": "mlp", + "name": "Matrix Layer Protocol" + }, + { + "id": "matrix-one", + "symbol": "matrix", + "name": "Matrix One" + }, + { + "id": "matrixswap", + "symbol": "matrix", + "name": "Matrix Labs" + }, + { + "id": "matrix-win", + "symbol": "matrix", + "name": "Matrix.Win" + }, + { + "id": "matt-0x79", + "symbol": "matt", + "name": "Matt Furie" + }, + { + "id": "matt-furie-s-boys-club", + "symbol": "boysclub", + "name": "Matt Furie's Boys Club" + }, + { + "id": "matt-strategy", + "symbol": "mattstr", + "name": "Matt Strategy" + }, + { + "id": "mausdc", + "symbol": "mausdc", + "name": "Morpho-Aave USD Coin" + }, + { + "id": "mausdt", + "symbol": "mausdt", + "name": "Morpho-Aave Tether USD" + }, + { + "id": "mavaverse-token", + "symbol": "mvx", + "name": "Mavaverse" + }, + { + "id": "maverick-protocol", + "symbol": "mav", + "name": "Maverick Protocol" + }, + { + "id": "mavryk-network", + "symbol": "mvrk", + "name": "Mavryk Network" + }, + { + "id": "max-2", + "symbol": "max", + "name": "MAX" + }, + { + "id": "maxbtc", + "symbol": "maxbtc", + "name": "maxBTC" + }, + { + "id": "maxcat", + "symbol": "$max", + "name": "MaxCat" + }, + { + "id": "maxi", + "symbol": "maxi", + "name": "Maxi" + }, + { + "id": "maxi-2", + "symbol": "maxi", + "name": "maxi" + }, + { + "id": "maxi-doge", + "symbol": "maxi", + "name": "Maxi Doge" + }, + { + "id": "maxi-doge-3", + "symbol": "maxi", + "name": "Maxi Doge" + }, + { + "id": "maxi-doge-4", + "symbol": "maxi", + "name": "Maxi Doge" + }, + { + "id": "maximize-ai", + "symbol": "maxi", + "name": "Maximize AI" + }, + { + "id": "maximus", + "symbol": "maxi", + "name": "Maximus" + }, + { + "id": "maximus-base", + "symbol": "base", + "name": "Maximus BASE" + }, + { + "id": "maximus-dao", + "symbol": "maxi", + "name": "Maximus DAO" + }, + { + "id": "maximus-deci", + "symbol": "deci", + "name": "Maximus DECI" + }, + { + "id": "maximus-lucky", + "symbol": "lucky", + "name": "Maximus LUCKY" + }, + { + "id": "maximus-pool-party", + "symbol": "party", + "name": "Maximus Pool Party" + }, + { + "id": "maximus-trio", + "symbol": "trio", + "name": "Maximus TRIO" + }, + { + "id": "maxi-payfi-strategy-token", + "symbol": "mpst", + "name": "Maxi PayFi Strategy Token" + }, + { + "id": "max-on-eth", + "symbol": "maxeth", + "name": "Max on ETH" + }, + { + "id": "max-token", + "symbol": "max", + "name": "MAX" + }, + { + "id": "maxwell", + "symbol": "maxwell", + "name": "Maxwell" + }, + { + "id": "maxwell-the-spinning-cat", + "symbol": "cat", + "name": "Maxwell the spinning cat" + }, + { + "id": "maxx-2", + "symbol": "maxx", + "name": "Maxx" + }, + { + "id": "maya", + "symbol": "maya", + "name": "Maya" + }, + { + "id": "maya-preferred-223", + "symbol": "mpra", + "name": "Maya Preferred PRA" + }, + { + "id": "maya-world", + "symbol": "maya", + "name": "Maya World" + }, + { + "id": "maza", + "symbol": "mzc", + "name": "Maza" + }, + { + "id": "mazimatic", + "symbol": "mazi", + "name": "MaziMatic" + }, + { + "id": "mazze", + "symbol": "mazze", + "name": "Mazze" + }, + { + "id": "mbc", + "symbol": "mbc", + "name": "MBC" + }, + { + "id": "mb-coin", + "symbol": "mbc", + "name": "MB COIN" + }, + { + "id": "mbd-financials", + "symbol": "mbd", + "name": "MBD Financials" + }, + { + "id": "mbg-by-multibank-group", + "symbol": "mbg", + "name": "MBG By Multibank Group" + }, + { + "id": "mbp-coin", + "symbol": "mbp", + "name": "MBP Coin" + }, + { + "id": "mbtc", + "symbol": "mbtc", + "name": "mBTC" + }, + { + "id": "mbx", + "symbol": "mbx", + "name": "MAGABABY" + }, + { + "id": "mcbroken", + "symbol": "mcbroken", + "name": "McBROKEN" + }, + { + "id": "mcdex", + "symbol": "mcb", + "name": "MUX Protocol" + }, + { + "id": "mcdonald-s-ondo-tokenized-stock", + "symbol": "mcdon", + "name": "McDonald's (Ondo Tokenized Stock)" + }, + { + "id": "mcdonald-s-xstock", + "symbol": "mcdx", + "name": "McDonald's xStock" + }, + { + "id": "mcdull", + "symbol": "mcdull", + "name": "McDull (Meme)" + }, + { + "id": "mcelo", + "symbol": "mcelo", + "name": "mCELO" + }, + { + "id": "mceur", + "symbol": "mceur", + "name": "mcEUR" + }, + { + "id": "mcfinance", + "symbol": "mcf", + "name": "MCFinance" + }, + { + "id": "mcflamingo-token", + "symbol": "mcfl", + "name": "McFlamingo Token" + }, + { + "id": "mch-coin", + "symbol": "mchc", + "name": "MCH Coin" + }, + { + "id": "mclaren-f1-fan-token", + "symbol": "mcl", + "name": "McLaren F1 Fan Token" + }, + { + "id": "mcncoin", + "symbol": "mcn", + "name": "MCNCOIN" + }, + { + "id": "mcoin1", + "symbol": "mcoin", + "name": "MCOIN" + }, + { + "id": "mcoin-2", + "symbol": "mcoin", + "name": "MCOIN" + }, + { + "id": "mcontent", + "symbol": "mcontent", + "name": "MContent" + }, + { + "id": "mcp-ai", + "symbol": "mcp", + "name": "MCP AI" + }, + { + "id": "mcpepe-s", + "symbol": "pepes", + "name": "McPepe's" + }, + { + "id": "mcverse", + "symbol": "mcv", + "name": "MCVERSE" + }, + { + "id": "mdbl", + "symbol": "mdbl", + "name": "MDBL" + }, + { + "id": "mdex-bsc", + "symbol": "mdx", + "name": "Mdex (BSC)" + }, + { + "id": "mead-2", + "symbol": "mead", + "name": "Mead" + }, + { + "id": "meai", + "symbol": "meai", + "name": "MeAI" + }, + { + "id": "meana-raptor", + "symbol": "mrt", + "name": "Meana Raptor" + }, + { + "id": "meanfi", + "symbol": "mean", + "name": "Mean DAO" + }, + { + "id": "measurable-data-token", + "symbol": "mdt", + "name": "Measurable Data" + }, + { + "id": "meblox-protocol", + "symbol": "meb", + "name": "Meblox Protocol" + }, + { + "id": "mecca", + "symbol": "mea", + "name": "MECCA" + }, + { + "id": "mecha-morphing", + "symbol": "mape", + "name": "Mecha Morphing" + }, + { + "id": "mechaos", + "symbol": "mecha", + "name": "MechaOs" + }, + { + "id": "mechazilla-for-scale", + "symbol": "mechazilla", + "name": "Mechazilla for Scale" + }, + { + "id": "mech-master", + "symbol": "mech", + "name": "Mech Master" + }, + { + "id": "meconcash", + "symbol": "mch", + "name": "Meconcash" + }, + { + "id": "media-licensing-token", + "symbol": "mlt", + "name": "Media Licensing Token" + }, + { + "id": "media-network", + "symbol": "media", + "name": "Media Network" + }, + { + "id": "medibloc", + "symbol": "med", + "name": "Medibloc" + }, + { + "id": "medical-intelligence", + "symbol": "medi", + "name": "Medical Intelligence" + }, + { + "id": "medicalveda", + "symbol": "mveda", + "name": "MedicalVeda" + }, + { + "id": "medicle", + "symbol": "mdi", + "name": "Medicle" + }, + { + "id": "medieus", + "symbol": "mdus", + "name": "MEDIEUS" + }, + { + "id": "medieval-empires", + "symbol": "mee", + "name": "Medieval Empires" + }, + { + "id": "medifakt", + "symbol": "fakt", + "name": "Medifakt" + }, + { + "id": "meditoc", + "symbol": "mdti", + "name": "Meditoc" + }, + { + "id": "medjed", + "symbol": "medjed", + "name": "Medjed" + }, + { + "id": "medoo", + "symbol": "medoo", + "name": "Medoo" + }, + { + "id": "medping", + "symbol": "mpg", + "name": "Medping" + }, + { + "id": "medtronic-xstock", + "symbol": "mdtx", + "name": "Medtronic xStock" + }, + { + "id": "medusa-2", + "symbol": "medusa", + "name": "MEDUSA" + }, + { + "id": "medusa-3", + "symbol": "medusa", + "name": "Medusa" + }, + { + "id": "medusa-metis", + "symbol": "metis", + "name": "Medusa" + }, + { + "id": "medxt", + "symbol": "medxt", + "name": "MEDXT" + }, + { + "id": "meebitstrategy", + "symbol": "meebstr", + "name": "MeebitStrategy" + }, + { + "id": "meeb-vault-nftx", + "symbol": "meeb", + "name": "MEEB Vault (NFTX)" + }, + { + "id": "meeds-dao", + "symbol": "meed", + "name": "Meeds DAO" + }, + { + "id": "meefie", + "symbol": "mft", + "name": "MEEFIE" + }, + { + "id": "meerkat-2", + "symbol": "merk", + "name": "Meerkat" + }, + { + "id": "meet48", + "symbol": "idol", + "name": "MEET48" + }, + { + "id": "me-everyday", + "symbol": "mee", + "name": "Me Everyday" + }, + { + "id": "meg4mint", + "symbol": "meg", + "name": "Meg4mint" + }, + { + "id": "megadeath-pepe", + "symbol": "megadeath", + "name": "MEGADEATH (PEPE)" + }, + { + "id": "megaeth", + "symbol": "mega", + "name": "MegaETH" + }, + { + "id": "megalink", + "symbol": "mg8", + "name": "Megalink" + }, + { + "id": "megapix", + "symbol": "mpix", + "name": "Megapix" + }, + { + "id": "megausd", + "symbol": "usdm", + "name": "MegaUSD" + }, + { + "id": "megaweapon", + "symbol": "$weapon", + "name": "Megaweapon" + }, + { + "id": "mega-yacht-cult", + "symbol": "myc", + "name": "Mega Yacht Cult" + }, + { + "id": "me-gusta-2", + "symbol": "megusta", + "name": "ME GUSTA" + }, + { + "id": "meh-3", + "symbol": "meh", + "name": "Meh" + }, + { + "id": "meh-on-ton", + "symbol": "meh", + "name": "meh on TON" + }, + { + "id": "mei-solutions", + "symbol": "mei", + "name": "Mei Solutions" + }, + { + "id": "melancholy-jimmy", + "symbol": "jimmy", + "name": "Melancholy Jimmy" + }, + { + "id": "melania-meme", + "symbol": "melania", + "name": "Melania Meme" + }, + { + "id": "meld", + "symbol": "meld", + "name": "MELD [OLD]" + }, + { + "id": "meld-2", + "symbol": "meld", + "name": "MELD" + }, + { + "id": "melega", + "symbol": "marco", + "name": "Melega" + }, + { + "id": "mello-ai", + "symbol": "mello", + "name": "Mello AI" + }, + { + "id": "mellow-man", + "symbol": "mellow", + "name": "Mellow Man" + }, + { + "id": "melo", + "symbol": "melo", + "name": "Melo" + }, + { + "id": "melon", + "symbol": "mln", + "name": "Enzyme" + }, + { + "id": "melon-2", + "symbol": "melon", + "name": "MELON" + }, + { + "id": "melon-dog", + "symbol": "melon", + "name": "Melon Dog" + }, + { + "id": "melos-studio", + "symbol": "melos", + "name": "Melos Studio" + }, + { + "id": "member", + "symbol": "member", + "name": "member" + }, + { + "id": "membrane", + "symbol": "mbrn", + "name": "Membrane" + }, + { + "id": "memdex100", + "symbol": "memdex", + "name": "MEMDEX100" + }, + { + "id": "meme-ai-coin", + "symbol": "memeai", + "name": "Meme AI Coin" + }, + { + "id": "meme-alliance", + "symbol": "mma", + "name": "Meme Alliance" + }, + { + "id": "meme-anarchic-numismatic-asset", + "symbol": "mana", + "name": "Meme Anarchic Numismatic Asset" + }, + { + "id": "memebets", + "symbol": "mbet", + "name": "Memebets" + }, + { + "id": "meme-brc-20", + "symbol": "meme", + "name": "MEME (Ordinals)" + }, + { + "id": "memecast-ai", + "symbol": "mcai", + "name": "MEMECAST.AI" + }, + { + "id": "memechan", + "symbol": "chan", + "name": "memechan" + }, + { + "id": "memeclip", + "symbol": "mclip", + "name": "MemeClip" + }, + { + "id": "memecoin", + "symbol": "mem", + "name": "Memecoin" + }, + { + "id": "meme-coin", + "symbol": "moin", + "name": "meme + coin =" + }, + { + "id": "memecoin1", + "symbol": "m1", + "name": "Memecoin1" + }, + { + "id": "memecoin-2", + "symbol": "meme", + "name": "Memecoin" + }, + { + "id": "memecoin-3", + "symbol": "memecoin", + "name": "Memecoin" + }, + { + "id": "memecoindao", + "symbol": "$memes", + "name": "Memecoindao" + }, + { + "id": "memecoingirl", + "symbol": "miko", + "name": "MemeCoinGirl" + }, + { + "id": "meme-coin-millionaire", + "symbol": "$rich", + "name": "Meme Coin Millionaire" + }, + { + "id": "memecoin-sniping-solutions-ai", + "symbol": "$messa", + "name": "Memecoin Sniping Solutions AI" + }, + { + "id": "memecoin-supercycle", + "symbol": "supr", + "name": "Memecoin Supercycle" + }, + { + "id": "memecore", + "symbol": "m", + "name": "MemeCore" + }, + { + "id": "memecycle", + "symbol": "memecycle", + "name": "MEMECYCLE" + }, + { + "id": "memedao", + "symbol": "memd", + "name": "MemeDAO" + }, + { + "id": "meme-economic-forum", + "symbol": "mef", + "name": "Meme Economic Forum" + }, + { + "id": "meme-elon-doge-floki-2", + "symbol": "memelon", + "name": "Meme Elon Doge Floki" + }, + { + "id": "memeerkat", + "symbol": "mkat", + "name": "Memeerkat" + }, + { + "id": "memeetf", + "symbol": "memeetf", + "name": "Bitget MemeETF" + }, + { + "id": "memefi-2", + "symbol": "memefi", + "name": "MemeFi" + }, + { + "id": "memefi-toybox-404", + "symbol": "toybox", + "name": "Memefi Toybox 404" + }, + { + "id": "memegames-ai", + "symbol": "mgames", + "name": "MemeGames AI" + }, + { + "id": "meme-games-wtf", + "symbol": "wtf", + "name": "Meme Games WTF" + }, + { + "id": "memehive-ai", + "symbol": "mhive", + "name": "MemeHive AI" + }, + { + "id": "memeinator", + "symbol": "mmtr", + "name": "Memeinator" + }, + { + "id": "meme-index", + "symbol": "memex", + "name": "Meme Index" + }, + { + "id": "meme-kombat", + "symbol": "mk", + "name": "Meme Kombat" + }, + { + "id": "memeless", + "symbol": "memeless", + "name": "MEMELESS" + }, + { + "id": "memeless-coin", + "symbol": "memeless", + "name": "MEMELESS COIN" + }, + { + "id": "memelinked", + "symbol": "mk", + "name": "Memelinked" + }, + { + "id": "meme-man", + "symbol": "mm", + "name": "Meme Man" + }, + { + "id": "mememarket", + "symbol": "mfun", + "name": "MemeMarket" + }, + { + "id": "mememe", + "symbol": "$mememe", + "name": "MEMEME" + }, + { + "id": "meme-millionaires", + "symbol": "mfm", + "name": "Meme Millionaires" + }, + { + "id": "meme-moguls", + "symbol": "mgls", + "name": "Meme Moguls" + }, + { + "id": "meme-network", + "symbol": "meme", + "name": "Meme Network" + }, + { + "id": "memento-mori", + "symbol": "mori", + "name": "MEMENTO•MORI (Runes)" + }, + { + "id": "memeora", + "symbol": "memeora", + "name": "Memeora" + }, + { + "id": "memepad", + "symbol": "mepad", + "name": "MemePad" + }, + { + "id": "memeputer", + "symbol": "memeputer", + "name": "Memeputer" + }, + { + "id": "memerot", + "symbol": "memerot", + "name": "Memerot" + }, + { + "id": "memerwa", + "symbol": "merwa", + "name": "memerwa" + }, + { + "id": "memes", + "symbol": "memes", + "name": "MEMES" + }, + { + "id": "memes-ai", + "symbol": "memesai", + "name": "Memes AI" + }, + { + "id": "memesis-world", + "symbol": "mems", + "name": "Memesis World" + }, + { + "id": "memes-make-it-possible", + "symbol": "mmip", + "name": "Memes Make It Possible" + }, + { + "id": "memes-protocol", + "symbol": "memes", + "name": "Memes Protocol" + }, + { + "id": "meme-ssi", + "symbol": "meme.ssi", + "name": "MEME.ssi" + }, + { + "id": "memes-street", + "symbol": "memes", + "name": "Memes Street" + }, + { + "id": "memes-street-ai", + "symbol": "mst", + "name": "Memes Street AI" + }, + { + "id": "memestock", + "symbol": "memestock", + "name": "memestock" + }, + { + "id": "memestrategy", + "symbol": "memestr", + "name": "MemeStrategy" + }, + { + "id": "memes-vs-undead", + "symbol": "mvu", + "name": "Memes vs Undead" + }, + { + "id": "memetern", + "symbol": "mxt", + "name": "Memetern" + }, + { + "id": "memetoon", + "symbol": "meme", + "name": "MEMETOON" + }, + { + "id": "meme-trumpcoin", + "symbol": "trump", + "name": "Meme TrumpCoin" + }, + { + "id": "meme-world-order", + "symbol": "mwor", + "name": "Meme World Order" + }, + { + "id": "memexsol", + "symbol": "memexsol", + "name": "MEMEXSOL" + }, + { + "id": "memhash", + "symbol": "memhash", + "name": "Memhash" + }, + { + "id": "memory", + "symbol": "mem", + "name": "Memory" + }, + { + "id": "memoryprotocol", + "symbol": "memoryprotocol", + "name": "memoryprotocol" + }, + { + "id": "memusic", + "symbol": "mmt", + "name": "MeMusic" + }, + { + "id": "men", + "symbol": "men", + "name": "MEN" + }, + { + "id": "mendi-finance", + "symbol": "mendi", + "name": "Mendi Finance" + }, + { + "id": "meng-chong", + "symbol": "meng", + "name": "Meng Chong" + }, + { + "id": "mentat", + "symbol": "spice", + "name": "Mentat" + }, + { + "id": "mento", + "symbol": "mento", + "name": "MENTO" + }, + { + "id": "men-vs-gorilla", + "symbol": "mvg", + "name": "100 Men vs 1 Gorilla" + }, + { + "id": "meow", + "symbol": "meow", + "name": "MEOW" + }, + { + "id": "meow-2", + "symbol": "meow", + "name": "Meow" + }, + { + "id": "meow-3", + "symbol": "meow", + "name": "MEOW" + }, + { + "id": "meow-5", + "symbol": "meow", + "name": "Meow" + }, + { + "id": "meowcat-2", + "symbol": "meow", + "name": "MeowCat" + }, + { + "id": "meowcoin", + "symbol": "mewc", + "name": "Meowcoin" + }, + { + "id": "meowistanbul", + "symbol": "meow", + "name": "MeowIstanbul" + }, + { + "id": "meow-meme", + "symbol": "meow", + "name": "Meow Meme" + }, + { + "id": "meow-meow-meow-meow", + "symbol": "meow", + "name": "meow meow meow meow" + }, + { + "id": "meowspace", + "symbol": "mspc", + "name": "MeowSpace" + }, + { + "id": "mercadolibre-ondo-tokenized-stock", + "symbol": "melion", + "name": "MercadoLibre (Ondo Tokenized Stock)" + }, + { + "id": "merchant-token", + "symbol": "mto", + "name": "Merchant" + }, + { + "id": "merchminter", + "symbol": "mrchr", + "name": "MerchMinter" + }, + { + "id": "merck-xstock", + "symbol": "mrkx", + "name": "Merck xStock" + }, + { + "id": "mercle", + "symbol": "$mercle", + "name": "MERCLE" + }, + { + "id": "mercurial", + "symbol": "mer", + "name": "Mercurial" + }, + { + "id": "merge", + "symbol": "merge", + "name": "Merge" + }, + { + "id": "merge-token", + "symbol": "merge", + "name": "Merge Token" + }, + { + "id": "meridian-2", + "symbol": "mrdn", + "name": "Meridian" + }, + { + "id": "meridian-mst", + "symbol": "mst", + "name": "Meridian MST" + }, + { + "id": "merit-2", + "symbol": "sn73", + "name": "Merit" + }, + { + "id": "merit-circle", + "symbol": "mc", + "name": "Merit Circle" + }, + { + "id": "merkle-trade", + "symbol": "mkl", + "name": "Merkle Trade" + }, + { + "id": "merlin-chain", + "symbol": "merl", + "name": "Merlin Chain" + }, + { + "id": "merlin-chain-bridged-voya-merlin", + "symbol": "voya", + "name": "Merlin Chain Bridged VOYA (Merlin)" + }, + { + "id": "merlin-chain-bridged-wrapped-btc-merlin", + "symbol": "wbtc", + "name": "Merlin Chain Bridged Wrapped BTC (Merlin)" + }, + { + "id": "merlin-s-seal-btc", + "symbol": "m-btc", + "name": "Merlin's Seal BTC" + }, + { + "id": "merlins-seal-usdc", + "symbol": "m-usdc", + "name": "Merlin Bridged USDC (Merlin)" + }, + { + "id": "merlins-seal-usdt", + "symbol": "m-usdt", + "name": "Merlin's Seal USDT" + }, + { + "id": "merlin-starter", + "symbol": "mstar", + "name": "Star AI" + }, + { + "id": "merlinswap", + "symbol": "mp", + "name": "MerlinSwap" + }, + { + "id": "merlinuniverse-egg", + "symbol": "egg", + "name": "MerlinUniverse Egg" + }, + { + "id": "meromai", + "symbol": "aimr", + "name": "MeromAI" + }, + { + "id": "mero-mercury-coin", + "symbol": "mero", + "name": "MERO Mercury Coin" + }, + { + "id": "merry-christmas", + "symbol": "mc", + "name": "Merry Christmas" + }, + { + "id": "merry-christmusk", + "symbol": "xmusk", + "name": "Merry Christmusk" + }, + { + "id": "mert-s-minutes", + "symbol": "mert", + "name": "mert's minutes" + }, + { + "id": "meshswap-protocol", + "symbol": "mesh", + "name": "Meshswap Protocol" + }, + { + "id": "meso-finance", + "symbol": "meso", + "name": "Meso Finance" + }, + { + "id": "meson-network", + "symbol": "msn", + "name": "Meson Network" + }, + { + "id": "messiah", + "symbol": "msia", + "name": "Messiah" + }, + { + "id": "messier", + "symbol": "m87", + "name": "MESSIER" + }, + { + "id": "meta", + "symbol": "mta", + "name": "mStable Governance: Meta" + }, + { + "id": "meta-2", + "symbol": "meta", + "name": "META [Old]" + }, + { + "id": "meta-2-2", + "symbol": "meta", + "name": "MetaDAO" + }, + { + "id": "meta-apes-peel", + "symbol": "peel", + "name": "Meta Apes PEEL" + }, + { + "id": "metablox", + "symbol": "mbx", + "name": "MetaBlox" + }, + { + "id": "meta-book", + "symbol": "book", + "name": "Meta Book" + }, + { + "id": "metabrawl", + "symbol": "$brawl", + "name": "Metabrawl" + }, + { + "id": "meta-bsc", + "symbol": "meta", + "name": "Meta BSC" + }, + { + "id": "metabusdcoin", + "symbol": "mlz", + "name": "MetaLabz" + }, + { + "id": "metacade", + "symbol": "mcade", + "name": "Metacade" + }, + { + "id": "metacademax", + "symbol": "metacademax", + "name": "MetacadeMax" + }, + { + "id": "metacash", + "symbol": "meta", + "name": "MetaCash" + }, + { + "id": "metacene", + "symbol": "mak", + "name": "MetaCene" + }, + { + "id": "metacraft", + "symbol": "mct", + "name": "Metacraft" + }, + { + "id": "metaderby", + "symbol": "dby", + "name": "Metaderby" + }, + { + "id": "metadium", + "symbol": "meta", + "name": "Metadium" + }, + { + "id": "meta-doge", + "symbol": "metadoge", + "name": "Meta Doge" + }, + { + "id": "metadoge-bsc", + "symbol": "metadoge", + "name": "MetaDoge BSC" + }, + { + "id": "metados", + "symbol": "second", + "name": "MetaDOS" + }, + { + "id": "metadrip", + "symbol": "drip", + "name": "Metadrip" + }, + { + "id": "metaelfland", + "symbol": "meld", + "name": "MetaElfLand" + }, + { + "id": "metafighter", + "symbol": "mf", + "name": "MetaFighter" + }, + { + "id": "metafight-token", + "symbol": "mft", + "name": "MetaFight Token" + }, + { + "id": "meta-finance", + "symbol": "meta", + "name": "Meta Finance" + }, + { + "id": "meta-finance-elements-verse", + "symbol": "mfev", + "name": "Meta Finance Elements Verse" + }, + { + "id": "meta-financial-ai", + "symbol": "mefai", + "name": "META FINANCIAL AI" + }, + { + "id": "metafluence", + "symbol": "meto", + "name": "Metafluence" + }, + { + "id": "metafox", + "symbol": "fox", + "name": "Metafox" + }, + { + "id": "metagalaxy-land", + "symbol": "megaland", + "name": "Metagalaxy Land" + }, + { + "id": "meta-games-coin", + "symbol": "mgc", + "name": "Meta Games Coin" + }, + { + "id": "metagods", + "symbol": "mgod", + "name": "MetaGods" + }, + { + "id": "metahero", + "symbol": "hero", + "name": "Metahero" + }, + { + "id": "metahub-finance", + "symbol": "men", + "name": "DAC Platform" + }, + { + "id": "met-ai", + "symbol": "met", + "name": "Met.AI" + }, + { + "id": "metainside-by-virtuals", + "symbol": "min", + "name": "MetaInside by Virtuals" + }, + { + "id": "metaiverse", + "symbol": "metaiverse", + "name": "MetAIverse" + }, + { + "id": "metajuice", + "symbol": "vcoin", + "name": "Metajuice" + }, + { + "id": "metal", + "symbol": "mtl", + "name": "Metal DAO" + }, + { + "id": "metal-2", + "symbol": "metal", + "name": "Metal" + }, + { + "id": "metal-3", + "symbol": "metal", + "name": "METAL" + }, + { + "id": "meta-launcher", + "symbol": "mtla", + "name": "Meta Launcher" + }, + { + "id": "metal-blockchain", + "symbol": "metal", + "name": "Metal Blockchain" + }, + { + "id": "metalcore", + "symbol": "mcg", + "name": "MetalCore" + }, + { + "id": "metal-dollar", + "symbol": "xmd", + "name": "Metal Dollar" + }, + { + "id": "metalos", + "symbol": "metalos", + "name": "Metalos" + }, + { + "id": "metalswap", + "symbol": "xmt", + "name": "MetalSwap" + }, + { + "id": "metamars-2", + "symbol": "mars", + "name": "Metamars" + }, + { + "id": "metamask-usd", + "symbol": "musd", + "name": "MetaMask USD" + }, + { + "id": "metamask-usd-test", + "symbol": "musd", + "name": "MetaMask USD (Test)" + }, + { + "id": "meta-monopoly", + "symbol": "monopoly", + "name": "Meta Monopoly" + }, + { + "id": "metamui", + "symbol": "mmui", + "name": "MetaMUI" + }, + { + "id": "metan-evolutions", + "symbol": "metan", + "name": "Metan Evolutions" + }, + { + "id": "metano", + "symbol": "metano", + "name": "Metano" + }, + { + "id": "metanyx", + "symbol": "metx", + "name": "Metanyx" + }, + { + "id": "meta-platforms-ondo-tokenized-stock", + "symbol": "metaon", + "name": "Meta Platforms (Ondo Tokenized Stock)" + }, + { + "id": "metaplex", + "symbol": "mplx", + "name": "Metaplex" + }, + { + "id": "meta-plus-token", + "symbol": "mts", + "name": "Meta Plus Token" + }, + { + "id": "meta-pool", + "symbol": "mpdao", + "name": "Meta Pool DAO" + }, + { + "id": "metapuss", + "symbol": "mtp", + "name": "MetaPuss" + }, + { + "id": "metaq", + "symbol": "metaq", + "name": "MetaQ" + }, + { + "id": "metarim", + "symbol": "rim", + "name": "MetaRim" + }, + { + "id": "metarix", + "symbol": "mtrx", + "name": "Metarix" + }, + { + "id": "metars-genesis", + "symbol": "mrs", + "name": "Metars Genesis" + }, + { + "id": "metarun", + "symbol": "mrun", + "name": "Metarun" + }, + { + "id": "metashooter", + "symbol": "mhunt", + "name": "MetaShooter" + }, + { + "id": "metastreet-v2-mwsteth-wpunks-20", + "symbol": "punketh-20", + "name": "MetaStreet V2 mwstETH-WPUNKS:20" + }, + { + "id": "metastrike", + "symbol": "mts", + "name": "Metastrike" + }, + { + "id": "metatdex", + "symbol": "tt", + "name": "TDEX Token" + }, + { + "id": "metatrace", + "symbol": "trc", + "name": "MetaTrace" + }, + { + "id": "meta-usd", + "symbol": "musd", + "name": "Meta USD" + }, + { + "id": "metavault-trade", + "symbol": "mvx", + "name": "Metavault Trade" + }, + { + "id": "metaverse", + "symbol": "metav", + "name": "METAVERSE" + }, + { + "id": "metaverse-face", + "symbol": "mefa", + "name": "Metaverse Face" + }, + { + "id": "metaverse-hub", + "symbol": "mhub", + "name": "Metaverse Hub" + }, + { + "id": "metaverse-index", + "symbol": "mvi", + "name": "Metaverse Index" + }, + { + "id": "metaverse-kombat", + "symbol": "mvk", + "name": "Metaverse Kombat" + }, + { + "id": "metaverse-m", + "symbol": "m", + "name": "MetaVerse-M" + }, + { + "id": "metaverser", + "symbol": "mtvt", + "name": "Metaverser" + }, + { + "id": "metavisa", + "symbol": "mesa", + "name": "metavisa" + }, + { + "id": "metavpad", + "symbol": "metav", + "name": "MetaVPad" + }, + { + "id": "metawars", + "symbol": "wars", + "name": "MetaWars" + }, + { + "id": "metawear", + "symbol": "wear", + "name": "MetaWear" + }, + { + "id": "metaworldmemes", + "symbol": "mwm", + "name": "MetaWorldMemes" + }, + { + "id": "meta-xstock", + "symbol": "metax", + "name": "Meta xStock" + }, + { + "id": "metaxy", + "symbol": "mxy", + "name": "Metaxy" + }, + { + "id": "metayield", + "symbol": "my", + "name": "MetaYield" + }, + { + "id": "metazero", + "symbol": "mzero", + "name": "MetaZero" + }, + { + "id": "metazoomee", + "symbol": "mzm", + "name": "MetaZooMee" + }, + { + "id": "meteora", + "symbol": "met", + "name": "Meteora" + }, + { + "id": "meter", + "symbol": "mtrg", + "name": "Meter Governance" + }, + { + "id": "metera", + "symbol": "metera", + "name": "METERA" + }, + { + "id": "meter-governance-mapped-by-meter-io", + "symbol": "emtrg", + "name": "Meter Governance mapped by Meter.io" + }, + { + "id": "meter-io-staked-mtrg", + "symbol": "stmtrg", + "name": "Meter.io Staked MTRG" + }, + { + "id": "meter-io-wrapped-stmtrg", + "symbol": "wstmtrg", + "name": "Meter.io Wrapped stMTRG" + }, + { + "id": "meter-passport-bridged-usdc-meter", + "symbol": "usdc.eth", + "name": "Meter Passport Bridged USDC (Meter)" + }, + { + "id": "meter-passport-bridged-weth-theta", + "symbol": "weth", + "name": "Meter Passport Bridged WETH (Theta)" + }, + { + "id": "meter-stable", + "symbol": "mtr", + "name": "Meter Stable" + }, + { + "id": "metfi-2", + "symbol": "metfi", + "name": "MetFi" + }, + { + "id": "metformin", + "symbol": "met", + "name": "Metformin" + }, + { + "id": "meth-protocol", + "symbol": "cook", + "name": "mETH Protocol" + }, + { + "id": "metis-bridged-usdc-metis", + "symbol": "m.usdc", + "name": "Metis Bridged USDC (Metis Andromeda)" + }, + { + "id": "metis-bridged-wbtc-metis-andromeda", + "symbol": "wbtc", + "name": "Metis Bridged WBTC (Metis Andromeda)" + }, + { + "id": "metis-bridged-weth-metis-andromeda", + "symbol": "weth", + "name": "Metis Bridged WETH (Metis Andromeda)" + }, + { + "id": "metis-token", + "symbol": "metis", + "name": "Metis" + }, + { + "id": "metronome", + "symbol": "met", + "name": "Metronome" + }, + { + "id": "metronome-synth-eth", + "symbol": "mseth", + "name": "Metronome Synth ETH" + }, + { + "id": "metronome-synth-usd", + "symbol": "msusd", + "name": "Metronome Synth USD" + }, + { + "id": "metropolis", + "symbol": "metro", + "name": "Metropolis" + }, + { + "id": "mettalex", + "symbol": "mtlx", + "name": "Mettalex" + }, + { + "id": "metya", + "symbol": "my", + "name": "MetYa" + }, + { + "id": "meupass", + "symbol": "mps", + "name": "Meupass" + }, + { + "id": "mev-capital-cbbtc", + "symbol": "mccbbtc", + "name": "MEV Capital cbBTC" + }, + { + "id": "mev-capital-elixir-usdc", + "symbol": "mc.eusdc", + "name": "MEV Capital Elixir USDC" + }, + { + "id": "mev-capital-m-0-morpho-vault", + "symbol": "mc.wm", + "name": "MEV Capital M^0 Morpho Vault" + }, + { + "id": "mev-capital-pendle-wbtc", + "symbol": "pwbtc", + "name": "MEV Capital Pendle WBTC" + }, + { + "id": "mev-capital-usd0-morpho-vault", + "symbol": "mc.usd0", + "name": "MEV Capital USD0 Morpho Vault" + }, + { + "id": "mev-capital-usdt0", + "symbol": "mcusdt0", + "name": "MEV Capital USDT0" + }, + { + "id": "mev-capital-usr", + "symbol": "mcusr", + "name": "MEV Capital USR" + }, + { + "id": "mev-capital-usual-boosted-usdc-morpho-vault", + "symbol": "usualusdc+", + "name": "MEV Capital Usual Boosted USDC Morpho Vault" + }, + { + "id": "mev-capital-usual-boosted-usdt", + "symbol": "usualusdt", + "name": "MEV Capital Usual Boosted USDT" + }, + { + "id": "mev-capital-wbtc", + "symbol": "mcwbtc", + "name": "MEV Capital WBTC" + }, + { + "id": "mev-capital-weth", + "symbol": "mcweth", + "name": "MEV Capital wETH" + }, + { + "id": "meverse", + "symbol": "mev", + "name": "MEVerse" + }, + { + "id": "meveth", + "symbol": "meveth", + "name": "mevETH" + }, + { + "id": "mewing-coin", + "symbol": "mewing", + "name": "Mewing Coin" + }, + { + "id": "mew-woof-dao", + "symbol": "mwd", + "name": "MEW WOOF DAO" + }, + { + "id": "mexcrewn", + "symbol": "mexcrewn", + "name": "MexCrewn" + }, + { + "id": "mexican-peso-tether", + "symbol": "mxnt", + "name": "Mexican Peso Tether" + }, + { + "id": "mey-network", + "symbol": "mey", + "name": "Mey Network" + }, + { + "id": "mezo-bridged-usdc-mezo", + "symbol": "musdc", + "name": "Mezo Bridged USDC (Mezo)" + }, + { + "id": "mezo-bridged-usdt-mezo", + "symbol": "musdt", + "name": "Mezo Bridged USDT (Mezo)" + }, + { + "id": "mezo-usd", + "symbol": "musd", + "name": "Mezo USD" + }, + { + "id": "mezo-wrapped-btc", + "symbol": "btc", + "name": "Mezo Wrapped BTC" + }, + { + "id": "mfercoin", + "symbol": "mfer", + "name": "mfercoin" + }, + { + "id": "mfers", + "symbol": "mfers", + "name": "MFERS" + }, + { + "id": "m-ga", + "symbol": "$ωmσga", + "name": "ΩMΣGA" + }, + { + "id": "mgold", + "symbol": "mgt", + "name": "MGold" + }, + { + "id": "mhcash", + "symbol": "mhcash", + "name": "MHCASH" + }, + { + "id": "mia-2", + "symbol": "mia", + "name": "MIA" + }, + { + "id": "miao", + "symbol": "sn86", + "name": "MIAO" + }, + { + "id": "miaocoin", + "symbol": "miao", + "name": "MIAOCoin" + }, + { + "id": "miaswap", + "symbol": "mia", + "name": "MiaSwap" + }, + { + "id": "micdrop", + "symbol": "micdrop", + "name": "MicDrop" + }, + { + "id": "mice", + "symbol": "mice", + "name": "Mice (Ordinals)" + }, + { + "id": "michael-taolor", + "symbol": "taolor", + "name": "Michael Taolor ⚡️ (τ , τ)" + }, + { + "id": "michicoin", + "symbol": "$michi", + "name": "michi" + }, + { + "id": "mickey", + "symbol": "mickey", + "name": "Mickey" + }, + { + "id": "micro3", + "symbol": "miro", + "name": "Micro3" + }, + { + "id": "micro-ai", + "symbol": "mai", + "name": "Micro AI" + }, + { + "id": "microberry", + "symbol": "mberry", + "name": "MicroBerry" + }, + { + "id": "microbitcoin", + "symbol": "mbc", + "name": "MicroBitcoin" + }, + { + "id": "micro-bitcoin-finance", + "symbol": "mbtc", + "name": "Micro Bitcoin Finance" + }, + { + "id": "microbuy-bot", + "symbol": "microbuy", + "name": "MicroBuy Bot" + }, + { + "id": "microcap", + "symbol": "microcap", + "name": "microcap" + }, + { + "id": "microcap-gem", + "symbol": "mcg", + "name": "microcap gem" + }, + { + "id": "micro-gpt", + "symbol": "$micro", + "name": "Micro GPT" + }, + { + "id": "micron-technology-ondo-tokenized-stock", + "symbol": "muon", + "name": "Micron Technology (Ondo Tokenized Stock)" + }, + { + "id": "micron-technology-xstock", + "symbol": "mux", + "name": "Micron Technology xStock" + }, + { + "id": "micropets-2", + "symbol": "pets", + "name": "MicroPets" + }, + { + "id": "microsoft-ondo-tokenized-stock", + "symbol": "msfton", + "name": "Microsoft (Ondo Tokenized Stock)" + }, + { + "id": "microsoft-tokenized-stock-defichain", + "symbol": "dmsft", + "name": "Microsoft Tokenized Stock Defichain" + }, + { + "id": "microsoft-xstock", + "symbol": "msftx", + "name": "Microsoft xStock" + }, + { + "id": "microstrategy-ondo-tokenized-stock", + "symbol": "mstron", + "name": "MicroStrategy (Ondo Tokenized Stock)" + }, + { + "id": "microstrategy-xstock", + "symbol": "mstrx", + "name": "MicroStrategy xStock" + }, + { + "id": "microtuber", + "symbol": "mct", + "name": "MicroTuber" + }, + { + "id": "microvisionchain", + "symbol": "space", + "name": "MicrovisionChain" + }, + { + "id": "microwaved", + "symbol": "microwaved", + "name": "MICROWAVED" + }, + { + "id": "midas-basis-trading-token", + "symbol": "mbasis", + "name": "Midas mBASIS" + }, + { + "id": "midas-btc-yield-token", + "symbol": "mbtc", + "name": "Midas mBTC" + }, + { + "id": "midas-everstake-usd", + "symbol": "mevusd", + "name": "Midas Everstake USD" + }, + { + "id": "midas-mapollo", + "symbol": "mapollo", + "name": "Midas mAPOLLO" + }, + { + "id": "midas-medge", + "symbol": "medge", + "name": "Midas mEDGE" + }, + { + "id": "midas-mevbtc", + "symbol": "mevbtc", + "name": "Midas mevBTC" + }, + { + "id": "midas-mfarm", + "symbol": "mfarm", + "name": "Midas mFARM" + }, + { + "id": "midas-mf-one", + "symbol": "mf-one", + "name": "Midas mF-ONE" + }, + { + "id": "midas-mhyper", + "symbol": "mhyper", + "name": "Midas mHYPER" + }, + { + "id": "midas-mmev", + "symbol": "mmev", + "name": "Midas mMEV" + }, + { + "id": "midas-mre7btc-2", + "symbol": "mre7btc", + "name": "Midas mRe7BTC" + }, + { + "id": "midas-mre7sol", + "symbol": "mre7sol", + "name": "Midas mRe7SOL" + }, + { + "id": "midas-mre7yield", + "symbol": "mre7yield", + "name": "Midas mRe7YIELD" + }, + { + "id": "midas-msyrupusd", + "symbol": "msyrupusd", + "name": "Midas msyrupUSD" + }, + { + "id": "midas-msyrupusdp", + "symbol": "msyrupusdp", + "name": "Midas msyrupUSDp" + }, + { + "id": "midas-mtbill", + "symbol": "mtbill", + "name": "Midas mTBILL" + }, + { + "id": "midas-of-defi", + "symbol": "midas", + "name": "Midas of DeFi" + }, + { + "id": "midas-stusd", + "symbol": "stusd", + "name": "Midas stUSD" + }, + { + "id": "midas-the-minotaur", + "symbol": "midas", + "name": "Midas The Minotaur" + }, + { + "id": "midas-xrp", + "symbol": "mxrp", + "name": "Midas XRP" + }, + { + "id": "middle-earth-ai", + "symbol": "mearth", + "name": "Middle Earth AI" + }, + { + "id": "midle", + "symbol": "midle", + "name": "Midle" + }, + { + "id": "midnight", + "symbol": "night", + "name": "Midnight" + }, + { + "id": "midnight-2", + "symbol": "night", + "name": "Midnight" + }, + { + "id": "mightfly", + "symbol": "mightfly", + "name": "MightFly" + }, + { + "id": "migraine", + "symbol": "migraine", + "name": "Migraine" + }, + { + "id": "miharu-the-smiling-dolphin", + "symbol": "$miharu", + "name": "Miharu The Smiling Dolphin" + }, + { + "id": "miidas", + "symbol": "miidas", + "name": "Miidas" + }, + { + "id": "mika-grok-companion", + "symbol": "mika", + "name": "Mika Grok Companion" + }, + { + "id": "mika-grok-companion-2", + "symbol": "mika", + "name": "Mika Grok Companion" + }, + { + "id": "mikawa-inu-2", + "symbol": "shikoku", + "name": "Mikawa Inu" + }, + { + "id": "miki", + "symbol": "miki", + "name": "MIKI" + }, + { + "id": "milady-cult-coin", + "symbol": "cult", + "name": "Milady Cult Coin" + }, + { + "id": "milady-meme-coin", + "symbol": "ladys", + "name": "Milady Meme Coin" + }, + { + "id": "miladystrategy", + "symbol": "mldstr", + "name": "MiladyStrategy" + }, + { + "id": "milady-vault-nftx", + "symbol": "milady", + "name": "Milady Vault (NFTX)" + }, + { + "id": "milady-wif-hat", + "symbol": "ladyf", + "name": "Milady Wif Hat" + }, + { + "id": "milei-solana", + "symbol": "milei", + "name": "MILEI Solana" + }, + { + "id": "milei-token", + "symbol": "milei", + "name": "MILEI Token" + }, + { + "id": "milestone-millions", + "symbol": "msmil", + "name": "Milestone Millions" + }, + { + "id": "mileverse", + "symbol": "mvc", + "name": "MileVerse" + }, + { + "id": "milk", + "symbol": "milk", + "name": "Cool Cats Milk" + }, + { + "id": "milk-alliance", + "symbol": "mlk", + "name": "MiL.k" + }, + { + "id": "milkbag", + "symbol": "milkbag", + "name": "MILKBAG" + }, + { + "id": "milk-coin", + "symbol": "milk", + "name": "MILK Coin" + }, + { + "id": "milk-money", + "symbol": "mm", + "name": "Milk Money" + }, + { + "id": "milkshakeswap", + "symbol": "milk", + "name": "Milkshake Swap" + }, + { + "id": "milkyway-2", + "symbol": "milk", + "name": "MilkyWay" + }, + { + "id": "milkyway-staked-tia", + "symbol": "milktia", + "name": "MilkyWay Staked TIA" + }, + { + "id": "milleniumsweghunter69", + "symbol": "sweg69", + "name": "milleniumsweghunter69" + }, + { + "id": "millennium-club", + "symbol": "mclb", + "name": "Millennium Club" + }, + { + "id": "milli-coin", + "symbol": "milli", + "name": "MILLI" + }, + { + "id": "million", + "symbol": "mm", + "name": "Million" + }, + { + "id": "millionaire-2", + "symbol": "mlnr", + "name": "Millionaire" + }, + { + "id": "millionaire-out-of-nowhere", + "symbol": "moon", + "name": "Millionaire Out Of Nowhere" + }, + { + "id": "milo-inu", + "symbol": "milo", + "name": "Milo Inu" + }, + { + "id": "milo-token", + "symbol": "milo", + "name": "Milo Token" + }, + { + "id": "mimany", + "symbol": "mimany", + "name": "MIMANY" + }, + { + "id": "mimatic", + "symbol": "mimatic", + "name": "MAI" + }, + { + "id": "mimblewimblecoin", + "symbol": "mwc", + "name": "MimbleWimbleCoin" + }, + { + "id": "mimbogamegroup", + "symbol": "mgg", + "name": "MimboGameGroup" + }, + { + "id": "mimo-parallel-governance-token", + "symbol": "prl", + "name": "Parallel Governance" + }, + { + "id": "mina-protocol", + "symbol": "mina", + "name": "Mina Protocol" + }, + { + "id": "minativerse", + "symbol": "mntc", + "name": "MINATIVERSE" + }, + { + "id": "minato", + "symbol": "mnto", + "name": "Minato" + }, + { + "id": "mindai", + "symbol": "mdai", + "name": "MindAI" + }, + { + "id": "mind-ai", + "symbol": "ma", + "name": "Mind AI" + }, + { + "id": "mind-body-soul", + "symbol": "mbs", + "name": "Mind Body Soul" + }, + { + "id": "mindcoin-2", + "symbol": "mind", + "name": "MindCoin" + }, + { + "id": "mindfak-by-matt-furie", + "symbol": "mindfak", + "name": "Mindfak By Matt Furie" + }, + { + "id": "mind-language", + "symbol": "mnd", + "name": "Mind" + }, + { + "id": "mind-network", + "symbol": "fhe", + "name": "Mind Network" + }, + { + "id": "mind-of-pepe", + "symbol": "mind", + "name": "Mind of Pepe" + }, + { + "id": "minds", + "symbol": "minds", + "name": "Minds" + }, + { + "id": "mindshare", + "symbol": "mindshare", + "name": "mindshare" + }, + { + "id": "mindwavedao", + "symbol": "nila", + "name": "MindWaveDAO" + }, + { + "id": "mindworms", + "symbol": "mindworms", + "name": "mindworms" + }, + { + "id": "mind-zero", + "symbol": "mind", + "name": "Mind Zero" + }, + { + "id": "mine-blue", + "symbol": "mb", + "name": "Mine Blue" + }, + { + "id": "mine-coin", + "symbol": "mih", + "name": "MINE COIN" + }, + { + "id": "mineral-token", + "symbol": "mxtk", + "name": "Mineral Token" + }, + { + "id": "mineral-vault-fund-i", + "symbol": "mnrl", + "name": "Mineral Vault I Security Token" + }, + { + "id": "minerva-wallet", + "symbol": "miva", + "name": "Minerva Wallet" + }, + { + "id": "mines-of-dalarnia", + "symbol": "dar", + "name": "Mines of Dalarnia" + }, + { + "id": "minetard-ai", + "symbol": "mtard", + "name": "MineTard AI" + }, + { + "id": "miniature-woolly-mammoth", + "symbol": "woolly", + "name": "Miniature Woolly Mammoth" + }, + { + "id": "minidoge-2", + "symbol": "minidoge", + "name": "Minidoge" + }, + { + "id": "minidoge-3", + "symbol": "minidoge", + "name": "Minidoge" + }, + { + "id": "minidoge-4", + "symbol": "minidoge", + "name": "MiniDoge" + }, + { + "id": "minidoge-5", + "symbol": "minidoge", + "name": "Minidoge" + }, + { + "id": "mini-donald", + "symbol": "barron", + "name": "Mini Donald" + }, + { + "id": "mini-gout", + "symbol": "minigout", + "name": "Mini GOUT" + }, + { + "id": "minima", + "symbol": "minima", + "name": "Minima" + }, + { + "id": "minimini", + "symbol": "mini", + "name": "mini" + }, + { + "id": "minji", + "symbol": "minji", + "name": "minji" + }, + { + "id": "minky", + "symbol": "minky", + "name": "MINKY" + }, + { + "id": "minotari", + "symbol": "xtm", + "name": "MinoTari (Tari)" + }, + { + "id": "minotaur-2", + "symbol": "sn112", + "name": "minotaur" + }, + { + "id": "minswap", + "symbol": "min", + "name": "Minswap" + }, + { + "id": "mintana", + "symbol": "mint", + "name": "Mintana" + }, + { + "id": "mint-blockchain", + "symbol": "mint", + "name": "Mint Blockchain" + }, + { + "id": "mintchain-bridged-weth-mint", + "symbol": "weth", + "name": "Mintchain Bridged WETH (Mint)" + }, + { + "id": "mint-club", + "symbol": "mint", + "name": "Mint Club V1" + }, + { + "id": "minted", + "symbol": "mtd", + "name": "Minted" + }, + { + "id": "mintera", + "symbol": "mnte", + "name": "Mintera" + }, + { + "id": "minterest", + "symbol": "minty", + "name": "Minterest" + }, + { + "id": "mintify", + "symbol": "mint", + "name": "Mintify" + }, + { + "id": "mintlayer", + "symbol": "ml", + "name": "Mintlayer" + }, + { + "id": "minto", + "symbol": "btcmt", + "name": "Minto" + }, + { + "id": "mintra", + "symbol": "mint", + "name": "Mintra" + }, + { + "id": "mintstakeshare", + "symbol": "mss", + "name": "MintStakeShare" + }, + { + "id": "mintswaptoken", + "symbol": "mst", + "name": "MintSwapToken" + }, + { + "id": "mint-token", + "symbol": "mt", + "name": "Mint Token" + }, + { + "id": "minty-girl", + "symbol": "mintygirl", + "name": "Minty Girl" + }, + { + "id": "minu", + "symbol": "minu", + "name": "Minu" + }, + { + "id": "minutes-network-token", + "symbol": "mntx", + "name": "Minutes Network Token" + }, + { + "id": "minu-the-manta", + "symbol": "mnu", + "name": "Minu the Manta" + }, + { + "id": "mi-prami-le-kibro", + "symbol": "miprami", + "name": "Mi Prami Le Kibro" + }, + { + "id": "mira-2", + "symbol": "mira", + "name": "Mira" + }, + { + "id": "mira-3", + "symbol": "mira", + "name": "Mira" + }, + { + "id": "miracle-play", + "symbol": "mpt", + "name": "Miracle Play" + }, + { + "id": "mirada-ai", + "symbol": "mirx", + "name": "Mirada AI" + }, + { + "id": "mirai-2", + "symbol": "mirai", + "name": "MIRAI" + }, + { + "id": "mirai-the-whiterabbit", + "symbol": "mirai", + "name": "Mirai The WhiteRabbit" + }, + { + "id": "miraya-7f", + "symbol": "m7f", + "name": "Miraya 7f" + }, + { + "id": "mirror-chain", + "symbol": "mir", + "name": "Mirror Chain" + }, + { + "id": "mirrored-ether", + "symbol": "meth", + "name": "Mirrored Ether" + }, + { + "id": "mirror-protocol", + "symbol": "mir", + "name": "Mirror Protocol" + }, + { + "id": "mirrorstage", + "symbol": "ms", + "name": "mirrorstage" + }, + { + "id": "mir-token", + "symbol": "mir", + "name": "Mir Token" + }, + { + "id": "misato", + "symbol": "misato", + "name": "MISATO" + }, + { + "id": "misha", + "symbol": "misha", + "name": "MISHA" + }, + { + "id": "miss-ai", + "symbol": "msai", + "name": "Miss AI" + }, + { + "id": "miss-china", + "symbol": "mschina", + "name": "Miss China" + }, + { + "id": "misser", + "symbol": "misser", + "name": "Misser" + }, + { + "id": "missionpawsible", + "symbol": "mission", + "name": "MissionPawsible" + }, + { + "id": "miss-kaka", + "symbol": "kaka", + "name": "Miss Kaka" + }, + { + "id": "mist", + "symbol": "mist", + "name": "Mist" + }, + { + "id": "mist-2", + "symbol": "霞", + "name": "MIST" + }, + { + "id": "mister-miggles", + "symbol": "miggles", + "name": "Mr. Miggles" + }, + { + "id": "mistery", + "symbol": "mery", + "name": "Mistery" + }, + { + "id": "mitch", + "symbol": "idrawline", + "name": "MITCH" + }, + { + "id": "mithrandir-token", + "symbol": "mithr", + "name": "Mithrandir Token" + }, + { + "id": "mithril", + "symbol": "mith", + "name": "Mithril" + }, + { + "id": "mithril-share", + "symbol": "mis", + "name": "Mithril Share" + }, + { + "id": "mito", + "symbol": "mito", + "name": "Mito" + }, + { + "id": "mitosis", + "symbol": "mito", + "name": "Mitosis" + }, + { + "id": "mitosis-eol-bnb", + "symbol": "mibnb", + "name": "Mitosis EOL BNB" + }, + { + "id": "mitosis-matrix-usdt-lista", + "symbol": "mausdt_lista", + "name": "Mitosis Matrix USDT (Lista)" + }, + { + "id": "mittens-2", + "symbol": "mittens", + "name": "Mittens" + }, + { + "id": "miu", + "symbol": "miu", + "name": "Miu" + }, + { + "id": "miu-2", + "symbol": "miu", + "name": "MIU" + }, + { + "id": "mixie", + "symbol": "mixie", + "name": "Mixie" + }, + { + "id": "mixin", + "symbol": "xin", + "name": "Mixin" + }, + { + "id": "mixmarvel", + "symbol": "mix", + "name": "MixMarvel" + }, + { + "id": "mixmob", + "symbol": "mxm", + "name": "MAXX AI" + }, + { + "id": "miya", + "symbol": "miya", + "name": "Miya" + }, + { + "id": "mi-young", + "symbol": "miyo", + "name": "Mi-Young" + }, + { + "id": "mizar", + "symbol": "mzr", + "name": "Mizar" + }, + { + "id": "mizuki", + "symbol": "mizuki", + "name": "Mizuki" + }, + { + "id": "mktcash", + "symbol": "mch", + "name": "Mktcash" + }, + { + "id": "mlm-x", + "symbol": "mlmx", + "name": "MLM X" + }, + { + "id": "mm72", + "symbol": "mm72", + "name": "MM72" + }, + { + "id": "mmfinance", + "symbol": "mmf", + "name": "MMFinance (Cronos)" + }, + { + "id": "mmm", + "symbol": "mmm", + "name": "MMM" + }, + { + "id": "mmocoin", + "symbol": "mmo", + "name": "MMOCoin" + }, + { + "id": "mnee-usd-stablecoin", + "symbol": "mnee", + "name": "MNEE USD Stablecoin" + }, + { + "id": "mnemonics", + "symbol": "$mnemo", + "name": "Mnemonics" + }, + { + "id": "mner-club", + "symbol": "ltmner", + "name": "Mner Club" + }, + { + "id": "mnet-continuum", + "symbol": "nuum", + "name": "MNet Continuum" + }, + { + "id": "moai", + "symbol": "moai", + "name": "MOAI" + }, + { + "id": "moai-2", + "symbol": "moai", + "name": "MoAI" + }, + { + "id": "moaner-by-matt-furie", + "symbol": "moaner", + "name": "Moaner by Matt Furie" + }, + { + "id": "moaner-melter-slime", + "symbol": "moaner", + "name": "Moaner Melter Slime" + }, + { + "id": "moani", + "symbol": "moani", + "name": "MOANI" + }, + { + "id": "mobcat", + "symbol": "mob", + "name": "Mobcat" + }, + { + "id": "mobilecoin", + "symbol": "mob", + "name": "MobileCoin" + }, + { + "id": "mobility-coin", + "symbol": "mobic", + "name": "Mobility Coin" + }, + { + "id": "mobius", + "symbol": "mobi", + "name": "Mobius" + }, + { + "id": "mobius-finance", + "symbol": "mot", + "name": "Mobius Finance" + }, + { + "id": "mobius-money", + "symbol": "mobi", + "name": "Mobius Money" + }, + { + "id": "mobox", + "symbol": "mbox", + "name": "Mobox" + }, + { + "id": "mobster", + "symbol": "mob", + "name": "Mobster" + }, + { + "id": "moby", + "symbol": "moby", + "name": "Moby" + }, + { + "id": "moby-ai", + "symbol": "moby", + "name": "Moby AI" + }, + { + "id": "mocaverse", + "symbol": "moca", + "name": "Moca Network" + }, + { + "id": "mochi-3", + "symbol": "mochi", + "name": "Mochi" + }, + { + "id": "mochicat", + "symbol": "mochicat", + "name": "MOCHICAT" + }, + { + "id": "mochi-cult", + "symbol": "mochi", + "name": "MOCHI CULT" + }, + { + "id": "mochi-defi", + "symbol": "mochi", + "name": "Mochi DeFi" + }, + { + "id": "mochi-market", + "symbol": "moma", + "name": "Mochi Market" + }, + { + "id": "mochi-thecatcoin", + "symbol": "mochi", + "name": "Mochi" + }, + { + "id": "mockjup", + "symbol": "mockjup", + "name": "mockJUP" + }, + { + "id": "moco-2", + "symbol": "moco", + "name": "MOCO" + }, + { + "id": "modclub", + "symbol": "dcd", + "name": "DecideAI" + }, + { + "id": "mode", + "symbol": "mode", + "name": "Mode" + }, + { + "id": "mode-bridged-usdc-mode", + "symbol": "usdc", + "name": "Mode Bridged USDC (Mode)" + }, + { + "id": "mode-bridged-usdt-mode", + "symbol": "usdt", + "name": "Mode Bridged USDT (Mode)" + }, + { + "id": "mode-bridged-wbtc-mode", + "symbol": "wbtc", + "name": "Mode Bridged WBTC (Mode)" + }, + { + "id": "modefi", + "symbol": "mod", + "name": "Modefi" + }, + { + "id": "modern-innovation-network-token", + "symbol": "minx", + "name": "Modern Innovation Network Token" + }, + { + "id": "modern-stoic", + "symbol": "stoic", + "name": "Modern Stoic [OLD]" + }, + { + "id": "modern-stoic-2", + "symbol": "trade", + "name": "HyperTrade" + }, + { + "id": "modex", + "symbol": "modex", + "name": "Modex" + }, + { + "id": "modpanda", + "symbol": "panda", + "name": "ModPanda" + }, + { + "id": "module", + "symbol": "module", + "name": "Module" + }, + { + "id": "modulr", + "symbol": "emdr", + "name": "Modulr" + }, + { + "id": "moe", + "symbol": "moe", + "name": "MOE" + }, + { + "id": "moe-2", + "symbol": "moe", + "name": "Moe" + }, + { + "id": "moe-3", + "symbol": "moe", + "name": "MOE" + }, + { + "id": "moe-4", + "symbol": "moe", + "name": "MOE" + }, + { + "id": "moew", + "symbol": "moew", + "name": "MOEW" + }, + { + "id": "mog", + "symbol": "mog", + "name": "MOG" + }, + { + "id": "mog-2", + "symbol": "mog", + "name": "Mog" + }, + { + "id": "mog-coin", + "symbol": "mog", + "name": "Mog Coin" + }, + { + "id": "moge", + "symbol": "moge", + "name": "Moge" + }, + { + "id": "mogul-productions", + "symbol": "stars", + "name": "Mogul Productions [OLD]" + }, + { + "id": "mogul-trumps-code-name", + "symbol": "mogul", + "name": "Mogul Trumps Code Name" + }, + { + "id": "mogutou", + "symbol": "mogu", + "name": "Mogutou" + }, + { + "id": "mohameme-bit-salman", + "symbol": "salman", + "name": "Mohameme Bit Salman" + }, + { + "id": "moheji", + "symbol": "moj", + "name": "moheji" + }, + { + "id": "mojitoswap", + "symbol": "mjt", + "name": "MojitoSwap" + }, + { + "id": "mojo", + "symbol": "mojo", + "name": "Mojo" + }, + { + "id": "mokens-league", + "symbol": "moka", + "name": "Mokens League" + }, + { + "id": "molecular-entity", + "symbol": "molecular", + "name": "Molecular Entity" + }, + { + "id": "molecule-3", + "symbol": "molecule", + "name": "Molecule" + }, + { + "id": "molecules-of-korolchuk-ip-nft", + "symbol": "vita-fast", + "name": "Molecules of Korolchuk IP-NFT" + }, + { + "id": "mollarstoken", + "symbol": "mollars", + "name": "MollarsToken" + }, + { + "id": "molly", + "symbol": "molly", + "name": "Molly" + }, + { + "id": "molly-analytics-by-virtuals", + "symbol": "molly", + "name": "MOLLY ANALYTICS by Virtuals" + }, + { + "id": "molly-the-otter", + "symbol": "molly", + "name": "Molly the Otter" + }, + { + "id": "molten-2", + "symbol": "molten", + "name": "Molten" + }, + { + "id": "moments", + "symbol": "mmt", + "name": "Moments Market" + }, + { + "id": "momentum-3", + "symbol": "mmt", + "name": "Momentum" + }, + { + "id": "mommy-doge", + "symbol": "mommydoge", + "name": "Mommy Doge" + }, + { + "id": "momo-2", + "symbol": "momo", + "name": "momo" + }, + { + "id": "momo-3", + "symbol": "momo", + "name": "Momo" + }, + { + "id": "momoai", + "symbol": "mtos", + "name": "MomoAI" + }, + { + "id": "momofun", + "symbol": "mm", + "name": "Momofun" + }, + { + "id": "momoji", + "symbol": "emoji", + "name": "MOMOJI" + }, + { + "id": "momo-key", + "symbol": "key", + "name": "MoMo Key" + }, + { + "id": "momo-the-cat", + "symbol": "momo", + "name": "momo the cat" + }, + { + "id": "momo-v2", + "symbol": "momo v2", + "name": "Momo v2" + }, + { + "id": "mona-arcane", + "symbol": "mona", + "name": "Mona Arcane" + }, + { + "id": "mona-cat", + "symbol": "mona", + "name": "Mona" + }, + { + "id": "monacoin", + "symbol": "mona", + "name": "MonaCoin" + }, + { + "id": "monad", + "symbol": "mon", + "name": "Monad" + }, + { + "id": "monai", + "symbol": "monai", + "name": "Monai" + }, + { + "id": "monat-money", + "symbol": "monat", + "name": "Monat Money" + }, + { + "id": "monavale", + "symbol": "mona", + "name": "Monavale" + }, + { + "id": "monbasecoin", + "symbol": "mbc", + "name": "MonbaseCoin" + }, + { + "id": "mondo", + "symbol": "mondo", + "name": "mondo" + }, + { + "id": "monerium-eur-money", + "symbol": "eure", + "name": "Monerium EUR emoney [OLD]" + }, + { + "id": "monerium-eur-money-2", + "symbol": "eure", + "name": "Monerium EUR emoney" + }, + { + "id": "monerium-gbp-emoney", + "symbol": "gbpe", + "name": "Monerium GBP emoney" + }, + { + "id": "monero", + "symbol": "xmr", + "name": "Monero" + }, + { + "id": "monet-2", + "symbol": "monet", + "name": "MONET" + }, + { + "id": "monetha", + "symbol": "mth", + "name": "Monetha" + }, + { + "id": "moneybee", + "symbol": "moneybee", + "name": "MONEYBEE" + }, + { + "id": "moneybrain-bips", + "symbol": "bips", + "name": "Moneybrain BiPS" + }, + { + "id": "moneybyte", + "symbol": "mon", + "name": "Moneybyte" + }, + { + "id": "moneyglitch-fun", + "symbol": "glitch", + "name": "MONEYGLITCH.FUN" + }, + { + "id": "money-god-one", + "symbol": "mgo", + "name": "Money God One" + }, + { + "id": "money-on-chain", + "symbol": "moc", + "name": "Money On Chain" + }, + { + "id": "money-printer", + "symbol": "money", + "name": "Money Printer" + }, + { + "id": "money-sign", + "symbol": "🤌", + "name": "🤌 (Money Sign)" + }, + { + "id": "moneyswap", + "symbol": "mswap", + "name": "MoneySwap" + }, + { + "id": "monezycoin", + "symbol": "mzc", + "name": "MonezyCoin" + }, + { + "id": "mongcoin", + "symbol": "mong", + "name": "MongCoin" + }, + { + "id": "mongol-nft", + "symbol": "mnft", + "name": "Mongol NFT" + }, + { + "id": "mongoose", + "symbol": "mongoose", + "name": "Mongoose" + }, + { + "id": "mongy", + "symbol": "mongy", + "name": "Mongy" + }, + { + "id": "monii", + "symbol": "m", + "name": "Monii" + }, + { + "id": "monitoring-the-situation", + "symbol": "monitor", + "name": "Monitoring the Situation" + }, + { + "id": "monk", + "symbol": "monk", + "name": "Monk" + }, + { + "id": "monkas", + "symbol": "monkas", + "name": "Monkas" + }, + { + "id": "monke", + "symbol": "monke", + "name": "Monke" + }, + { + "id": "monke-4", + "symbol": "monke", + "name": "MONKE" + }, + { + "id": "monke-5", + "symbol": "monke", + "name": "monke" + }, + { + "id": "monke-6", + "symbol": "monke", + "name": "MONKE" + }, + { + "id": "monke-coin", + "symbol": "monke", + "name": "Monke" + }, + { + "id": "monke-coin-eth", + "symbol": "monke", + "name": "Monke Coin" + }, + { + "id": "monke-phone", + "symbol": "monkephone", + "name": "Monke Phone" + }, + { + "id": "monkex", + "symbol": "monkex", + "name": "Monkex" + }, + { + "id": "monkey", + "symbol": "monkey", + "name": "MONKEY" + }, + { + "id": "monkey-2", + "symbol": "monkey", + "name": "Monkey" + }, + { + "id": "monkeyai", + "symbol": "monkeyai", + "name": "MonkeyAI" + }, + { + "id": "monkeyball", + "symbol": "mbs", + "name": "Striker League" + }, + { + "id": "monkeyhaircut", + "symbol": "monk", + "name": "monkeyhaircut" + }, + { + "id": "monkey-pox", + "symbol": "pox", + "name": "Monkey Pox" + }, + { + "id": "monkey-puppet-2", + "symbol": "pedro", + "name": "monkey puppet" + }, + { + "id": "monkeys", + "symbol": "monkeys", + "name": "Monkeys" + }, + { + "id": "monkeys-2", + "symbol": "monkeys", + "name": "monKEYS" + }, + { + "id": "monkey-sol-inu", + "symbol": "msi", + "name": "monkey sol inu" + }, + { + "id": "monkeys-token", + "symbol": "monkeys", + "name": "Monkeys Token" + }, + { + "id": "monkey-taken-by-police", + "symbol": "jorgie", + "name": "Monkey Taken By Police" + }, + { + "id": "monkey-the-picasso", + "symbol": "monkey", + "name": "Monkey The Picasso" + }, + { + "id": "monk-gg", + "symbol": "monk", + "name": "Monk.gg" + }, + { + "id": "monko", + "symbol": "monko", + "name": "Monko" + }, + { + "id": "monky", + "symbol": "$monky", + "name": "Monky" + }, + { + "id": "monnos", + "symbol": "mns", + "name": "Monnos" + }, + { + "id": "mononoke-inu", + "symbol": "mononoke-inu", + "name": "Mononoke Inu" + }, + { + "id": "mononoke-inu-2", + "symbol": "mononoke", + "name": "Mononoke Inu" + }, + { + "id": "mon-protocol", + "symbol": "mon", + "name": "MON" + }, + { + "id": "monsta-infinite", + "symbol": "moni", + "name": "Monsta Infinite" + }, + { + "id": "monsterra", + "symbol": "mstr", + "name": "Monsterra" + }, + { + "id": "monster-xstock", + "symbol": "mnstx", + "name": "Monster xStock" + }, + { + "id": "moo", + "symbol": "moo", + "name": "Moo" + }, + { + "id": "moocat", + "symbol": "moocat", + "name": "MooCat [OLD]" + }, + { + "id": "moocat-2", + "symbol": "moocat", + "name": "MooCat" + }, + { + "id": "moocca", + "symbol": "moca", + "name": "Moocca" + }, + { + "id": "moochii", + "symbol": "moochii", + "name": "Moochii" + }, + { + "id": "moo-cow", + "symbol": "moocow", + "name": "Moo Cow" + }, + { + "id": "mood-ai", + "symbol": "mood", + "name": "MOOD AI" + }, + { + "id": "moo-deng", + "symbol": "moodeng", + "name": "Moo Deng" + }, + { + "id": "moo-deng-2", + "symbol": "moodeng", + "name": "MOO DENG" + }, + { + "id": "moola-celo-dollars", + "symbol": "mcusd", + "name": "Moola Celo Dollars" + }, + { + "id": "moolah", + "symbol": "moolah", + "name": "Moolah" + }, + { + "id": "moolahverse", + "symbol": "mlh", + "name": "Moolahverse" + }, + { + "id": "moola-interest-bearing-creal", + "symbol": "mcreal", + "name": "Moola interest bearing CREAL" + }, + { + "id": "moola-market", + "symbol": "moo", + "name": "Moola Market" + }, + { + "id": "moo-moo", + "symbol": "moomoo", + "name": "MOO MOO" + }, + { + "id": "moomoo-the-bull", + "symbol": "moomoo", + "name": "MOOMOO THE BULL" + }, + { + "id": "moomoo-token", + "symbol": "moo", + "name": "MooMoo Token" + }, + { + "id": "moon", + "symbol": "moon", + "name": "r/CryptoCurrency Moons" + }, + { + "id": "moon-2", + "symbol": "moon", + "name": "MOON" + }, + { + "id": "moon-3", + "symbol": "moon", + "name": "Moon" + }, + { + "id": "moon-4", + "symbol": "moon", + "name": "Moon" + }, + { + "id": "moonai-3", + "symbol": "moonai", + "name": "MOONAI" + }, + { + "id": "moona-lisa", + "symbol": "moona", + "name": "Moona Lisa" + }, + { + "id": "moon-app", + "symbol": "app", + "name": "RWAX" + }, + { + "id": "moonarch", + "symbol": "moonarch", + "name": "Moonarch" + }, + { + "id": "moonbag", + "symbol": "mbag", + "name": "MoonBag" + }, + { + "id": "moonbag-2", + "symbol": "bag", + "name": "Moonbag" + }, + { + "id": "moon-baloon", + "symbol": "mooba", + "name": "Moon Baloon" + }, + { + "id": "moonbase-2", + "symbol": "moon", + "name": "MoonBase" + }, + { + "id": "moonbase-3", + "symbol": "moonbase", + "name": "MOONBASE" + }, + { + "id": "moon-bay-2", + "symbol": "moon", + "name": "Moon Bay" + }, + { + "id": "moonbeam", + "symbol": "glmr", + "name": "Moonbeam" + }, + { + "id": "moonbeans", + "symbol": "beans", + "name": "MoonBeans" + }, + { + "id": "moonbirds", + "symbol": "birb", + "name": "Moonbirds" + }, + { + "id": "moonboots-dao", + "symbol": "mbdao", + "name": "Moonboots DAO" + }, + { + "id": "mooncat", + "symbol": "mooncat", + "name": "Mooncat" + }, + { + "id": "moon-cat", + "symbol": "mc", + "name": "Moon Cat" + }, + { + "id": "mooncat-vault-nftx", + "symbol": "mooncat", + "name": "MOONCAT Vault (NFTX)" + }, + { + "id": "moonchain", + "symbol": "mch", + "name": "Moonchain" + }, + { + "id": "mooncoin-2", + "symbol": "moon", + "name": "MoonCoin" + }, + { + "id": "mooncoin-3", + "symbol": "mooncoin", + "name": "Mooncoin" + }, + { + "id": "moondog-ai", + "symbol": "mdogai", + "name": "MoonDog AI" + }, + { + "id": "moondoge", + "symbol": "moondoge", + "name": "MOONDOGE" + }, + { + "id": "moondogs", + "symbol": "woof", + "name": "Moondogs" + }, + { + "id": "moonedge", + "symbol": "mooned", + "name": "MoonEdge" + }, + { + "id": "mooney", + "symbol": "mooney", + "name": "Moon DAO" + }, + { + "id": "moonflow", + "symbol": "moon", + "name": "Moonflow" + }, + { + "id": "moonft", + "symbol": "mtc", + "name": "Moonft" + }, + { + "id": "moongate", + "symbol": "mgt", + "name": "Moongate" + }, + { + "id": "moongate-fun", + "symbol": "mgtai", + "name": "Moongate Fun" + }, + { + "id": "moon-inu", + "symbol": "moon", + "name": "MOON INU" + }, + { + "id": "moonions", + "symbol": "moonion", + "name": "Moonions" + }, + { + "id": "moonke", + "symbol": "moonke", + "name": "Moonke" + }, + { + "id": "moonkize", + "symbol": "moonkize", + "name": "MoonKize" + }, + { + "id": "moonlana", + "symbol": "mola", + "name": "MoonLana" + }, + { + "id": "moon-maker-protocol", + "symbol": "mmp", + "name": "Moon Maker Protocol" + }, + { + "id": "moonman", + "symbol": "mm", + "name": "MoonMan" + }, + { + "id": "moon-moon", + "symbol": "moon", + "name": "Moon Moon" + }, + { + "id": "moonpig", + "symbol": "moonpig", + "name": "moonpig" + }, + { + "id": "moonpot", + "symbol": "pots", + "name": "Moonpot" + }, + { + "id": "moonprime-games", + "symbol": "lunar", + "name": "MoonPrime Games" + }, + { + "id": "moonpup", + "symbol": "mpup", + "name": "MoonPup" + }, + { + "id": "moon-rabbit", + "symbol": "aaa", + "name": "Moon Rabbit" + }, + { + "id": "moonray", + "symbol": "mnry", + "name": "Moonray" + }, + { + "id": "moonriver", + "symbol": "movr", + "name": "Moonriver" + }, + { + "id": "moon-rocks", + "symbol": "mrocks", + "name": "Moon Rocks" + }, + { + "id": "moon-roll-coin", + "symbol": "mrc", + "name": "Moon Roll Coin" + }, + { + "id": "moonscape", + "symbol": "mscp", + "name": "Moonscape" + }, + { + "id": "moonscape-2", + "symbol": "moon", + "name": "MoonScape" + }, + { + "id": "moonsdust", + "symbol": "moond", + "name": "MoonsDust" + }, + { + "id": "moontax", + "symbol": "cpai", + "name": "Moontax" + }, + { + "id": "moonthat-coin", + "symbol": "moonthat", + "name": "moonthat coin" + }, + { + "id": "moon-the-cat", + "symbol": "moon", + "name": "Moon The Cat" + }, + { + "id": "moon-tropica", + "symbol": "cah", + "name": "Moon Tropica" + }, + { + "id": "moontrump", + "symbol": "trump", + "name": "MoonTrump" + }, + { + "id": "moonut", + "symbol": "moonut", + "name": "MOONUT" + }, + { + "id": "moonveil", + "symbol": "more", + "name": "Moonveil" + }, + { + "id": "moonvember", + "symbol": "moonvember", + "name": "MOONVEMBER" + }, + { + "id": "moonvember-2", + "symbol": "$mvb", + "name": "Moonvember" + }, + { + "id": "moonwalk-fitness", + "symbol": "mf", + "name": "Moonwalk Fitness" + }, + { + "id": "moonwell", + "symbol": "mfam", + "name": "Moonwell Apollo" + }, + { + "id": "moonwell-artemis", + "symbol": "well", + "name": "Moonwell" + }, + { + "id": "moonwell-flagship-eth-morpho-vault", + "symbol": "mweth", + "name": "Moonwell Flagship ETH (Morpho Vault)" + }, + { + "id": "moonwell-flagship-eurc-morpho-vault", + "symbol": "mweurc", + "name": "Moonwell Flagship EURC (Morpho Vault)" + }, + { + "id": "moonwell-flagship-usdc-morpho-vault", + "symbol": "mwusdc", + "name": "Moonwell Flagship USDC (Morpho Vault)" + }, + { + "id": "moonwolf-io", + "symbol": "wolf", + "name": "moonwolf.io" + }, + { + "id": "moony", + "symbol": "moony", + "name": "MOONY" + }, + { + "id": "moosecoin-2", + "symbol": "moose", + "name": "Moosecoin" + }, + { + "id": "moove-protocol", + "symbol": "moove", + "name": "Moove Protocol" + }, + { + "id": "mop", + "symbol": "mop", + "name": "MOP" + }, + { + "id": "mops", + "symbol": "mops", + "name": "Mops" + }, + { + "id": "mora", + "symbol": "mora", + "name": "Mora" + }, + { + "id": "moremoney-usd", + "symbol": "money", + "name": "Moremoney USD" + }, + { + "id": "more-passion", + "symbol": "energy", + "name": "More Passion" + }, + { + "id": "morfey", + "symbol": "morfey", + "name": "Morfey" + }, + { + "id": "mori-coin", + "symbol": "mori", + "name": "MORI COIN" + }, + { + "id": "morion", + "symbol": "mor", + "name": "MORION" + }, + { + "id": "mork-2", + "symbol": "mork", + "name": "MORK" + }, + { + "id": "morkie", + "symbol": "mork", + "name": "Morkie" + }, + { + "id": "morning-routine", + "symbol": "routine", + "name": "Morning Routine" + }, + { + "id": "moros-net", + "symbol": "moros", + "name": "MOROS NET" + }, + { + "id": "morph", + "symbol": "morph", + "name": "MORPH" + }, + { + "id": "morph-ai", + "symbol": "morphai", + "name": "Morph AI" + }, + { + "id": "morpher", + "symbol": "mph", + "name": "Morpher" + }, + { + "id": "morpheus", + "symbol": "morph", + "name": "Morpheus" + }, + { + "id": "morpheusai", + "symbol": "mor", + "name": "Morpheus AI" + }, + { + "id": "morpheus-labs", + "symbol": "mind", + "name": "Morpheus Infrastructure Node" + }, + { + "id": "morpheus-network", + "symbol": "mnw", + "name": "Morpheus Network" + }, + { + "id": "morph-l2-bridged-usdc-morph-l2", + "symbol": "usdc", + "name": "Morph L2 Bridged USDC (Morph L2)" + }, + { + "id": "morph-l2-bridged-usdt-morph-l2", + "symbol": "usdt", + "name": "Morph L2 Bridged USDT (Morph L2)" + }, + { + "id": "morpho", + "symbol": "morpho", + "name": "Morpho" + }, + { + "id": "morpho-2", + "symbol": "morpho", + "name": "Legacy Morpho" + }, + { + "id": "morpho-aave-curve-dao-token", + "symbol": "macrv", + "name": "Morpho-Aave Curve DAO Token" + }, + { + "id": "morpho-aave-wrapped-btc", + "symbol": "mawbtc", + "name": "Morpho-Aave Wrapped BTC" + }, + { + "id": "morpho-degen", + "symbol": "mdegen", + "name": "Morpho Degen" + }, + { + "id": "morpho-eusd", + "symbol": "meusd", + "name": "Morpho eUSD" + }, + { + "id": "morpho-mai", + "symbol": "mmai", + "name": "Morpho MAI" + }, + { + "id": "morphware", + "symbol": "xmw", + "name": "Morphware" + }, + { + "id": "morra", + "symbol": "morra", + "name": "Morra" + }, + { + "id": "morris", + "symbol": "morris", + "name": "MORRIS" + }, + { + "id": "morse", + "symbol": "morse", + "name": "Morse" + }, + { + "id": "mortgage-coin", + "symbol": "mortgage", + "name": "Mortgage Coin" + }, + { + "id": "morti", + "symbol": "morti", + "name": "Morti" + }, + { + "id": "morud", + "symbol": "morud", + "name": "Morud" + }, + { + "id": "moshi", + "symbol": "moshi", + "name": "Moshi" + }, + { + "id": "moss", + "symbol": "moss", + "name": "MOSS AI" + }, + { + "id": "moss-carbon-credit", + "symbol": "mco2", + "name": "Moss Carbon Credit" + }, + { + "id": "mossland", + "symbol": "moc", + "name": "Mossland" + }, + { + "id": "most-elegant-monkey-ever", + "symbol": "meme", + "name": "MOST ELEGANT MONKEY EVER" + }, + { + "id": "most-holders-ever", + "symbol": "gatha", + "name": "Most Holders Ever" + }, + { + "id": "most-wanted-2", + "symbol": "most", + "name": "Most Wanted" + }, + { + "id": "motacoin", + "symbol": "mota", + "name": "MotaCoin" + }, + { + "id": "moth", + "symbol": "møth", + "name": "MOTH" + }, + { + "id": "moth-2", + "symbol": "moth", + "name": "Moth" + }, + { + "id": "moth-3", + "symbol": "moth", + "name": "Moth" + }, + { + "id": "mother-earth", + "symbol": "mot", + "name": "Mother Earth" + }, + { + "id": "mother-iggy", + "symbol": "mother", + "name": "Mother Iggy" + }, + { + "id": "mother-of-memes-2", + "symbol": "haha", + "name": "Mother of Memes" + }, + { + "id": "motion-3", + "symbol": "motion", + "name": "Motion" + }, + { + "id": "motion-4", + "symbol": "motion", + "name": "Motion" + }, + { + "id": "motion-5", + "symbol": "motion", + "name": "motion" + }, + { + "id": "motion-coin", + "symbol": "motion", + "name": "Motion Coin" + }, + { + "id": "motion-motn", + "symbol": "motn", + "name": "Motion Token" + }, + { + "id": "moto", + "symbol": "moto", + "name": "MOTO" + }, + { + "id": "moto-2", + "symbol": "moto", + "name": "MOTO" + }, + { + "id": "moto-dog", + "symbol": "tobi", + "name": "MOTO DOG" + }, + { + "id": "mound-token", + "symbol": "mnd", + "name": "Mound" + }, + { + "id": "mountain-protocol-usdm", + "symbol": "usdm", + "name": "Mountain Protocol USD" + }, + { + "id": "mouse-in-pasta", + "symbol": "stuck", + "name": "Mouse In Pasta" + }, + { + "id": "mova", + "symbol": "mova", + "name": "MOVA" + }, + { + "id": "moveai", + "symbol": "mai", + "name": "MoveAI" + }, + { + "id": "moveapp", + "symbol": "move", + "name": "MoveApp" + }, + { + "id": "move-dollar", + "symbol": "mod", + "name": "Move Dollar" + }, + { + "id": "movegpt", + "symbol": "mgpt", + "name": "MoveGPT" + }, + { + "id": "movement", + "symbol": "move", + "name": "Movement" + }, + { + "id": "movement-bridged-usdc-movement", + "symbol": "usdc.e", + "name": "Movement Bridged USDC (Movement)" + }, + { + "id": "movement-bridged-usdt-movement", + "symbol": "usdt.e", + "name": "Movement Bridged USDT (Movement)" + }, + { + "id": "movement-bridged-wbtc-movement", + "symbol": "wbtc.e", + "name": "Movement Bridged WBTC (Movement)" + }, + { + "id": "movement-bridged-weth-movement", + "symbol": "weth.e", + "name": "Movement Bridged WETH (Movement)" + }, + { + "id": "movement-coin", + "symbol": "movement", + "name": "Movement Coin" + }, + { + "id": "movepump", + "symbol": "movepump", + "name": "MovePump" + }, + { + "id": "movex-token", + "symbol": "movex", + "name": "Movex Token" + }, + { + "id": "movez", + "symbol": "movez", + "name": "MoveZ" + }, + { + "id": "movich", + "symbol": "movich", + "name": "Movich" + }, + { + "id": "moviebloc", + "symbol": "mbl", + "name": "MovieBloc" + }, + { + "id": "movr-ai", + "symbol": "movr", + "name": "MOVR.ai" + }, + { + "id": "moxie", + "symbol": "moxie", + "name": "Moxie" + }, + { + "id": "mox-studio", + "symbol": "mox", + "name": "Mox Studio" + }, + { + "id": "moya", + "symbol": "moya", + "name": "MOYA" + }, + { + "id": "mozaic", + "symbol": "moz", + "name": "Mozaic" + }, + { + "id": "mozart", + "symbol": "mozart", + "name": "Mozart" + }, + { + "id": "mpendle", + "symbol": "mpendle", + "name": "mPendle" + }, + { + "id": "mpool", + "symbol": "mult pool", + "name": "MPOOL" + }, + { + "id": "mpool-2", + "symbol": "mpool", + "name": "mPool" + }, + { + "id": "mpro-lab", + "symbol": "mpro", + "name": "Metapro" + }, + { + "id": "mpx6900", + "symbol": "meme", + "name": "MPX6900" + }, + { + "id": "mr-beast-dog", + "symbol": "pinky", + "name": "Mr.Beast Dog" + }, + { + "id": "mr-lightspeed-creator-coin", + "symbol": "mr_lightspeed", + "name": "Mr. Lightspeed Creator Coin" + }, + { + "id": "mr-mayonnaise-the-cat", + "symbol": "mayo", + "name": "Mr Mayonnaise the Cat" + }, + { + "id": "mr-puggles", + "symbol": "puggles", + "name": "Mr Puggles" + }, + { + "id": "mr-pumpt", + "symbol": "pumpt", + "name": "Mr Pumpt" + }, + { + "id": "mrs-miggles", + "symbol": "mrsmiggles", + "name": "Mrs Miggles" + }, + { + "id": "mr-west", + "symbol": "ye", + "name": "Mr West" + }, + { + "id": "mr-yen-japanese-businessman-runes", + "symbol": "mryen", + "name": "MR•YEN•JAPANESE•BUSINESSMAN (Runes)" + }, + { + "id": "msol", + "symbol": "msol", + "name": "Marinade Staked SOL" + }, + { + "id": "ms-paint", + "symbol": "paint", + "name": "MS Paint" + }, + { + "id": "msq-cycle-burn", + "symbol": "burn", + "name": "MSQ Cycle Burn" + }, + { + "id": "msquare-global", + "symbol": "msq", + "name": "MSquare Global" + }, + { + "id": "mstr2100", + "symbol": "mstr", + "name": "MSTR2100" + }, + { + "id": "msv-protocol", + "symbol": "msvp", + "name": "MSV Protocol" + }, + { + "id": "mtfi", + "symbol": "mtfi", + "name": "MTFi" + }, + { + "id": "mth-network", + "symbol": "mthn", + "name": "MTH Network" + }, + { + "id": "mt-pelerin-shares", + "symbol": "mps", + "name": "Mt Pelerin Shares" + }, + { + "id": "mubarak", + "symbol": "mubarak", + "name": "Mubarak" + }, + { + "id": "mubarakah", + "symbol": "mubarakah", + "name": "Mubarakah" + }, + { + "id": "mubarak-sol", + "symbol": "mubarak", + "name": "Mubarak Sol" + }, + { + "id": "mu-chan", + "symbol": "mu", + "name": "Mu-Chan" + }, + { + "id": "mu-coin", + "symbol": "mu", + "name": "Mu Coin" + }, + { + "id": "muesliswap-milk", + "symbol": "milk", + "name": "MuesliSwap MILK" + }, + { + "id": "muffin", + "symbol": "muffin", + "name": "Muffin" + }, + { + "id": "mugi", + "symbol": "mugi", + "name": "Mugi" + }, + { + "id": "muhdo-hub", + "symbol": "dna", + "name": "Muhdo Hub" + }, + { + "id": "mula-ai", + "symbol": "mula", + "name": "Mula AI" + }, + { + "id": "mullenarmy", + "symbol": "muln", + "name": "MullenArmy" + }, + { + "id": "multi-asset-investment-vehicle", + "symbol": "maiv", + "name": "Multi Asset Investment Vehicle" + }, + { + "id": "multibit", + "symbol": "mubi", + "name": "Multibit" + }, + { + "id": "multichain", + "symbol": "multi", + "name": "Multichain" + }, + { + "id": "multichain-bridged-busd-moonriver", + "symbol": "busd", + "name": "Multichain Bridged BUSD (Moonriver)" + }, + { + "id": "multichain-bridged-dai-energi", + "symbol": "dai", + "name": "Multichain Bridged DAI (Energi)" + }, + { + "id": "multichain-bridged-dai-fantom", + "symbol": "dai", + "name": "Multichain Bridged DAI (Fantom)" + }, + { + "id": "multichain-bridged-dai-moonbeam", + "symbol": "dai", + "name": "Multichain Bridged DAI (Moonbeam)" + }, + { + "id": "multichain-bridged-dai-moonriver", + "symbol": "dai", + "name": "Multichain Bridged DAI (Moonriver)" + }, + { + "id": "multichain-bridged-usdc-dogechain", + "symbol": "usdc", + "name": "Multichain Bridged USDC (Dogechain)" + }, + { + "id": "multichain-bridged-usdc-fantom", + "symbol": "usdc", + "name": "Multichain Bridged USDC (Fantom)" + }, + { + "id": "multichain-bridged-usdc-kava", + "symbol": "usdc", + "name": "Multichain Bridged USDC (Kava)" + }, + { + "id": "multichain-bridged-usdc-moonbeam", + "symbol": "usdc", + "name": "Multichain Bridged USDC (Moonbeam)" + }, + { + "id": "multichain-bridged-usdt-bittorrent", + "symbol": "usdt_t", + "name": "Multichain Bridged USDT (BitTorrent)" + }, + { + "id": "multichain-bridged-wavax-fantom", + "symbol": "wavax", + "name": "Multichain Bridged WAVAX (Fantom)" + }, + { + "id": "multichain-bridged-wbnb-energi", + "symbol": "wbnb", + "name": "Multichain Bridged WBNB (Energi)" + }, + { + "id": "multichain-bridged-wbnb-moonriver", + "symbol": "wbnb", + "name": "Multichain Bridged WBNB (Moonriver)" + }, + { + "id": "multichain-bridged-wbnb-shiden-network", + "symbol": "wbnb", + "name": "Multichain Bridged WBNB (Shiden Network)" + }, + { + "id": "multichain-bridged-wbtc-energi", + "symbol": "wbtc", + "name": "Multichain Bridged WBTC (Energi)" + }, + { + "id": "multichain-bridged-wbtc-moonriver", + "symbol": "wbtc", + "name": "Multichain Bridged WBTC (Moonriver)" + }, + { + "id": "multichain-bridged-weth-energi", + "symbol": "weth", + "name": "Multichain Bridged WETH (Energi)" + }, + { + "id": "multichain-bridged-weth-fantom", + "symbol": "weth", + "name": "Multichain Bridged WETH (Fantom)" + }, + { + "id": "multichain-bridged-weth-moonriver", + "symbol": "weth", + "name": "Multichain Bridged WETH (Moonriver)" + }, + { + "id": "multichain-bsc", + "symbol": "multi", + "name": "Multichain (BSC)" + }, + { + "id": "multipad", + "symbol": "mpad", + "name": "MultiPad" + }, + { + "id": "multiplanetary-inus", + "symbol": "inus", + "name": "MultiPlanetary Inus" + }, + { + "id": "multiple-network", + "symbol": "mtp", + "name": "Multiple Network" + }, + { + "id": "multisys", + "symbol": "myus", + "name": "Multisys" + }, + { + "id": "multivac", + "symbol": "mtv", + "name": "MultiVAC" + }, + { + "id": "multiverse", + "symbol": "ai", + "name": "Multiverse" + }, + { + "id": "multiverse-capital", + "symbol": "mvc", + "name": "Multiverse Capital" + }, + { + "id": "multiverse-monkey", + "symbol": "mmon", + "name": "MULTIVERSE MONKEY" + }, + { + "id": "mummat", + "symbol": "mummat", + "name": "MUMMAT" + }, + { + "id": "mummmy-labs-studio", + "symbol": "mls", + "name": "Mummy Labs Studio" + }, + { + "id": "mummy-finance", + "symbol": "navi", + "name": "Navigator Exchange" + }, + { + "id": "mumu", + "symbol": "mumu", + "name": "Mumu" + }, + { + "id": "mumubit-token", + "symbol": "mctp", + "name": "MUMUBIT TOKEN" + }, + { + "id": "mumu-the-bull-2", + "symbol": "bull", + "name": "Mumu the Bull" + }, + { + "id": "mumu-the-bull-3", + "symbol": "mumu", + "name": "MUMU THE BULL" + }, + { + "id": "muncat", + "symbol": "muncat", + "name": "MUNCAT" + }, + { + "id": "munch", + "symbol": "munch", + "name": "Munch" + }, + { + "id": "mundoteam", + "symbol": "mnt", + "name": "Mundoteam" + }, + { + "id": "munky", + "symbol": "munky", + "name": "Munky" + }, + { + "id": "muon", + "symbol": "muon", + "name": "Muon" + }, + { + "id": "murad", + "symbol": "murad", + "name": "Murad" + }, + { + "id": "murasaki", + "symbol": "mura", + "name": "Murasaki" + }, + { + "id": "muratiai", + "symbol": "muratiai", + "name": "MuratiAI" + }, + { + "id": "mur-cat", + "symbol": "mur", + "name": "Mur Cat" + }, + { + "id": "murtis", + "symbol": "murtis", + "name": "Murtis" + }, + { + "id": "musd", + "symbol": "musd", + "name": "mStable USD" + }, + { + "id": "muse-2", + "symbol": "muse", + "name": "Muse DAO" + }, + { + "id": "museum-of-crypto-art", + "symbol": "moca", + "name": "Museum of Crypto Art" + }, + { + "id": "museum-of-influencers", + "symbol": "mofi", + "name": "Museum Of Influencers" + }, + { + "id": "museum-of-memes", + "symbol": "mom", + "name": "Museum Of Memes" + }, + { + "id": "music-by-virtuals", + "symbol": "music", + "name": "Music by Virtuals" + }, + { + "id": "music-protocol", + "symbol": "record", + "name": "Record Nexus" + }, + { + "id": "musk-gold", + "symbol": "musk", + "name": "MUSK Gold" + }, + { + "id": "musk-it", + "symbol": "muskit", + "name": "Musk It" + }, + { + "id": "musmecoin", + "symbol": "msm", + "name": "MusmeCoin" + }, + { + "id": "must", + "symbol": "must", + "name": "Must" + }, + { + "id": "mustaaaaaard", + "symbol": "mustard", + "name": "MUSTAAAAAARD" + }, + { + "id": "mut", + "symbol": "mut", + "name": "MUT" + }, + { + "id": "mut8-virus", + "symbol": "mute", + "name": "MUT8 Virus" + }, + { + "id": "mutatio-flies", + "symbol": "flies", + "name": "MUTATIO" + }, + { + "id": "mute", + "symbol": "mute", + "name": "Mute" + }, + { + "id": "mute-swap-by-virtuals", + "symbol": "mute", + "name": "MUTE SWAP by Virtuals" + }, + { + "id": "mutlichain-bridged-wbnb-avalanche", + "symbol": "wbnb", + "name": "Multichain Bridged WBNB (Avalanche C-Chain)" + }, + { + "id": "muttski-2", + "symbol": "woof", + "name": "Muttski" + }, + { + "id": "muva", + "symbol": "$muva", + "name": "MUVA" + }, + { + "id": "muxyai", + "symbol": "mai", + "name": "MuxyAI" + }, + { + "id": "muzki", + "symbol": "muzki", + "name": "Muzki" + }, + { + "id": "muzzle", + "symbol": "muzz", + "name": "MUZZLE" + }, + { + "id": "mvcswap", + "symbol": "msp", + "name": "MvcSwap" + }, + { + "id": "mvs-multiverse", + "symbol": "mvs", + "name": "MVS Multiverse" + }, + { + "id": "mwx-token", + "symbol": "mwxt", + "name": "MWX Token" + }, + { + "id": "mx69420", + "symbol": "mx", + "name": "MX69420" + }, + { + "id": "mxc", + "symbol": "mxc", + "name": "MXC" + }, + { + "id": "mxmboxceus-token", + "symbol": "mbe", + "name": "MxmBoxcEus Token" + }, + { + "id": "mxnb", + "symbol": "mxnb", + "name": "MXNB" + }, + { + "id": "mxs-games", + "symbol": "xseed", + "name": "MXS Games" + }, + { + "id": "mx-token", + "symbol": "mx", + "name": "MX" + }, + { + "id": "mxy6900", + "symbol": "mxy", + "name": "MXY6900" + }, + { + "id": "mybit-token", + "symbol": "myb", + "name": "MyBit" + }, + { + "id": "mybricks", + "symbol": "bricks", + "name": "MyBricks" + }, + { + "id": "my-bro", + "symbol": "bro", + "name": "My Bro" + }, + { + "id": "mycrostrategy", + "symbol": "mcs", + "name": "MyCroStrategy" + }, + { + "id": "my-defi-legends", + "symbol": "dlegends", + "name": "My DeFi Legends" + }, + { + "id": "my-defi-pet", + "symbol": "dpet", + "name": "My DeFi Pet" + }, + { + "id": "my-dog-is-the-dev", + "symbol": "dev", + "name": "MY DOG IS THE DEV" + }, + { + "id": "myeva", + "symbol": "myeva", + "name": "myEva" + }, + { + "id": "myku", + "symbol": "myku", + "name": "Myku" + }, + { + "id": "my-life-as-grok", + "symbol": "grok", + "name": "My life as Grok" + }, + { + "id": "mylinks", + "symbol": "link", + "name": "MyLinks" + }, + { + "id": "my-lovely-coin", + "symbol": "mlc", + "name": "My Lovely Coin" + }, + { + "id": "my-master-war", + "symbol": "mat", + "name": "My Master War" + }, + { + "id": "my-mom", + "symbol": "mom", + "name": "My MOM" + }, + { + "id": "my-neighbor-alice", + "symbol": "alice", + "name": "My Neighbor Alice" + }, + { + "id": "mynth", + "symbol": "mnt", + "name": "Mynth" + }, + { + "id": "myntpay", + "symbol": "mynt", + "name": "MyntPay" + }, + { + "id": "myonion-fun", + "symbol": "$onion", + "name": "MyOnion.fun" + }, + { + "id": "mypal4life", + "symbol": "mpal", + "name": "MyPal4Life" + }, + { + "id": "my-paqman-coin", + "symbol": "mpc", + "name": "My Paqman Coin" + }, + { + "id": "my-pronouns-are-high-er", + "symbol": "higher", + "name": "My Pronouns Are High/er" + }, + { + "id": "myra", + "symbol": "myra", + "name": "Myra" + }, + { + "id": "myria", + "symbol": "myria", + "name": "Myria" + }, + { + "id": "myriadcoin", + "symbol": "xmy", + "name": "Myriad" + }, + { + "id": "myro", + "symbol": "$myro", + "name": "Myro" + }, + { + "id": "myrowifhat", + "symbol": "mif", + "name": "MyroWifHat" + }, + { + "id": "myshell", + "symbol": "shell", + "name": "MyShell" + }, + { + "id": "myspace-girls", + "symbol": "msg", + "name": "Myspace Girls" + }, + { + "id": "mystandard", + "symbol": "myst", + "name": "MyStandard" + }, + { + "id": "mystcl", + "symbol": "myst", + "name": "MYSTCL" + }, + { + "id": "mysterium", + "symbol": "myst", + "name": "Mysterium" + }, + { + "id": "mystery-2", + "symbol": "mystery", + "name": "Mystery" + }, + { + "id": "mystic-treasure", + "symbol": "myt", + "name": "Mystic Treasure" + }, + { + "id": "mystify", + "symbol": "myst", + "name": "Mystify" + }, + { + "id": "mythical-gem", + "symbol": "gem", + "name": "Mythical Gem" + }, + { + "id": "mythos", + "symbol": "myth", + "name": "Mythos" + }, + { + "id": "my-token", + "symbol": "mtk", + "name": "My Token" + }, + { + "id": "myx-finance", + "symbol": "myx", + "name": "MYX Finance" + }, + { + "id": "nabla", + "symbol": "nabla", + "name": "Nabla" + }, + { + "id": "nabox", + "symbol": "nabox", + "name": "Nabox" + }, + { + "id": "na-capital-as-a-service-sstn", + "symbol": "pc0016245", + "name": "NA Capital-as-a-Service SSTN" + }, + { + "id": "nacho-the-kat", + "symbol": "nacho", + "name": "Nacho the Kat" + }, + { + "id": "naest", + "symbol": "naest", + "name": "NAEST" + }, + { + "id": "na-fintech-nonprime-lender-sstn", + "symbol": "pc0000037", + "name": "NA Fintech Nonprime Lender SSTN" + }, + { + "id": "nafter", + "symbol": "naft", + "name": "Nafter" + }, + { + "id": "naga", + "symbol": "ngc", + "name": "NAGA" + }, + { + "id": "nagaya", + "symbol": "ngy", + "name": "NAGAYA" + }, + { + "id": "naiive", + "symbol": "naiive", + "name": "naiive" + }, + { + "id": "nailong", + "symbol": "nailong", + "name": "Nailong" + }, + { + "id": "naincy", + "symbol": "naincy", + "name": "NAINCY" + }, + { + "id": "naitzsche", + "symbol": "nai", + "name": "Naitzsche" + }, + { + "id": "naka", + "symbol": "naka", + "name": "Naka" + }, + { + "id": "naka-bodhi-token", + "symbol": "nbot", + "name": "Naka Bodhi" + }, + { + "id": "naka-go", + "symbol": "naka", + "name": "Naka Go" + }, + { + "id": "nakama-coin", + "symbol": "nakama", + "name": "Nakama Coin" + }, + { + "id": "nakamoto-games", + "symbol": "naka", + "name": "Nakamoto Games" + }, + { + "id": "naked-crab-man", + "symbol": "crabfurie", + "name": "Naked Crab Man" + }, + { + "id": "naked-jim", + "symbol": "$jim", + "name": "Naked Jim" + }, + { + "id": "nala", + "symbol": "nala", + "name": "NALA" + }, + { + "id": "namada", + "symbol": "nam", + "name": "Namada" + }, + { + "id": "namecoin", + "symbol": "nmc", + "name": "Namecoin" + }, + { + "id": "nameless", + "symbol": "name", + "name": "Nameless" + }, + { + "id": "nami-frame-futures", + "symbol": "nao", + "name": "Nami Frame Futures" + }, + { + "id": "namimoto-token", + "symbol": "namt", + "name": "Namimoto Token" + }, + { + "id": "nami-protocol", + "symbol": "nami", + "name": "NAMI Protocol" + }, + { + "id": "na-music-royalties-sstl", + "symbol": "pc0000061", + "name": "NA Music Royalties SSTL" + }, + { + "id": "nana-token", + "symbol": "nana", + "name": "NANA Token" + }, + { + "id": "nani", + "symbol": "⌘", + "name": "NANI" + }, + { + "id": "nani-2", + "symbol": "nani", + "name": "NANI" + }, + { + "id": "nano", + "symbol": "xno", + "name": "Nano" + }, + { + "id": "nano-banana", + "symbol": "nanobanana", + "name": "Nano-Banana" + }, + { + "id": "nanobyte", + "symbol": "nbt", + "name": "NanoByte" + }, + { + "id": "nanometer-bitcoin", + "symbol": "nmbtc", + "name": "NanoMeter Bitcoin" + }, + { + "id": "naoris", + "symbol": "naoris", + "name": "Naoris Protocol" + }, + { + "id": "naos-finance", + "symbol": "naos", + "name": "NAOS Finance" + }, + { + "id": "napoli-fan-token", + "symbol": "nap", + "name": "Napoli Fan Token" + }, + { + "id": "na-post-settlement-legal-financing-receivables", + "symbol": "pc0000101", + "name": "NA Post-Settlement Legal Financing Receivables" + }, + { + "id": "naruto", + "symbol": "naruto", + "name": "Naruto" + }, + { + "id": "nasdao-ai", + "symbol": "ndao", + "name": "Nasdao Ai" + }, + { + "id": "nasdaq-xstock", + "symbol": "qqqx", + "name": "Nasdaq xStock" + }, + { + "id": "nasdex-token", + "symbol": "nsdx", + "name": "NASDEX" + }, + { + "id": "nash-smart-finance", + "symbol": "nasf", + "name": "Nash Smart Finance" + }, + { + "id": "national-digital-asset-stockpile", + "symbol": "ndas", + "name": "National Digital Asset Stockpile" + }, + { + "id": "nativ", + "symbol": "ntv", + "name": "Nativ" + }, + { + "id": "native-2", + "symbol": "native", + "name": "Native" + }, + { + "id": "native-decentralized-euro-protocol-share", + "symbol": "ndeps", + "name": "Native Decentralized Euro Protocol Share" + }, + { + "id": "natix-network", + "symbol": "natix", + "name": "NATIX Network" + }, + { + "id": "natus-vincere-fan-token", + "symbol": "navi", + "name": "Natus Vincere Fan Token" + }, + { + "id": "nav", + "symbol": "nav", + "name": "NAV" + }, + { + "id": "naval-ai", + "symbol": "naval", + "name": "Patchwork Naval" + }, + { + "id": "nav-coin", + "symbol": "nav", + "name": "Navio" + }, + { + "id": "navi", + "symbol": "navx", + "name": "NAVI Protocol" + }, + { + "id": "navigate", + "symbol": "nvg8", + "name": "Navigate" + }, + { + "id": "navigator-ai", + "symbol": "nav", + "name": "Navigator AI" + }, + { + "id": "navigator-by-metawin", + "symbol": "navi", + "name": "Navigator by MetaWin" + }, + { + "id": "navy-seal", + "symbol": "navyseal", + "name": "Navy seal" + }, + { + "id": "naws-ai", + "symbol": "naws", + "name": "NAWS.AI" + }, + { + "id": "naym", + "symbol": "naym", + "name": "Naym" + }, + { + "id": "nazareai", + "symbol": "nazareai", + "name": "NazareAI" + }, + { + "id": "nbm-lumite", + "symbol": "nbmlum", + "name": "NBM Lumite" + }, + { + "id": "ndc", + "symbol": "ndc", + "name": "NDC" + }, + { + "id": "ndq666", + "symbol": "ndq", + "name": "NDQ666" + }, + { + "id": "near", + "symbol": "near", + "name": "NEAR Protocol" + }, + { + "id": "near-intents-bridged-btc", + "symbol": "btc", + "name": "NEAR Intents Bridged BTC" + }, + { + "id": "near-intents-bridged-eth", + "symbol": "eth", + "name": "NEAR Intents Bridged ETH" + }, + { + "id": "near-intents-bridged-sol", + "symbol": "sol", + "name": "NEAR Intents Bridged SOL" + }, + { + "id": "near-intents-bridged-usdc", + "symbol": "usdc", + "name": "NEAR Intents Bridged USDC" + }, + { + "id": "near-intents-bridged-usdt", + "symbol": "usdt", + "name": "NEAR Intents Bridged USDT" + }, + { + "id": "near-intents-bridged-xrp", + "symbol": "xrp", + "name": "NEAR Intents Bridged XRP" + }, + { + "id": "nearkat", + "symbol": "kat", + "name": "NearKat" + }, + { + "id": "nearlend-dao", + "symbol": "neld", + "name": "Nearlend DAO" + }, + { + "id": "nearpad", + "symbol": "pad", + "name": "Pad.Fi" + }, + { + "id": "near-tinker-union-gear", + "symbol": "gear", + "name": "Near Tinker Union GEAR" + }, + { + "id": "neat", + "symbol": "neat", + "name": "NEAT" + }, + { + "id": "nebula-4", + "symbol": "neb", + "name": "Nebula" + }, + { + "id": "nebula-ai-2", + "symbol": "naix", + "name": "Nebula Ai" + }, + { + "id": "nebula-project", + "symbol": "nbla", + "name": "Nebula Project" + }, + { + "id": "nebx", + "symbol": "xpower", + "name": "NebX" + }, + { + "id": "nectar", + "symbol": "nect", + "name": "Nectar" + }, + { + "id": "ned", + "symbol": "ned", + "name": "NED" + }, + { + "id": "needl", + "symbol": "needl", + "name": "NEEDL" + }, + { + "id": "neemo-staked-astar", + "symbol": "nsastr", + "name": "Neemo Staked Astar" + }, + { + "id": "neet", + "symbol": "neet", + "name": "Not in Employment, Education, or Training" + }, + { + "id": "nefty", + "symbol": "nefty", + "name": "NeftyBlocks" + }, + { + "id": "neged", + "symbol": "neged", + "name": "Neged" + }, + { + "id": "neirei", + "symbol": "neirei", + "name": "Neirei" + }, + { + "id": "neiro", + "symbol": "neiro", + "name": "Neiro" + }, + { + "id": "neiro-2", + "symbol": "neiro", + "name": "Neiro" + }, + { + "id": "neiro-3", + "symbol": "neiro", + "name": "Neiro" + }, + { + "id": "neiro-4", + "symbol": "neiro", + "name": "Neiro" + }, + { + "id": "neiro-on-tron", + "symbol": "neiro", + "name": "Neiro on Tron" + }, + { + "id": "neirowifhat", + "symbol": "neiroh", + "name": "NeiroWifHat" + }, + { + "id": "neka-kayda", + "symbol": "neka", + "name": "Neka Kayda" + }, + { + "id": "neko", + "symbol": "neko", + "name": "NEKO" + }, + { + "id": "neko-2", + "symbol": "neko", + "name": "Neko" + }, + { + "id": "neko-3", + "symbol": "neko", + "name": "NEKO" + }, + { + "id": "nekocoin-2", + "symbol": "((=ↀωↀ=))", + "name": "Nekocoin" + }, + { + "id": "nekoverse-city-of-greed-anima-spirit-gem", + "symbol": "asg", + "name": "Nekoverse: City of Greed Anima Spirit Gem" + }, + { + "id": "nelore-coin", + "symbol": "nlc", + "name": "Nelore Coin" + }, + { + "id": "nem", + "symbol": "xem", + "name": "NEM" + }, + { + "id": "nema-lab", + "symbol": "nema", + "name": "NEMA" + }, + { + "id": "nemesis-2", + "symbol": "nemesis", + "name": "Nemesis" + }, + { + "id": "nemesis-ai-trader", + "symbol": "nemesis", + "name": "Nemesis AI Trader" + }, + { + "id": "nemesis-downfall", + "symbol": "nd", + "name": "Nemesis Downfall" + }, + { + "id": "nemo-sum", + "symbol": "nemo", + "name": "Nemo Sum" + }, + { + "id": "nend", + "symbol": "nend", + "name": "NEND" + }, + { + "id": "nengcoin", + "symbol": "neng", + "name": "Nengcoin" + }, + { + "id": "neo", + "symbol": "neo", + "name": "NEO" + }, + { + "id": "neo-2", + "symbol": "neo ", + "name": "NEO " + }, + { + "id": "neoaudit-ai", + "symbol": "naai", + "name": "NeoAudit AI" + }, + { + "id": "neocortexai-2", + "symbol": "cortex", + "name": "NeoCortexAI" + }, + { + "id": "neon", + "symbol": "neon", + "name": "Neon" + }, + { + "id": "neonet-ai-by-suiai", + "symbol": "neonet", + "name": "Neonet AI" + }, + { + "id": "neon-exchange", + "symbol": "nex", + "name": "Nash" + }, + { + "id": "neon-neko", + "symbol": "neko", + "name": "NeonNeko" + }, + { + "id": "neonpass-bridged-sol-neon-evm", + "symbol": "sol", + "name": "NeonPass Bridged SOL (Neon EVM)" + }, + { + "id": "neonpass-bridged-usdc-neon", + "symbol": "usdc", + "name": "NeonPass Bridged USDC (Neon)" + }, + { + "id": "neopin", + "symbol": "may", + "name": "Mayflower" + }, + { + "id": "neorbit", + "symbol": "safo", + "name": "SAFEONE CHAIN" + }, + { + "id": "neos-ai", + "symbol": "neos", + "name": "Neos.ai" + }, + { + "id": "neos-credits", + "symbol": "ncr", + "name": "Neos Credits" + }, + { + "id": "neo-tokyo", + "symbol": "bytes", + "name": "Neo Tokyo" + }, + { + "id": "neoxa", + "symbol": "neox", + "name": "Neoxa" + }, + { + "id": "neptune-2", + "symbol": "nept", + "name": "Neptune" + }, + { + "id": "neptune-cash", + "symbol": "npt", + "name": "Neptune Cash" + }, + { + "id": "neptune-protocol", + "symbol": "npt", + "name": "Neptune Protocol" + }, + { + "id": "neptune-usd", + "symbol": "usdn", + "name": "Neptune USD" + }, + { + "id": "nerdydude", + "symbol": "nerdy", + "name": "NerdyDude" + }, + { + "id": "nereus-token", + "symbol": "nrs", + "name": "Nereus" + }, + { + "id": "nero", + "symbol": "npt", + "name": "Nero" + }, + { + "id": "neroboss", + "symbol": "neroboss", + "name": "Neroboss" + }, + { + "id": "nero-chain", + "symbol": "nero", + "name": "NERO Chain" + }, + { + "id": "nero-token", + "symbol": "nero", + "name": "Nero Token" + }, + { + "id": "nerve-finance", + "symbol": "nrv", + "name": "Nerve Finance" + }, + { + "id": "nerveflux", + "symbol": "nerve", + "name": "NerveFlux" + }, + { + "id": "nervenetwork", + "symbol": "nvt", + "name": "NerveNetwork" + }, + { + "id": "nervos-network", + "symbol": "ckb", + "name": "Nervos Network" + }, + { + "id": "neshudo", + "symbol": "neshudo", + "name": "NESHUDO" + }, + { + "id": "ness-lab", + "symbol": "ness", + "name": "Ness Lab" + }, + { + "id": "nest", + "symbol": "nest", + "name": "Nest Protocol" + }, + { + "id": "nest-ai-by-virtuals", + "symbol": "nest", + "name": "Nest AI by Virtuals" + }, + { + "id": "nest-alpha-vault", + "symbol": "nalpha", + "name": "Nest Alpha Vault" + }, + { + "id": "nest-alpha-vault-lp", + "symbol": "inalpha", + "name": "Nest Alpha Vault (LP)" + }, + { + "id": "nest-apollo-acrdx-vault", + "symbol": "nacrdx", + "name": "Nest Apollo ACRDX Vault" + }, + { + "id": "nest-basis-vault", + "symbol": "nbasis", + "name": "Nest Basis Vault" + }, + { + "id": "nest-btc-vault", + "symbol": "nbtc", + "name": "Nest BTC Vault" + }, + { + "id": "nest-credit-vault", + "symbol": "ncredit", + "name": "Nest Credit Vault" + }, + { + "id": "nest-elixir-vault-lp", + "symbol": "inelixir", + "name": "Nest Elixir Vault (LP)" + }, + { + "id": "nest-etf-vault", + "symbol": "netf", + "name": "Nest ETF Vault" + }, + { + "id": "nest-institutional-core", + "symbol": "nelixir", + "name": "Nest Elixir Vault" + }, + { + "id": "nest-institutional-vault", + "symbol": "ninsto", + "name": "Nest Institutional Vault" + }, + { + "id": "nest-mineral-vault", + "symbol": "nmnrl", + "name": "Nest Mineral Vault" + }, + { + "id": "nest-payfi-vault", + "symbol": "npayfi", + "name": "Nest PayFi Vault" + }, + { + "id": "nestree", + "symbol": "egg", + "name": "Nestree" + }, + { + "id": "nest-treasury-vault", + "symbol": "ntbill", + "name": "Nest Treasury Vault" + }, + { + "id": "nest-treasury-vault-lp", + "symbol": "intbill", + "name": "Nest Treasury Vault (LP)" + }, + { + "id": "net", + "symbol": "net", + "name": "Net" + }, + { + "id": "neta", + "symbol": "neta", + "name": "NETA" + }, + { + "id": "netcoin-2", + "symbol": "net", + "name": "Netcoin" + }, + { + "id": "net-dollar", + "symbol": "net", + "name": "NET Dollar" + }, + { + "id": "netflix-ondo-tokenized-stock", + "symbol": "nflxon", + "name": "Netflix (Ondo Tokenized Stock)" + }, + { + "id": "netflix-tokenized-stock-defichain", + "symbol": "dnflx", + "name": "Netflix Tokenized Stock Defichain" + }, + { + "id": "netflix-xstock", + "symbol": "nflxx", + "name": "Netflix xStock" + }, + { + "id": "nether", + "symbol": "ntr", + "name": "Nether" + }, + { + "id": "netherfi", + "symbol": "nfi", + "name": "NetherFi" + }, + { + "id": "netherlands-coin", + "symbol": "ned", + "name": "Netherlands Coin" + }, + { + "id": "netmind-token", + "symbol": "nmt", + "name": "NetMind Token" + }, + { + "id": "netswap", + "symbol": "nett", + "name": "Netswap" + }, + { + "id": "nettensor", + "symbol": "nao", + "name": "Nettensor" + }, + { + "id": "netvrk", + "symbol": "netvr", + "name": "Netvrk" + }, + { + "id": "networkcities", + "symbol": "cities", + "name": "NETWORKCITIES" + }, + { + "id": "network-net-worth", + "symbol": "network", + "name": "Network = Net Worth" + }, + { + "id": "netx", + "symbol": "netx", + "name": "NetX" + }, + { + "id": "neuracat", + "symbol": "ncat", + "name": "Neuracat" + }, + { + "id": "neuracat-2", + "symbol": "ncat", + "name": "Neuracat" + }, + { + "id": "neurahub", + "symbol": "neura", + "name": "Neurahub" + }, + { + "id": "neurai", + "symbol": "xna", + "name": "Neurai" + }, + { + "id": "neural3d", + "symbol": "sn46", + "name": "RESI" + }, + { + "id": "neuralai", + "symbol": "neural", + "name": "NEURALAI" + }, + { + "id": "neural-ai", + "symbol": "neuralai", + "name": "Neural AI" + }, + { + "id": "neuralis-ai", + "symbol": "neurai", + "name": "Neuralis AI" + }, + { + "id": "neural-radiance-field", + "symbol": "nerf", + "name": "Neural Radiance Field" + }, + { + "id": "neural-tensor-dynamics", + "symbol": "ntd", + "name": "Neural Tensor Dynamics" + }, + { + "id": "neurashi", + "symbol": "nei", + "name": "Neurashi" + }, + { + "id": "neuravox", + "symbol": "$vox", + "name": "Neuravox" + }, + { + "id": "neurobro", + "symbol": "bro", + "name": "Neurobro" + }, + { + "id": "neurochainai", + "symbol": "ncn", + "name": "NeurochainAI" + }, + { + "id": "neurocheck", + "symbol": "neuro", + "name": "NeuroCheck" + }, + { + "id": "neuron", + "symbol": "nrn", + "name": "Neuron" + }, + { + "id": "neuron-icp", + "symbol": "nicp", + "name": "neuron ICP" + }, + { + "id": "neuro-paranoid", + "symbol": "neuro", + "name": "Neuro Paranoid" + }, + { + "id": "neurostack", + "symbol": "vision", + "name": "NeuroStack" + }, + { + "id": "neuroticat", + "symbol": "neuro", + "name": "NeurotiCat" + }, + { + "id": "neurowebai", + "symbol": "neuro", + "name": "NeuroWeb" + }, + { + "id": "neur-sh", + "symbol": "neur", + "name": "neur.sh" + }, + { + "id": "neutaro", + "symbol": "ntmpi", + "name": "Neutaro" + }, + { + "id": "neutra-finance", + "symbol": "neu", + "name": "Neutra Finance" + }, + { + "id": "neutrino", + "symbol": "xtn", + "name": "Neutrino Index Token" + }, + { + "id": "neutron-3", + "symbol": "ntrn", + "name": "Neutron" + }, + { + "id": "neutroswap", + "symbol": "neutro", + "name": "Neutroswap" + }, + { + "id": "neuy", + "symbol": "neuy", + "name": "NEUY" + }, + { + "id": "neva", + "symbol": "neva", + "name": "Neva" + }, + { + "id": "never-go-full", + "symbol": "retard", + "name": "Never Go Full" + }, + { + "id": "neverpay", + "symbol": "npay", + "name": "NeverPay" + }, + { + "id": "neversol", + "symbol": "never", + "name": "neversol" + }, + { + "id": "new-ancient-dna", + "symbol": "remus", + "name": "New Ancient DNA" + }, + { + "id": "new-ancient-dna-cloned-wolf", + "symbol": "remus", + "name": "New Ancient DNA Cloned Wolf" + }, + { + "id": "new-baby-elephant-houston-zoo", + "symbol": "kirby", + "name": "New Baby Elephant Houston Zoo" + }, + { + "id": "newb-farm", + "symbol": "newb", + "name": "NewB.Farm" + }, + { + "id": "new-bitshares", + "symbol": "nbs", + "name": "New BitShares" + }, + { + "id": "new-born-haggis-pygmy-hippo", + "symbol": "haggis", + "name": "New Born Haggis Pygmy Hippo" + }, + { + "id": "new-born-rhino", + "symbol": "lakkhi", + "name": "New Born Rhino" + }, + { + "id": "newcoin", + "symbol": "newcoin", + "name": "NEWCOIN" + }, + { + "id": "new-doge", + "symbol": "gnocchi", + "name": "New Doge" + }, + { + "id": "newera-2", + "symbol": "newera", + "name": "NEWERA" + }, + { + "id": "newera-finance", + "symbol": "nera", + "name": "NewEra Finance" + }, + { + "id": "newm", + "symbol": "newm", + "name": "NEWM" + }, + { + "id": "newmoney-ai", + "symbol": "new", + "name": "Newmoney AI" + }, + { + "id": "new-order", + "symbol": "newo", + "name": "New Order" + }, + { + "id": "newpepe", + "symbol": "pepe", + "name": "NEWPEPE" + }, + { + "id": "newscrypto-coin", + "symbol": "nwc", + "name": "Numerico" + }, + { + "id": "newt", + "symbol": "newt", + "name": "Newt" + }, + { + "id": "newthrone", + "symbol": "thro", + "name": "NewThrone" + }, + { + "id": "newton", + "symbol": "ntn", + "name": "Newton" + }, + { + "id": "newton-on-base", + "symbol": "newb", + "name": "Newton On Base" + }, + { + "id": "newton-project", + "symbol": "ab", + "name": "AB" + }, + { + "id": "newton-protocol", + "symbol": "newt", + "name": "Newton Protocol" + }, + { + "id": "new-truth-terminal", + "symbol": "loria", + "name": "New Truth Terminal" + }, + { + "id": "new-world-order", + "symbol": "state", + "name": "New World Order" + }, + { + "id": "new-world-order-2", + "symbol": "nwo", + "name": "NEW WORLD ORDER" + }, + { + "id": "new-xai-gork", + "symbol": "gork", + "name": "New XAI Gork" + }, + { + "id": "new-x-ceo-is-back", + "symbol": "xfloki", + "name": "NEW X CEO IS BACK" + }, + { + "id": "new-york", + "symbol": "nyc", + "name": "New York" + }, + { + "id": "newyork-exchange", + "symbol": "nye", + "name": "NewYork Exchange" + }, + { + "id": "nexa-2", + "symbol": "nxa", + "name": "Nexa" + }, + { + "id": "nexa-ai-trading-terminal", + "symbol": "nexa", + "name": "Nexa AI Trading Terminal" + }, + { + "id": "nexacoin", + "symbol": "nexa", + "name": "Nexa" + }, + { + "id": "nexai", + "symbol": "nex", + "name": "NexAI" + }, + { + "id": "nexara", + "symbol": "nxr", + "name": "Nexara" + }, + { + "id": "nexdax", + "symbol": "nt", + "name": "NexDAX" + }, + { + "id": "nexea", + "symbol": "nexea", + "name": "NEXEA" + }, + { + "id": "nexellia", + "symbol": "nxl", + "name": "Nexell-AI" + }, + { + "id": "nexgent-ai", + "symbol": "nexgent", + "name": "Nexgent AI" + }, + { + "id": "nexion", + "symbol": "neon", + "name": "NEXION" + }, + { + "id": "nexo", + "symbol": "nexo", + "name": "NEXO" + }, + { + "id": "nexora", + "symbol": "nex", + "name": "Nexora" + }, + { + "id": "nexpace", + "symbol": "nxpc", + "name": "Nexpace" + }, + { + "id": "next", + "symbol": "nex", + "name": "NEXT" + }, + { + "id": "next-earth", + "symbol": "nxtt", + "name": "Next Earth" + }, + { + "id": "next-gen-pepe", + "symbol": "pepe", + "name": "Next Gen PEPE" + }, + { + "id": "nextplace", + "symbol": "sn48", + "name": "NextPlace" + }, + { + "id": "nextype-finance", + "symbol": "nt", + "name": "NEXTYPE Finance" + }, + { + "id": "nexum", + "symbol": "nexm", + "name": "Nexum" + }, + { + "id": "nexus-2", + "symbol": "nex", + "name": "NEXUS" + }, + { + "id": "nexus-3", + "symbol": "nexus", + "name": "NEXUS" + }, + { + "id": "nexusai", + "symbol": "nexusai", + "name": "NexusAI" + }, + { + "id": "nexus-asa", + "symbol": "gp", + "name": "Nexus ASA" + }, + { + "id": "nexusbtc", + "symbol": "nbtc", + "name": "NexusBTC" + }, + { + "id": "nexuschain", + "symbol": "nexus", + "name": "NexusChain" + }, + { + "id": "nexus-erebus", + "symbol": "nxr", + "name": "Nexus Erebus" + }, + { + "id": "nexus-pro-token", + "symbol": "npt", + "name": "Nexus Pro Token" + }, + { + "id": "nexus-pro-useu", + "symbol": "useu", + "name": "Nexus Pro USEU" + }, + { + "id": "nexus-tools", + "symbol": "nexus", + "name": "Nexus Tools" + }, + { + "id": "neza", + "symbol": "sn99", + "name": "Neza" + }, + { + "id": "nezha", + "symbol": "nezha", + "name": "NEZHA" + }, + { + "id": "nezuko", + "symbol": "nezuko", + "name": "Nezuko" + }, + { + "id": "nfinityai", + "symbol": "nfnt", + "name": "nfinityAI" + }, + { + "id": "nfmart", + "symbol": "nfm", + "name": "NFMart" + }, + { + "id": "nforbanana", + "symbol": "n", + "name": "Banana" + }, + { + "id": "nfprompt-token", + "symbol": "nfp", + "name": "NFPrompt" + }, + { + "id": "nfstay", + "symbol": "stay", + "name": "NFsTay" + }, + { + "id": "nft-art-finance", + "symbol": "nftart", + "name": "NFT Art Finance" + }, + { + "id": "nftb", + "symbol": "nftb", + "name": "PixelRealm" + }, + { + "id": "nftblackmarket", + "symbol": "nbm", + "name": "NFTBlackmarket" + }, + { + "id": "nftbooks", + "symbol": "nftbs", + "name": "NFTBooks" + }, + { + "id": "nft-champions", + "symbol": "champ", + "name": "NFT Champions" + }, + { + "id": "nftfi", + "symbol": "nftfi", + "name": "NFTFI" + }, + { + "id": "nftfn", + "symbol": "nftfn", + "name": "NFTFN" + }, + { + "id": "nftify", + "symbol": "n1", + "name": "NFTify" + }, + { + "id": "nftlaunch", + "symbol": "nftl", + "name": "NFTLaunch" + }, + { + "id": "nft-maker", + "symbol": "$nmkr", + "name": "NMKR" + }, + { + "id": "nftmall", + "symbol": "gem", + "name": "NFTmall" + }, + { + "id": "nft-protocol", + "symbol": "nft", + "name": "NFT Protocol" + }, + { + "id": "nftpunk-finance", + "symbol": "nftpunk", + "name": "NFTPunk.Finance" + }, + { + "id": "nftrade", + "symbol": "nftd", + "name": "NFTrade" + }, + { + "id": "nftreasure", + "symbol": "tresr", + "name": "NFTREASURE" + }, + { + "id": "nft-stars", + "symbol": "nfts", + "name": "NFT Stars" + }, + { + "id": "nft-worlds", + "symbol": "wrld", + "name": "NFT Worlds" + }, + { + "id": "nftx", + "symbol": "nftx", + "name": "NFTX" + }, + { + "id": "nftxbt-by-virtuals", + "symbol": "nftxbt", + "name": "nftxbt" + }, + { + "id": "nfty-token", + "symbol": "nfty", + "name": "NFTY" + }, + { + "id": "n-gamefi", + "symbol": "n", + "name": "N GameFi" + }, + { + "id": "ngmi-bp", + "symbol": "ngmi", + "name": "NGMI BP" + }, + { + "id": "nia", + "symbol": "nia", + "name": "Nia" + }, + { + "id": "nia-2", + "symbol": "nia", + "name": "Nia" + }, + { + "id": "nianian", + "symbol": "niannian", + "name": "NianNian" + }, + { + "id": "niao", + "symbol": "niao", + "name": "NIAO" + }, + { + "id": "nib", + "symbol": "nib", + "name": "chick" + }, + { + "id": "nibbles", + "symbol": "nibbles", + "name": "Nibbles" + }, + { + "id": "nibiru", + "symbol": "nibi", + "name": "Nibiru" + }, + { + "id": "niccagewaluigielmo42069inu", + "symbol": "shib", + "name": "NicCageWaluigiElmo42069Inu" + }, + { + "id": "nick", + "symbol": "nick", + "name": "nick" + }, + { + "id": "nico", + "symbol": "nico", + "name": "NICO" + }, + { + "id": "ni-compute", + "symbol": "sn27", + "name": "NI Compute" + }, + { + "id": "nifty-league", + "symbol": "nftl", + "name": "Nifty League" + }, + { + "id": "nigella-chain", + "symbol": "nigella", + "name": "Nigella Chain" + }, + { + "id": "night-crows", + "symbol": "crow", + "name": "CROW" + }, + { + "id": "night-fury", + "symbol": "fury", + "name": "Night Fury" + }, + { + "id": "night-riders", + "symbol": "riders", + "name": "Night Riders" + }, + { + "id": "nightverse-game", + "symbol": "nvg", + "name": "NightVerse Game" + }, + { + "id": "nigi", + "symbol": "nigi", + "name": "Nigi" + }, + { + "id": "nihao", + "symbol": "nihao", + "name": "Nihao" + }, + { + "id": "nihao-coin", + "symbol": "nihao", + "name": "Nihao Coin" + }, + { + "id": "nihao-coin-2", + "symbol": "nihao", + "name": "NiHao Coin" + }, + { + "id": "niifi", + "symbol": "niifi", + "name": "NiiFi" + }, + { + "id": "nike-ondo-tokenized-stock", + "symbol": "nkeon", + "name": "Nike (Ondo Tokenized Stock)" + }, + { + "id": "nikepig", + "symbol": "nikepig", + "name": "Nikepig" + }, + { + "id": "nikita-by-virtuals", + "symbol": "nikita", + "name": "NIKITA by Virtuals" + }, + { + "id": "nikolai", + "symbol": "niko", + "name": "NikolAI" + }, + { + "id": "niky", + "symbol": "niky", + "name": "NIKY" + }, + { + "id": "nile", + "symbol": "nile", + "name": "Nile" + }, + { + "id": "nillion", + "symbol": "nil", + "name": "Nillion" + }, + { + "id": "nimbora-staked-starknet", + "symbol": "sstrk", + "name": "Nimbora Staked STRK" + }, + { + "id": "nimbus-ai", + "symbol": "nai", + "name": "Nimbus AI" + }, + { + "id": "nimbus-platform-gnimb", + "symbol": "gnimb", + "name": "Nimbus Platform GNIMB" + }, + { + "id": "nimiq-2", + "symbol": "nim", + "name": "Nimiq" + }, + { + "id": "nimo-protocol", + "symbol": "nim", + "name": "NIMO Protocol" + }, + { + "id": "nina", + "symbol": "nina", + "name": "Nina" + }, + { + "id": "ninapumps", + "symbol": "nina", + "name": "NinaPumps" + }, + { + "id": "nineteen-ai", + "symbol": "sn19", + "name": "Nineteen.ai" + }, + { + "id": "ninjachat", + "symbol": "ninja", + "name": "NinjaChat AI" + }, + { + "id": "ninja-protocol", + "symbol": "ninja", + "name": "Ninja Protocol" + }, + { + "id": "ninja-pump", + "symbol": "ninjapump", + "name": "Ninja Pump" + }, + { + "id": "ninjas-in-pyjamas", + "symbol": "dojo", + "name": "Ninjas in Pyjamas" + }, + { + "id": "ninja-squad", + "symbol": "nst", + "name": "Ninja Squad Token" + }, + { + "id": "ninja-turtles", + "symbol": "$ninja", + "name": "NINJA TURTLES" + }, + { + "id": "niob", + "symbol": "niob", + "name": "NIOB" + }, + { + "id": "nioctib", + "symbol": "nioctib", + "name": "nioctiB" + }, + { + "id": "nirvana-ana-2", + "symbol": "ana", + "name": "Nirvana ANA" + }, + { + "id": "nitefeeder", + "symbol": "nitefeeder", + "name": "Nitefeeder" + }, + { + "id": "nitro-2", + "symbol": "nitro", + "name": "Nitro" + }, + { + "id": "nitro-cartel", + "symbol": "trove", + "name": "Arbitrove Governance Token" + }, + { + "id": "nitro-league", + "symbol": "nitro", + "name": "Nitro League" + }, + { + "id": "nitro-network", + "symbol": "ncash", + "name": "Nitro Network" + }, + { + "id": "niuma", + "symbol": "niuma", + "name": "Niuma" + }, + { + "id": "nix", + "symbol": "nix", + "name": "NIX" + }, + { + "id": "niyoko-by-virtuals", + "symbol": "nyko", + "name": "NIYOKO by Virtuals" + }, + { + "id": "niza-global-2", + "symbol": "niza", + "name": "Niza Global" + }, + { + "id": "nkn", + "symbol": "nkn", + "name": "NKN" + }, + { + "id": "nkyc-token", + "symbol": "nkyc", + "name": "NKYC Token" + }, + { + "id": "no1-tiktok-cat", + "symbol": "puff", + "name": "No1 tiktok cat" + }, + { + "id": "no1-tiktok-frog-omochi", + "symbol": "omochi", + "name": "No1 tiktok frog (Omochi)" + }, + { + "id": "noahswap", + "symbol": "noah", + "name": "NoahSwap" + }, + { + "id": "noah-terminal", + "symbol": "noahai", + "name": "Noah Terminal" + }, + { + "id": "nobiko-coin", + "symbol": "long", + "name": "Nobiko Coin" + }, + { + "id": "nobleblocks", + "symbol": "nobl", + "name": "NobleBlocks" + }, + { + "id": "noble-dollar-usdn", + "symbol": "usdn", + "name": "Noble Dollar (USDN)" + }, + { + "id": "nobody-sausage", + "symbol": "nobody", + "name": "Nobody Sausage" + }, + { + "id": "nockchain", + "symbol": "nock", + "name": "Nockchain" + }, + { + "id": "no-data", + "symbol": "ghost", + "name": "No Data" + }, + { + "id": "nod-cat", + "symbol": "nod", + "name": "nod cat" + }, + { + "id": "node-2", + "symbol": "node", + "name": "NodeOps" + }, + { + "id": "nodeai", + "symbol": "gpu", + "name": "NodeAI" + }, + { + "id": "nodeai-2", + "symbol": "nait", + "name": "NodeAI" + }, + { + "id": "nodecoin", + "symbol": "nc", + "name": "Nodepay" + }, + { + "id": "nodelight", + "symbol": "nodl", + "name": "Nodelight" + }, + { + "id": "nodelyai", + "symbol": "$node", + "name": "NodelyAI" + }, + { + "id": "nodeqai", + "symbol": "nqai", + "name": "NodeQAI" + }, + { + "id": "noderzz-by-virtuals", + "symbol": "node", + "name": "noderzz by Virtuals" + }, + { + "id": "node-sphere-ai", + "symbol": "nsai", + "name": "Node Sphere AI" + }, + { + "id": "nodestats", + "symbol": "ns", + "name": "Nodestats" + }, + { + "id": "nodestrategy", + "symbol": "nodestr", + "name": "NodeStrategy" + }, + { + "id": "node-sys", + "symbol": "nys", + "name": "node.sys" + }, + { + "id": "nodev-ai", + "symbol": "nodev", + "name": "NoDev AI" + }, + { + "id": "nodewaves", + "symbol": "nws", + "name": "Nodewaves" + }, + { + "id": "nodle-network", + "symbol": "nodl", + "name": "Nodle Network" + }, + { + "id": "no-face", + "symbol": "noface", + "name": "no face" + }, + { + "id": "nofap", + "symbol": "nofap", + "name": "nofap" + }, + { + "id": "noggles", + "symbol": "nogs", + "name": "Noggles" + }, + { + "id": "nogwai", + "symbol": "nogwai", + "name": "Nogwai" + }, + { + "id": "noice", + "symbol": "noice", + "name": "noice" + }, + { + "id": "no-internet", + "symbol": "rex", + "name": "no internet" + }, + { + "id": "nois", + "symbol": "nois", + "name": "Nois" + }, + { + "id": "noisegpt", + "symbol": "enqai", + "name": "enqAI" + }, + { + "id": "noi-token", + "symbol": "noi", + "name": "NOI Token" + }, + { + "id": "noka-solana-a", + "symbol": "noka", + "name": "Noka Solana A" + }, + { + "id": "nokki", + "symbol": "nokki", + "name": "NOKKI" + }, + { + "id": "nola-2", + "symbol": "nola", + "name": "Nola" + }, + { + "id": "nolimitcoin", + "symbol": "nlc", + "name": "NoLimitCoin" + }, + { + "id": "nolus", + "symbol": "nls", + "name": "Nolus" + }, + { + "id": "nomad", + "symbol": "nom", + "name": "Nomad" + }, + { + "id": "nomad-bridged-usdc-moonbeam", + "symbol": "usdc", + "name": "Nomad Bridged USDC (Moonbeam)" + }, + { + "id": "nomad-bridged-weth-moonbeam", + "symbol": "weth", + "name": "Nomad Bridged WETH (Moonbeam)" + }, + { + "id": "nomad-exiles", + "symbol": "pride", + "name": "Nomad Exiles" + }, + { + "id": "nomai", + "symbol": "nomai", + "name": "nomAI" + }, + { + "id": "no-mans-land", + "symbol": "nml", + "name": "No Mans Land" + }, + { + "id": "nomdog", + "symbol": "nomdog", + "name": "NOMDOG" + }, + { + "id": "nome", + "symbol": "nome", + "name": "NOME" + }, + { + "id": "nomina", + "symbol": "nom", + "name": "Nomina" + }, + { + "id": "nominex", + "symbol": "nmx", + "name": "Nominex" + }, + { + "id": "nomnom", + "symbol": "nomnom", + "name": "nomnom" + }, + { + "id": "non-fungible-fungi", + "symbol": "spores", + "name": "Non-Fungible Fungi" + }, + { + "id": "nonja", + "symbol": "nonja", + "name": "Nonja" + }, + { + "id": "nonkyotoprotocol", + "symbol": "nkp", + "name": "NonKyotoProtocol" + }, + { + "id": "non-of-us", + "symbol": "non", + "name": "NON OF US" + }, + { + "id": "nonos", + "symbol": "n0nos", + "name": "NØNOS" + }, + { + "id": "nonos-2", + "symbol": "nox", + "name": "NONOS" + }, + { + "id": "non-playable-coin", + "symbol": "npc", + "name": "Non-Playable Coin" + }, + { + "id": "non-playable-inu", + "symbol": "$npi", + "name": "Non-Playable Inu" + }, + { + "id": "noo", + "symbol": "noo", + "name": "noo" + }, + { + "id": "noob", + "symbol": "noob", + "name": "Blast Royale" + }, + { + "id": "noob-2", + "symbol": "noob", + "name": "NOOB" + }, + { + "id": "noob-cult", + "symbol": "noob", + "name": "Noob cult" + }, + { + "id": "noodle", + "symbol": "noodle", + "name": "Noodle" + }, + { + "id": "noodleface", + "symbol": "noodle", + "name": "Noodleface" + }, + { + "id": "noon-usn", + "symbol": "usn", + "name": "Noon USN" + }, + { + "id": "noooomeme", + "symbol": "noooo", + "name": "Noooomeme" + }, + { + "id": "noot-noot", + "symbol": "noot", + "name": "Noot Noot" + }, + { + "id": "noot-ordinals", + "symbol": "noot", + "name": "NOOT (Ordinals)" + }, + { + "id": "noot-sol", + "symbol": "noot", + "name": "Noot Sol" + }, + { + "id": "nop-app", + "symbol": "nop", + "name": "Nop App" + }, + { + "id": "nora", + "symbol": "nora", + "name": "NORA" + }, + { + "id": "nord-finance", + "symbol": "nord", + "name": "Nord Finance" + }, + { + "id": "norexa", + "symbol": "nrx", + "name": "Norexa" + }, + { + "id": "norm", + "symbol": "norm", + "name": "Norm" + }, + { + "id": "norman", + "symbol": "norm", + "name": "Norman" + }, + { + "id": "normie-2", + "symbol": "normie", + "name": "NORMIE" + }, + { + "id": "normie-3", + "symbol": "norm", + "name": "Normie" + }, + { + "id": "normilio", + "symbol": "normilio", + "name": "Normilio" + }, + { + "id": "normus", + "symbol": "normus", + "name": "Normus" + }, + { + "id": "nosana", + "symbol": "nos", + "name": "Nosana" + }, + { + "id": "nose", + "symbol": "nose", + "name": "nose" + }, + { + "id": "nose-bud", + "symbol": "nosebud", + "name": "Nose Bud" + }, + { + "id": "nose-candy", + "symbol": "cocaine", + "name": "Nose Candy" + }, + { + "id": "nosey", + "symbol": "nosey", + "name": "Nosey" + }, + { + "id": "nostalgia", + "symbol": "nos", + "name": "NOSTALGIA" + }, + { + "id": "nostra", + "symbol": "nstr", + "name": "Nostra" + }, + { + "id": "nostradamus", + "symbol": "nostra", + "name": "Nostradamus" + }, + { + "id": "nostra-uno", + "symbol": "uno", + "name": "UNO" + }, + { + "id": "not-a-chill-guy", + "symbol": "phillip", + "name": "NOT A CHILL GUY" + }, + { + "id": "not-a-cult", + "symbol": "cult", + "name": "NOT A CULT" + }, + { + "id": "notai", + "symbol": "notai", + "name": "NOTAI" + }, + { + "id": "not-a-security", + "symbol": "nas", + "name": "Not a Security" + }, + { + "id": "notastrategy", + "symbol": "nasty", + "name": "NotaStrategy" + }, + { + "id": "not-bitcoin", + "symbol": "notbtc", + "name": "not bitcoin" + }, + { + "id": "notcoin", + "symbol": "not", + "name": "Notcoin" + }, + { + "id": "notdog", + "symbol": "notdog", + "name": "NOTDOG" + }, + { + "id": "nothing-3", + "symbol": "not", + "name": "Nothing" + }, + { + "id": "nothing-4", + "symbol": "void", + "name": "Nothing" + }, + { + "id": "nothing-5", + "symbol": "nothing", + "name": "nothing" + }, + { + "id": "nothing-6", + "symbol": "nothing", + "name": "nothing" + }, + { + "id": "nothing-7", + "symbol": "nothing", + "name": "nothing" + }, + { + "id": "nothing-token", + "symbol": "thing", + "name": "Nothing Token" + }, + { + "id": "noti", + "symbol": "noti", + "name": "Noti" + }, + { + "id": "notice-me-senpai", + "symbol": "nms", + "name": "NOTICE•ME•SENPAI" + }, + { + "id": "notional-finance", + "symbol": "note", + "name": "Notional Finance" + }, + { + "id": "not-meme", + "symbol": "mem", + "name": "Not Meme" + }, + { + "id": "notmeme-agent", + "symbol": "notmeme", + "name": "NOTMEME Agent" + }, + { + "id": "not-pixel", + "symbol": "px", + "name": "Not Pixel" + }, + { + "id": "notwifgary", + "symbol": "nwg", + "name": "NotWifGary" + }, + { + "id": "nounspace", + "symbol": "$space", + "name": "nounspace" + }, + { + "id": "nova-3", + "symbol": "sn68", + "name": "NOVA" + }, + { + "id": "nova-ai", + "symbol": "nova", + "name": "Nova AI" + }, + { + "id": "nova-chain", + "symbol": "nova", + "name": "Nova Chain" + }, + { + "id": "novacoin", + "symbol": "nvc", + "name": "Novacoin" + }, + { + "id": "nova-dai", + "symbol": "dai", + "name": "Nova Merged DAI (zkLink)" + }, + { + "id": "novadex", + "symbol": "nvx", + "name": "NovaDEX" + }, + { + "id": "nova-eth", + "symbol": "eth", + "name": "Nova Merged ETH (zkLink)" + }, + { + "id": "nova-finance", + "symbol": "nova", + "name": "Nova Finance" + }, + { + "id": "nova-fox", + "symbol": "nfx", + "name": "Nova Fox" + }, + { + "id": "nova-on-mars", + "symbol": "nova", + "name": "Nova on Mars" + }, + { + "id": "novaq", + "symbol": "novaq", + "name": "NovaQ" + }, + { + "id": "novas", + "symbol": "xnl", + "name": "Novastro" + }, + { + "id": "nova-shield", + "symbol": "nvai", + "name": "Nova Shield" + }, + { + "id": "nova-tether-usd", + "symbol": "usdt", + "name": "Nova Merged USDT (zkLink)" + }, + { + "id": "novatti-australian-digital-dollar", + "symbol": "audd", + "name": "Australian Digital Dollar" + }, + { + "id": "nova-usdc", + "symbol": "usdc", + "name": "zkLink Nova Merged Bridged USDC (zkLink Nova)" + }, + { + "id": "novawchi", + "symbol": "vachi", + "name": "NOVAWCHI" + }, + { + "id": "novax", + "symbol": "novax", + "name": "NovaX" + }, + { + "id": "novem-pro", + "symbol": "nvm", + "name": "Novem Pro" + }, + { + "id": "novo-nordisk-ondo-tokenized-stock", + "symbol": "nvoon", + "name": "Novo Nordisk (Ondo Tokenized Stock)" + }, + { + "id": "novo-nordisk-xstock", + "symbol": "nvox", + "name": "Novo Nordisk xStock" + }, + { + "id": "now-coin", + "symbol": "now", + "name": "Now Coin" + }, + { + "id": "nowk", + "symbol": "nowk", + "name": "NOWK" + }, + { + "id": "nox", + "symbol": "nox", + "name": "NOX" + }, + { + "id": "npc", + "symbol": "npc", + "name": "NPC" + }, + { + "id": "npc-on-solana", + "symbol": "npcs", + "name": "NPC On Solana" + }, + { + "id": "npcs-ai", + "symbol": "xnpcs", + "name": "NPCS AI" + }, + { + "id": "nsdq420", + "symbol": "nsdq", + "name": "NSDQ420" + }, + { + "id": "nsurance", + "symbol": "n", + "name": "nsurance" + }, + { + "id": "nsure-network", + "symbol": "nsure", + "name": "Nsure Network" + }, + { + "id": "nthchain", + "symbol": "nth", + "name": "NTHCHAIN" + }, + { + "id": "nuance-2", + "symbol": "sn23", + "name": "Nuance" + }, + { + "id": "nubila-network", + "symbol": "nb", + "name": "Nubila Network" + }, + { + "id": "nucleon-space", + "symbol": "nut", + "name": "Nucleon" + }, + { + "id": "nucleon-xcfx", + "symbol": "xcfx", + "name": "Nucleon xCFX" + }, + { + "id": "nucleus-ai", + "symbol": "nuai", + "name": "Nucleus AI" + }, + { + "id": "nucleus-vision", + "symbol": "ncash", + "name": "Nucleus Vision" + }, + { + "id": "nuco-cloud", + "symbol": "ncdt", + "name": "nuco.cloud" + }, + { + "id": "nucypher", + "symbol": "nu", + "name": "NuCypher" + }, + { + "id": "nufdog", + "symbol": "nuf", + "name": "nufdog" + }, + { + "id": "nuff-respect", + "symbol": "nufr", + "name": "Nuff Respect" + }, + { + "id": "nugget-rush", + "symbol": "nugx", + "name": "Nugget Rush" + }, + { + "id": "nugget-trap", + "symbol": "ngtg$$", + "name": "Nugget Trap Gold Token" + }, + { + "id": "nuit", + "symbol": "nuit", + "name": "nuit" + }, + { + "id": "nukey", + "symbol": "nukey", + "name": "Nukey" + }, + { + "id": "nuklai", + "symbol": "nai", + "name": "Nuklai" + }, + { + "id": "nulink-2", + "symbol": "nlk", + "name": "NuLink" + }, + { + "id": "nulla", + "symbol": "nulla", + "name": "NULLA" + }, + { + "id": "null-matrix", + "symbol": "null", + "name": "NULL MATRIX" + }, + { + "id": "nulltrace", + "symbol": "null", + "name": "NullTrace" + }, + { + "id": "nuls", + "symbol": "nuls", + "name": "NULS" + }, + { + "id": "numa", + "symbol": "numa", + "name": "Numa" + }, + { + "id": "numbers-protocol", + "symbol": "num", + "name": "Numbers Protocol" + }, + { + "id": "numcat", + "symbol": "num", + "name": "NUMCAT" + }, + { + "id": "numeraire", + "symbol": "nmr", + "name": "Numeraire" + }, + { + "id": "numine-token", + "symbol": "numi", + "name": "NUMINE Token" + }, + { + "id": "numi-shards", + "symbol": "numi", + "name": "Numi Shards" + }, + { + "id": "nummus-aeternitas", + "symbol": "nummus", + "name": "Nummus Aeternitas" + }, + { + "id": "numogram", + "symbol": "gnon", + "name": "Numogram" + }, + { + "id": "nuna", + "symbol": "nuna", + "name": "Nuna" + }, + { + "id": "nunet", + "symbol": "ntx", + "name": "NuNet" + }, + { + "id": "nunu", + "symbol": "nunu", + "name": "nunu" + }, + { + "id": "nura-labs", + "symbol": "nura", + "name": "Nura Labs" + }, + { + "id": "nuri-exchange", + "symbol": "nuri", + "name": "Nuri Exchange" + }, + { + "id": "nuritopia", + "symbol": "nblu", + "name": "Nuritopia" + }, + { + "id": "nusa-finance", + "symbol": "nusa", + "name": "NUSA" + }, + { + "id": "nusd", + "symbol": "susd", + "name": "Synthetix sUSD" + }, + { + "id": "nusd-2", + "symbol": "nusd", + "name": "NUSD" + }, + { + "id": "nut", + "symbol": "$nut", + "name": "Nut" + }, + { + "id": "nutcash", + "symbol": "ncash", + "name": "Nutcash" + }, + { + "id": "nutcoin-meme", + "symbol": "nut", + "name": "NutCoin" + }, + { + "id": "nutflex", + "symbol": "nut", + "name": "Nutflex" + }, + { + "id": "nutgain", + "symbol": "nutgv2", + "name": "NUTGAIN" + }, + { + "id": "nuts", + "symbol": "nuts", + "name": "Nuts" + }, + { + "id": "nuts-2", + "symbol": "nuts", + "name": "Nuts" + }, + { + "id": "nuvola-digital", + "symbol": "nvl", + "name": "Nuvola Digital" + }, + { + "id": "nuwa-world-by-virtuals", + "symbol": "nuwa", + "name": "Nuwa World by Virtuals" + }, + { + "id": "nvidia-ondo-tokenized-stock", + "symbol": "nvdaon", + "name": "NVIDIA (Ondo Tokenized Stock)" + }, + { + "id": "nvidia-tokenized-stock-defichain", + "symbol": "dnvda", + "name": "Nvidia Tokenized Stock Defichain" + }, + { + "id": "nvidia-xstock", + "symbol": "nvdax", + "name": "NVIDIA xStock" + }, + { + "id": "nvirworld", + "symbol": "nvir", + "name": "NvirWorld" + }, + { + "id": "nxm", + "symbol": "nxm", + "name": "Nexus Mutual" + }, + { + "id": "nx-token", + "symbol": "nx", + "name": "NX Token" + }, + { + "id": "nxusd", + "symbol": "nxusd", + "name": "NXUSD" + }, + { + "id": "nya", + "symbol": "nya", + "name": "Nya" + }, + { + "id": "nyan", + "symbol": "nyan", + "name": "Nyan Heroes" + }, + { + "id": "nyan-cat-2", + "symbol": "nyan", + "name": "Nyan Cat" + }, + { + "id": "nyan-meme-coin", + "symbol": "nyan", + "name": "Nyan Meme Coin" + }, + { + "id": "nyla-ai", + "symbol": "nyla", + "name": "Nyla AI" + }, + { + "id": "nym", + "symbol": "nym", + "name": "Nym" + }, + { + "id": "nyro", + "symbol": "nyro", + "name": "Nyro" + }, + { + "id": "nyvo", + "symbol": "nyvo", + "name": "Nyvo" + }, + { + "id": "nyx-by-virtuals", + "symbol": "nyx", + "name": "Nyx by Virtuals" + }, + { + "id": "nyx-cipher", + "symbol": "nxcp", + "name": "Nyx Cipher" + }, + { + "id": "nyx-eternal", + "symbol": "nyx", + "name": "Nyx Eternal" + }, + { + "id": "nyxia-ai", + "symbol": "nyxc", + "name": "Nyxia AI" + }, + { + "id": "nyzo", + "symbol": "nyzo", + "name": "Nyzo" + }, + { + "id": "o3", + "symbol": "o3", + "name": "O3" + }, + { + "id": "o3-swap", + "symbol": "o3", + "name": "O3 Swap" + }, + { + "id": "oaki", + "symbol": "oaki", + "name": "OAKI" + }, + { + "id": "oak-network", + "symbol": "ap", + "name": "Ava Protocol" + }, + { + "id": "oasis-metaverse", + "symbol": "oasis", + "name": "Oasis Metaverse" + }, + { + "id": "oasis-network", + "symbol": "rose", + "name": "Oasis" + }, + { + "id": "oasys", + "symbol": "oas", + "name": "Oasys" + }, + { + "id": "oasys-bridged-usdc-oasys", + "symbol": "usdc.e", + "name": "Celer Bridged USDC (Oasys)" + }, + { + "id": "oath", + "symbol": "oath", + "name": "OATH" + }, + { + "id": "obema", + "symbol": "obema", + "name": "obema" + }, + { + "id": "obex", + "symbol": "obex", + "name": "OBEX" + }, + { + "id": "obi-pnut-kenobi", + "symbol": "opk", + "name": "Obi PNut Kenobi" + }, + { + "id": "obi-real-estate", + "symbol": "obicoin", + "name": "OBI Real Estate" + }, + { + "id": "obital7", + "symbol": "orb7", + "name": "Obital7" + }, + { + "id": "obol-2", + "symbol": "obol", + "name": "Obol" + }, + { + "id": "obortech", + "symbol": "obot", + "name": "Obortech" + }, + { + "id": "obscuro", + "symbol": "ten", + "name": "TEN" + }, + { + "id": "observer-coin", + "symbol": "obsr", + "name": "Observer" + }, + { + "id": "obsidian-2", + "symbol": "obs", + "name": "Obsidian" + }, + { + "id": "obsidium", + "symbol": "obs", + "name": "Obsidium" + }, + { + "id": "obs-world", + "symbol": "obsw", + "name": "OBS World" + }, + { + "id": "obvious-coin", + "symbol": "obvious", + "name": "OBVIOUS COIN" + }, + { + "id": "ocada-ai", + "symbol": "ocada", + "name": "OCADA.AI" + }, + { + "id": "ocavu-network", + "symbol": "ocavu", + "name": "Ocavu Network" + }, + { + "id": "occamfi", + "symbol": "occ", + "name": "OccamFi" + }, + { + "id": "oceanex", + "symbol": "oce", + "name": "OceanEX" + }, + { + "id": "oceanfi", + "symbol": "ocf", + "name": "OceanFi" + }, + { + "id": "oceanfund", + "symbol": "of", + "name": "OceanFund" + }, + { + "id": "ocean-protocol", + "symbol": "ocean", + "name": "Ocean Protocol" + }, + { + "id": "oceansgallerie-on-sui", + "symbol": "oceans", + "name": "OceansGallerie On SUI" + }, + { + "id": "ocelex", + "symbol": "ocx", + "name": "Ocelex" + }, + { + "id": "och", + "symbol": "och", + "name": "Orchai" + }, + { + "id": "ocicat-token", + "symbol": "ocicat", + "name": "OciCat Token" + }, + { + "id": "ociswap", + "symbol": "oci", + "name": "Ociswap" + }, + { + "id": "ocnest-ai", + "symbol": "unidata", + "name": "UNIDATA" + }, + { + "id": "octanepay", + "symbol": "oct", + "name": "OctanePay" + }, + { + "id": "octaspace", + "symbol": "octa", + "name": "OctaSpace" + }, + { + "id": "octavia", + "symbol": "via", + "name": "Octavia" + }, + { + "id": "octofi", + "symbol": "octo", + "name": "OctoFi" + }, + { + "id": "octo-gaming", + "symbol": "otk", + "name": "Octokn" + }, + { + "id": "octonetai", + "symbol": "octo", + "name": "OctonetAI" + }, + { + "id": "octopus-network", + "symbol": "oct", + "name": "Omnity Convertible Token" + }, + { + "id": "octopuswallet", + "symbol": "ocw", + "name": "OctopusWallet" + }, + { + "id": "octora-ai", + "symbol": "octa", + "name": "OCTORA AI" + }, + { + "id": "octorand", + "symbol": "octo", + "name": "Octorand" + }, + { + "id": "octus-bridge", + "symbol": "bridge", + "name": "Octus Bridge" + }, + { + "id": "oddsnotify", + "symbol": "odds", + "name": "OddsNotify" + }, + { + "id": "oddz", + "symbol": "oddz", + "name": "Oddz" + }, + { + "id": "odem", + "symbol": "ode", + "name": "ODEM" + }, + { + "id": "odie-on-sol", + "symbol": "odie", + "name": "Odie" + }, + { + "id": "odin-2", + "symbol": "odin", + "name": "Odin" + }, + { + "id": "odin-erc404m", + "symbol": "odin", + "name": "ODIN ERC404M" + }, + { + "id": "odin-tools", + "symbol": "odin", + "name": "ODIN Tools" + }, + { + "id": "odos", + "symbol": "odos", + "name": "Odos" + }, + { + "id": "oec-btc", + "symbol": "btck", + "name": "OEC BTC" + }, + { + "id": "ofcourse-i-still-love-you", + "symbol": "ocisly", + "name": "Of Course I Still Love You" + }, + { + "id": "ofero", + "symbol": "ofe", + "name": "Ofero" + }, + { + "id": "offcial-mascot-of-the-holy-year", + "symbol": "luce", + "name": "Luce" + }, + { + "id": "officat", + "symbol": "officat", + "name": "Officat" + }, + { + "id": "official-arbitrum-bridged-usdc-arbitrum-nova", + "symbol": "usdc", + "name": "Arbitrum Bridged USDC (Arbitrum Nova)" + }, + { + "id": "official-baby-trump", + "symbol": "btrump", + "name": "OFFICIAL BABY TRUMP" + }, + { + "id": "official-crypto-nostra", + "symbol": "ocn", + "name": "Official Crypto Nostra" + }, + { + "id": "official-dogewlfi-coin", + "symbol": "dogewlfi", + "name": "Official DogeWLFI Coin" + }, + { + "id": "official-fo", + "symbol": "fo", + "name": "Official FO" + }, + { + "id": "official-k-pop", + "symbol": "kpop", + "name": "OFFICIAL K-POP" + }, + { + "id": "official-ppshow", + "symbol": "pp", + "name": "Official PPshow" + }, + { + "id": "official-ray-lewis", + "symbol": "fit", + "name": "OFFICIAL RAY LEWIS" + }, + { + "id": "official-tiger-king", + "symbol": "exotic", + "name": "Official Tiger King" + }, + { + "id": "official-trump", + "symbol": "trump", + "name": "Official Trump" + }, + { + "id": "official-usa-token", + "symbol": "usa", + "name": "Official USA Token" + }, + { + "id": "official-wild-n-out", + "symbol": "wildnout", + "name": "Official Wild 'N Out" + }, + { + "id": "official-zuno", + "symbol": "zuno", + "name": "OFFICIAL ZUNO" + }, + { + "id": "offshift", + "symbol": "xft", + "name": "Offshift" + }, + { + "id": "og-fan-token", + "symbol": "og", + "name": "OG Fan Token" + }, + { + "id": "oggie", + "symbol": "oggie", + "name": "Oggie" + }, + { + "id": "oggy-inu", + "symbol": "oggy", + "name": "Oggy Inu" + }, + { + "id": "oglong", + "symbol": "oglg", + "name": "OGLONG" + }, + { + "id": "og-meme", + "symbol": "ogme", + "name": "OG.meme" + }, + { + "id": "og-roaring-kitty", + "symbol": "roar", + "name": "Roaring Kitty" + }, + { + "id": "og-sminem", + "symbol": "ogsm", + "name": "OG SMINEM" + }, + { + "id": "ogzclub", + "symbol": "ogz", + "name": "OGzClub" + }, + { + "id": "oh-no", + "symbol": "ohno", + "name": "Oh no" + }, + { + "id": "oho-blockchain", + "symbol": "oho", + "name": "OHO Blockchain" + }, + { + "id": "oia-oia-cat", + "symbol": "oiacat", + "name": "Oia Oia Cat" + }, + { + "id": "oid", + "symbol": "oid", + "name": "OID" + }, + { + "id": "oil-token", + "symbol": "oil", + "name": "Oil Token" + }, + { + "id": "oink", + "symbol": "oink", + "name": "Oink" + }, + { + "id": "o-intelligence-coin", + "symbol": "oi", + "name": "O Intelligence Coin" + }, + { + "id": "okane", + "symbol": "okane", + "name": "OKANE" + }, + { + "id": "okayeg", + "symbol": "okayeg", + "name": "Okayeg" + }, + { + "id": "okay-fun", + "symbol": "okay", + "name": "Okay.fun" + }, + { + "id": "okb", + "symbol": "okb", + "name": "OKB" + }, + { + "id": "okbdoge", + "symbol": "okbdoge", + "name": "OKBDOGE" + }, + { + "id": "okbet", + "symbol": "ok", + "name": "okbet" + }, + { + "id": "okbok", + "symbol": "okbok", + "name": "OKBOK" + }, + { + "id": "okcash", + "symbol": "ok", + "name": "Okcash" + }, + { + "id": "okie", + "symbol": "okie", + "name": "OKIE" + }, + { + "id": "oklo-xstock", + "symbol": "oklox", + "name": "Oklo xStock" + }, + { + "id": "okratech-token", + "symbol": "ort", + "name": "Okratech" + }, + { + "id": "okto-token", + "symbol": "okto", + "name": "OKTO Token" + }, + { + "id": "okx-beth", + "symbol": "beth", + "name": "OKX BETH" + }, + { + "id": "okx-mascot", + "symbol": "wally", + "name": "OKX Mascot" + }, + { + "id": "okx-wrapped-btc", + "symbol": "xbtc", + "name": "OKX Wrapped BTC" + }, + { + "id": "okzoo", + "symbol": "aiot", + "name": "OKZOO" + }, + { + "id": "ola", + "symbol": "ola", + "name": "Ola" + }, + { + "id": "olaxbt", + "symbol": "aio", + "name": "OlaXBT" + }, + { + "id": "old-bitcoin", + "symbol": "bc", + "name": "Old Bitcoin" + }, + { + "id": "olen-mosk", + "symbol": "olen", + "name": "Olen Mosk" + }, + { + "id": "olivecash", + "symbol": "olive", + "name": "Olive Cash" + }, + { + "id": "oliver-s-cat", + "symbol": "phoenix", + "name": "Oliver's Cat" + }, + { + "id": "olixrp", + "symbol": "olx", + "name": "OliXRP" + }, + { + "id": "oly", + "symbol": "oly", + "name": "OLY" + }, + { + "id": "olympus", + "symbol": "ohm", + "name": "Olympus" + }, + { + "id": "olympus-v1", + "symbol": "ohm", + "name": "Olympus v1" + }, + { + "id": "olyn-by-virtuals", + "symbol": "olyn", + "name": "Olyn by Virtuals" + }, + { + "id": "olyverse", + "symbol": "oly", + "name": "Olyverse" + }, + { + "id": "omax-token", + "symbol": "omax", + "name": "Omax" + }, + { + "id": "omb-strategy", + "symbol": "ombstr", + "name": "OMB Strategy" + }, + { + "id": "omega-2", + "symbol": "omega", + "name": "Omega" + }, + { + "id": "omega-3", + "symbol": "omega", + "name": "OMEGA" + }, + { + "id": "omega-any-to-any", + "symbol": "sn21", + "name": "OMEGA Any-to-Any" + }, + { + "id": "omega-labs", + "symbol": "sn24", + "name": "OMEGA Labs" + }, + { + "id": "o-megax", + "symbol": "o-megax", + "name": "O-megax" + }, + { + "id": "omegax-health", + "symbol": "omegax", + "name": "OmegaX Health" + }, + { + "id": "omeletteswap", + "symbol": "omlt", + "name": "OmeletteSwap" + }, + { + "id": "omira", + "symbol": "omira", + "name": "Omira" + }, + { + "id": "omisego", + "symbol": "omg", + "name": "OMG Network" + }, + { + "id": "omni", + "symbol": "omni", + "name": "Omni" + }, + { + "id": "omni-2", + "symbol": "omni", + "name": "Omni" + }, + { + "id": "omnia", + "symbol": "omnia", + "name": "Omnia Protocol" + }, + { + "id": "omnibridge-bridged-dai-gnosis-chain", + "symbol": "dai", + "name": "OmniBridge Bridged DAI (Gnosis Chain)" + }, + { + "id": "omnibridge-bridged-zcash-solana", + "symbol": "zec", + "name": "OmniBridge Bridged Zcash (Solana)" + }, + { + "id": "omnicat", + "symbol": "omni", + "name": "OmniCat" + }, + { + "id": "omni-consumer-protocol", + "symbol": "ocp", + "name": "Omni Consumer Protocol" + }, + { + "id": "omni-exchange-token", + "symbol": "omni", + "name": "Omni Exchange Token" + }, + { + "id": "omniflix-network", + "symbol": "flix", + "name": "OmniFlix Network" + }, + { + "id": "omni-launch", + "symbol": "omni", + "name": "Omni Launch" + }, + { + "id": "omni-layer", + "symbol": "omni", + "name": "Omni Layer" + }, + { + "id": "omniminds", + "symbol": "omnis", + "name": "OmniMinds" + }, + { + "id": "omni-network", + "symbol": "omni", + "name": "Omni Network [Old]" + }, + { + "id": "omnipair", + "symbol": "omfg", + "name": "Omnipair" + }, + { + "id": "omnis-genesis-by-virtuals", + "symbol": "omni", + "name": "Omnis Genesis by Virtuals" + }, + { + "id": "omnitensor", + "symbol": "omnit", + "name": "OmniTensor" + }, + { + "id": "omnity-network-bridged-ckbtc", + "symbol": "ckbtc", + "name": "Omnity Network Bridged ckBTC" + }, + { + "id": "omnix", + "symbol": "omnix", + "name": "OMNIX" + }, + { + "id": "omochi-the-frog", + "symbol": "omochi", + "name": "Omochi the Frog" + }, + { + "id": "omron", + "symbol": "sn2", + "name": "Omron" + }, + { + "id": "onboarding", + "symbol": "onboarding", + "name": "Onboarding" + }, + { + "id": "onbuff", + "symbol": "lwa", + "name": "LumiWave" + }, + { + "id": "onchain", + "symbol": "onchain", + "name": "/onchain" + }, + { + "id": "onchain-ai", + "symbol": "ocai", + "name": "Onchain AI" + }, + { + "id": "onchain-battles", + "symbol": "ocb", + "name": "OnChain Battles" + }, + { + "id": "onchain-coin", + "symbol": "onchain", + "name": "Onchain Coin" + }, + { + "id": "onchain-finance-and-culture", + "symbol": "ofac", + "name": "Onchain Finance and Culture" + }, + { + "id": "onchain-pepe-404", + "symbol": "ocp404", + "name": "OnChain Pepe 404" + }, + { + "id": "onchain-summer", + "symbol": "summer", + "name": "Onchain Summer" + }, + { + "id": "onchain-trade-protocol", + "symbol": "ot", + "name": "Onchain Trade Protocol" + }, + { + "id": "oncology-network", + "symbol": "onc", + "name": "Oncology Network" + }, + { + "id": "ondaxbt", + "symbol": "onda", + "name": "ondaxbt" + }, + { + "id": "ondo-defai", + "symbol": "ondoai", + "name": "Ondo DeFAI" + }, + { + "id": "ondo-finance", + "symbol": "ondo", + "name": "Ondo" + }, + { + "id": "ondo-u-s-dollar-token", + "symbol": "usdon", + "name": "Ondo U.S. Dollar Token" + }, + { + "id": "ondo-us-dollar-yield", + "symbol": "usdy", + "name": "Ondo US Dollar Yield" + }, + { + "id": "one", + "symbol": "one", + "name": "One" + }, + { + "id": "one-2", + "symbol": "one", + "name": "One" + }, + { + "id": "one-cash", + "symbol": "onc", + "name": "One Cash" + }, + { + "id": "onecoin", + "symbol": "onecoin", + "name": "Onecoin" + }, + { + "id": "onedex", + "symbol": "one", + "name": "OneFinity" + }, + { + "id": "onefootball-club", + "symbol": "ofc", + "name": "OneFootball Club" + }, + { + "id": "one-hundred-million-inu", + "symbol": "ohmi", + "name": "One Hundred Million Inu" + }, + { + "id": "oneid", + "symbol": "oneid", + "name": "OneID" + }, + { + "id": "one-ledger", + "symbol": "olt", + "name": "OneLedger" + }, + { + "id": "onemug", + "symbol": "mug", + "name": "OneMug" + }, + { + "id": "oneoneone", + "symbol": "sn111", + "name": "Oneoneone" + }, + { + "id": "one-play", + "symbol": "op", + "name": "One Play" + }, + { + "id": "one-punch-cat", + "symbol": "punch", + "name": "ONE PUNCH CAT" + }, + { + "id": "onering", + "symbol": "ring", + "name": "OneRing" + }, + { + "id": "one-share", + "symbol": "ons", + "name": "One Share" + }, + { + "id": "one-unchill-gal", + "symbol": "gal", + "name": "one unchill gal" + }, + { + "id": "one-world-chain", + "symbol": "owct", + "name": "One World Chain" + }, + { + "id": "one-zeros", + "symbol": "onezeros", + "name": "One & Zeros" + }, + { + "id": "onfa", + "symbol": "oft", + "name": "ONFA" + }, + { + "id": "ong", + "symbol": "ong", + "name": "Ontology Gas" + }, + { + "id": "ongo", + "symbol": "ongo", + "name": "Ongo" + }, + { + "id": "onigchi", + "symbol": "onigchi", + "name": "Onigchi" + }, + { + "id": "onigiri-2", + "symbol": "oni", + "name": "Onigiri" + }, + { + "id": "onigiri-kitty", + "symbol": "oky", + "name": "Onigiri Kitty" + }, + { + "id": "oni-token", + "symbol": "oni", + "name": "ONINO" + }, + { + "id": "only1", + "symbol": "like", + "name": "LIKE" + }, + { + "id": "onlycalls-by-virtuals", + "symbol": "calls", + "name": "OnlyCalls by Virtuals" + }, + { + "id": "only-possible-on-solana", + "symbol": "opos", + "name": "Only Possible On Solana" + }, + { + "id": "onlyup-token", + "symbol": "onlyup", + "name": "OnlyUp Token" + }, + { + "id": "onocoy-token", + "symbol": "ono", + "name": "Onocoy Token" + }, + { + "id": "onpulse", + "symbol": "opls", + "name": "OnPulse" + }, + { + "id": "ontact", + "symbol": "ontact", + "name": "OnTact" + }, + { + "id": "ontology", + "symbol": "ont", + "name": "Ontology" + }, + { + "id": "ontos", + "symbol": "ontos", + "name": "Ontos" + }, + { + "id": "onus", + "symbol": "onus", + "name": "ONUS" + }, + { + "id": "onx-finance", + "symbol": "onx", + "name": "OnX Finance" + }, + { + "id": "onyc", + "symbol": "onyc", + "name": "Onchain Yield Coin" + }, + { + "id": "oobit", + "symbol": "obt", + "name": "Oobit" + }, + { + "id": "oof-oof-cto", + "symbol": "oof", + "name": "oof oof CTO" + }, + { + "id": "ooga-booga", + "symbol": "ooga", + "name": "Ooga Booga" + }, + { + "id": "ooki", + "symbol": "ooki", + "name": "Ooki" + }, + { + "id": "ooni", + "symbol": "ooni", + "name": "ooni" + }, + { + "id": "oops", + "symbol": "oops", + "name": "OOPS" + }, + { + "id": "oort", + "symbol": "oort", + "name": "OORT" + }, + { + "id": "oort-digital", + "symbol": "oort", + "name": "Oort Digital" + }, + { + "id": "opad", + "symbol": "opad", + "name": "OPENPAD TOKEN" + }, + { + "id": "opaium", + "symbol": "opaium", + "name": "Opaium" + }, + { + "id": "opal-3", + "symbol": "opal", + "name": "Opal" + }, + { + "id": "opanarchy", + "symbol": "opan", + "name": "OPANARCHY" + }, + { + "id": "opanarchy-2", + "symbol": "opan", + "name": "Opanarchy" + }, + { + "id": "opbnb-bridged-wbnb-opbnb", + "symbol": "wbnb", + "name": "opBNB Bridged WBNB (opBNB)" + }, + { + "id": "opcat", + "symbol": "$opcat", + "name": "OPCAT" + }, + { + "id": "opcat-2", + "symbol": "opcat", + "name": "OPCAT" + }, + { + "id": "openai-prestocks-2", + "symbol": "openai", + "name": "OpenAI PreStocks" + }, + { + "id": "openanx", + "symbol": "oax", + "name": "OAX" + }, + { + "id": "openblox", + "symbol": "obx", + "name": "OpenBlox" + }, + { + "id": "openchat", + "symbol": "chat", + "name": "OpenChat" + }, + { + "id": "opendao", + "symbol": "sos", + "name": "OpenDAO" + }, + { + "id": "opendelta-gmci30", + "symbol": "og30", + "name": "OpenDelta GMCI30" + }, + { + "id": "open-dollar", + "symbol": "od", + "name": "Open Dollar" + }, + { + "id": "openeden", + "symbol": "eden", + "name": "OpenEden" + }, + { + "id": "openeden-open-dollar", + "symbol": "usdo", + "name": "OpenEden OpenDollar" + }, + { + "id": "openeden-tbill", + "symbol": "tbill", + "name": "OpenEden TBILL" + }, + { + "id": "openfabric", + "symbol": "ofn", + "name": "Openfabric AI" + }, + { + "id": "opengpu", + "symbol": "open", + "name": "OpenGPU" + }, + { + "id": "open-gpu", + "symbol": "ogpu", + "name": "OPEN GPU" + }, + { + "id": "openkaito", + "symbol": "sn5", + "name": "OpenKaito" + }, + { + "id": "openledger-2", + "symbol": "open", + "name": "OpenLedger" + }, + { + "id": "openleverage", + "symbol": "ole", + "name": "OpenLeverage" + }, + { + "id": "openloop", + "symbol": "opl", + "name": "OpenLoop" + }, + { + "id": "open-loot", + "symbol": "ol", + "name": "OPENLOOT" + }, + { + "id": "openocean", + "symbol": "ooe", + "name": "OpenOcean" + }, + { + "id": "opensea", + "symbol": "sea", + "name": "OpenSea" + }, + { + "id": "openserv", + "symbol": "serv", + "name": "OpenServ" + }, + { + "id": "opensky-finance", + "symbol": "osky", + "name": "OpenSky Finance" + }, + { + "id": "open-source", + "symbol": "os", + "name": "Open Source" + }, + { + "id": "open-stablecoin-index", + "symbol": "open", + "name": "Open Stablecoin Index" + }, + { + "id": "openstate-bgt", + "symbol": "osbgt", + "name": "OpenState BGT" + }, + { + "id": "opensvm-com", + "symbol": "svmai", + "name": "opensvm.com" + }, + { + "id": "openswap-token", + "symbol": "openx", + "name": "OpenSwap.One" + }, + { + "id": "open-ticketing-ecosystem", + "symbol": "opn", + "name": "OPEN Ticketing Ecosystem" + }, + { + "id": "open-tony", + "symbol": "open", + "name": "OPEN Tony" + }, + { + "id": "openusdt", + "symbol": "ousdt", + "name": "OpenUSDT" + }, + { + "id": "openverse-network", + "symbol": "btg", + "name": "Openverse Network" + }, + { + "id": "openvision", + "symbol": "vision", + "name": "OpenVision" + }, + { + "id": "openvpp", + "symbol": "ovpp", + "name": "OpenVPP" + }, + { + "id": "openworld-app", + "symbol": "owa", + "name": "Openworld App" + }, + { + "id": "openxai", + "symbol": "openx", + "name": "OpenxAI" + }, + { + "id": "open-xstock", + "symbol": "openx", + "name": "OPEN xStock" + }, + { + "id": "openxswap", + "symbol": "openx", + "name": "OpenXSwap" + }, + { + "id": "openzk-network", + "symbol": "ozk", + "name": "OpenZK Network" + }, + { + "id": "operating-system", + "symbol": "opsys", + "name": "Operating System" + }, + { + "id": "operon-network", + "symbol": "operon", + "name": "Operon Network" + }, + { + "id": "operon-origins", + "symbol": "oro", + "name": "Operon Origins" + }, + { + "id": "opes-wrapped-pe", + "symbol": "wpe", + "name": "OpesAI" + }, + { + "id": "opinion-finance", + "symbol": "opn", + "name": "Opinion Finance" + }, + { + "id": "opipets", + "symbol": "opip", + "name": "OpiPets" + }, + { + "id": "opium", + "symbol": "opium", + "name": "Opium" + }, + { + "id": "opmentis", + "symbol": "opm", + "name": "OpMentis" + }, + { + "id": "opportunity", + "symbol": "opy", + "name": "OPYx" + }, + { + "id": "opriva-ai", + "symbol": "oprv", + "name": "Opriva AI" + }, + { + "id": "opsec", + "symbol": "opsec", + "name": "OpSec" + }, + { + "id": "opta-global-2", + "symbol": "opta", + "name": "OPTA Global" + }, + { + "id": "opticash", + "symbol": "opch", + "name": "Opticash" + }, + { + "id": "optim-finance", + "symbol": "o", + "name": "Optim Finance" + }, + { + "id": "optimism", + "symbol": "op", + "name": "Optimism" + }, + { + "id": "optim-oada", + "symbol": "oada", + "name": "Optim OADA" + }, + { + "id": "optimus", + "symbol": "optcm", + "name": "Optimus" + }, + { + "id": "optimus-ai", + "symbol": "opti", + "name": "Optimus AI" + }, + { + "id": "optimuselonai", + "symbol": "optimuselo", + "name": "OptimusElonAI" + }, + { + "id": "optimus-x", + "symbol": "opx", + "name": "Optimus X" + }, + { + "id": "optio", + "symbol": "opt", + "name": "Optio" + }, + { + "id": "optionflow-finance", + "symbol": "opt", + "name": "OptionFlow Finance" + }, + { + "id": "option-room", + "symbol": "room", + "name": "OptionRoom" + }, + { + "id": "optionsai", + "symbol": "option", + "name": "OptionsAI" + }, + { + "id": "optopia-ai", + "symbol": "opai", + "name": "Optopia AI" + }, + { + "id": "optrade-ai", + "symbol": "optr", + "name": "opTrade AI" + }, + { + "id": "opulence", + "symbol": "opulence", + "name": "OPULENCE" + }, + { + "id": "opulous", + "symbol": "opul", + "name": "Opulous" + }, + { + "id": "opus-2", + "symbol": "opus", + "name": "Opus" + }, + { + "id": "opus-cash", + "symbol": "cash", + "name": "Opus CASH" + }, + { + "id": "opx-live", + "symbol": "opxl", + "name": "OPX LIVE" + }, + { + "id": "opyn-squeeth", + "symbol": "osqth", + "name": "Opyn Squeeth" + }, + { + "id": "opz", + "symbol": "opz", + "name": "OPZ" + }, + { + "id": "oracle-3", + "symbol": "orcl", + "name": "Oracle" + }, + { + "id": "oracle-ai", + "symbol": "oracle", + "name": "Oracle AI" + }, + { + "id": "oraclebnb", + "symbol": "oracle", + "name": "OracleBNB" + }, + { + "id": "oracle-bot", + "symbol": "oracle", + "name": "Oracle.Bot" + }, + { + "id": "oracle-cat", + "symbol": "oracle", + "name": "Oracle Cat" + }, + { + "id": "oracle-degen", + "symbol": "odegen", + "name": "Oracle Degen" + }, + { + "id": "oracle-finance-network", + "symbol": "onf", + "name": "Oracle Finance Network" + }, + { + "id": "oracle-meta-technologies", + "symbol": "omt", + "name": "Oracle Meta Technologies" + }, + { + "id": "oracle-of-preferences-zk-by-virtuals", + "symbol": "oopz", + "name": "Oracle of Preferences ZK by Virtuals" + }, + { + "id": "oracle-ondo-tokenized-stock", + "symbol": "orclon", + "name": "Oracle (Ondo Tokenized Stock)" + }, + { + "id": "oracler-ai", + "symbol": "oracler", + "name": "Oracler AI" + }, + { + "id": "oracleswap", + "symbol": "oracle", + "name": "OracleSwap" + }, + { + "id": "oracle-xstock", + "symbol": "orclx", + "name": "Oracle xStock" + }, + { + "id": "ora-coin", + "symbol": "ora", + "name": "ORA Coin" + }, + { + "id": "oraichain-token", + "symbol": "orai", + "name": "Oraichain" + }, + { + "id": "oraidex", + "symbol": "oraix", + "name": "OraiDEX" + }, + { + "id": "orang", + "symbol": "orang", + "name": "Orang" + }, + { + "id": "orange", + "symbol": "ornj", + "name": "Orange" + }, + { + "id": "orange-2", + "symbol": "orng", + "name": "ORANGE" + }, + { + "id": "orange-3", + "symbol": "ora", + "name": "Orange" + }, + { + "id": "orangedx", + "symbol": "o4dx", + "name": "OrangeDX" + }, + { + "id": "ora-protocol", + "symbol": "olm", + "name": "OpenLM RevShare Token" + }, + { + "id": "orb", + "symbol": "orb", + "name": "ORB" + }, + { + "id": "orbit-3", + "symbol": "grift", + "name": "ORBIT" + }, + { + "id": "orbitai", + "symbol": "orbit", + "name": "OrbitAI" + }, + { + "id": "orbital7", + "symbol": "orbi", + "name": "Orbital7" + }, + { + "id": "orbit-bridge-klaytn-ethereum", + "symbol": "oeth", + "name": "Orbit Bridge Klaytn Ethereum" + }, + { + "id": "orbit-bridge-klaytn-orbit-chain", + "symbol": "oorc", + "name": "Orbit Bridge Klaytn Orbit Chain" + }, + { + "id": "orbit-bridge-klaytn-ripple", + "symbol": "oxrp", + "name": "Orbit Bridge Klaytn Ripple" + }, + { + "id": "orbit-bridge-klaytn-usdc", + "symbol": "ousdc", + "name": "Bridged USD Coin (Orbit Bridge)" + }, + { + "id": "orbit-bridge-klaytn-usd-tether", + "symbol": "ousdt", + "name": "Bridged Tether (Orbit Bridge)" + }, + { + "id": "orbit-bridge-klaytn-wrapped-btc", + "symbol": "owbtc", + "name": "Orbit Bridge Klaytn Wrapped BTC" + }, + { + "id": "orbit-chain", + "symbol": "orc", + "name": "Orbit Chain" + }, + { + "id": "orbitedge", + "symbol": "orbd", + "name": "OrbitEdge" + }, + { + "id": "orbiter-finance", + "symbol": "obt", + "name": "Orbiter Finance" + }, + { + "id": "orbit-ether", + "symbol": "orbeth", + "name": "Orbit Ether" + }, + { + "id": "orbit-protocol", + "symbol": "orbit", + "name": "Orbit Protocol" + }, + { + "id": "orbitt-pro", + "symbol": "orbt", + "name": "Orbitt Token" + }, + { + "id": "orbitx", + "symbol": "rtx", + "name": "ORBITX" + }, + { + "id": "orbitx-dao", + "symbol": "rtx", + "name": "OrbitX DAO" + }, + { + "id": "orbler", + "symbol": "orbr", + "name": "Orbler" + }, + { + "id": "orbofi-ai", + "symbol": "obi", + "name": "Orbofi AI" + }, + { + "id": "orbs", + "symbol": "orbs", + "name": "Orbs" + }, + { + "id": "orby-network-usc-stablecoin", + "symbol": "usc", + "name": "Orby Network USC Stablecoin" + }, + { + "id": "orc", + "symbol": "orc", + "name": "ORC" + }, + { + "id": "orca", + "symbol": "orca", + "name": "Orca" + }, + { + "id": "orca-2", + "symbol": "orcai", + "name": "ORCA" + }, + { + "id": "orca-avai", + "symbol": "avai", + "name": "Orca AVAI" + }, + { + "id": "orcasm", + "symbol": "orcasm", + "name": "Orcasm" + }, + { + "id": "orcfax", + "symbol": "fact", + "name": "Orcfax" + }, + { + "id": "orchai-protocol-staked-compound-atom", + "symbol": "scatom", + "name": "Orchai Protocol Staked Compound ATOM" + }, + { + "id": "orchid-protocol", + "symbol": "oxt", + "name": "Orchid Protocol" + }, + { + "id": "orcib", + "symbol": "palmo", + "name": "ORCIB" + }, + { + "id": "ordbridge", + "symbol": "wbrge", + "name": "Wrapped OrdBridge" + }, + { + "id": "order-2", + "symbol": "order", + "name": "ORDER" + }, + { + "id": "order-3", + "symbol": "order", + "name": "ORDER" + }, + { + "id": "orderly-network", + "symbol": "order", + "name": "Orderly" + }, + { + "id": "ordify", + "symbol": "orfy", + "name": "Ordify" + }, + { + "id": "ordigen", + "symbol": "odgn", + "name": "OrdiGen" + }, + { + "id": "ordinal-doge", + "symbol": "odoge", + "name": "Ordinal Doge" + }, + { + "id": "ordinals", + "symbol": "ordi", + "name": "ORDI" + }, + { + "id": "ordinals-world", + "symbol": "ord", + "name": "Ordinals World" + }, + { + "id": "ordinex", + "symbol": "ord", + "name": "ordinex" + }, + { + "id": "ordiswap-token", + "symbol": "ords", + "name": "Ordiswap" + }, + { + "id": "ore", + "symbol": "ore", + "name": "Ore" + }, + { + "id": "orenium-protocol", + "symbol": "ore", + "name": "Orenium Protocol" + }, + { + "id": "oreoswap", + "symbol": "oreo", + "name": "OreoSwap" + }, + { + "id": "oreswap-2", + "symbol": "ost", + "name": "OreSwap" + }, + { + "id": "ore-token", + "symbol": "ore", + "name": "ORE" + }, + { + "id": "organic-bitcorn-runes", + "symbol": "corn", + "name": "ORGANIC•BITCORN (Runes)" + }, + { + "id": "orgo", + "symbol": "orgo", + "name": "Orgo" + }, + { + "id": "origami-hohm", + "symbol": "hohm", + "name": "Origami hOHM" + }, + { + "id": "origami-ibgt-auto-compounder", + "symbol": "oribgt", + "name": "Origami iBGT Auto-Compounder" + }, + { + "id": "origent-ai", + "symbol": "ori", + "name": "Origent Ai" + }, + { + "id": "origin3d", + "symbol": "o3d", + "name": "Origin3D" + }, + { + "id": "original-gangsters", + "symbol": "$og", + "name": "Original Gangsters" + }, + { + "id": "origin-dollar", + "symbol": "ousd", + "name": "Origin Dollar" + }, + { + "id": "origin-ether", + "symbol": "oeth", + "name": "Origin Ether" + }, + { + "id": "origin-lgns", + "symbol": "lgns", + "name": "Origin LGNS" + }, + { + "id": "origin-protocol", + "symbol": "ogn", + "name": "Origin Token" + }, + { + "id": "origin-staked-s", + "symbol": "os", + "name": "Origin Sonic" + }, + { + "id": "origintrail", + "symbol": "trac", + "name": "OriginTrail" + }, + { + "id": "origyn-foundation", + "symbol": "ogy", + "name": "ORIGYN" + }, + { + "id": "orion-money", + "symbol": "orion", + "name": "Orion Money" + }, + { + "id": "orionpay", + "symbol": "orion", + "name": "OrionPay" + }, + { + "id": "orion-protocol", + "symbol": "orn", + "name": "Orion" + }, + { + "id": "orizon", + "symbol": "ori", + "name": "Orizon" + }, + { + "id": "orki-usdk", + "symbol": "usdk", + "name": "Orki USDK" + }, + { + "id": "ormeus-ecosystem", + "symbol": "eco", + "name": "Ormeus Ecosystem" + }, + { + "id": "oro-2", + "symbol": "oro", + "name": "ORO" + }, + { + "id": "orobit", + "symbol": "xrb", + "name": "OroBit" + }, + { + "id": "orochi-network", + "symbol": "on", + "name": "Orochi Network" + }, + { + "id": "orym", + "symbol": "orym", + "name": "Orym" + }, + { + "id": "orynth", + "symbol": "ory", + "name": "ORYNTH" + }, + { + "id": "osaka-protocol", + "symbol": "osak", + "name": "Osaka Protocol" + }, + { + "id": "os-arm-lp-token", + "symbol": "arm-ws-os", + "name": "OS ARM LP Token" + }, + { + "id": "oscar", + "symbol": "oscar", + "name": "OSCAR" + }, + { + "id": "oscar-2", + "symbol": "gopro cat", + "name": "OSCAR" + }, + { + "id": "oscar-the-octo", + "symbol": "octo", + "name": "Oscar The Octo" + }, + { + "id": "osca-stack", + "symbol": "osca", + "name": "OSCA Stack" + }, + { + "id": "osean", + "symbol": "osean", + "name": "Osean" + }, + { + "id": "osiris", + "symbol": "osiri", + "name": "Osiris" + }, + { + "id": "osk", + "symbol": "osk", + "name": "OSK" + }, + { + "id": "osmi", + "symbol": "osmi", + "name": "OSMI" + }, + { + "id": "osmosis", + "symbol": "osmo", + "name": "Osmosis" + }, + { + "id": "osmosis-allbtc", + "symbol": "btc", + "name": "Osmosis allBTC" + }, + { + "id": "osmosis-alleth", + "symbol": "eth", + "name": "Osmosis allETH" + }, + { + "id": "osmosis-alllink", + "symbol": "link", + "name": "Osmosis allLINK" + }, + { + "id": "osmosis-allpepe", + "symbol": "pepe", + "name": "Osmosis allPEPE" + }, + { + "id": "osmosis-allsol", + "symbol": "sol", + "name": "Osmosis allSOL" + }, + { + "id": "osmosis-allusdt", + "symbol": "usdt", + "name": "Osmosis allUSDT" + }, + { + "id": "osol", + "symbol": "osol", + "name": "OSOL" + }, + { + "id": "ostrich", + "symbol": "rich", + "name": "Ostrich" + }, + { + "id": "otherdeedstrategy", + "symbol": "deedstr", + "name": "OtherdeedStrategy" + }, + { + "id": "otherworld", + "symbol": "own", + "name": "Otherworld" + }, + { + "id": "otia", + "symbol": "otia", + "name": "OTIA" + }, + { + "id": "otsea", + "symbol": "otsea", + "name": "OTSea" + }, + { + "id": "otto", + "symbol": "$otto", + "name": "Otto" + }, + { + "id": "otto-ai", + "symbol": "otto", + "name": "Otto AI" + }, + { + "id": "otty-the-otter", + "symbol": "$otty", + "name": "Otty the Otter" + }, + { + "id": "otx-exchange", + "symbol": "otx", + "name": "OTX EXCHANGE" + }, + { + "id": "ouroboros-2", + "symbol": "orx", + "name": "Ouroboros" + }, + { + "id": "ousg", + "symbol": "ousg", + "name": "OUSG" + }, + { + "id": "outdefine", + "symbol": "outdefine", + "name": "Outdefine" + }, + { + "id": "outer-ring", + "symbol": "gq", + "name": "Blink Galaxy" + }, + { + "id": "outerscope", + "symbol": "outer", + "name": "Outerscope" + }, + { + "id": "outlanders", + "symbol": "land", + "name": "Outlanders" + }, + { + "id": "outlaw-crypto-games", + "symbol": "outlaw", + "name": "OUTLAW Crypto Games" + }, + { + "id": "out-of-body-experience", + "symbol": "oobe", + "name": "Out of body experience" + }, + { + "id": "outter-finance-2", + "symbol": "out", + "name": "Outter Finance" + }, + { + "id": "overlay-protocol", + "symbol": "ovl", + "name": "Overlay Protocol" + }, + { + "id": "overnight-dai", + "symbol": "dai+", + "name": "Overnight.fi DAI+" + }, + { + "id": "overnight-finance", + "symbol": "ovn", + "name": "Overnight Finance" + }, + { + "id": "overnight-fi-usd-arbitrum-one", + "symbol": "xusd", + "name": "xUSD" + }, + { + "id": "overnight-fi-usd-base", + "symbol": "usd+", + "name": "Overnight.fi USD+ (Base)" + }, + { + "id": "overnight-fi-usd-blast", + "symbol": "usd+", + "name": "Overnight.fi USD+ (Blast)" + }, + { + "id": "overnight-fi-usd-optimism", + "symbol": "usd+", + "name": "Overnight.fi USD+ (Optimism)" + }, + { + "id": "overprotocol", + "symbol": "over", + "name": "OverProtocol" + }, + { + "id": "overtake", + "symbol": "take", + "name": "OVERTAKE" + }, + { + "id": "overtime", + "symbol": "over", + "name": "Overtime" + }, + { + "id": "ovo-nft-platform", + "symbol": "ovo", + "name": "OVO" + }, + { + "id": "ovr", + "symbol": "ovr", + "name": "Ovr" + }, + { + "id": "ownershipcoin", + "symbol": "oc", + "name": "OwnershipCoin" + }, + { + "id": "owo", + "symbol": "owo", + "name": "Owo" + }, + { + "id": "owo-solana", + "symbol": "owo", + "name": "OwO Solana" + }, + { + "id": "oxai", + "symbol": "oxai", + "name": "Oxai" + }, + { + "id": "oxbitcoin", + "symbol": "0xbtc", + "name": "0xBitcoin" + }, + { + "id": "oxbull", + "symbol": "oxi", + "name": "Oxbull" + }, + { + "id": "ox-fun", + "symbol": "ox", + "name": "OX Coin" + }, + { + "id": "ox-labs", + "symbol": "oxlabs", + "name": "OX Labs" + }, + { + "id": "oxygen", + "symbol": "oxy", + "name": "Oxygen (Solana)" + }, + { + "id": "oxygen-ethereum", + "symbol": "oxy", + "name": "Oxygen (Ethereum)" + }, + { + "id": "oxylon", + "symbol": "oxl", + "name": "OXYLON" + }, + { + "id": "ozak-ai", + "symbol": "oz", + "name": "Ozak AI" + }, + { + "id": "ozapay", + "symbol": "oza", + "name": "Ozapay" + }, + { + "id": "ozarus", + "symbol": "ozarus", + "name": "Ozarus" + }, + { + "id": "ozonechain", + "symbol": "ozone", + "name": "Ozonechain" + }, + { + "id": "ozone-chain", + "symbol": "ozo", + "name": "Ozone Chain" + }, + { + "id": "ozone-metaverse", + "symbol": "$ozone", + "name": "Ozone Metaverse" + }, + { + "id": "p2p-solutions-foundation", + "symbol": "p2ps", + "name": "P2P solutions foundation" + }, + { + "id": "paal-ai", + "symbol": "paal", + "name": "PAAL AI" + }, + { + "id": "paca-ai", + "symbol": "paca", + "name": "Paca AI" + }, + { + "id": "pacato", + "symbol": "pacato", + "name": "Pacato" + }, + { + "id": "paccoin", + "symbol": "pac", + "name": "PAC Protocol" + }, + { + "id": "paceterminal", + "symbol": "pace", + "name": "PaceTerminal" + }, + { + "id": "pacman-native-token", + "symbol": "pac", + "name": "Pacman Native Token" + }, + { + "id": "pacmoon", + "symbol": "pac", + "name": "PacMoon" + }, + { + "id": "paco", + "symbol": "$paco", + "name": "Paco" + }, + { + "id": "pacoca", + "symbol": "pacoca", + "name": "Pacoca" + }, + { + "id": "pactus", + "symbol": "pac", + "name": "Pactus" + }, + { + "id": "pacu-jalur", + "symbol": "boatkid", + "name": "Pacu Jalur" + }, + { + "id": "padawan", + "symbol": "padawan", + "name": "PADAWAN" + }, + { + "id": "paddle-finance", + "symbol": "padd", + "name": "Paddle Finance" + }, + { + "id": "padre", + "symbol": "padre", + "name": "Terminal" + }, + { + "id": "page", + "symbol": "page", + "name": "Page" + }, + { + "id": "paideia", + "symbol": "pai", + "name": "Paideia" + }, + { + "id": "paid-network", + "symbol": "paid", + "name": "PAID" + }, + { + "id": "paidwork-worken", + "symbol": "work", + "name": "Paidwork Worken" + }, + { + "id": "paimon-cursor-spv-token", + "symbol": "crsr", + "name": "Paimon Cursor SPV Token" + }, + { + "id": "paimon-spacex-spv-token", + "symbol": "spcx", + "name": "Paimon SpaceX SPV Token" + }, + { + "id": "paimon-stripe-spv-token", + "symbol": "strp", + "name": "Paimon Stripe SPV Token" + }, + { + "id": "paimon-xai-spv-token", + "symbol": "xai", + "name": "Paimon xAI SPV Token" + }, + { + "id": "pain", + "symbol": "pain", + "name": "Pain" + }, + { + "id": "painstrategy", + "symbol": "painstr", + "name": "PainStrategy" + }, + { + "id": "paint", + "symbol": "paint", + "name": "MurAll" + }, + { + "id": "paint-swap", + "symbol": "brush", + "name": "Paintswap" + }, + { + "id": "pairs", + "symbol": "pairs", + "name": "Pairs" + }, + { + "id": "paisapad", + "symbol": "ppd", + "name": "PaisaPad" + }, + { + "id": "pajamas-cat", + "symbol": "pajamas", + "name": "Pajamas Cat" + }, + { + "id": "pakcoin", + "symbol": "pak", + "name": "Pakcoin" + }, + { + "id": "paladeum", + "symbol": "plb", + "name": "Paladeum" + }, + { + "id": "paladin", + "symbol": "pal", + "name": "Paladin" + }, + { + "id": "paladinai", + "symbol": "palai", + "name": "PaladinAI" + }, + { + "id": "palantir-technologies-ondo-tokenized-stock", + "symbol": "pltron", + "name": "Palantir Technologies (Ondo Tokenized Stock)" + }, + { + "id": "palantir-tokenized-stock-defichain", + "symbol": "dpltr", + "name": "Palantir Tokenized Stock Defichain" + }, + { + "id": "palantir-xstock", + "symbol": "pltrx", + "name": "Palantir xStock" + }, + { + "id": "palapa", + "symbol": "plpa", + "name": "Palapa" + }, + { + "id": "palcoin-venture-capital", + "symbol": "palcoin", + "name": "PALCOIN Ventures" + }, + { + "id": "palette-2", + "symbol": "plt", + "name": "Palette" + }, + { + "id": "palgold", + "symbol": "palg", + "name": "PalGold" + }, + { + "id": "palie", + "symbol": "palie", + "name": "Palie" + }, + { + "id": "palio", + "symbol": "pal", + "name": "Palio" + }, + { + "id": "palladium-network", + "symbol": "plld", + "name": "Palladium Network" + }, + { + "id": "palm-ai", + "symbol": "palm", + "name": "PaLM AI" + }, + { + "id": "palm-economy", + "symbol": "palm", + "name": "Palm Economy" + }, + { + "id": "palmeiras-fan-token", + "symbol": "verdao", + "name": "Palmeiras Fan Token" + }, + { + "id": "palmpay", + "symbol": "palm", + "name": "PalmPay" + }, + { + "id": "palo-alto-networks-ondo-tokenized-stock", + "symbol": "panwon", + "name": "Palo Alto Networks (Ondo Tokenized Stock)" + }, + { + "id": "palo-alto-networks-xstock", + "symbol": "panwx", + "name": "Palo Alto Networks xStock" + }, + { + "id": "palu", + "symbol": "palu", + "name": "Palu" + }, + { + "id": "palu-the-8th-builder", + "symbol": "palu", + "name": "Palu the 8th builder" + }, + { + "id": "pambii", + "symbol": "pambii", + "name": "PAMBII" + }, + { + "id": "pamp", + "symbol": "pamp", + "name": "PAMP" + }, + { + "id": "panana", + "symbol": "$panana", + "name": "Panana" + }, + { + "id": "pancake-bunny", + "symbol": "bunny", + "name": "Pancake Bunny" + }, + { + "id": "pancake-games", + "symbol": "gcake", + "name": "Pancake Games" + }, + { + "id": "pancake-hunny", + "symbol": "hunny", + "name": "Hunny Finance" + }, + { + "id": "pancakeswap-token", + "symbol": "cake", + "name": "PancakeSwap" + }, + { + "id": "panda-academy", + "symbol": "panda", + "name": "Panda Academy" + }, + { + "id": "pandacoin", + "symbol": "pnd", + "name": "Pandacoin" + }, + { + "id": "panda-coin", + "symbol": "panda", + "name": "Panda Coin" + }, + { + "id": "pandacoin-inu", + "symbol": "panda", + "name": "Pandacoin Inu" + }, + { + "id": "panda-ling", + "symbol": "ling", + "name": "PANDA LING" + }, + { + "id": "pandapump", + "symbol": "ppump", + "name": "PandaPump" + }, + { + "id": "pandarea", + "symbol": "panda", + "name": "Pandarea" + }, + { + "id": "pandasui-coin", + "symbol": "pans", + "name": "PandaSui Coin" + }, + { + "id": "panda-swap", + "symbol": "panda", + "name": "Panda Swap" + }, + { + "id": "pandemic-diamond", + "symbol": "pmd", + "name": "Pandemic Diamond" + }, + { + "id": "pando", + "symbol": "pando", + "name": "Pando" + }, + { + "id": "pandora", + "symbol": "pandora", + "name": "Pandora" + }, + { + "id": "pandora-finance", + "symbol": "pan", + "name": "Pandora Finance" + }, + { + "id": "pandora-protocol", + "symbol": "pndr", + "name": "Pandora Finance" + }, + { + "id": "pandu-pandas", + "symbol": "pandu", + "name": "Pandu Pandas" + }, + { + "id": "pangea-governance-token", + "symbol": "stone", + "name": "PANGEA GOVERNANCE TOKEN" + }, + { + "id": "pangolin", + "symbol": "png", + "name": "Pangolin" + }, + { + "id": "pangolin-2", + "symbol": "pang", + "name": "Pangolin" + }, + { + "id": "pangolin-flare", + "symbol": "pfl", + "name": "Pangolin Flare" + }, + { + "id": "pangolin-songbird", + "symbol": "psb", + "name": "Pangolin Songbird" + }, + { + "id": "panjea", + "symbol": "panj", + "name": "Panjea" + }, + { + "id": "pankito", + "symbol": "pan", + "name": "Pankito" + }, + { + "id": "pankuku", + "symbol": "kuku", + "name": "panKUKU" + }, + { + "id": "panorama-swap-token", + "symbol": "panx", + "name": "Panorama Swap Token" + }, + { + "id": "panoverse", + "symbol": "pano", + "name": "PanoVerse" + }, + { + "id": "panterai", + "symbol": "panterai", + "name": "PanterAI" + }, + { + "id": "pantheon", + "symbol": "eon", + "name": "Pantheon" + }, + { + "id": "panther", + "symbol": "zkp", + "name": "Panther Protocol" + }, + { + "id": "panther-ai", + "symbol": "pai", + "name": "Panther AI" + }, + { + "id": "panties", + "symbol": "panties", + "name": "PANTIES" + }, + { + "id": "papa-bear-2", + "symbol": "papa", + "name": "PAPA BEAR" + }, + { + "id": "papa-doge", + "symbol": "papadoge", + "name": "Papa Doge" + }, + { + "id": "paparazzi-token", + "symbol": "paparazzi", + "name": "Paparazzi Token" + }, + { + "id": "papa-trump", + "symbol": "ppt", + "name": "PAPA Trump" + }, + { + "id": "paper-bag", + "symbol": "paper", + "name": "Paper Bag" + }, + { + "id": "paperclip-ai", + "symbol": "paperclips", + "name": "Paperclip AI" + }, + { + "id": "paper-plane", + "symbol": "plane", + "name": "Paper Plane" + }, + { + "id": "papichulo", + "symbol": "chulo", + "name": "Papichulo" + }, + { + "id": "papi-eth", + "symbol": "papi", + "name": "PAPI (ETH)" + }, + { + "id": "papocoin", + "symbol": "papo", + "name": "PapoCoin" + }, + { + "id": "papparico-finance-token", + "symbol": "ppft", + "name": "Papparico Finance Token" + }, + { + "id": "papu-token", + "symbol": "papu", + "name": "Papu Token" + }, + { + "id": "papyrus-2", + "symbol": "pap", + "name": "PAPYRUS" + }, + { + "id": "papyrus-swap", + "symbol": "papyrus", + "name": "Papyrus Swap" + }, + { + "id": "parabolic-3", + "symbol": "parax", + "name": "Parabolic" + }, + { + "id": "parabolic-ai", + "symbol": "pai", + "name": "Parabolic AI" + }, + { + "id": "parabol-usd", + "symbol": "parausd", + "name": "Parabol USD" + }, + { + "id": "parachute", + "symbol": "par", + "name": "Parachute" + }, + { + "id": "parad", + "symbol": "prd", + "name": "PARAD" + }, + { + "id": "paradox-3", + "symbol": "paradox", + "name": "PARADOX" + }, + { + "id": "paragen", + "symbol": "rgen", + "name": "Paragen" + }, + { + "id": "paragonsdao", + "symbol": "pdt", + "name": "ParagonsDAO" + }, + { + "id": "paragon-tweaks", + "symbol": "prgn", + "name": "Paragon Tweaks" + }, + { + "id": "parallelai", + "symbol": "pai", + "name": "ParallelAI" + }, + { + "id": "parallel-usdp", + "symbol": "usdp", + "name": "Parallel USDp" + }, + { + "id": "param", + "symbol": "param", + "name": "Param" + }, + { + "id": "parasol-finance", + "symbol": "psol", + "name": "Parasol Finance" + }, + { + "id": "paraswap", + "symbol": "psp", + "name": "ParaSwap" + }, + { + "id": "paratoken-2", + "symbol": "para", + "name": "Para" + }, + { + "id": "paraverse", + "symbol": "para", + "name": "Paraverse" + }, + { + "id": "parcl", + "symbol": "prcl", + "name": "Parcl" + }, + { + "id": "pareto-staked-usp", + "symbol": "susp", + "name": "Pareto Staked USP" + }, + { + "id": "pareto-usp", + "symbol": "usp", + "name": "Pareto USP" + }, + { + "id": "parex", + "symbol": "prx", + "name": "Parex" + }, + { + "id": "paribus", + "symbol": "pbx", + "name": "Paribus" + }, + { + "id": "parifi-usdc", + "symbol": "pfusdc", + "name": "Parifi USDC" + }, + { + "id": "parifi-weth", + "symbol": "pfweth", + "name": "Parifi WETH" + }, + { + "id": "paris-saint-germain-fan-token", + "symbol": "psg", + "name": "Paris Saint-Germain Fan Token" + }, + { + "id": "park", + "symbol": "park", + "name": "PARK" + }, + { + "id": "parkcoin", + "symbol": "kpk", + "name": "Parkcoin" + }, + { + "id": "parma-calcio-1913-fan-token", + "symbol": "parma", + "name": "Parma Calcio 1913 Fan Token" + }, + { + "id": "parrotly", + "symbol": "pbirb", + "name": "Parrotly" + }, + { + "id": "parrot-protocol", + "symbol": "prt", + "name": "Parrot Protocol" + }, + { + "id": "parrot-usd", + "symbol": "pai", + "name": "Parrot USD" + }, + { + "id": "parsiq", + "symbol": "prq", + "name": "PARSIQ" + }, + { + "id": "parsona", + "symbol": "sona", + "name": "Parsona" + }, + { + "id": "par-stablecoin", + "symbol": "par", + "name": "Parallel" + }, + { + "id": "particl", + "symbol": "part", + "name": "Particl" + }, + { + "id": "particle-2", + "symbol": "prtcle", + "name": "Particle" + }, + { + "id": "particle-network", + "symbol": "parti", + "name": "Particle Network" + }, + { + "id": "particles-money", + "symbol": "particle", + "name": "Particles Money" + }, + { + "id": "particles-money-xeth", + "symbol": "xeth", + "name": "Particles Money xETH" + }, + { + "id": "partisia-blockchain", + "symbol": "mpc", + "name": "Partisia Blockchain" + }, + { + "id": "party-2", + "symbol": "party", + "name": "Party" + }, + { + "id": "party-3", + "symbol": "party", + "name": "Party" + }, + { + "id": "party-4", + "symbol": "party", + "name": "Party" + }, + { + "id": "partyhat-meme", + "symbol": "phat", + "name": "partyhat (Meme)" + }, + { + "id": "party-parrot", + "symbol": "parry", + "name": "Party Parrot" + }, + { + "id": "party-parrot-2", + "symbol": "parrot", + "name": "Party Parrot" + }, + { + "id": "passage", + "symbol": "pasg", + "name": "Passage" + }, + { + "id": "pat", + "symbol": "pat", + "name": "Pat" + }, + { + "id": "patchy", + "symbol": "patchy", + "name": "Patchy" + }, + { + "id": "paternal-older-cousin", + "symbol": "堂哥", + "name": "堂哥 (Paternal Older Cousin)" + }, + { + "id": "patex", + "symbol": "patex", + "name": "Patex" + }, + { + "id": "pathos", + "symbol": "pathos", + "name": "PathOS" + }, + { + "id": "pathpulse", + "symbol": "puls", + "name": "PathPulse" + }, + { + "id": "patic", + "symbol": "ptc", + "name": "PATIC" + }, + { + "id": "patience-token", + "symbol": "patience", + "name": "Patience Token" + }, + { + "id": "patientory", + "symbol": "ptoy", + "name": "Patientory" + }, + { + "id": "patriot", + "symbol": "patriot", + "name": "Patriot" + }, + { + "id": "patrol-tao-com", + "symbol": "sn81", + "name": "grail" + }, + { + "id": "pats", + "symbol": "pats", + "name": "Pats" + }, + { + "id": "patton", + "symbol": "patton", + "name": "Patton" + }, + { + "id": "paul", + "symbol": "paul", + "name": "paul" + }, + { + "id": "pavia", + "symbol": "pavia", + "name": "Pavia" + }, + { + "id": "pavise", + "symbol": "pavise", + "name": "Pavise" + }, + { + "id": "paw-2", + "symbol": "paw", + "name": "PAW" + }, + { + "id": "pawderick", + "symbol": "pawderick", + "name": "Pawderick" + }, + { + "id": "pawpaw", + "symbol": "pawpaw", + "name": "PawPaw" + }, + { + "id": "paws", + "symbol": "paws", + "name": "PAWS" + }, + { + "id": "pawse", + "symbol": "pawse", + "name": "PAWSE" + }, + { + "id": "pawstars", + "symbol": "paws", + "name": "PawStars" + }, + { + "id": "pawswap", + "symbol": "paw", + "name": "PAW" + }, + { + "id": "pawthereum-2", + "symbol": "pawth", + "name": "Pawthereum" + }, + { + "id": "pawtocol", + "symbol": "upi", + "name": "Pawtocol" + }, + { + "id": "paw-v2", + "symbol": "paw", + "name": "Paw V2" + }, + { + "id": "pawwot", + "symbol": "pwot", + "name": "PAWWOT" + }, + { + "id": "pawzone", + "symbol": "paw", + "name": "PAWZONE" + }, + { + "id": "paxe", + "symbol": "paxe", + "name": "Paxe" + }, + { + "id": "pax-gold", + "symbol": "paxg", + "name": "PAX Gold" + }, + { + "id": "paxos-standard", + "symbol": "usdp", + "name": "Pax Dollar" + }, + { + "id": "pax-unitas", + "symbol": "paxu", + "name": "Pax Unitas" + }, + { + "id": "pay-2-win", + "symbol": "p2w", + "name": "Pay 2 Win" + }, + { + "id": "payai-network", + "symbol": "payai", + "name": "PayAI Network" + }, + { + "id": "payb", + "symbol": "payb", + "name": "PayB" + }, + { + "id": "paybandcoin", + "symbol": "pybc", + "name": "PaybandCoin" + }, + { + "id": "pay-coin", + "symbol": "pci", + "name": "Paycoin" + }, + { + "id": "paydon", + "symbol": "don", + "name": "Paydon" + }, + { + "id": "payfi-strategy-token", + "symbol": "pst", + "name": "PayFi Strategy Token" + }, + { + "id": "payfi-strategy-token-usdc", + "symbol": "pstusdc", + "name": "PayFi Strategy Token USDC" + }, + { + "id": "pay-it-now", + "symbol": "pin", + "name": "Pay It Now" + }, + { + "id": "payless", + "symbol": "payless", + "name": "Payless" + }, + { + "id": "payment-swap-utility-board", + "symbol": "psub", + "name": "Payment Swap Utility Board" + }, + { + "id": "paynetic", + "symbol": "pyn", + "name": "Paynetic" + }, + { + "id": "paynet-protocol", + "symbol": "paynet", + "name": "PayNet Protocol" + }, + { + "id": "paypal-ondo-tokenized-stock", + "symbol": "pyplon", + "name": "PayPal (Ondo Tokenized Stock)" + }, + { + "id": "paypal-usd", + "symbol": "pyusd", + "name": "PayPal USD" + }, + { + "id": "paypal-xstock", + "symbol": "pyplx", + "name": "PayPal xStock" + }, + { + "id": "paypaw", + "symbol": "paw", + "name": "PayPaw" + }, + { + "id": "paysenger-ego", + "symbol": "ego", + "name": "Paysenger EGO" + }, + { + "id": "paystream", + "symbol": "pays", + "name": "Paystream" + }, + { + "id": "pay-usd", + "symbol": "payusd", + "name": "Pay USD" + }, + { + "id": "payx", + "symbol": "payx", + "name": "PayX" + }, + { + "id": "payzcoin", + "symbol": "pay", + "name": "Payzcoin" + }, + { + "id": "pbtc35a", + "symbol": "pbtc35a", + "name": "pBTC35A" + }, + { + "id": "pchain", + "symbol": "pi", + "name": "Plian" + }, + { + "id": "pcm", + "symbol": "pcm", + "name": "PCM" + }, + { + "id": "pdx-coin", + "symbol": "pdx", + "name": "PDX Coin" + }, + { + "id": "pe", + "symbol": "pe", + "name": "PE" + }, + { + "id": "peace-frog", + "symbol": "pfrog", + "name": "Peace Frog" + }, + { + "id": "peace-guy", + "symbol": "peaceguy", + "name": "Peace Guy" + }, + { + "id": "peacepal-ai", + "symbol": "peace", + "name": "PeacePal AI" + }, + { + "id": "peachfolio", + "symbol": "pchf", + "name": "Peachfolio" + }, + { + "id": "peak-internet-male-performance", + "symbol": "pimp", + "name": "Peak Internet Male Performance" + }, + { + "id": "peanie", + "symbol": "peanie", + "name": "peanie" + }, + { + "id": "peanut", + "symbol": "nux", + "name": "Peanut" + }, + { + "id": "peanut-2", + "symbol": "peanut", + "name": "Peanut" + }, + { + "id": "peanut-3", + "symbol": "pnut", + "name": "Peanut" + }, + { + "id": "peanut-s-best-friend", + "symbol": "marshall", + "name": "Peanut's Best Friend" + }, + { + "id": "peanut-the-doge", + "symbol": "pdoge", + "name": "Peanut the Doge" + }, + { + "id": "peanut-the-squirrel", + "symbol": "pnut", + "name": "Peanut the Squirrel" + }, + { + "id": "peapods-finance", + "symbol": "peas", + "name": "Peapods Finance" + }, + { + "id": "peaq-2", + "symbol": "peaq", + "name": "peaq" + }, + { + "id": "pear-protocol", + "symbol": "pear", + "name": "Pear Protocol" + }, + { + "id": "pear-swap", + "symbol": "pear", + "name": "Pear Swap" + }, + { + "id": "pebo", + "symbol": "peblo", + "name": "Peblo" + }, + { + "id": "pectra-giraffe", + "symbol": "gpectra", + "name": "Pectra Giraffe" + }, + { + "id": "pedro", + "symbol": "pedro", + "name": "PEDRO" + }, + { + "id": "pedro-2", + "symbol": "pedro", + "name": "Pedro" + }, + { + "id": "pedro-raccoon", + "symbol": "ginger", + "name": "Pedro Raccoon" + }, + { + "id": "pedro-the-raccoon", + "symbol": "pedro", + "name": "Pedro the Raccoon" + }, + { + "id": "peeking-duck", + "symbol": "qwack", + "name": "PEEKING DUCK" + }, + { + "id": "peengu", + "symbol": "peengu", + "name": "Peengu" + }, + { + "id": "peeno", + "symbol": "peeno", + "name": "PEENO" + }, + { + "id": "peepa", + "symbol": "peepa", + "name": "Peepa" + }, + { + "id": "pee-pee-poo-poo", + "symbol": "pppp", + "name": "pee pee poo poo" + }, + { + "id": "peepo", + "symbol": "peepo", + "name": "Peepo" + }, + { + "id": "peepo-eth", + "symbol": "pepo", + "name": "Peepo" + }, + { + "id": "peepo-sol", + "symbol": "$peep", + "name": "Peepo (SOL)" + }, + { + "id": "peercoin", + "symbol": "ppc", + "name": "Peercoin" + }, + { + "id": "peezy", + "symbol": "peezy", + "name": "Peezy" + }, + { + "id": "peezy-eth", + "symbol": "peezy", + "name": "Peezy" + }, + { + "id": "peg", + "symbol": "peg", + "name": "Hyperstable" + }, + { + "id": "pegasus-gold-real-estate", + "symbol": "pgre", + "name": "Pegasus Gold Real Estate" + }, + { + "id": "pegaxy-stone", + "symbol": "pgx", + "name": "Pegaxy" + }, + { + "id": "pegazus-finance", + "symbol": "peg", + "name": "Pegazus Finance" + }, + { + "id": "pege", + "symbol": "pegecoin", + "name": "Pege" + }, + { + "id": "peipei-2", + "symbol": "佩佩", + "name": "Pepe on BnB" + }, + { + "id": "peipeicoin-vip", + "symbol": "peipei", + "name": "PeiPei" + }, + { + "id": "peipei-sol", + "symbol": "peipei", + "name": "PeiPei Sol" + }, + { + "id": "pek", + "symbol": "pek", + "name": "Pek" + }, + { + "id": "peko", + "symbol": "peko", + "name": "PEKO" + }, + { + "id": "peko-2", + "symbol": "peko", + "name": "PEKO" + }, + { + "id": "pekong", + "symbol": "pekong", + "name": "PEKONG" + }, + { + "id": "pelfort", + "symbol": "pelf", + "name": "PELFORT" + }, + { + "id": "pelican", + "symbol": "pelican", + "name": "Pelican" + }, + { + "id": "pell-network-token", + "symbol": "pell", + "name": "Pell Network Token" + }, + { + "id": "pendle", + "symbol": "pendle", + "name": "Pendle" + }, + { + "id": "pendulum-chain", + "symbol": "pen", + "name": "Pendulum" + }, + { + "id": "peng", + "symbol": "peng", + "name": "Peng" + }, + { + "id": "penguiana", + "symbol": "pengu", + "name": "Penguiana" + }, + { + "id": "penguin-finance", + "symbol": "pefi", + "name": "Penguin Finance" + }, + { + "id": "penguin-tariff", + "symbol": "pt", + "name": "Penguin Tariff" + }, + { + "id": "penguin-wif-backpack", + "symbol": "wifbag", + "name": "penguin wif backpack" + }, + { + "id": "penguru", + "symbol": "penguru", + "name": "Penguru" + }, + { + "id": "pengus-wife", + "symbol": "polly", + "name": "Polly" + }, + { + "id": "pengycoin", + "symbol": "pengy", + "name": "Pengycoin" + }, + { + "id": "pengyos", + "symbol": "pos", + "name": "PengyOS" + }, + { + "id": "penjamin-blinkerton", + "symbol": "pen", + "name": "Penjamin Blinkerton" + }, + { + "id": "penny-stock", + "symbol": "pennystock", + "name": "penny stock" + }, + { + "id": "pennystocks", + "symbol": "pennystock", + "name": "pennystocks" + }, + { + "id": "penose", + "symbol": "penose", + "name": "Penose" + }, + { + "id": "penpad-token", + "symbol": "dapp", + "name": "Pencils Protocol" + }, + { + "id": "penpie", + "symbol": "pnp", + "name": "Penpie" + }, + { + "id": "pentagon-chain", + "symbol": "pc", + "name": "Pentagon Chain" + }, + { + "id": "pentagon-games", + "symbol": "pen", + "name": "Pentagon Games" + }, + { + "id": "pentagon-pizza-watch", + "symbol": "ppw", + "name": "Pentagon Pizza Watch" + }, + { + "id": "penumbra", + "symbol": "um", + "name": "Penumbra" + }, + { + "id": "peon", + "symbol": "peon", + "name": "PEON" + }, + { + "id": "people-s-index-of-everything", + "symbol": "pie", + "name": "People's Index of Everything" + }, + { + "id": "people-with-1-iq", + "symbol": "1iq", + "name": "People with 1 IQ" + }, + { + "id": "pepa-erc", + "symbol": "pepa", + "name": "Pepa ERC" + }, + { + "id": "pepa-inu", + "symbol": "pepa", + "name": "Pepa Inu" + }, + { + "id": "pepcat", + "symbol": "pepcat", + "name": "pepcat" + }, + { + "id": "pepe", + "symbol": "pepe", + "name": "Pepe" + }, + { + "id": "pepe-0x69-on-base", + "symbol": "pepe", + "name": "PEPE 0x69 ON BASE" + }, + { + "id": "pepe-2", + "symbol": "pepe", + "name": "The Original Pepe" + }, + { + "id": "pepe-2-0", + "symbol": "pepe2.0", + "name": "Pepe 2.0" + }, + { + "id": "pepe-2nd-chance", + "symbol": "pepe", + "name": "Pepe 2nd Chance" + }, + { + "id": "pepe-ai", + "symbol": "pepeai", + "name": "Pepe AI" + }, + { + "id": "pepeai-2", + "symbol": "pepeai", + "name": "pepeAI" + }, + { + "id": "pepeapukekiussimonpepuhoppymysterygroyperfefe6900", + "symbol": "pepe", + "name": "PepeApuKekiusSimonPepuHoppyMysteryGroyperFefe6900" + }, + { + "id": "pepe-black", + "symbol": "pepe", + "name": "PEPE BLACK" + }, + { + "id": "pepeblue", + "symbol": "pepeblue", + "name": "Pepeblue" + }, + { + "id": "pepebrc", + "symbol": "pepe", + "name": "PEPE (Ordinals)" + }, + { + "id": "pepebull", + "symbol": "beef", + "name": "PepeBull" + }, + { + "id": "pepe-bundle", + "symbol": "pundle", + "name": "Pepe Bundle" + }, + { + "id": "pepe-but-blue", + "symbol": "pbb", + "name": "Pepe But Blue" + }, + { + "id": "pepecash-2", + "symbol": "pepecash", + "name": "PEPECASH" + }, + { + "id": "pepecash-3", + "symbol": "pech", + "name": "PEPECASH" + }, + { + "id": "pepecash-bsc", + "symbol": "pepecash", + "name": "PEPECASH" + }, + { + "id": "pepecat-2", + "symbol": "pepecat", + "name": "PEPECAT" + }, + { + "id": "pepechain", + "symbol": "pc", + "name": "Pepechain" + }, + { + "id": "pepe-chain", + "symbol": "pepechain", + "name": "PEPE Chain" + }, + { + "id": "pepe-chain-2", + "symbol": "pc", + "name": "Pepe Chain" + }, + { + "id": "pepe-clanker", + "symbol": "pepec", + "name": "Pepe Clanker" + }, + { + "id": "pepecoin-2", + "symbol": "pepecoin", + "name": "PepeCoin" + }, + { + "id": "pepecoin-3", + "symbol": "pep", + "name": "PEPECOIN" + }, + { + "id": "pepecoin-network", + "symbol": "pep", + "name": "Pepecoin" + }, + { + "id": "pepecoin-on-sol", + "symbol": "pepe", + "name": "PEPECOIN on SOL" + }, + { + "id": "pepecoin-on-solana", + "symbol": "pepe", + "name": "PepeCoin on Solana" + }, + { + "id": "pepe-cto", + "symbol": "pepe", + "name": "Pepe CTO" + }, + { + "id": "pepedex", + "symbol": "ppdex", + "name": "Pepedex" + }, + { + "id": "pepe-doge", + "symbol": "pepedoge", + "name": "Pepe Doge" + }, + { + "id": "pepe-dollar", + "symbol": "pepd", + "name": "Pepe Dollar" + }, + { + "id": "pepe-dollar-2", + "symbol": "pepd", + "name": "Pepe Dollar" + }, + { + "id": "pepe-final-boss", + "symbol": "boss", + "name": "Pepe Final Boss" + }, + { + "id": "pepefork", + "symbol": "pork", + "name": "PepeFork" + }, + { + "id": "pepega", + "symbol": "pepega", + "name": "Pepega" + }, + { + "id": "pepe-girl", + "symbol": "pepeg", + "name": "Pepe Girl" + }, + { + "id": "pepe-gold", + "symbol": "pepe", + "name": "PEPE GOLD" + }, + { + "id": "pepegold-2", + "symbol": "peg", + "name": "PEPEGOLD" + }, + { + "id": "pepe-heimer", + "symbol": "pehem", + "name": "Pepe Heimer" + }, + { + "id": "pepe-in-a-memes-world", + "symbol": "pew", + "name": "pepe in a memes world" + }, + { + "id": "pepeinatux", + "symbol": "$ina", + "name": "Pepeinatux" + }, + { + "id": "pepe-inscriptions", + "symbol": "pepi", + "name": "Pepe Inscriptions" + }, + { + "id": "pepe-inverted", + "symbol": "ǝԁǝԁ", + "name": "Pepe Inverted" + }, + { + "id": "pepe-king-prawn", + "symbol": "pepe", + "name": "Pepe King Prawn" + }, + { + "id": "pepek-philippe", + "symbol": "pepek", + "name": "Pepek Philippe" + }, + { + "id": "pepeloco", + "symbol": "pepeloco", + "name": "PEPELOCO" + }, + { + "id": "pepelon-token", + "symbol": "pelo", + "name": "PepElon" + }, + { + "id": "pepe-maga", + "symbol": "pepemaga", + "name": "PEPE MAGA" + }, + { + "id": "pepemon-pepeballs", + "symbol": "ppblz", + "name": "Pepemon Pepeballs" + }, + { + "id": "pepemusk", + "symbol": "pepemusk", + "name": "PepeMusk" + }, + { + "id": "pepenguin", + "symbol": "penguin", + "name": "PePenguin" + }, + { + "id": "pepenode", + "symbol": "pepenode", + "name": "PepeNode" + }, + { + "id": "pepenode-2", + "symbol": "pepenode", + "name": "PepeNode" + }, + { + "id": "pepenode-3", + "symbol": "pepenode", + "name": "PepeNode" + }, + { + "id": "pepe-on-base", + "symbol": "pepe", + "name": "Pepe on Base" + }, + { + "id": "pepe-on-doge", + "symbol": "podge", + "name": "Pepe on Doge" + }, + { + "id": "pepe-on-fire", + "symbol": "pfire", + "name": "Pepe On Fire" + }, + { + "id": "pepe-on-memeland", + "symbol": "pom", + "name": "Pepe on Memeland" + }, + { + "id": "pepe-on-solana", + "symbol": "pepe", + "name": "Pepe on Solana" + }, + { + "id": "pepeontron", + "symbol": "pepeontron", + "name": "PePeonTron" + }, + { + "id": "pepe-predator", + "symbol": "snake", + "name": "Pepe Predator" + }, + { + "id": "pepe-prophet", + "symbol": "kek", + "name": "Pepe Prophet" + }, + { + "id": "pepercetti", + "symbol": "pct", + "name": "Pepercetti" + }, + { + "id": "pepe-s-cat", + "symbol": "pat", + "name": "Pepe's Cat" + }, + { + "id": "pepes-dog", + "symbol": "zeus", + "name": "Pepes Dog" + }, + { + "id": "pepe-skull", + "symbol": "skull", + "name": "Pepe SKULL" + }, + { + "id": "pepesol", + "symbol": "pepe", + "name": "PepeSol" + }, + { + "id": "pepe-sol", + "symbol": "pepe", + "name": "Pepe on SOL" + }, + { + "id": "pepe-solana", + "symbol": "pepe", + "name": "Pepe (Solana)" + }, + { + "id": "pepe-sora-ai", + "symbol": "pepesora", + "name": "Pepe Sora AI" + }, + { + "id": "pepe-strategy", + "symbol": "pepestr", + "name": "Pepe Strategy" + }, + { + "id": "pepe-the-frog", + "symbol": "pepebnb", + "name": "Pepe the Frog" + }, + { + "id": "pepe-the-king-prawn", + "symbol": "prawn", + "name": "Pepe the King Prawn" + }, + { + "id": "pepeto", + "symbol": "pepeto", + "name": "PEPETO" + }, + { + "id": "pepe-token", + "symbol": "pepe", + "name": "Pepe Community" + }, + { + "id": "pepetopia", + "symbol": "pepetopia", + "name": "PepeTopia" + }, + { + "id": "pepe-trump", + "symbol": "ptrump", + "name": "Pepe Trump" + }, + { + "id": "pepe-unchained", + "symbol": "pepu", + "name": "Pepe Unchained [OLD]" + }, + { + "id": "pepe-unchained-2", + "symbol": "pepu", + "name": "Pepe Unchained" + }, + { + "id": "pepe-undead", + "symbol": "pepez", + "name": "Pepe Undead" + }, + { + "id": "pepeverse-2", + "symbol": "pvrse", + "name": "PepeVerse" + }, + { + "id": "pepe-wif-cig", + "symbol": "pwc", + "name": "pepe wif cig" + }, + { + "id": "pepewifhat", + "symbol": "pif", + "name": "pepewifhat" + }, + { + "id": "pepewifhat-2", + "symbol": "pwh", + "name": "pepewifhat" + }, + { + "id": "pepewifhat-3", + "symbol": "pepewifhat", + "name": "Pepewifhat" + }, + { + "id": "pepewifpork", + "symbol": "pepewfpork", + "name": "PepeWifPork" + }, + { + "id": "pepex", + "symbol": "pepex", + "name": "PEPEX" + }, + { + "id": "pepi-2", + "symbol": "pepi", + "name": "PEPi" + }, + { + "id": "pepig", + "symbol": "pepig", + "name": "PEPIG" + }, + { + "id": "pepinu", + "symbol": "pepinu", + "name": "Pepinu" + }, + { + "id": "pepito-2", + "symbol": "pepito", + "name": "Pepito" + }, + { + "id": "pepo", + "symbol": "pepo", + "name": "PEPO" + }, + { + "id": "pepoclown", + "symbol": "honk", + "name": "Pepoclown" + }, + { + "id": "peppa", + "symbol": "peppa", + "name": "PEPPA" + }, + { + "id": "pepper", + "symbol": "pepper", + "name": "PEPPER" + }, + { + "id": "pepper-meme", + "symbol": "pepper", + "name": "Pepper Meme" + }, + { + "id": "pepsico-ondo-tokenized-stock", + "symbol": "pepon", + "name": "PepsiCo (Ondo Tokenized Stock)" + }, + { + "id": "pepsico-xstock", + "symbol": "pepx", + "name": "PepsiCo xStock" + }, + { + "id": "pepurai", + "symbol": "pepurai", + "name": "PEPURAI" + }, + { + "id": "pepy-coin", + "symbol": "pepy", + "name": "Pepy coin" + }, + { + "id": "percy", + "symbol": "percy", + "name": "Percy" + }, + { + "id": "percy-verence", + "symbol": "percy", + "name": "Percy Verence" + }, + { + "id": "perezoso", + "symbol": "przs", + "name": "Perezoso" + }, + { + "id": "perion", + "symbol": "perc", + "name": "Perion" + }, + { + "id": "perlin", + "symbol": "perl", + "name": "PERL.eco" + }, + { + "id": "permission-coin", + "symbol": "ask", + "name": "Permission Coin" + }, + { + "id": "perpcoin", + "symbol": "perpcoin", + "name": "Perpcoin" + }, + { + "id": "perpcoin-2", + "symbol": "perpcoin", + "name": "Perpcoin" + }, + { + "id": "perpetual-delta-neutral-yield-optimism", + "symbol": "usdpy", + "name": "Perpetual Delta Neutral Yield (Optimism)" + }, + { + "id": "perpetual-exchange-protocol", + "symbol": "perc", + "name": "Perpetual Exchange Protocol" + }, + { + "id": "perpetual-protocol", + "symbol": "perp", + "name": "Perpetual Protocol" + }, + { + "id": "perpex", + "symbol": "perpx", + "name": "Perpex" + }, + { + "id": "per-project", + "symbol": "per", + "name": "PER Project" + }, + { + "id": "perps-dao", + "symbol": "perps", + "name": "Perps DAO" + }, + { + "id": "perp-sentinel", + "symbol": "psp", + "name": "Perp sentinel" + }, + { + "id": "perpy", + "symbol": "perpy", + "name": "PERPY" + }, + { + "id": "perpy-finance", + "symbol": "pry", + "name": "Perpy Finance" + }, + { + "id": "perq", + "symbol": "perq", + "name": "PERQ" + }, + { + "id": "perro-dinero", + "symbol": "jotchua", + "name": "PERRO DINERO" + }, + { + "id": "perry", + "symbol": "perry", + "name": "Perry" + }, + { + "id": "perry-the-bnb", + "symbol": "perry", + "name": "Perry The BNB" + }, + { + "id": "perseid-finance", + "symbol": "ped", + "name": "Perseid Finance" + }, + { + "id": "persistence", + "symbol": "xprt", + "name": "Persistence One" + }, + { + "id": "persistence-staked-xprt", + "symbol": "stkxprt", + "name": "pSTAKE Staked XPRT" + }, + { + "id": "persoa-ai", + "symbol": "persoa", + "name": "Persoa.ai" + }, + { + "id": "perspective-ai-by-virtuals", + "symbol": "pai", + "name": "Perspective AI by VIRTUALS" + }, + { + "id": "peshi", + "symbol": "peshi", + "name": "PESHI" + }, + { + "id": "pesto-the-baby-king-penguin", + "symbol": "pesto", + "name": "Pesto the Baby King Penguin" + }, + { + "id": "petals", + "symbol": "pts", + "name": "Petals" + }, + { + "id": "petcoin-2", + "symbol": "pet", + "name": "Petcoin" + }, + { + "id": "pete", + "symbol": "pete", + "name": "PETE" + }, + { + "id": "petrobras-ondo-tokenized-stock", + "symbol": "pbron", + "name": "Petrobras (Ondo Tokenized Stock)" + }, + { + "id": "petrok", + "symbol": "petrok", + "name": "Petrok" + }, + { + "id": "petroleum-oil", + "symbol": "oil", + "name": "Petroleum OIL" + }, + { + "id": "petro-penguins", + "symbol": "pengo", + "name": "PETRO PENGUINS" + }, + { + "id": "petsna", + "symbol": "$petsna", + "name": "PetsNa" + }, + { + "id": "pettai", + "symbol": "aip", + "name": "PettAI" + }, + { + "id": "petunia", + "symbol": "petunia", + "name": "Petunia" + }, + { + "id": "petunia-2", + "symbol": "petunia", + "name": "Petunia" + }, + { + "id": "petur-shiff", + "symbol": "$gold", + "name": "Petur Shiff" + }, + { + "id": "pew4sol", + "symbol": "pew", + "name": "Pew4Sol" + }, + { + "id": "pewpew", + "symbol": "pewpew", + "name": "pewpew" + }, + { + "id": "pew-pew", + "symbol": "pew", + "name": "Pew Pew" + }, + { + "id": "pewpew-2", + "symbol": "pewpew", + "name": "PewPew" + }, + { + "id": "pfizer-ondo-tokenized-stock", + "symbol": "pfeon", + "name": "Pfizer (Ondo Tokenized Stock)" + }, + { + "id": "pfizer-xstock", + "symbol": "pfex", + "name": "Pfizer xStock" + }, + { + "id": "pha", + "symbol": "pha", + "name": "PHALA" + }, + { + "id": "phame", + "symbol": "phame", + "name": "PHAME" + }, + { + "id": "phantasma", + "symbol": "soul", + "name": "Phantasma Phoenix" + }, + { + "id": "phantom-of-the-kill-alternative-imitation-oshi", + "symbol": "oshi", + "name": "OSHI3" + }, + { + "id": "phantom-protocol", + "symbol": "phm", + "name": "Phantom Protocol" + }, + { + "id": "phantom-staked-sol", + "symbol": "psol", + "name": "Phantom Staked SOL" + }, + { + "id": "pharaoh", + "symbol": "phar", + "name": "Pharaoh [OLD]" + }, + { + "id": "pharaoh-2", + "symbol": "phar", + "name": "Pharaoh" + }, + { + "id": "pharaoh-liquid-staking-token", + "symbol": "p33", + "name": "Pharaoh Liquid Staking Token" + }, + { + "id": "pharaohs", + "symbol": "phrz", + "name": "Pharaohs" + }, + { + "id": "pharmachain-ai", + "symbol": "phai", + "name": "Pharmachain AI" + }, + { + "id": "phase-dollar", + "symbol": "cash", + "name": "Phase Dollar" + }, + { + "id": "phaser-beary", + "symbol": "phaser", + "name": "Phaser Beary" + }, + { + "id": "phauntem", + "symbol": "phauntem", + "name": "Phauntem" + }, + { + "id": "phdkitty", + "symbol": "phdkitty", + "name": "PHDKitty" + }, + { + "id": "phecda", + "symbol": "pcd", + "name": "Phecda" + }, + { + "id": "phemex", + "symbol": "pt", + "name": "Phemex Token" + }, + { + "id": "phi", + "symbol": "phi", + "name": "Phi" + }, + { + "id": "phiat-protocol", + "symbol": "phiat", + "name": "Phiat Protocol" + }, + { + "id": "phicoin", + "symbol": "phi", + "name": "Phicoin" + }, + { + "id": "phil", + "symbol": "phil", + "name": "Phil" + }, + { + "id": "phili-inu", + "symbol": "phil", + "name": "Phili Inu" + }, + { + "id": "philip-morris-xstock", + "symbol": "pmx", + "name": "Philip Morris xStock" + }, + { + "id": "phill", + "symbol": "phill", + "name": "Phill" + }, + { + "id": "philosoraptor-2", + "symbol": "raptor", + "name": "Philosoraptor" + }, + { + "id": "phi-protocol", + "symbol": "phi", + "name": "Phi Protocol" + }, + { + "id": "phnix", + "symbol": "phnix", + "name": "PHNIX" + }, + { + "id": "phoenic-token", + "symbol": "pnic", + "name": "Phoenic Token" + }, + { + "id": "phoenix", + "symbol": "phx", + "name": "Phoenix Blockchain" + }, + { + "id": "phoenix-2", + "symbol": "phx", + "name": "PHOENIX" + }, + { + "id": "phoenixcoin", + "symbol": "pxc", + "name": "Phoenixcoin" + }, + { + "id": "phoenixdao", + "symbol": "phnx", + "name": "PhoenixDAO" + }, + { + "id": "phoenix-global", + "symbol": "phb", + "name": "Phoenix" + }, + { + "id": "phoenix-token-2", + "symbol": "pht", + "name": "Phoenix Token" + }, + { + "id": "phonon-dao", + "symbol": "phonon", + "name": "Phonon DAO" + }, + { + "id": "photon-2", + "symbol": "photon", + "name": "Photon" + }, + { + "id": "photon-milky-way", + "symbol": "pmw", + "name": "Photon Milky Way" + }, + { + "id": "photonswap", + "symbol": "photon", + "name": "PhotonSwap" + }, + { + "id": "phpcoin", + "symbol": "php", + "name": "PHPCoin" + }, + { + "id": "phronai", + "symbol": "zphr", + "name": "Phron AI" + }, + { + "id": "phteven", + "symbol": "phteve", + "name": "Phteven" + }, + { + "id": "pht-stablecoin", + "symbol": "pht", + "name": "PHT Stablecoin" + }, + { + "id": "phumptom", + "symbol": "phum", + "name": "PHUMPTOM" + }, + { + "id": "phunk-vault-nftx", + "symbol": "phunk", + "name": "PHUNK Vault (NFTX)" + }, + { + "id": "phuture", + "symbol": "phtr", + "name": "Phuture" + }, + { + "id": "phux-governance-token", + "symbol": "phux", + "name": "PHUX Governance Token" + }, + { + "id": "physical-gold", + "symbol": "gold", + "name": "Physical Gold" + }, + { + "id": "physis", + "symbol": "phy", + "name": "Physis" + }, + { + "id": "pibble", + "symbol": "pib", + "name": "Pibble" + }, + { + "id": "pibble-2", + "symbol": "pibble", + "name": "pibble" + }, + { + "id": "picasso", + "symbol": "pica", + "name": "Picasso" + }, + { + "id": "piccolo-inu", + "symbol": "pinu", + "name": "Piccolo Inu" + }, + { + "id": "pickle-2", + "symbol": "pickle", + "name": "Pickle" + }, + { + "id": "picklecharts-token", + "symbol": "pcc", + "name": "PickleCharts Token" + }, + { + "id": "pickle-finance", + "symbol": "pickle", + "name": "Pickle Finance" + }, + { + "id": "picklevault", + "symbol": "pickle", + "name": "PickleVault" + }, + { + "id": "pico", + "symbol": "pico", + "name": "PiCO Coin" + }, + { + "id": "pico-2", + "symbol": "$pico", + "name": "Pico" + }, + { + "id": "pieverse", + "symbol": "pieverse", + "name": "Pieverse" + }, + { + "id": "pigcatsol", + "symbol": "pc", + "name": "PigCat" + }, + { + "id": "pigcoin-2", + "symbol": "pig", + "name": "Pigcoin" + }, + { + "id": "pigeon-in-yellow-boots", + "symbol": "pigeon", + "name": "Pigeon In Yellow Boots" + }, + { + "id": "pigeons", + "symbol": "pigeons", + "name": "PIGEONS" + }, + { + "id": "pigeon-tech", + "symbol": "govai", + "name": "Pigeon Tech [OLD]" + }, + { + "id": "pigeon-tech-2", + "symbol": "mock", + "name": "Agent Mock" + }, + { + "id": "pigeontoken", + "symbol": "piq", + "name": "PigeonToken" + }, + { + "id": "pig-finance", + "symbol": "pig", + "name": "Pig Finance" + }, + { + "id": "pigged-by-piggy", + "symbol": "$piggy", + "name": "PIGGED•BY•PIGGY" + }, + { + "id": "piggy-2", + "symbol": "piggy", + "name": "Piggy" + }, + { + "id": "piggycell", + "symbol": "piggy", + "name": "Piggycell" + }, + { + "id": "piggycoinbsc", + "symbol": "piggyc", + "name": "PiggyCoinBSC" + }, + { + "id": "pigpad-ai", + "symbol": "piggy", + "name": "PigPad AI" + }, + { + "id": "pigu", + "symbol": "pigu", + "name": "PIGU" + }, + { + "id": "pig-wif-hat", + "symbol": "pigwif", + "name": "pig wif hat" + }, + { + "id": "pik", + "symbol": "pik", + "name": "Pik" + }, + { + "id": "pikaboss", + "symbol": "pika", + "name": "Pikaboss" + }, + { + "id": "pikachu", + "symbol": "pika", + "name": "Pika" + }, + { + "id": "pikamoon", + "symbol": "orbio", + "name": "ORBIO" + }, + { + "id": "pika-protocol", + "symbol": "pika", + "name": "Pika Protocol" + }, + { + "id": "pika-to-piko", + "symbol": "pika", + "name": "PIKA to PIKO ピカとピコ" + }, + { + "id": "pike-finance", + "symbol": "p", + "name": "Pike Finance" + }, + { + "id": "pikl", + "symbol": "pikl", + "name": "PiKL" + }, + { + "id": "piku-utility-token", + "symbol": "piku", + "name": "Piku Utility Token" + }, + { + "id": "pill", + "symbol": "$pill", + "name": "Pill" + }, + { + "id": "pillar", + "symbol": "plr", + "name": "Pillar" + }, + { + "id": "pillarfi", + "symbol": "pillar", + "name": "PillarFi" + }, + { + "id": "pillzumi", + "symbol": "pillzumi", + "name": "Pillzumi" + }, + { + "id": "pilot3", + "symbol": "ptai", + "name": "Pilot3" + }, + { + "id": "pilotcoin", + "symbol": "ptc", + "name": "PILOTCOIN" + }, + { + "id": "pilso-os", + "symbol": "pilso", + "name": "PILSO OS" + }, + { + "id": "pim-pimling", + "symbol": "pim", + "name": "PIM PIMLING" + }, + { + "id": "pine", + "symbol": "pine", + "name": "Pine" + }, + { + "id": "pinealon", + "symbol": "pnl", + "name": "Pinealon" + }, + { + "id": "pineapple", + "symbol": "papple", + "name": "Pineapple" + }, + { + "id": "pineapple-cat", + "symbol": "pcat", + "name": "Pineapple Cat" + }, + { + "id": "pineapple-cat-2", + "symbol": "pica", + "name": "Pineapple Cat" + }, + { + "id": "pineapple-owl", + "symbol": "pineowl", + "name": "Pineapple Owl" + }, + { + "id": "pi-network", + "symbol": "pi", + "name": "Pi Network" + }, + { + "id": "pi-network-dog", + "symbol": "pidog", + "name": "Pi Network Dog" + }, + { + "id": "pi-network-iou", + "symbol": "pi", + "name": "Pi Network [IOU]" + }, + { + "id": "pineye", + "symbol": "pineye", + "name": "PinEye" + }, + { + "id": "ping", + "symbol": "ping", + "name": "Ping" + }, + { + "id": "ping-dog", + "symbol": "ping", + "name": "Ping Dog" + }, + { + "id": "pingo", + "symbol": "pingo", + "name": "PinGo" + }, + { + "id": "pingpong", + "symbol": "pingpong", + "name": "PINGPONG" + }, + { + "id": "pingu-exchange", + "symbol": "pingu", + "name": "Pingu Exchange" + }, + { + "id": "pingu-land", + "symbol": "pingu", + "name": "Pingu.Land" + }, + { + "id": "pingu-on-sol", + "symbol": "pingu", + "name": "Pingu on SOL" + }, + { + "id": "pinjam-kava", + "symbol": "pinkav", + "name": "Pinjam.Kava" + }, + { + "id": "pink", + "symbol": "pink", + "name": "Pink" + }, + { + "id": "pinkmoon", + "symbol": "pinkm", + "name": "PinkMoon" + }, + { + "id": "pinksale", + "symbol": "pinksale", + "name": "PinkSale" + }, + { + "id": "pinky-the-pineapple", + "symbol": "pinky", + "name": "Pinky the Pineapple" + }, + { + "id": "pinlink", + "symbol": "pin", + "name": "PinLink" + }, + { + "id": "pino", + "symbol": "pino", + "name": "PINO" + }, + { + "id": "pino-trx", + "symbol": "pino", + "name": "Pino TRX" + }, + { + "id": "pinto", + "symbol": "pinto", + "name": "Pinto" + }, + { + "id": "pinto-coin", + "symbol": "pinto", + "name": "Pinto Coin" + }, + { + "id": "pip", + "symbol": "pip", + "name": "PIP" + }, + { + "id": "pip-2", + "symbol": "pip", + "name": "PIP" + }, + { + "id": "pip-3", + "symbol": "pip", + "name": "PiP" + }, + { + "id": "pip-4", + "symbol": "pip", + "name": "PIP" + }, + { + "id": "pipcat", + "symbol": "pipcat", + "name": "PIPCAT" + }, + { + "id": "pipe", + "symbol": "pipe", + "name": "PIPE" + }, + { + "id": "pipeiq", + "symbol": "pipeiq", + "name": "PipeIQ" + }, + { + "id": "pipe-network", + "symbol": "pipe", + "name": "Pipe Network" + }, + { + "id": "pipi", + "symbol": "pipi", + "name": "PIPI" + }, + { + "id": "pipi-on-eth", + "symbol": "pipi", + "name": "Pipi on ETH" + }, + { + "id": "pipi-the-cat", + "symbol": "pipi", + "name": "pipi the cat" + }, + { + "id": "pipo", + "symbol": "pipo", + "name": "Pipo" + }, + { + "id": "pipo-2", + "symbol": "pipo", + "name": "Pipo" + }, + { + "id": "pippin", + "symbol": "pippin", + "name": "pippin" + }, + { + "id": "piratecash", + "symbol": "pirate", + "name": "PirateCash" + }, + { + "id": "pirate-chain", + "symbol": "arrr", + "name": "Pirate Chain" + }, + { + "id": "piratecoin", + "symbol": "piratecoin☠", + "name": "PirateCoin" + }, + { + "id": "pirate-dice", + "symbol": "booty", + "name": "Pirate Dice" + }, + { + "id": "pirate-token", + "symbol": "pirate", + "name": "Pirate Nation Token" + }, + { + "id": "pirb", + "symbol": "pirb", + "name": "PIRB" + }, + { + "id": "pisces", + "symbol": "pisces", + "name": "Pisces" + }, + { + "id": "pisscoin-2", + "symbol": "pisscoin", + "name": "Pisscoin" + }, + { + "id": "pissing-dog-farts", + "symbol": "pdf", + "name": "Pissing Dog Farts" + }, + { + "id": "pitaya", + "symbol": "pitaya", + "name": "Pitaya" + }, + { + "id": "pitbull", + "symbol": "pit", + "name": "Pitbull" + }, + { + "id": "pitbull-2", + "symbol": "$bull", + "name": "Pitbull" + }, + { + "id": "pitch-fxs", + "symbol": "pitchfxs", + "name": "Pitch FXS" + }, + { + "id": "pitch-lucy-ai", + "symbol": "lucyai", + "name": "Pitch Lucy AI" + }, + { + "id": "piteas", + "symbol": "pts", + "name": "Piteas" + }, + { + "id": "pithlabs", + "symbol": "pith", + "name": "PithLabs" + }, + { + "id": "pivx", + "symbol": "pivx", + "name": "PIVX" + }, + { + "id": "pixel-3", + "symbol": "pxl", + "name": "Pixel" + }, + { + "id": "pixel-battle-2", + "symbol": "pixel", + "name": "PIXEL BATTLE" + }, + { + "id": "pixels", + "symbol": "pixel", + "name": "Pixels" + }, + { + "id": "pixelverse", + "symbol": "pixel", + "name": "PixelVerse" + }, + { + "id": "pixelverse-xyz", + "symbol": "pixfi", + "name": "Pixelverse" + }, + { + "id": "pixi", + "symbol": "pixi", + "name": "Pixi" + }, + { + "id": "pixie", + "symbol": "pix", + "name": "Pixie" + }, + { + "id": "pixocracy", + "symbol": "pix", + "name": "Pixocracy" + }, + { + "id": "pixtel", + "symbol": "pixtel", + "name": "PIXTEL" + }, + { + "id": "pizabrc", + "symbol": "piza", + "name": "PIZA (Ordinals)" + }, + { + "id": "pizza", + "symbol": "pizza", + "name": "Pizza" + }, + { + "id": "pizza-brc20", + "symbol": "pizza", + "name": "Pizza (BRC-20)" + }, + { + "id": "pizza-cat", + "symbol": "piza", + "name": "Pizza Cat" + }, + { + "id": "pizza-gram", + "symbol": "pizza", + "name": "Pizza Gram" + }, + { + "id": "pizza-on-eth", + "symbol": "pizza", + "name": "Pizza" + }, + { + "id": "pjn", + "symbol": "pjn", + "name": "PJN" + }, + { + "id": "pkt", + "symbol": "pkt", + "name": "PKT" + }, + { + "id": "place-war", + "symbol": "place", + "name": "PlaceWar Governance" + }, + { + "id": "plan-bee", + "symbol": "planb", + "name": "Plan Bee" + }, + { + "id": "planck", + "symbol": "planck", + "name": "Planck" + }, + { + "id": "planet-finance", + "symbol": "aqua", + "name": "Planet Finance" + }, + { + "id": "planet-horse-v2", + "symbol": "phorse", + "name": "Planet Horse V2" + }, + { + "id": "planet-labs-xstock", + "symbol": "plx", + "name": "Planet Labs xStock" + }, + { + "id": "planet-mojo", + "symbol": "mojo", + "name": "Planet Mojo" + }, + { + "id": "planet-sandbox", + "symbol": "psb", + "name": "Planet Sandbox" + }, + { + "id": "planet-token", + "symbol": "planet", + "name": "Planet Token" + }, + { + "id": "planetwatch", + "symbol": "planets", + "name": "PlanetWatch" + }, + { + "id": "plankton-2", + "symbol": "plankton", + "name": "plankton" + }, + { + "id": "plankton-in-pain", + "symbol": "aaahhm", + "name": "Plankton in Pain" + }, + { + "id": "planktos", + "symbol": "plank", + "name": "Planktos" + }, + { + "id": "planq", + "symbol": "plq", + "name": "Planq" + }, + { + "id": "plant", + "symbol": "plant", + "name": "Plant" + }, + { + "id": "plantfun", + "symbol": "plantfun", + "name": "Plantfun" + }, + { + "id": "plants-vs-ronke", + "symbol": "pvr", + "name": "Plants VS Ronke" + }, + { + "id": "plant-vs-undead-token", + "symbol": "pvu", + "name": "Plant vs Undead" + }, + { + "id": "planz", + "symbol": "z", + "name": "PLANZ" + }, + { + "id": "plasma", + "symbol": "xpl", + "name": "Plasma" + }, + { + "id": "plasma-finance", + "symbol": "ppay", + "name": "Plasma Finance" + }, + { + "id": "plastichero", + "symbol": "pth", + "name": "PlasticHero" + }, + { + "id": "plastiks", + "symbol": "plastik", + "name": "Plastiks" + }, + { + "id": "plata-network", + "symbol": "plata", + "name": "Plata Network" + }, + { + "id": "platform-of-meme-coins", + "symbol": "payu", + "name": "Platform of meme coins" + }, + { + "id": "plath", + "symbol": "$plath", + "name": "PLATH" + }, + { + "id": "platon-network", + "symbol": "lat", + "name": "PlatON Network" + }, + { + "id": "platypus-finance", + "symbol": "ptp", + "name": "Platypus Finance" + }, + { + "id": "play-2", + "symbol": "play", + "name": "PLAY" + }, + { + "id": "play-3", + "symbol": "play", + "name": "Play" + }, + { + "id": "playa3ull-games-2", + "symbol": "3ull", + "name": "PLAYA3ULL GAMES" + }, + { + "id": "playable-coin", + "symbol": "pc", + "name": "Playable Coin" + }, + { + "id": "play-ai", + "symbol": "plai", + "name": "Play AI" + }, + { + "id": "playbux", + "symbol": "pbux", + "name": "Playbux" + }, + { + "id": "playcat", + "symbol": "pcat", + "name": "PlayCat" + }, + { + "id": "playcent", + "symbol": "pcnt", + "name": "Playcent" + }, + { + "id": "playdapp", + "symbol": "pda", + "name": "PlayDapp" + }, + { + "id": "playdoge", + "symbol": "$play", + "name": "Playdoge" + }, + { + "id": "player-2", + "symbol": "deo", + "name": "Player 2" + }, + { + "id": "playermon", + "symbol": "pym", + "name": "Playermon" + }, + { + "id": "playfi", + "symbol": "playfi", + "name": "PlayFi Studio" + }, + { + "id": "playfun", + "symbol": "playfun", + "name": "PLAYFUN" + }, + { + "id": "playmind", + "symbol": "plai", + "name": "PlayMind" + }, + { + "id": "playnity", + "symbol": "ply", + "name": "PlayNity" + }, + { + "id": "playpad", + "symbol": "ppad", + "name": "PlayPad" + }, + { + "id": "playrush", + "symbol": "$pr", + "name": "PlayRush" + }, + { + "id": "playsout", + "symbol": "play", + "name": "PlaysOut" + }, + { + "id": "play-to-create", + "symbol": "drn", + "name": "Doran" + }, + { + "id": "playzap", + "symbol": "pzp", + "name": "PlayZap" + }, + { + "id": "plaza-bondeth", + "symbol": "bondeth", + "name": "Plaza BondETH" + }, + { + "id": "plaza-leveth", + "symbol": "leveth", + "name": "Plaza LevETH" + }, + { + "id": "plazzy-the-dog", + "symbol": "plazzy", + "name": "Plazzy the dog" + }, + { + "id": "plearn", + "symbol": "pln", + "name": "PLEARN" + }, + { + "id": "pleasing-gold", + "symbol": "pgold", + "name": "Pleasing Gold" + }, + { + "id": "pleasing-usd", + "symbol": "pusd", + "name": "Pleasing USD" + }, + { + "id": "pleasure-coin", + "symbol": "nsfw", + "name": "Pleasure Coin" + }, + { + "id": "pleb", + "symbol": "pleb", + "name": "Pleb" + }, + { + "id": "pleb-2", + "symbol": "pleb", + "name": "pleb" + }, + { + "id": "plebbit", + "symbol": "pleb", + "name": "Plebbit" + }, + { + "id": "plebdreke", + "symbol": "bling", + "name": "PlebDreke" + }, + { + "id": "pleb-token", + "symbol": "pleb", + "name": "PLEB Token" + }, + { + "id": "plebz", + "symbol": "pleb", + "name": "Plebz" + }, + { + "id": "pledge-2", + "symbol": "pledge", + "name": "Pledge" + }, + { + "id": "plena", + "symbol": "plena", + "name": "Plena" + }, + { + "id": "plenty-dao", + "symbol": "plenty", + "name": "Plenty DeFi" + }, + { + "id": "plgnet", + "symbol": "plug", + "name": "PL^Gnet" + }, + { + "id": "plink-cat", + "symbol": "plink", + "name": "Plink Cat" + }, + { + "id": "plinkoincinerator", + "symbol": "plinc", + "name": "PlinkoIncinerator" + }, + { + "id": "plotx", + "symbol": "plot", + "name": "PlotX" + }, + { + "id": "plugin", + "symbol": "pli", + "name": "Plugin" + }, + { + "id": "plume", + "symbol": "plume", + "name": "Plume" + }, + { + "id": "plume-staked-eth", + "symbol": "peth", + "name": "Plume Staked ETH" + }, + { + "id": "plume-usd", + "symbol": "pusd", + "name": "Plume USD" + }, + { + "id": "plums", + "symbol": "plums", + "name": "PLUMS" + }, + { + "id": "plurcoin", + "symbol": "plur", + "name": "PLURcoin" + }, + { + "id": "plush-pepe", + "symbol": "ppepe", + "name": "Plush Pepe" + }, + { + "id": "pluto-2", + "symbol": "pluto", + "name": "PLUTO" + }, + { + "id": "pluto-3", + "symbol": "pluto", + "name": "Pluto" + }, + { + "id": "pluton", + "symbol": "plu", + "name": "Pluton" + }, + { + "id": "plutonian-dao", + "symbol": "pld", + "name": "Plutonian DAO" + }, + { + "id": "plutus", + "symbol": "plutus", + "name": "Plutus" + }, + { + "id": "plutus-arb", + "symbol": "plsarb", + "name": "Plutus ARB" + }, + { + "id": "plutusdao", + "symbol": "pls", + "name": "PlutusDAO" + }, + { + "id": "plutus-rdnt", + "symbol": "plsrdnt", + "name": "Plutus RDNT" + }, + { + "id": "plutus-syk", + "symbol": "plssyk", + "name": "Plutus SYK" + }, + { + "id": "plvglp", + "symbol": "plvglp", + "name": "plvGLP" + }, + { + "id": "plyr-l1", + "symbol": "plyr", + "name": "PLYR L1" + }, + { + "id": "pmcoin", + "symbol": "$pm", + "name": "PMCoin" + }, + { + "id": "pmx500", + "symbol": "pmx", + "name": "PMX500" + }, + { + "id": "pnetwork", + "symbol": "pnt", + "name": "pNetwork" + }, + { + "id": "pnp-exchange", + "symbol": "pnp", + "name": "PNP Exchange" + }, + { + "id": "pnut", + "symbol": "pnut", + "name": "Pnut" + }, + { + "id": "pnut-s-dog", + "symbol": "tucker", + "name": "Pnut's Dog" + }, + { + "id": "p-nut-s-freedom-farm", + "symbol": "good", + "name": "P’Nut's Freedom Farm" + }, + { + "id": "pnut-s-sister", + "symbol": "chloe", + "name": "Pnut's Sister" + }, + { + "id": "pnut-the-squirrel", + "symbol": "pnut", + "name": "Pnut the Squirrel" + }, + { + "id": "pochita", + "symbol": "pochita", + "name": "Pochita v2" + }, + { + "id": "pochita-2", + "symbol": "pochita", + "name": "Pochita" + }, + { + "id": "pochita-3", + "symbol": "pochita", + "name": "pochita" + }, + { + "id": "pochita-on-ethereum", + "symbol": "pochita", + "name": "Pochita on Ethereum" + }, + { + "id": "pockemy", + "symbol": "pkm", + "name": "Pockemy" + }, + { + "id": "pocketcoin", + "symbol": "pkoin", + "name": "Pocketcoin" + }, + { + "id": "pocket-network", + "symbol": "pokt", + "name": "Pocket Network" + }, + { + "id": "pocket-rocket", + "symbol": "$rocket", + "name": "Pocket Rocket" + }, + { + "id": "pocket-watcher-bot", + "symbol": "pocket", + "name": "Pocket Watcher Bot" + }, + { + "id": "pocoland", + "symbol": "poco", + "name": "Pocoland" + }, + { + "id": "podfast", + "symbol": "boost", + "name": "BitBoost" + }, + { + "id": "podflow-ai-by-virtuals", + "symbol": "pod", + "name": "Podflow AI by Virtuals" + }, + { + "id": "pofu", + "symbol": "pofu", + "name": "Pofu" + }, + { + "id": "pog", + "symbol": "pog", + "name": "Pog" + }, + { + "id": "pogai", + "symbol": "pogai", + "name": "POGAI" + }, + { + "id": "pogai-2", + "symbol": "pogai", + "name": "POGAI (BSC)" + }, + { + "id": "pogai-sol", + "symbol": "pogai", + "name": "POGAI (SOL)" + }, + { + "id": "poggers", + "symbol": "$poggers", + "name": "Poggers" + }, + { + "id": "pointpay-2", + "symbol": "pxp", + "name": "PointPay" + }, + { + "id": "points", + "symbol": "points", + "name": "Points" + }, + { + "id": "poison-finance", + "symbol": "poi$on", + "name": "Poison Finance" + }, + { + "id": "pojak", + "symbol": "pj", + "name": "Pojak" + }, + { + "id": "poken", + "symbol": "pkn", + "name": "Poken" + }, + { + "id": "poki", + "symbol": "poki", + "name": "POKI" + }, + { + "id": "pokpok-agent-brain-by-virtuals", + "symbol": "ctda", + "name": "PokPok Agent Brain by Virtuals" + }, + { + "id": "pokpok-golden-egg", + "symbol": "pegg", + "name": "PokPok Golden Egg" + }, + { + "id": "pola", + "symbol": "pola", + "name": "Pola On Base" + }, + { + "id": "polar-ai", + "symbol": "polar", + "name": "POLAR AI" + }, + { + "id": "polar-inu", + "symbol": "polar", + "name": "Polar Inu" + }, + { + "id": "polariscloud-ai", + "symbol": "sn49", + "name": "PolarisCloud.ai" + }, + { + "id": "polaris-share", + "symbol": "pola", + "name": "Polaris Share" + }, + { + "id": "polemos", + "symbol": "plms", + "name": "Polemos" + }, + { + "id": "police", + "symbol": "police", + "name": "POLICE" + }, + { + "id": "polinate", + "symbol": "poli", + "name": "Polinate" + }, + { + "id": "polis", + "symbol": "polis", + "name": "Polis" + }, + { + "id": "polite-cat", + "symbol": "pocat", + "name": "Polite Cat" + }, + { + "id": "politickle", + "symbol": "tickl", + "name": "Politickle" + }, + { + "id": "polkabridge", + "symbol": "pbr", + "name": "PolkaBridge" + }, + { + "id": "polka-city", + "symbol": "polc", + "name": "Polkacity" + }, + { + "id": "polkadex", + "symbol": "pdex", + "name": "Polkadex" + }, + { + "id": "polkadot", + "symbol": "dot", + "name": "Polkadot" + }, + { + "id": "polkafoundry", + "symbol": "pkf", + "name": "Red Kite" + }, + { + "id": "polkagold", + "symbol": "pgold", + "name": "Polkagold" + }, + { + "id": "polkamarkets", + "symbol": "polk", + "name": "Polkamarkets" + }, + { + "id": "polkapet-world", + "symbol": "pets", + "name": "PolkaPet World" + }, + { + "id": "polkarare", + "symbol": "prare", + "name": "Polkarare" + }, + { + "id": "polkastarter", + "symbol": "pols", + "name": "Polkastarter" + }, + { + "id": "polkaswap", + "symbol": "pswap", + "name": "Polkaswap" + }, + { + "id": "polkawar", + "symbol": "pwar", + "name": "PolkaWar" + }, + { + "id": "polker", + "symbol": "pkr", + "name": "Polker" + }, + { + "id": "pollen", + "symbol": "pln", + "name": "Pollen" + }, + { + "id": "pollen-2", + "symbol": "pollen", + "name": "Pollen" + }, + { + "id": "pollo", + "symbol": "pollo", + "name": "Pollo" + }, + { + "id": "pollux-coin", + "symbol": "pox", + "name": "Pollux Coin" + }, + { + "id": "polly", + "symbol": "polly", + "name": "Polly Finance" + }, + { + "id": "polly-defi-nest", + "symbol": "ndefi", + "name": "Polly DeFi Nest" + }, + { + "id": "pol-staked-wbera", + "symbol": "swbera", + "name": "POL Staked WBERA" + }, + { + "id": "polter-finance", + "symbol": "polter", + "name": "Polter" + }, + { + "id": "poly", + "symbol": "poly", + "name": "Poly" + }, + { + "id": "polyagent", + "symbol": "polyagent", + "name": "Polyagent" + }, + { + "id": "polycat-finance", + "symbol": "fish", + "name": "Polycat Finance" + }, + { + "id": "polychain-monsters", + "symbol": "pmon", + "name": "Protocol Monsters" + }, + { + "id": "polycub", + "symbol": "polycub", + "name": "PolyCub" + }, + { + "id": "polycule", + "symbol": "pcule", + "name": "Polycule" + }, + { + "id": "polydoge", + "symbol": "polydoge", + "name": "PolyDoge" + }, + { + "id": "polyfactual", + "symbol": "polyfacts", + "name": "Polyfactual" + }, + { + "id": "polygen", + "symbol": "pgen", + "name": "Polygen" + }, + { + "id": "polygod", + "symbol": "gull", + "name": "PolyGod" + }, + { + "id": "polygold", + "symbol": "polygold", + "name": "PolyGold" + }, + { + "id": "polygon-bridged-wbtc-polygon-pos", + "symbol": "wbtc", + "name": "Polygon Bridged WBTC (Polygon POS)" + }, + { + "id": "polygon-bridged-weeth-katana", + "symbol": "weeth", + "name": "Polygon Bridged weETH (Katana)" + }, + { + "id": "polygon-bridged-wsteth-polygon", + "symbol": "wsteth", + "name": "Polygon Bridged wstETH (Polygon)" + }, + { + "id": "polygon-ecosystem-token", + "symbol": "pol", + "name": "POL (ex-MATIC)" + }, + { + "id": "polygonfarm-finance", + "symbol": "spade", + "name": "PolygonFarm Finance" + }, + { + "id": "polygon-hermez-bridged-usdc-polygon-zkevm", + "symbol": "usdc", + "name": "Polygon Hermez Bridged USDC (Polygon zkEVM)" + }, + { + "id": "polygon-hermez-bridged-usdc-x-layer", + "symbol": "usdc", + "name": "Polygon Hermez Bridged USDC (X Layer)" + }, + { + "id": "polygon-hermez-bridged-usdt-polygon-zkevm", + "symbol": "usdt", + "name": "Polygon Hermez Bridged USDT (Polygon zkEVM)" + }, + { + "id": "polygon-hermez-bridged-usdt-x-layer", + "symbol": "usdt", + "name": "Polygon Hermez Bridged USDT (x Layer)" + }, + { + "id": "polygon-hermez-bridged-weth-polygon-zkevm", + "symbol": "weth", + "name": "Polygon Hermez Bridged WETH (Polygon zkEVM)" + }, + { + "id": "polygon-mascot", + "symbol": "poly", + "name": "POLYGON MASCOT" + }, + { + "id": "polygon-pos-bridged-dai-polygon-pos", + "symbol": "dai", + "name": "Polygon PoS Bridged DAI (Polygon POS)" + }, + { + "id": "polygon-pos-bridged-weth-polygon-pos", + "symbol": "weth", + "name": "Polygon PoS Bridged WETH (Polygon POS)" + }, + { + "id": "polygon-zkevm-bridged-dai-polygon-zkevm", + "symbol": "dai", + "name": "Polygon zkEVM Bridged DAI (Polygon zkEVM)" + }, + { + "id": "polygon-zkevm-bridged-wbtc-polygon-zkevm", + "symbol": "wbtc", + "name": "Polygon zkEVM Bridged WBTC (Polygon zkEVM)" + }, + { + "id": "polygon-zkevm-bridged-wsteth-katana", + "symbol": "wsteth", + "name": "Polygon zkEVM Bridged wstETH (Katana)" + }, + { + "id": "polyhedra-network", + "symbol": "zkj", + "name": "Polyhedra Network" + }, + { + "id": "polymarket", + "symbol": "poly", + "name": "Polymarket" + }, + { + "id": "polymask", + "symbol": "polymask", + "name": "Polymask" + }, + { + "id": "polymath", + "symbol": "poly", + "name": "Polymath" + }, + { + "id": "poly-meme-index", + "symbol": "polymi", + "name": "Poly Meme Index" + }, + { + "id": "polymesh", + "symbol": "polyx", + "name": "Polymesh" + }, + { + "id": "polymind", + "symbol": "polymind", + "name": "Polymind" + }, + { + "id": "polymtrade", + "symbol": "pm", + "name": "Polymtrade" + }, + { + "id": "polypad", + "symbol": "polypad", + "name": "PolyPad" + }, + { + "id": "poly-peg-mdex", + "symbol": "hmdx", + "name": "Poly-Peg Mdex" + }, + { + "id": "polyprophet", + "symbol": "pp", + "name": "Polyprophet" + }, + { + "id": "polypump", + "symbol": "polypump", + "name": "Polypump" + }, + { + "id": "polypup", + "symbol": "pup", + "name": "PolyPup" + }, + { + "id": "polyshield", + "symbol": "shi3ld", + "name": "PolyShield" + }, + { + "id": "polysports-2", + "symbol": "sports", + "name": "POLYSPORTS" + }, + { + "id": "polyswarm", + "symbol": "nct", + "name": "PolySwarm" + }, + { + "id": "polyswipe", + "symbol": "swipe", + "name": "Polyswipe" + }, + { + "id": "polytech", + "symbol": "ptce", + "name": "PolyTech" + }, + { + "id": "polytrade", + "symbol": "trade", + "name": "Polytrade" + }, + { + "id": "polytrader-by-virtuals", + "symbol": "poly", + "name": "Polytrader by Virtuals" + }, + { + "id": "polywhale", + "symbol": "krill", + "name": "Polywhale" + }, + { + "id": "polyyeld-token", + "symbol": "yeld", + "name": "PolyYeld" + }, + { + "id": "polyyield-token", + "symbol": "yield", + "name": "PolyYield" + }, + { + "id": "pom", + "symbol": "$pom", + "name": "POM" + }, + { + "id": "pomato", + "symbol": "pomato", + "name": "Pomato" + }, + { + "id": "pomcoin", + "symbol": "pom", + "name": "Pomcoin" + }, + { + "id": "pomerium-ecosystem", + "symbol": "pmg", + "name": "Pomerium Ecosystem Token" + }, + { + "id": "pomkori", + "symbol": "kori", + "name": "pomkori" + }, + { + "id": "ponchiqs", + "symbol": "ponch", + "name": "Ponchiqs" + }, + { + "id": "poncho", + "symbol": "poncho", + "name": "Poncho" + }, + { + "id": "pond-coin", + "symbol": "pndc", + "name": "PondCoin" + }, + { + "id": "ponder-one", + "symbol": "pndr", + "name": "Ponder One" + }, + { + "id": "pondo", + "symbol": "pndo", + "name": "Pondo" + }, + { + "id": "pongo", + "symbol": "pongo", + "name": "Pongo" + }, + { + "id": "ponk", + "symbol": "ponk", + "name": "Ponk" + }, + { + "id": "ponk-2", + "symbol": "ponk", + "name": "PONK" + }, + { + "id": "ponke", + "symbol": "ponke", + "name": "PONKE" + }, + { + "id": "ponkei-the-chinese-ponke", + "symbol": "ponkei", + "name": "Ponkei - The Chinese Ponke" + }, + { + "id": "ponke-ton", + "symbol": "ponke", + "name": "Ponke TON" + }, + { + "id": "pontem-liquidswap", + "symbol": "lsd", + "name": "Pontem Liquidswap" + }, + { + "id": "pontoon", + "symbol": "toon", + "name": "Pontoon" + }, + { + "id": "ponzi", + "symbol": "ponzi", + "name": "Ponzi" + }, + { + "id": "ponzichu", + "symbol": "pchu", + "name": "Ponzichu" + }, + { + "id": "ponzimon", + "symbol": "ponzi", + "name": "Ponzimon" + }, + { + "id": "ponzy", + "symbol": "ponzy", + "name": "Ponzy" + }, + { + "id": "poochain-powering-poo-fun", + "symbol": "poop", + "name": "PooChain V2" + }, + { + "id": "poocoin", + "symbol": "poocoin", + "name": "PooCoin" + }, + { + "id": "poodle", + "symbol": "poodl", + "name": "Poodl" + }, + { + "id": "poodlecoin", + "symbol": "poodle", + "name": "Poodlecoin" + }, + { + "id": "poodl-inu", + "symbol": "poodl", + "name": "Poodl Inu" + }, + { + "id": "poofcoin", + "symbol": "poofcoin", + "name": "Poofcoin" + }, + { + "id": "pooh", + "symbol": "pooh", + "name": "POOH" + }, + { + "id": "pooka-cannot-be-stopped", + "symbol": "pooka", + "name": "POOKA•CANNOT•BE•STOPPED" + }, + { + "id": "pooku", + "symbol": "$pooku", + "name": "Pooku" + }, + { + "id": "poolfans", + "symbol": "fans", + "name": "PoolFans" + }, + { + "id": "poollotto-finance", + "symbol": "plt", + "name": "Poollotto.finance" + }, + { + "id": "pooltogether", + "symbol": "pool", + "name": "PoolTogether" + }, + { + "id": "pooltogether-prize-usdc", + "symbol": "pusdc.e", + "name": "PoolTogether Prize USD Coin" + }, + { + "id": "pooltogether-prize-weth-aave", + "symbol": "pweth", + "name": "PoolTogether Prize WETH - Aave" + }, + { + "id": "poolz-finance-2", + "symbol": "poolx", + "name": "Poolz Finance" + }, + { + "id": "poom", + "symbol": "poom", + "name": "poom" + }, + { + "id": "poop", + "symbol": "poop", + "name": "Poop" + }, + { + "id": "poop-aura", + "symbol": "poop", + "name": "poop aura" + }, + { + "id": "poopcoin-poop", + "symbol": "poop", + "name": "Poopcoin" + }, + { + "id": "poor-doge", + "symbol": "pdoge", + "name": "Poor Doge" + }, + { + "id": "poors", + "symbol": "poors", + "name": "poors" + }, + { + "id": "pooti-relaunch", + "symbol": "pooti", + "name": "POOTI (RELAUNCH)" + }, + { + "id": "pop-2", + "symbol": "pop", + "name": "Zypher Network" + }, + { + "id": "popcat", + "symbol": "popcat", + "name": "Popcat" + }, + { + "id": "popcatwifhat", + "symbol": "popwif", + "name": "popcatwifhat" + }, + { + "id": "pop-chest-token", + "symbol": "pop", + "name": "POP Network" + }, + { + "id": "popcoin", + "symbol": "pop", + "name": "Popcoin" + }, + { + "id": "popcorn-meme", + "symbol": "pcorn", + "name": "Popcorn" + }, + { + "id": "popdog", + "symbol": "popdog", + "name": "POPDOG" + }, + { + "id": "popdog-2", + "symbol": "popdog", + "name": "POPDOG" + }, + { + "id": "popeye", + "symbol": "popeye", + "name": "POPEYE" + }, + { + "id": "pop-frog", + "symbol": "popfrog", + "name": "PopFrog" + }, + { + "id": "popg", + "symbol": "popg", + "name": "POPG" + }, + { + "id": "popi", + "symbol": "popi", + "name": "Popi" + }, + { + "id": "popi-4i", + "symbol": "popi", + "name": "PoPi 4i" + }, + { + "id": "popnut", + "symbol": "popnut", + "name": "POPNUT" + }, + { + "id": "popo", + "symbol": "popo", + "name": "POPO" + }, + { + "id": "popo-2", + "symbol": "popo", + "name": "Popo" + }, + { + "id": "popo-pepe-s-dog", + "symbol": "$popo", + "name": "Popo, Pepe's Dog" + }, + { + "id": "popo-the-cat", + "symbol": "popo", + "name": "Popo The Cat" + }, + { + "id": "popo-the-frog", + "symbol": "frop", + "name": "Popo The Frog" + }, + { + "id": "pop-planet", + "symbol": "p", + "name": "PoP Planet" + }, + { + "id": "poppy", + "symbol": "poppy", + "name": "Poppy" + }, + { + "id": "poppy-2", + "symbol": "poppy", + "name": "Poppy" + }, + { + "id": "popsmile", + "symbol": "popsmile", + "name": "Popsmile" + }, + { + "id": "pop-token", + "symbol": "ppt", + "name": "Pop Token" + }, + { + "id": "popu", + "symbol": "popu", + "name": "Popu" + }, + { + "id": "populous", + "symbol": "ppt", + "name": "Populous" + }, + { + "id": "pork", + "symbol": "pork", + "name": "Pork" + }, + { + "id": "porky-pig-party", + "symbol": "ppp", + "name": "PORKY PIG PARTY" + }, + { + "id": "pornrocket", + "symbol": "pornrocket", + "name": "PornRocket" + }, + { + "id": "port3-network", + "symbol": "port3", + "name": "Port3 Network" + }, + { + "id": "portal-2", + "symbol": "portal", + "name": "Portal" + }, + { + "id": "portal-network-token", + "symbol": "poe", + "name": "Portal Network Token" + }, + { + "id": "portals", + "symbol": "portals", + "name": "Portals" + }, + { + "id": "portal-to-bitcoin", + "symbol": "ptb", + "name": "Portal to Bitcoin" + }, + { + "id": "port-finance", + "symbol": "port", + "name": "Port Finance" + }, + { + "id": "portugal-national-team-fan-token", + "symbol": "por", + "name": "Portugal National Team Fan Token" + }, + { + "id": "portuma", + "symbol": "por", + "name": "Portuma" + }, + { + "id": "porygon", + "symbol": "pory", + "name": "Porygon" + }, + { + "id": "poscidondao-token", + "symbol": "sci", + "name": "PoSciDonDAO Token" + }, + { + "id": "poseidon-3", + "symbol": "poseidon", + "name": "Poseidon" + }, + { + "id": "position-token", + "symbol": "posi", + "name": "Position" + }, + { + "id": "possum", + "symbol": "psm", + "name": "Possum" + }, + { + "id": "posthuman", + "symbol": "phmn", + "name": "POSTHUMAN" + }, + { + "id": "potato-3", + "symbol": "potato", + "name": "Potato" + }, + { + "id": "potcoin", + "symbol": "pot", + "name": "Potcoin" + }, + { + "id": "pou", + "symbol": "pou", + "name": "Pou" + }, + { + "id": "povel-durev", + "symbol": "durev", + "name": "Povel Durev" + }, + { + "id": "powerball", + "symbol": "ball", + "name": "POWERBALL" + }, + { + "id": "powercity-earn-protocol", + "symbol": "earn", + "name": "POWERCITY Earn Protocol" + }, + { + "id": "powercity-pxdc", + "symbol": "pxdc", + "name": "PXDC" + }, + { + "id": "powercity-watt", + "symbol": "watt", + "name": "POWERCITY WATT" + }, + { + "id": "power-ledger", + "symbol": "powr", + "name": "Powerledger" + }, + { + "id": "powerloom", + "symbol": "power", + "name": "Powerloom" + }, + { + "id": "power-play", + "symbol": "power", + "name": "Power Play" + }, + { + "id": "powersnookercoin", + "symbol": "psc", + "name": "PowerSnookerCoin" + }, + { + "id": "power-staked-sol", + "symbol": "pwrsol", + "name": "Power Staked SOL" + }, + { + "id": "power-the-baby-white-rhino", + "symbol": "power", + "name": "Power The Baby White Rhino" + }, + { + "id": "power-token", + "symbol": "pwr", + "name": "Power Token" + }, + { + "id": "powertrade-fuel", + "symbol": "ptf", + "name": "PowerTrade Fuel" + }, + { + "id": "powsche", + "symbol": "powsche", + "name": "POWSCHE" + }, + { + "id": "pozi", + "symbol": "pozi", + "name": "Pozi" + }, + { + "id": "ppkas", + "symbol": "ppkas", + "name": "PPKAS" + }, + { + "id": "pqx", + "symbol": "pqx", + "name": "PQX" + }, + { + "id": "praist", + "symbol": "praist", + "name": "Praist" + }, + { + "id": "praxis", + "symbol": "prxs", + "name": "Praxis" + }, + { + "id": "prcy-coin", + "symbol": "prcy", + "name": "PRivaCY Coin" + }, + { + "id": "pre", + "symbol": "pre", + "name": "Pre" + }, + { + "id": "precipitate-ai", + "symbol": "rain", + "name": "Precipitate.ai" + }, + { + "id": "precog", + "symbol": "sn52", + "name": "Precog" + }, + { + "id": "predi", + "symbol": "predi", + "name": "Predi by Virtuals" + }, + { + "id": "predict-2", + "symbol": "predict", + "name": "predict" + }, + { + "id": "predict-crypto", + "symbol": "preai", + "name": "Predict Crypto" + }, + { + "id": "prediction-arena", + "symbol": "arena", + "name": "Prediction Arena" + }, + { + "id": "predictions", + "symbol": "prdt", + "name": "Predictions" + }, + { + "id": "predify", + "symbol": "predify", + "name": "Predify" + }, + { + "id": "prediqt-2", + "symbol": "prqt", + "name": "Prediqt" + }, + { + "id": "prefrontal-cortex-convo-agent-by-virtuals", + "symbol": "convo", + "name": "Prefrontal Cortex Convo Agent by Virtuals" + }, + { + "id": "preme-token", + "symbol": "preme", + "name": "PREME Token" + }, + { + "id": "premia", + "symbol": "premia", + "name": "Premia" + }, + { + "id": "preon-star", + "symbol": "star", + "name": "Star" + }, + { + "id": "preprints-io", + "symbol": "prnt", + "name": "Preprints.io" + }, + { + "id": "pre-retogeum", + "symbol": "prtg", + "name": "Pre-Retogeum" + }, + { + "id": "prerich", + "symbol": "prerich", + "name": "prerich" + }, + { + "id": "presearch", + "symbol": "pre", + "name": "Presearch" + }, + { + "id": "president-exe", + "symbol": "aimaga", + "name": "President.exe" + }, + { + "id": "president-platy", + "symbol": "platy", + "name": "President PLATY" + }, + { + "id": "president-red", + "symbol": "presi", + "name": "President Red" + }, + { + "id": "pre-sp", + "symbol": "psp", + "name": "Pre-SP" + }, + { + "id": "pressdog", + "symbol": "press", + "name": "PressDog" + }, + { + "id": "price-ai", + "symbol": "priceai", + "name": "Price Ai" + }, + { + "id": "priceless", + "symbol": "priceless", + "name": "Priceless" + }, + { + "id": "priceless-2", + "symbol": "priceless", + "name": "priceless" + }, + { + "id": "prick", + "symbol": "prick", + "name": "Prick" + }, + { + "id": "pridexa", + "symbol": "prdx", + "name": "Pridexa" + }, + { + "id": "prima-donna", + "symbol": "donna", + "name": "Prima Donna" + }, + { + "id": "primal-b3099cd0-995a-4311-80d5-9c133153b38e", + "symbol": "primal", + "name": "PRIMAL" + }, + { + "id": "primate", + "symbol": "primate", + "name": "Primate" + }, + { + "id": "prime", + "symbol": "d2d", + "name": "Prime" + }, + { + "id": "prime-2", + "symbol": "prime", + "name": "DeltaPrime" + }, + { + "id": "prime-3", + "symbol": "$prime", + "name": "PRIME" + }, + { + "id": "primeace", + "symbol": "peace", + "name": "PrimeACE" + }, + { + "id": "primeape", + "symbol": "apes", + "name": "PRIMEAPE" + }, + { + "id": "primecoin", + "symbol": "xpm", + "name": "Primecoin" + }, + { + "id": "primefi", + "symbol": "prfi", + "name": "Prime Numbers Labs" + }, + { + "id": "primelayer", + "symbol": "prml", + "name": "PrimeLayer" + }, + { + "id": "prime-staked-xdc", + "symbol": "psxdc", + "name": "Prime Staked XDC" + }, + { + "id": "primex-finance", + "symbol": "pmx", + "name": "Primex Finance" + }, + { + "id": "primoai", + "symbol": "$primo", + "name": "PrimoAI" + }, + { + "id": "prince", + "symbol": "prince", + "name": "Prince" + }, + { + "id": "principals-network", + "symbol": "pnet", + "name": "Principals Network" + }, + { + "id": "print", + "symbol": "print", + "name": "Print" + }, + { + "id": "printer-ai", + "symbol": "print", + "name": "Printer AI" + }, + { + "id": "print-protocol", + "symbol": "print", + "name": "Print Protocol" + }, + { + "id": "prism", + "symbol": "prism", + "name": "Prism" + }, + { + "id": "prism-2", + "symbol": "prism", + "name": "Prism" + }, + { + "id": "prisma-governance-token", + "symbol": "prisma", + "name": "Prisma Governance Token" + }, + { + "id": "prism-ai", + "symbol": "prsai", + "name": "Prism AI" + }, + { + "id": "prisma-mkusd", + "symbol": "mkusd", + "name": "Prisma mkUSD" + }, + { + "id": "privapp-network", + "symbol": "bpriva", + "name": "Privapp Network" + }, + { + "id": "privasea-ai", + "symbol": "prai", + "name": "Privasea AI" + }, + { + "id": "privateai", + "symbol": "pgpt", + "name": "PrivateAI" + }, + { + "id": "private-aviation-finance-token", + "symbol": "cino", + "name": "Private Aviation Finance Token" + }, + { + "id": "privateum", + "symbol": "pri", + "name": "Privateum Global" + }, + { + "id": "privcy", + "symbol": "priv", + "name": "PRiVCY" + }, + { + "id": "privex-protocol", + "symbol": "pvx", + "name": "Privex Protocol" + }, + { + "id": "privix-2", + "symbol": "privix", + "name": "Privix [OLD]" + }, + { + "id": "privix-3", + "symbol": "privix", + "name": "Privix" + }, + { + "id": "prizm", + "symbol": "pzm", + "name": "Prizm" + }, + { + "id": "prm-token", + "symbol": "prm", + "name": "PRM Token" + }, + { + "id": "prnt", + "symbol": "prnt", + "name": "PRNT" + }, + { + "id": "probinex", + "symbol": "pbx", + "name": "Probinex" + }, + { + "id": "probit-exchange", + "symbol": "prob", + "name": "Probit" + }, + { + "id": "probity", + "symbol": "probity", + "name": "Probity" + }, + { + "id": "procter-gamble-ondo-tokenized-stock", + "symbol": "pgon", + "name": "Procter & Gamble (Ondo Tokenized Stock)" + }, + { + "id": "procter-gamble-xstock", + "symbol": "pgx", + "name": "Procter & Gamble xStock" + }, + { + "id": "prodigy-bot", + "symbol": "pro", + "name": "Prodigy Bot" + }, + { + "id": "productclank", + "symbol": "$pro", + "name": "ProductClank" + }, + { + "id": "professional-fighters-league-fan-token", + "symbol": "pfl", + "name": "Professional Fighters League Fan Token" + }, + { + "id": "profit-ai", + "symbol": "profit", + "name": "PROFIT AI" + }, + { + "id": "project-32", + "symbol": "32", + "name": "Project 32" + }, + { + "id": "project89", + "symbol": "project89", + "name": "Project89 [OLD]" + }, + { + "id": "project-89", + "symbol": "project89", + "name": "Project 89" + }, + { + "id": "project89-2", + "symbol": "project89", + "name": "Project 89" + }, + { + "id": "project-aeon", + "symbol": "aeon", + "name": "Project AEON" + }, + { + "id": "project-aeon-2", + "symbol": "aeon", + "name": "Project AEON" + }, + { + "id": "project-ailey", + "symbol": "ale", + "name": "Project Ailey" + }, + { + "id": "project-ascend", + "symbol": "ascend", + "name": "Project Ascend" + }, + { + "id": "project-dojo", + "symbol": "dojo", + "name": "Project Dojo" + }, + { + "id": "project-galaxy", + "symbol": "gal", + "name": "GAL (migrated to Gravity - G)" + }, + { + "id": "project-merlin", + "symbol": "mrln", + "name": "Project Merlin" + }, + { + "id": "project-mirai", + "symbol": "mirai", + "name": "Project MIRAI" + }, + { + "id": "project-nostradamus", + "symbol": "$amen", + "name": "Project Nostradamus" + }, + { + "id": "project-oasis", + "symbol": "oasis", + "name": "ProjectOasis" + }, + { + "id": "project-plutus", + "symbol": "ppcoin", + "name": "Project Plutus" + }, + { + "id": "project-rescue", + "symbol": "rescue", + "name": "Project Rescue" + }, + { + "id": "project-rocket", + "symbol": "rocket", + "name": "Project Rocket" + }, + { + "id": "project-with", + "symbol": "wiken", + "name": "Project WITH" + }, + { + "id": "project-xeno", + "symbol": "gxe", + "name": "PROJECT XENO" + }, + { + "id": "prol-ai", + "symbol": "prol", + "name": "Prol AI" + }, + { + "id": "prometeus", + "symbol": "prom", + "name": "Prom" + }, + { + "id": "prometheus-waluigi", + "symbol": "prome", + "name": "Prometheus Waluigi" + }, + { + "id": "promise", + "symbol": "promise", + "name": "Promise" + }, + { + "id": "promote", + "symbol": "pro", + "name": "Promote" + }, + { + "id": "promptale-ai", + "symbol": "tale", + "name": "PrompTale AI" + }, + { + "id": "promptbidder", + "symbol": "prompt", + "name": "PromptBidder" + }, + { + "id": "promptide", + "symbol": "promptide", + "name": "PromptIDE" + }, + { + "id": "pronouns-are-that-coin", + "symbol": "him", + "name": "pronouns are that/coin" + }, + { + "id": "proof-of-gorila", + "symbol": "pog", + "name": "Proof Of Gorila" + }, + { + "id": "proof-of-liquidity", + "symbol": "pol", + "name": "Proof Of Liquidity" + }, + { + "id": "proof-of-pepe-art", + "symbol": "pop", + "name": "Proof of Pepe Art" + }, + { + "id": "proof-platform", + "symbol": "proof", + "name": "PROOF Platform" + }, + { + "id": "propbase", + "symbol": "props", + "name": "Propbase" + }, + { + "id": "prop-by-financia-futures", + "symbol": "prop", + "name": "$PROP by Financia Futures" + }, + { + "id": "propchain", + "symbol": "propc", + "name": "Propchain" + }, + { + "id": "propel-token", + "symbol": "pel", + "name": "Propel" + }, + { + "id": "prophet", + "symbol": "pro", + "name": "Prophet" + }, + { + "id": "prophet-3", + "symbol": "propht", + "name": "Prophet" + }, + { + "id": "prophet-of-ethereum", + "symbol": "prophet", + "name": "Prophet of Ethereum" + }, + { + "id": "proprietary-trading-network", + "symbol": "sn8", + "name": "Proprietary Trading Network" + }, + { + "id": "proptech", + "symbol": "ptek", + "name": "PropTech" + }, + { + "id": "propy", + "symbol": "pro", + "name": "Propy" + }, + { + "id": "prospective", + "symbol": "pros", + "name": "Prospective" + }, + { + "id": "prosper", + "symbol": "pros", + "name": "Prosper [OLD]" + }, + { + "id": "prosper-2", + "symbol": "pros", + "name": "Prosper" + }, + { + "id": "prospera-tax-credit", + "symbol": "ptc", + "name": "Prospera Tax Credit" + }, + { + "id": "proteo-defi", + "symbol": "proteo", + "name": "Proteo DeFi" + }, + { + "id": "protocol-net-gain", + "symbol": "png", + "name": "Protocol Net Gain" + }, + { + "id": "proto-gyro-dollar", + "symbol": "p-gyd", + "name": "Proto Gyro Dollar" + }, + { + "id": "protoken", + "symbol": "pro", + "name": "Protoken" + }, + { + "id": "protokols", + "symbol": "kol", + "name": "ProtoKOLs" + }, + { + "id": "proton", + "symbol": "xpr", + "name": "XPR Network" + }, + { + "id": "proton-loan", + "symbol": "loan", + "name": "Loan Protocol" + }, + { + "id": "provenance-fact-check", + "symbol": "prov", + "name": "Provenance Fact-check" + }, + { + "id": "proximax", + "symbol": "xpx", + "name": "Sirius Chain" + }, + { + "id": "prystine", + "symbol": "prys", + "name": "Prystine" + }, + { + "id": "pryzm", + "symbol": "pryzm", + "name": "Pryzm" + }, + { + "id": "psa10-coin", + "symbol": "grail", + "name": "psa10 coin" + }, + { + "id": "pseudo-reality", + "symbol": "pseudo", + "name": "PSEUDO REALITY" + }, + { + "id": "psol", + "symbol": "psol", + "name": "pSOL" + }, + { + "id": "pstake-finance", + "symbol": "pstake", + "name": "pSTAKE Finance" + }, + { + "id": "pstake-staked-bitcoin", + "symbol": "ybtc", + "name": "pSTAKE Staked Bitcoin" + }, + { + "id": "pstake-staked-bnb", + "symbol": "stkbnb", + "name": "pSTAKE Staked BNB" + }, + { + "id": "pstake-staked-dydx", + "symbol": "stkdydx", + "name": "pSTAKE Staked DYDX" + }, + { + "id": "pstake-staked-huahua", + "symbol": "stkhuahua", + "name": "pSTAKE Staked HUAHUA" + }, + { + "id": "pstake-staked-stars", + "symbol": "stkstars", + "name": "pSTAKE Staked STARS" + }, + { + "id": "psx", + "symbol": "psx", + "name": "PSX" + }, + { + "id": "psydao", + "symbol": "psy", + "name": "PsyDAO" + }, + { + "id": "psynova-token", + "symbol": "psy", + "name": "PsyNova Token" + }, + { + "id": "psyop", + "symbol": "psyop", + "name": "PSYOP" + }, + { + "id": "psyop-2", + "symbol": "psyop", + "name": "PSYOP" + }, + { + "id": "psyopcat", + "symbol": "psyop", + "name": "PSYOPCAT" + }, + { + "id": "psyopcoin", + "symbol": "psyop", + "name": "PsyopCoin" + }, + { + "id": "psyoptions", + "symbol": "psy", + "name": "PsyFi" + }, + { + "id": "psy-the-cat", + "symbol": "psycat", + "name": "Psy The Cat" + }, + { + "id": "ptokens-btc", + "symbol": "pbtc", + "name": "pTokens BTC [OLD]" + }, + { + "id": "ptokens-ore", + "symbol": "ore", + "name": "ORE Network" + }, + { + "id": "pube-finance", + "symbol": "pube", + "name": "Pube Finance" + }, + { + "id": "pubhouse-dominance-index", + "symbol": "pub", + "name": "Pubhouse Dominance Index" + }, + { + "id": "publc", + "symbol": "publx", + "name": "PUBLC" + }, + { + "id": "publicai", + "symbol": "public", + "name": "PublicAI" + }, + { + "id": "public-meme-token", + "symbol": "pmt", + "name": "Public Masterpiece Token" + }, + { + "id": "public-mint", + "symbol": "mint", + "name": "Public Mint" + }, + { + "id": "pudgy-penguins", + "symbol": "pengu", + "name": "Pudgy Penguins" + }, + { + "id": "pudgystrategy", + "symbol": "pudgystr", + "name": "PudgyStrategy" + }, + { + "id": "pudgystrategy-2", + "symbol": "pdgystr", + "name": "PudgyStrategy" + }, + { + "id": "pufeth", + "symbol": "pufeth", + "name": "pufETH" + }, + { + "id": "puff", + "symbol": "puff", + "name": "PUFF" + }, + { + "id": "puff-2", + "symbol": "puff", + "name": "puff" + }, + { + "id": "puffer-finance", + "symbol": "puffer", + "name": "Puffer" + }, + { + "id": "puff-the-dragon", + "symbol": "puff", + "name": "Puff The Dragon" + }, + { + "id": "puffverse", + "symbol": "pfvs", + "name": "Puffverse" + }, + { + "id": "puffy", + "symbol": "puffy", + "name": "Puffy" + }, + { + "id": "puge", + "symbol": "puge", + "name": "Puge" + }, + { + "id": "pugg", + "symbol": "pugg", + "name": "Pugg" + }, + { + "id": "puggy", + "symbol": "puggy", + "name": "PUGGY" + }, + { + "id": "pug-inu", + "symbol": "pug", + "name": "Pug Inu" + }, + { + "id": "pugwifhat", + "symbol": "pugwif", + "name": "PUGWIFHAT" + }, + { + "id": "pullix", + "symbol": "plx", + "name": "Pullix" + }, + { + "id": "pulsara", + "symbol": "sara", + "name": "Pulsara" + }, + { + "id": "pulse-2", + "symbol": "xpl", + "name": "Pulse" + }, + { + "id": "pulsebitcoin", + "symbol": "plsb", + "name": "PulseBitcoin" + }, + { + "id": "pulsebitcoin-pulsechain", + "symbol": "plsb", + "name": "PulseBitcoin (PulseChain)" + }, + { + "id": "pulsechain", + "symbol": "pls", + "name": "PulseChain" + }, + { + "id": "pulsechain-bridged-hex-pulsechain", + "symbol": "hex", + "name": "Pulsechain Bridged HEX (Pulsechain)" + }, + { + "id": "pulsechain-bridged-weth-pulsechain", + "symbol": "weth", + "name": "Pulsechain Bridged WETH (Pulsechain)" + }, + { + "id": "pulsechain-flow", + "symbol": "flow", + "name": "Pulsechain FLOW" + }, + { + "id": "pulsechain-peacock", + "symbol": "pcock", + "name": "PulseChain Peacock" + }, + { + "id": "pulsecoin", + "symbol": "plsc", + "name": "PulseCoin" + }, + { + "id": "pulsedoge", + "symbol": "pulsedoge", + "name": "PulseDoge" + }, + { + "id": "pulse-drip", + "symbol": "pdrip", + "name": "Pulse Drip" + }, + { + "id": "pulse-inu-2", + "symbol": "pinu", + "name": "Pulse Inu" + }, + { + "id": "pulseium", + "symbol": "psm", + "name": "Pulseium" + }, + { + "id": "pulseln", + "symbol": "pln", + "name": "PulseLN" + }, + { + "id": "pulsepad", + "symbol": "plspad", + "name": "PulsePad" + }, + { + "id": "pulsepot", + "symbol": "plsp", + "name": "PulsePot" + }, + { + "id": "pulsereflections", + "symbol": "prs", + "name": "PulseReflections" + }, + { + "id": "pulsesend", + "symbol": "send", + "name": "PulseSend" + }, + { + "id": "pulse-token", + "symbol": "pulse", + "name": "PulseMarkets" + }, + { + "id": "pulsetrailerpark", + "symbol": "ptp", + "name": "PulseTrailerPark" + }, + { + "id": "pulsex", + "symbol": "plsx", + "name": "PulseX" + }, + { + "id": "pulsex-incentive-token", + "symbol": "inc", + "name": "PulseX Incentive Token" + }, + { + "id": "pulsr", + "symbol": "pulsr", + "name": "PULSR" + }, + { + "id": "pulsr-2", + "symbol": "$pulsr", + "name": "PULSR" + }, + { + "id": "puma", + "symbol": "puma", + "name": "Puma" + }, + { + "id": "pumapay", + "symbol": "pma", + "name": "PumaPay" + }, + { + "id": "pumlx", + "symbol": "pumlx", + "name": "PUMLx" + }, + { + "id": "pump", + "symbol": "pump", + "name": "Pump" + }, + { + "id": "pump-2", + "symbol": "pump", + "name": "PUMP" + }, + { + "id": "pumpai", + "symbol": "pumpai", + "name": "PUMPAI" + }, + { + "id": "pumpbase", + "symbol": "pumpbase", + "name": "PumpBase" + }, + { + "id": "pumpbtc", + "symbol": "pumpbtc", + "name": "pumpBTC" + }, + { + "id": "pumpbtc-2", + "symbol": "pump", + "name": "PumpBTC" + }, + { + "id": "pumpcat", + "symbol": "pumpcat", + "name": "Pumpcat" + }, + { + "id": "pumpcorn", + "symbol": "pumpcorn", + "name": "PUMPCORN" + }, + { + "id": "pumpfarm-2", + "symbol": "pills", + "name": "PumpFarm" + }, + { + "id": "pump-fun", + "symbol": "pump", + "name": "Pump.fun" + }, + { + "id": "pumpfun-pepe", + "symbol": "pfp", + "name": "Pumpfun Pepe" + }, + { + "id": "pump-fun-puppet", + "symbol": "puppet", + "name": "Pump Fun Puppet" + }, + { + "id": "pump-halloween-cult", + "symbol": "halloween", + "name": "PUMP Halloween Cult 🎃" + }, + { + "id": "pumphotel", + "symbol": "ph", + "name": "Pumphotel" + }, + { + "id": "pumpit", + "symbol": "pumpit", + "name": "Pumpit" + }, + { + "id": "pumpkin-3", + "symbol": "pkin", + "name": "Pumpkin" + }, + { + "id": "pumpkin-4", + "symbol": "pkin", + "name": "Pumpkin" + }, + { + "id": "pumpkin-5", + "symbol": "pumpkin", + "name": "Pumpkin" + }, + { + "id": "pumpkinhead-by", + "symbol": "pumpkin", + "name": "Pumpkinhead" + }, + { + "id": "pumpkin-token", + "symbol": "pumpkin", + "name": "PUMPKIN TOKEN" + }, + { + "id": "pumpless-coin", + "symbol": "pumpless", + "name": "PUMPLESS COIN" + }, + { + "id": "pumpmeme", + "symbol": "pm", + "name": "PumpMeme" + }, + { + "id": "pumpmindvirus", + "symbol": "pmv", + "name": "PumpMindVirus" + }, + { + "id": "pumpopoly", + "symbol": "pumpopoly", + "name": "Pumpopoly" + }, + { + "id": "pumpr", + "symbol": "pumpr", + "name": "Pumpr" + }, + { + "id": "pumps-gone-crazy", + "symbol": "pgc", + "name": "Pumps Gone Crazy" + }, + { + "id": "pump-trump", + "symbol": "pumptrump", + "name": "PUMP TRUMP" + }, + { + "id": "pumpy", + "symbol": "pumpy", + "name": "Pumpy" + }, + { + "id": "punching-cat", + "symbol": "punch", + "name": "Punching Cat" + }, + { + "id": "pundi-aifx", + "symbol": "pundiai", + "name": "Pundi AI" + }, + { + "id": "pundi-aifx-omnilayer-bridged-usdt-pundi-aidx-omnilayer", + "symbol": "usdt", + "name": "Pundi AIFX Omnilayer Bridged USDT (Pundi AIFX Omnilayer)" + }, + { + "id": "pundi-x", + "symbol": "npxs", + "name": "Pundi X [OLD]" + }, + { + "id": "pundi-x-2", + "symbol": "pundix", + "name": "Pundi X" + }, + { + "id": "pundi-x-purse", + "symbol": "purse", + "name": "Pundi X PURSE" + }, + { + "id": "pundu", + "symbol": "pundu", + "name": "Pundu" + }, + { + "id": "punk-2", + "symbol": "punk", + "name": "PunkCity" + }, + { + "id": "punk-3", + "symbol": "spunk", + "name": "PUNK" + }, + { + "id": "punk3493", + "symbol": "punk3493", + "name": "PUNK3493" + }, + { + "id": "punk-auction", + "symbol": "past", + "name": "Punk Auction" + }, + { + "id": "punkko", + "symbol": "pun", + "name": "Punkko" + }, + { + "id": "punkstrategy", + "symbol": "pnkstr", + "name": "PunkStrategy" + }, + { + "id": "punkswap", + "symbol": "punk", + "name": "PunkSwap" + }, + { + "id": "punk-vault-nftx", + "symbol": "punk", + "name": "Punk Vault (NFTX)" + }, + { + "id": "punky", + "symbol": "punky", + "name": "PUNKY" + }, + { + "id": "pup", + "symbol": "pup", + "name": "PUP" + }, + { + "id": "pup-doge", + "symbol": "pupdoge", + "name": "Pup Doge" + }, + { + "id": "pupfun", + "symbol": "pup", + "name": "pupfun" + }, + { + "id": "pupnance", + "symbol": "pupx", + "name": "Pupnance" + }, + { + "id": "puppacoin", + "symbol": "$puppa", + "name": "PuppaCoin" + }, + { + "id": "puppers", + "symbol": "puppers", + "name": "PUPPERS" + }, + { + "id": "puppets-arts-2", + "symbol": "puppets", + "name": "Puppets Coin" + }, + { + "id": "puppet-strategy", + "symbol": "puppetstr", + "name": "Puppet Strategy" + }, + { + "id": "pups-ordinals", + "symbol": "pups", + "name": "PUPS (Ordinals) [OLD]" + }, + { + "id": "pup-token", + "symbol": "pup", + "name": "PUP Token" + }, + { + "id": "pupu", + "symbol": "pupu", + "name": "Pupu" + }, + { + "id": "purefi", + "symbol": "ufi", + "name": "PureFi" + }, + { + "id": "pure-unadulterated-bliss", + "symbol": "pub", + "name": "Pure Unadulterated Bliss" + }, + { + "id": "puriever", + "symbol": "pure", + "name": "Puriever" + }, + { + "id": "purp", + "symbol": "$purp", + "name": "Purp" + }, + { + "id": "purple", + "symbol": "purple", + "name": "Purple" + }, + { + "id": "purple-ai", + "symbol": "pai", + "name": "Purple AI" + }, + { + "id": "purple-bitcoin", + "symbol": "pbtc", + "name": "Purple Bitcoin" + }, + { + "id": "purple-pepe", + "symbol": "purpe", + "name": "PURPLE PEPE" + }, + { + "id": "purple-toshi", + "symbol": "poshi", + "name": "Purple Toshi" + }, + { + "id": "purpose", + "symbol": "prps", + "name": "Purpose" + }, + { + "id": "purr-2", + "symbol": "purr", + "name": "Purr" + }, + { + "id": "purrcoin", + "symbol": "purr", + "name": "purrcoin" + }, + { + "id": "purrcy", + "symbol": "purrcy", + "name": "Purrcy" + }, + { + "id": "purrfect-universe", + "symbol": "pur", + "name": "Purrfect Universe" + }, + { + "id": "purrzival", + "symbol": "purrzival", + "name": "Purrzival" + }, + { + "id": "pusd", + "symbol": "pusd", + "name": "PUSD_Polyquity" + }, + { + "id": "push", + "symbol": "push", + "name": "Pushcat" + }, + { + "id": "puso", + "symbol": "puso", + "name": "PUSO" + }, + { + "id": "puss", + "symbol": "puss", + "name": "Puss" + }, + { + "id": "pusscat", + "symbol": "puss", + "name": "Pusscat" + }, + { + "id": "pussy-financial", + "symbol": "pussy", + "name": "Pussy Financial" + }, + { + "id": "puush-da-button", + "symbol": "puush", + "name": "puush da button" + }, + { + "id": "puzzle-swap", + "symbol": "puzzle", + "name": "Puzzle Swap" + }, + { + "id": "pvc-meta", + "symbol": "pvc", + "name": "PVC META" + }, + { + "id": "pve", + "symbol": "pve", + "name": "pve" + }, + { + "id": "pvs", + "symbol": "pvs", + "name": "PVS" + }, + { + "id": "pwease", + "symbol": "pwease", + "name": "Pwease" + }, + { + "id": "pwog", + "symbol": "pwog", + "name": "PWOG" + }, + { + "id": "pylot-fun", + "symbol": "pylot", + "name": "Pylot.fun" + }, + { + "id": "pyrate", + "symbol": "pyrate", + "name": "PYRATE" + }, + { + "id": "pyrin", + "symbol": "pyi", + "name": "Pyrin" + }, + { + "id": "pyth-eth", + "symbol": "pytheth", + "name": "Pyth ETH" + }, + { + "id": "pythia", + "symbol": "pythia", + "name": "PYTHIA" + }, + { + "id": "pyth-network", + "symbol": "pyth", + "name": "Pyth Network" + }, + { + "id": "pyth-usdc", + "symbol": "pythusdc", + "name": "Pyth USDC" + }, + { + "id": "q", + "symbol": "q", + "name": "Q" + }, + { + "id": "qace-dynamics", + "symbol": "qace", + "name": "Qace Dynamics" + }, + { + "id": "qai", + "symbol": "qai", + "name": "qAI" + }, + { + "id": "qanplatform", + "symbol": "qanx", + "name": "QANplatform" + }, + { + "id": "qawalla", + "symbol": "qwla", + "name": "Qawalla" + }, + { + "id": "q-bridged-usdc-q-mainnet", + "symbol": "usdc", + "name": "Q Bridged USDC (Q Mainnet)" + }, + { + "id": "qbx", + "symbol": "qbx", + "name": "QBX" + }, + { + "id": "qi-dao", + "symbol": "qi", + "name": "Qi Dao" + }, + { + "id": "qie", + "symbol": "qie", + "name": "QI Blockchain" + }, + { + "id": "qiswap", + "symbol": "qi", + "name": "QiSwap" + }, + { + "id": "qitchain-network", + "symbol": "qtc", + "name": "Qitcoin" + }, + { + "id": "qiusd", + "symbol": "qiusd", + "name": "QiUSD" + }, + { + "id": "qjuno", + "symbol": "qjuno", + "name": "qJUNO" + }, + { + "id": "qkacoin", + "symbol": "qka", + "name": "Qkacoin" + }, + { + "id": "qlix", + "symbol": "qlix", + "name": "QLix" + }, + { + "id": "qmall", + "symbol": "qmall", + "name": "Qmall" + }, + { + "id": "qmcoin", + "symbol": "qmc", + "name": "QMCoin" + }, + { + "id": "qna3-ai", + "symbol": "gpt", + "name": "QnA3.AI" + }, + { + "id": "qoomer", + "symbol": "qoomer", + "name": "Qoomer" + }, + { + "id": "qopro", + "symbol": "qorpo", + "name": "QORPO WORLD" + }, + { + "id": "qoryn", + "symbol": "qor", + "name": "Qoryn" + }, + { + "id": "qowatt", + "symbol": "qwt", + "name": "QoWatt" + }, + { + "id": "qpay-2", + "symbol": "qpay", + "name": "QPAY" + }, + { + "id": "q-protocol", + "symbol": "qgov", + "name": "Q Protocol" + }, + { + "id": "qr-coin", + "symbol": "qr", + "name": "QR coin" + }, + { + "id": "qringe", + "symbol": "qringe", + "name": "QRINGE" + }, + { + "id": "qrkita-token", + "symbol": "qrt", + "name": "Qrkita" + }, + { + "id": "qstar", + "symbol": "q*", + "name": "QSTAR" + }, + { + "id": "qstay", + "symbol": "qstay", + "name": "Qstay" + }, + { + "id": "qtoken", + "symbol": "qto", + "name": "Qtoken" + }, + { + "id": "qtum", + "symbol": "qtum", + "name": "Qtum" + }, + { + "id": "qu3ai", + "symbol": "qu3", + "name": "QU3ai" + }, + { + "id": "quack-ai", + "symbol": "q", + "name": "Quack AI" + }, + { + "id": "quack-capital", + "symbol": "quack", + "name": "Quack Capital" + }, + { + "id": "quack-coin-base", + "symbol": "quack", + "name": "Quack Coin Base" + }, + { + "id": "quacks", + "symbol": "quacks", + "name": "QUACKS" + }, + { + "id": "quadency", + "symbol": "quad", + "name": "Quad Terminal" + }, + { + "id": "quadrant-protocol", + "symbol": "equad", + "name": "Quadrant Protocol" + }, + { + "id": "quain", + "symbol": "quain", + "name": "QUAIN" + }, + { + "id": "quai-network", + "symbol": "quai", + "name": "Quai Network" + }, + { + "id": "quak-coin", + "symbol": "quak", + "name": "Quak Coin" + }, + { + "id": "quakk", + "symbol": "quakk", + "name": "Quakk" + }, + { + "id": "quaks", + "symbol": "$quaks", + "name": "Quaks" + }, + { + "id": "qualcomm-ondo-tokenized-stock", + "symbol": "qcomon", + "name": "Qualcomm (Ondo Tokenized Stock)" + }, + { + "id": "quan2um", + "symbol": "$qntm", + "name": "Quan2um" + }, + { + "id": "quant", + "symbol": "quant", + "name": "QUANT" + }, + { + "id": "quantaai", + "symbol": "qai", + "name": "QuantaAI" + }, + { + "id": "quant-fun", + "symbol": "quant", + "name": "Quant.Fun" + }, + { + "id": "quantifyai", + "symbol": "qgg", + "name": "QuantifyAI" + }, + { + "id": "quantixai", + "symbol": "qai", + "name": "QuantixAI" + }, + { + "id": "quantlink", + "symbol": "qlk", + "name": "Quantlink" + }, + { + "id": "quantlytica", + "symbol": "qtlx", + "name": "Quantlytica" + }, + { + "id": "quant-network", + "symbol": "qnt", + "name": "Quant" + }, + { + "id": "quanto", + "symbol": "qto", + "name": "Quanto" + }, + { + "id": "quantoswap", + "symbol": "qns", + "name": "QuantoSwap" + }, + { + "id": "quantoz-eurd", + "symbol": "eurd", + "name": "Quantoz EURD" + }, + { + "id": "quantoz-eurq", + "symbol": "eurq", + "name": "Quantoz EURQ" + }, + { + "id": "quantoz-usdq", + "symbol": "usdq", + "name": "Quantoz USDQ" + }, + { + "id": "quantum-2", + "symbol": "quantum", + "name": "Quantum" + }, + { + "id": "quantum-biology-dao", + "symbol": "qbio", + "name": "Quantum Biology DAO" + }, + { + "id": "quantumcoin", + "symbol": "q", + "name": "QuantumCoin" + }, + { + "id": "quantumcoin-2", + "symbol": "qe", + "name": "QuantumCoin [OLD]" + }, + { + "id": "quantumcoin-2-2", + "symbol": "qe", + "name": "QuantumCoin" + }, + { + "id": "quantum-dao", + "symbol": "$qtdao", + "name": "Quantum DAO" + }, + { + "id": "quantum-fusion", + "symbol": "qf", + "name": "Quantum Fusion" + }, + { + "id": "quantum-gospel", + "symbol": "qoat", + "name": "Quantum Gospel" + }, + { + "id": "quantum-network", + "symbol": "qswap", + "name": "Quantum Swap" + }, + { + "id": "quantum-pipeline", + "symbol": "pipe", + "name": "Quantum Pipeline" + }, + { + "id": "quantum-resistant-ledger", + "symbol": "qrl", + "name": "Quantum Resistant Ledger" + }, + { + "id": "quantz", + "symbol": "quantz", + "name": "Quantz" + }, + { + "id": "quark-chain", + "symbol": "qkc", + "name": "QuarkChain" + }, + { + "id": "quartz", + "symbol": "qtz", + "name": "Quartz" + }, + { + "id": "quasacoin", + "symbol": "qua", + "name": "Quasacoin" + }, + { + "id": "quasar-3", + "symbol": "quasar", + "name": "Quasar" + }, + { + "id": "qubecv-ai", + "symbol": "qcv", + "name": "QubeCV AI" + }, + { + "id": "qubetics", + "symbol": "tics", + "name": "Qubetics" + }, + { + "id": "qubic-network", + "symbol": "qubic", + "name": "Qubic" + }, + { + "id": "qubit", + "symbol": "qbt", + "name": "Qubit" + }, + { + "id": "qubit-2", + "symbol": "qbit", + "name": "Qubit" + }, + { + "id": "qubitcoin-2", + "symbol": "qtc", + "name": "Qubitcoin" + }, + { + "id": "qubi-tokenized-rwa", + "symbol": "$qbit", + "name": "QUBI Tokenized RWA" + }, + { + "id": "qubit-the-quantum-dog", + "symbol": "qubit", + "name": "Qubit The Quantum Dog" + }, + { + "id": "qudeai-framework", + "symbol": "qude", + "name": "QudeAI Framework" + }, + { + "id": "qudefi-2", + "symbol": "qudefi", + "name": "Qudefi" + }, + { + "id": "qudo", + "symbol": "qudo", + "name": "QUDO" + }, + { + "id": "queen", + "symbol": "queen", + "name": "QUEEN" + }, + { + "id": "queen-kitty", + "symbol": "qkitty", + "name": "Queen Kitty" + }, + { + "id": "queen-pooie", + "symbol": "queen2", + "name": "QUEEN POOIE" + }, + { + "id": "queen-sherex", + "symbol": "qshx", + "name": "Queen Sherex" + }, + { + "id": "quick", + "symbol": "quick", + "name": "Quickswap [OLD]" + }, + { + "id": "quick-drop", + "symbol": "quick", + "name": "Quick Drop" + }, + { + "id": "quick-intel", + "symbol": "qkntl", + "name": "Quick Intel" + }, + { + "id": "quickswap", + "symbol": "quick", + "name": "Quickswap" + }, + { + "id": "quick-sync", + "symbol": "qs", + "name": "Quick Sync" + }, + { + "id": "quick-transfer-coin-plus", + "symbol": "qtcc", + "name": "Quick Transfer Coin Plus" + }, + { + "id": "quidax", + "symbol": "qdx", + "name": "Quidax" + }, + { + "id": "quidd", + "symbol": "quidd", + "name": "Quidd" + }, + { + "id": "quill-usdq", + "symbol": "usdq", + "name": "Quill USDQ" + }, + { + "id": "quilson", + "symbol": "quil", + "name": "Quilson" + }, + { + "id": "quint", + "symbol": "quint", + "name": "Quint" + }, + { + "id": "quipuswap-governance-token", + "symbol": "quipu", + "name": "QuipuSwap Governance" + }, + { + "id": "quitcoin", + "symbol": "qc", + "name": "Quitcoin" + }, + { + "id": "quiverx", + "symbol": "qrx", + "name": "QuiverX" + }, + { + "id": "quokka", + "symbol": "quokka", + "name": "Quokka" + }, + { + "id": "quorium", + "symbol": "qgold", + "name": "Quorium" + }, + { + "id": "qup-coin", + "symbol": "qup", + "name": "QUP Coin" + }, + { + "id": "quq", + "symbol": "quq", + "name": "Quq" + }, + { + "id": "quranium", + "symbol": "qrn", + "name": "Quranium" + }, + { + "id": "qusd-q-protocol", + "symbol": "qusd", + "name": "QUSD" + }, + { + "id": "qusdt", + "symbol": "qusdt", + "name": "QL1 Bridged USDT (QL1)" + }, + { + "id": "qustream", + "symbol": "qst", + "name": "QuStream" + }, + { + "id": "qwqiao-s-minutes", + "symbol": "qwqiao", + "name": "qwqiao's minutes" + }, + { + "id": "r0ar-token", + "symbol": "1r0r", + "name": "R0AR Token" + }, + { + "id": "r34p", + "symbol": "r34p", + "name": "R34P" + }, + { + "id": "raa-vision", + "symbol": "raa", + "name": "RAA Vision" + }, + { + "id": "rabbi-schlomo-by-virtuals", + "symbol": "shekel", + "name": "Rabbi Schlomo by Virtuals" + }, + { + "id": "rabbitcoin-2", + "symbol": "rbtc", + "name": "RabBitcoin" + }, + { + "id": "rabbitcoin-exchange", + "symbol": "rabbit", + "name": "RabbitCoin Exchange" + }, + { + "id": "rabbit-finance", + "symbol": "rabbit", + "name": "Rabbit Finance" + }, + { + "id": "rabbitswap-2", + "symbol": "rabbit", + "name": "RabbitSwap" + }, + { + "id": "rabbitx", + "symbol": "rbx", + "name": "RabbitX" + }, + { + "id": "rabi", + "symbol": "rabi", + "name": "Rabi" + }, + { + "id": "rabu", + "symbol": "rabu", + "name": "Rabu" + }, + { + "id": "raccoon", + "symbol": "roon", + "name": "Raccoon" + }, + { + "id": "racefi", + "symbol": "racefi", + "name": "RaceFi" + }, + { + "id": "race-kingdom", + "symbol": "atoz", + "name": "Race Kingdom" + }, + { + "id": "racex", + "symbol": "racex", + "name": "RaceX" + }, + { + "id": "raco", + "symbol": "raco", + "name": "RACO" + }, + { + "id": "racoon", + "symbol": "rac", + "name": "Racoon" + }, + { + "id": "racoondog", + "symbol": "raccoondog", + "name": "Raccoon Dog" + }, + { + "id": "rada-foundation", + "symbol": "rada", + "name": "RADA Foundation" + }, + { + "id": "radar", + "symbol": "radar", + "name": "Radar" + }, + { + "id": "radiant", + "symbol": "rxd", + "name": "Radiant" + }, + { + "id": "radiant-capital", + "symbol": "rdnt", + "name": "Radiant Capital" + }, + { + "id": "radicle", + "symbol": "rad", + "name": "Radworks" + }, + { + "id": "radio-caca", + "symbol": "raca", + "name": "Radio Caca" + }, + { + "id": "radioshack", + "symbol": "radio", + "name": "RadioShack" + }, + { + "id": "radium", + "symbol": "val", + "name": "Validity" + }, + { + "id": "radix", + "symbol": "xrd", + "name": "Radix" + }, + { + "id": "radpie", + "symbol": "rdp", + "name": "Radpie" + }, + { + "id": "radr", + "symbol": "radr", + "name": "RADR" + }, + { + "id": "radtarded-scott", + "symbol": "scott", + "name": "Radtarded Scott" + }, + { + "id": "radx-ai", + "symbol": "$radx", + "name": "Radx Ai" + }, + { + "id": "raff-the-giraffe", + "symbol": "raff", + "name": "RAFF the Giraffe" + }, + { + "id": "rage", + "symbol": "rage", + "name": "RAGE" + }, + { + "id": "ragebait", + "symbol": "ragebait", + "name": "ragebait" + }, + { + "id": "rage-coin", + "symbol": "rage", + "name": "RAGE COIN" + }, + { + "id": "rage-fan", + "symbol": "rage", + "name": "Rage.Fan" + }, + { + "id": "rage-guy", + "symbol": "rageguy", + "name": "Rage Guy" + }, + { + "id": "rage-guy-2", + "symbol": "rage", + "name": "RAGE GUY" + }, + { + "id": "ragingelonmarscoin", + "symbol": "dogecoin", + "name": "RagingElonMarsCoin" + }, + { + "id": "rai", + "symbol": "rai", + "name": "Rai Reflex Index" + }, + { + "id": "raider-aurum", + "symbol": "aurum", + "name": "Raider Aurum" + }, + { + "id": "raidsharksbot", + "symbol": "sharx", + "name": "RaidSharksBot" + }, + { + "id": "raid-token", + "symbol": "raid", + "name": "Raid" + }, + { + "id": "rai-finance", + "symbol": "sofi", + "name": "RAI Finance" + }, + { + "id": "raiinmaker", + "symbol": "raiin", + "name": "Raiinmaker" + }, + { + "id": "railgun", + "symbol": "rail", + "name": "Railgun" + }, + { + "id": "rain", + "symbol": "rain", + "name": "Rain" + }, + { + "id": "rainbow-2", + "symbol": "rainbow", + "name": "Rainbow" + }, + { + "id": "rainbow-3", + "symbol": "rainbow", + "name": "RAINBOW" + }, + { + "id": "rainbow-3-2", + "symbol": "rnbw", + "name": "Rainbow" + }, + { + "id": "rainbow-bridged-dai-aurora", + "symbol": "dai", + "name": "Rainbow Bridged DAI (Aurora)" + }, + { + "id": "rainbow-bridged-dai-near-protocol", + "symbol": "dai", + "name": "Rainbow Bridged DAI (Near Protocol)" + }, + { + "id": "rainbow-bridged-frax-near-protocol", + "symbol": "frax", + "name": "Rainbow Bridged Frax (Near Protocol)" + }, + { + "id": "rainbow-bridged-usdc-aurora", + "symbol": "usdc", + "name": "Rainbow Bridged USDC (Aurora)" + }, + { + "id": "rainbow-bridged-usdt-aurora", + "symbol": "usdt.e", + "name": "Rainbow Bridged USDT (Aurora)" + }, + { + "id": "rainbow-bridged-wbtc-aurora", + "symbol": "wbtc", + "name": "Rainbow Bridged WBTC (Aurora)" + }, + { + "id": "rainbow-bridged-wbtc-near-protocol", + "symbol": "wbtc", + "name": "Rainbow Bridged WBTC (Near Protocol)" + }, + { + "id": "rainbow-bridged-weth-near-protocol", + "symbol": "weth", + "name": "Rainbow Bridged WETH (Near Protocol)" + }, + { + "id": "rainbowtoken", + "symbol": "rainbowtoken", + "name": "RainbowToken" + }, + { + "id": "rainbow-token-2", + "symbol": "rbw", + "name": "Rainbow Token" + }, + { + "id": "rain-by-virtuals", + "symbol": "rain", + "name": "Rain by Virtuals" + }, + { + "id": "rain-coin", + "symbol": "rain", + "name": "Rain Coin" + }, + { + "id": "rainicorn", + "symbol": "$raini", + "name": "Raini" + }, + { + "id": "raini-studios-token", + "symbol": "rst", + "name": "Raini Studios Token" + }, + { + "id": "rainmaker-games", + "symbol": "rain", + "name": "Rainmaker Games" + }, + { + "id": "raiseme", + "symbol": "raiseme", + "name": "raiseme" + }, + { + "id": "raise-the-colours", + "symbol": "rtc", + "name": "Raise The Colours" + }, + { + "id": "raise-the-colours-2", + "symbol": "colours", + "name": "Raise The Colours" + }, + { + "id": "rai-yvault", + "symbol": "yvrai", + "name": "RAI yVault" + }, + { + "id": "raj-s-minutes", + "symbol": "raj", + "name": "raj's minutes" + }, + { + "id": "raju-the-elephant", + "symbol": "raju", + "name": "Raju the Elephant" + }, + { + "id": "rally-2", + "symbol": "rly", + "name": "Rally" + }, + { + "id": "rally-3", + "symbol": "rally", + "name": "RALLY" + }, + { + "id": "ramen", + "symbol": "ramen", + "name": "Ramen" + }, + { + "id": "ramestta", + "symbol": "rama", + "name": "Ramestta" + }, + { + "id": "ramifi", + "symbol": "ram", + "name": "Ramifi Protocol" + }, + { + "id": "ramon", + "symbol": "ramon", + "name": "Ramon" + }, + { + "id": "ramp", + "symbol": "ramp", + "name": "RAMP [OLD]" + }, + { + "id": "ramses-exchange", + "symbol": "ram", + "name": "Ramses Exchange" + }, + { + "id": "random-coin", + "symbol": "random", + "name": "Random Coin" + }, + { + "id": "randomdex", + "symbol": "rdx", + "name": "RandomDEX" + }, + { + "id": "rank-2", + "symbol": "ran", + "name": "Rank" + }, + { + "id": "rankfi", + "symbol": "rankfi", + "name": "RankFi" + }, + { + "id": "rapid-fun", + "symbol": "rapid", + "name": "Rapid.fun" + }, + { + "id": "rapids", + "symbol": "rpd", + "name": "Rapids" + }, + { + "id": "raptoreum", + "symbol": "rtm", + "name": "Raptoreum" + }, + { + "id": "raptor-finance-2", + "symbol": "rptr", + "name": "Raptor Finance" + }, + { + "id": "rarecoin", + "symbol": "rarecoin", + "name": "rarecoin" + }, + { + "id": "rarecube-tv", + "symbol": "cube", + "name": "rarecube.tv" + }, + { + "id": "rare-earth-minerals", + "symbol": "rem", + "name": "Rare Earth Minerals" + }, + { + "id": "rarible", + "symbol": "rari", + "name": "RARI" + }, + { + "id": "rari-governance-token", + "symbol": "rgt", + "name": "Rari Governance" + }, + { + "id": "rasmr", + "symbol": "rasmr", + "name": "rasmr" + }, + { + "id": "rastopyry", + "symbol": "rasto", + "name": "Rastopyry" + }, + { + "id": "ratcoin", + "symbol": "rat", + "name": "RatCoin" + }, + { + "id": "rate", + "symbol": "rate", + "name": "Rate" + }, + { + "id": "ratecoin-2", + "symbol": "rate", + "name": "Ratecoin" + }, + { + "id": "rat-escape", + "symbol": "rat", + "name": "RAT Escape" + }, + { + "id": "ratio1", + "symbol": "r1", + "name": "Ratio1" + }, + { + "id": "ratio-finance", + "symbol": "ratio", + "name": "Ratio Protocol" + }, + { + "id": "ratomilton", + "symbol": "milton", + "name": "ratomilton" + }, + { + "id": "rato-the-rat", + "symbol": "rato", + "name": "Rato The Rat" + }, + { + "id": "rats", + "symbol": "rats", + "name": "Rats" + }, + { + "id": "ratthew", + "symbol": "ratthew", + "name": "ratthew" + }, + { + "id": "rattler", + "symbol": "rtr", + "name": "Rattler" + }, + { + "id": "ratwifhat", + "symbol": "ratwif", + "name": "RatWifHat" + }, + { + "id": "ravencoin", + "symbol": "rvn", + "name": "Ravencoin" + }, + { + "id": "raven-protocol", + "symbol": "raven", + "name": "Raven Protocol" + }, + { + "id": "ravenquest", + "symbol": "quest", + "name": "RavenQuest" + }, + { + "id": "ravenra", + "symbol": "raven", + "name": "Ravenra" + }, + { + "id": "rawr", + "symbol": "xd", + "name": "Rawr" + }, + { + "id": "raydium", + "symbol": "ray", + "name": "Raydium" + }, + { + "id": "rayls", + "symbol": "rls", + "name": "Rayls" + }, + { + "id": "rayn", + "symbol": "aktio", + "name": "RAYN" + }, + { + "id": "ray-network", + "symbol": "xray", + "name": "Ray Network" + }, + { + "id": "razor-network", + "symbol": "razor", + "name": "Razor Network" + }, + { + "id": "rb-share", + "symbol": "rbx", + "name": "RB Share" + }, + { + "id": "rbx-token", + "symbol": "rbx", + "name": "RBX" + }, + { + "id": "rcade-network", + "symbol": "rcade", + "name": "RCADE Network" + }, + { + "id": "rcar", + "symbol": "rcar", + "name": "RCAR" + }, + { + "id": "rch-token", + "symbol": "rch", + "name": "RCH Token" + }, + { + "id": "re7-cbbtc", + "symbol": "re7cbbtc", + "name": "Re7 cbBTC" + }, + { + "id": "re7-frax", + "symbol": "re7frax", + "name": "Re7 FRAX" + }, + { + "id": "re7-rwa", + "symbol": "re7rwa", + "name": "Re7 RWA" + }, + { + "id": "re7-tbtc", + "symbol": "re7tbtc", + "name": "Re7 tBTC" + }, + { + "id": "re7-usda", + "symbol": "re7usda", + "name": "Re7 USDA" + }, + { + "id": "re7-usdc", + "symbol": "re7usdc", + "name": "Re7 USDC" + }, + { + "id": "re7-usdt-morpho-vault", + "symbol": "re7usdt", + "name": "Re7 USDT Morpho Vault" + }, + { + "id": "re7-wbtc-morpho-vault", + "symbol": "re7wbtc", + "name": "Re7 WBTC Morpho Vault" + }, + { + "id": "re7-weth", + "symbol": "re7weth", + "name": "Re7 WETH" + }, + { + "id": "re7-weth-morpho-vault", + "symbol": "re7weth", + "name": "Re7 WETH Morpho Vault" + }, + { + "id": "reach", + "symbol": "$reach", + "name": "Reach" + }, + { + "id": "reachx-mainnet", + "symbol": "rx", + "name": "ReachX Mainnet" + }, + { + "id": "reactive-network", + "symbol": "react", + "name": "Reactive Network" + }, + { + "id": "reactor-3", + "symbol": "arc", + "name": "Reactor" + }, + { + "id": "reactorfusion", + "symbol": "rf", + "name": "ReactorFusion" + }, + { + "id": "readfi", + "symbol": "rdf", + "name": "ReadFi" + }, + { + "id": "ready", + "symbol": "ready", + "name": "READY!" + }, + { + "id": "readyai", + "symbol": "sn33", + "name": "ReadyAI" + }, + { + "id": "ready-to-fight", + "symbol": "rtf", + "name": "Ready to Fight" + }, + { + "id": "reaktor", + "symbol": "rkr", + "name": "Reaktor" + }, + { + "id": "real-2", + "symbol": "real", + "name": "real." + }, + { + "id": "real-3", + "symbol": "real", + "name": "real" + }, + { + "id": "real-4", + "symbol": "real", + "name": "Real" + }, + { + "id": "real-asian-hours", + "symbol": "chinawins", + "name": "Real Asian Hours" + }, + { + "id": "real-big-coin", + "symbol": "rbc", + "name": "Real BIG Coin" + }, + { + "id": "real-esmate-by-virtuals", + "symbol": "emate", + "name": "REAL ESMATE by Virtuals" + }, + { + "id": "real-estate-crypto-crowfunding", + "symbol": "recc", + "name": "Real Estate Crypto Crowfunding" + }, + { + "id": "real-ether", + "symbol": "reeth", + "name": "Real Ether" + }, + { + "id": "real-fast", + "symbol": "speed", + "name": "real fast" + }, + { + "id": "realfevr", + "symbol": "fevr", + "name": "RealFevr" + }, + { + "id": "real-gem-token", + "symbol": "gem", + "name": "Real GEM Token" + }, + { + "id": "realgoat", + "symbol": "rgoat", + "name": "RealGoat" + }, + { + "id": "realio-network", + "symbol": "rio", + "name": "Realio Network Token" + }, + { + "id": "realis-worlds", + "symbol": "realis", + "name": "Realis Worlds" + }, + { + "id": "reality-metaverse", + "symbol": "rmv", + "name": "Reality Metaverse" + }, + { + "id": "reality-spiral", + "symbol": "rsp", + "name": "Reality Spiral" + }, + { + "id": "reality-vr", + "symbol": "rvr", + "name": "Reality VR" + }, + { + "id": "reallink", + "symbol": "real", + "name": "RealLink" + }, + { + "id": "realm", + "symbol": "realm", + "name": "Realm" + }, + { + "id": "real-mxn", + "symbol": "mxne", + "name": "Real MXN" + }, + { + "id": "real-realm", + "symbol": "real", + "name": "Real Realm" + }, + { + "id": "real-smurf-cat", + "symbol": "smurfcat", + "name": "Real Smurf Cat" + }, + { + "id": "real-smurf-cat-2", + "symbol": "smurf", + "name": "Real Smurf Cat-шайлушай" + }, + { + "id": "real-smurf-cat-bsc", + "symbol": "шайлушай", + "name": "Real Smurf Cat BSC" + }, + { + "id": "real-sociedad-fan-token", + "symbol": "rso", + "name": "Real Sociedad Fan Token" + }, + { + "id": "real-time-data-by-masa", + "symbol": "sn42", + "name": "Real-Time Data by Masa" + }, + { + "id": "realtoken-ecosystem-governance", + "symbol": "reg", + "name": "RealToken Ecosystem Governance" + }, + { + "id": "real-usd", + "symbol": "usdr", + "name": "Real USD" + }, + { + "id": "realvirm", + "symbol": "rvm", + "name": "Realvirm" + }, + { + "id": "real-world-abs", + "symbol": "rwa", + "name": "Real World Abs" + }, + { + "id": "real-world-ai", + "symbol": "rwa", + "name": "Real World AI" + }, + { + "id": "realworldweed", + "symbol": "rww", + "name": "RealWorldWeed" + }, + { + "id": "realy-metaverse", + "symbol": "real", + "name": "Realy Metaverse" + }, + { + "id": "rebase-base", + "symbol": "rebase", + "name": "Rebase" + }, + { + "id": "rebasechain", + "symbol": "base", + "name": "ReBaseChain" + }, + { + "id": "rebase-gg-irl", + "symbol": "$irl", + "name": "Rebase GG IRL" + }, + { + "id": "rebel-bots", + "symbol": "rbls", + "name": "Rebel Bots" + }, + { + "id": "rebel-by-virtuals", + "symbol": "rebelz", + "name": "Rebel by Virtuals" + }, + { + "id": "rebel-cars", + "symbol": "rc", + "name": "Rebel Cars" + }, + { + "id": "rebirth", + "symbol": "重生", + "name": "重生 (Rebirth)" + }, + { + "id": "reboot", + "symbol": "gg", + "name": "Reboot" + }, + { + "id": "reborne-fun", + "symbol": "rebo", + "name": "reborne.fun" + }, + { + "id": "recall", + "symbol": "recall", + "name": "Recall" + }, + { + "id": "recon-labs", + "symbol": "recon", + "name": "Recon Labs" + }, + { + "id": "recon-raccoon", + "symbol": "rcon", + "name": "Recon Raccoon" + }, + { + "id": "recon-solana", + "symbol": "recon", + "name": "Recon Solana" + }, + { + "id": "recovery-right-token", + "symbol": "rrt", + "name": "Recovery Right" + }, + { + "id": "recruit", + "symbol": "recruit", + "name": "RECRUIT" + }, + { + "id": "rectangle-finance", + "symbol": "rtg", + "name": "Rectangle Finance" + }, + { + "id": "rectime", + "symbol": "rtime", + "name": "RecTime" + }, + { + "id": "recursive-sigil-protocol", + "symbol": "glyph", + "name": "Recursive Sigil Protocol" + }, + { + "id": "redacted", + "symbol": "btrfly", + "name": "Redacted" + }, + { + "id": "redacted-2", + "symbol": "rdac", + "name": "Redacted" + }, + { + "id": "redacted-gdupi", + "symbol": "gdupi", + "name": "redacted gdupi" + }, + { + "id": "redacted-terminal", + "symbol": "███", + "name": "Redacted Terminal" + }, + { + "id": "redbelly-bridged-usdc-redbelly", + "symbol": "usdc.e", + "name": "Redbelly Bridged USDC (Redbelly)" + }, + { + "id": "redbelly-bridged-usdt-redbelly", + "symbol": "usdt", + "name": "Redbelly Bridged USDT (Redbelly)" + }, + { + "id": "redbelly-network-token", + "symbol": "rbnt", + "name": "Redbelly Network" + }, + { + "id": "redbird", + "symbol": "redbird", + "name": "RedBird" + }, + { + "id": "redbrick", + "symbol": "bric", + "name": "Redbrick" + }, + { + "id": "reddcoin", + "symbol": "rdd", + "name": "ReddCoin" + }, + { + "id": "reddio", + "symbol": "rdo", + "name": "Reddio" + }, + { + "id": "reddio-usdt", + "symbol": "rsvusdt", + "name": "Reddio USDT" + }, + { + "id": "reddit", + "symbol": "reddit", + "name": "Reddit" + }, + { + "id": "reddit-ondo-tokenized-stock", + "symbol": "rddton", + "name": "Reddit (Ondo Tokenized Stock)" + }, + { + "id": "redemption-of-pets", + "symbol": "rop", + "name": "Redemption Of Pets" + }, + { + "id": "redemption-token", + "symbol": "rdtn", + "name": "Redemption Token" + }, + { + "id": "redfeg", + "symbol": "redfeg", + "name": "RedFeg" + }, + { + "id": "redfox-labs-2", + "symbol": "rfox", + "name": "RFOX" + }, + { + "id": "red-genesis", + "symbol": "$r3d", + "name": "Red Genesis" + }, + { + "id": "redhive", + "symbol": "hiv3", + "name": "RedHive" + }, + { + "id": "red-pepe", + "symbol": "redpepe", + "name": "Red Pepe" + }, + { + "id": "red-pepe-2", + "symbol": "rpepe", + "name": "Red Pepe [OLD]" + }, + { + "id": "red-pepe-3", + "symbol": "rpepe", + "name": "Red Pepe" + }, + { + "id": "red-pill-2", + "symbol": "rpill", + "name": "Red Pill" + }, + { + "id": "red-pulse", + "symbol": "phb", + "name": "Phoenix Global [OLD]" + }, + { + "id": "red-siberian-husky", + "symbol": "kovu", + "name": "Red Siberian Husky" + }, + { + "id": "redstone-oracles", + "symbol": "red", + "name": "RedStone" + }, + { + "id": "redteam", + "symbol": "sn61", + "name": "RedTeam" + }, + { + "id": "red-the-mal", + "symbol": "red", + "name": "Red The Mal" + }, + { + "id": "red-token", + "symbol": "red", + "name": "RED TOKEN" + }, + { + "id": "redux-vault", + "symbol": "redux", + "name": "Redux Vault" + }, + { + "id": "redx", + "symbol": "redx", + "name": "Redx" + }, + { + "id": "reecoin-2", + "symbol": "ree", + "name": "REECOIN" + }, + { + "id": "reeeeeeeeeeeeeeeeeeeee", + "symbol": "reee", + "name": "reeeeeeeeeeeeeeeeeeeee" + }, + { + "id": "reef", + "symbol": "reef", + "name": "Reef" + }, + { + "id": "reental", + "symbol": "rnt", + "name": "Reental" + }, + { + "id": "refereum", + "symbol": "rfr", + "name": "Refereum" + }, + { + "id": "ref-finance", + "symbol": "ref", + "name": "Ref Finance" + }, + { + "id": "refinable", + "symbol": "fine", + "name": "Refinable" + }, + { + "id": "reflect-base", + "symbol": "rfl", + "name": "Reflect" + }, + { + "id": "reflectionai", + "symbol": "rect", + "name": "ReflectionAI" + }, + { + "id": "reflections-of-dissonance-ai", + "symbol": "aika", + "name": "Reflections of Dissonance AI" + }, + { + "id": "reflecto", + "symbol": "rto", + "name": "Reflecto" + }, + { + "id": "reflex", + "symbol": "rfx", + "name": "Reflex" + }, + { + "id": "reflexer-ungovernance-token", + "symbol": "flx", + "name": "Reflexer Ungovernance" + }, + { + "id": "refluid", + "symbol": "rld", + "name": "Refluid" + }, + { + "id": "reform-dao", + "symbol": "rfrm", + "name": "Reform DAO" + }, + { + "id": "refund", + "symbol": "rfd", + "name": "Refund" + }, + { + "id": "refund-base", + "symbol": "rfnd", + "name": "Refund (Base)" + }, + { + "id": "refundyoursol", + "symbol": "rys", + "name": "RefundYourSOL" + }, + { + "id": "regen", + "symbol": "regen", + "name": "Regen" + }, + { + "id": "regent", + "symbol": "regent", + "name": "REGENT" + }, + { + "id": "regent-coin", + "symbol": "regent", + "name": "Regent Coin" + }, + { + "id": "regentics", + "symbol": "regen", + "name": "Regentics" + }, + { + "id": "regret", + "symbol": "regret", + "name": "Regret" + }, + { + "id": "regulareverydaynormalcoin", + "symbol": "renc", + "name": "RegularEverydayNormalCoin" + }, + { + "id": "rei-ai-by-virtuals", + "symbol": "rei", + "name": "REI AI by Virtuals" + }, + { + "id": "reign-of-terror", + "symbol": "reign", + "name": "Reign of Terror" + }, + { + "id": "reiko", + "symbol": "reiko", + "name": "REIKO" + }, + { + "id": "rei-network", + "symbol": "rei", + "name": "REI Network" + }, + { + "id": "reinforced-ai", + "symbol": "sn92", + "name": "ReinforcedAI" + }, + { + "id": "rejuve-ai", + "symbol": "rjv", + "name": "Rejuve.AI" + }, + { + "id": "rekt-04bbe51a-e290-450a-afb5-b2b43b80b20e", + "symbol": "rekt", + "name": "REKT" + }, + { + "id": "rekt-4", + "symbol": "rekt", + "name": "Rekt" + }, + { + "id": "rekt-burgundy-by-virtuals", + "symbol": "mxnbc", + "name": "Rekt Burgundy by Virtuals" + }, + { + "id": "rektcoin", + "symbol": "rekt", + "name": "$REKT" + }, + { + "id": "rektstrategy", + "symbol": "rektstr", + "name": "RektStrategy" + }, + { + "id": "relation-native-token", + "symbol": "rel", + "name": "Relation Native Token" + }, + { + "id": "relend-network-usdc-hyperevm", + "symbol": "rusdc-hyper", + "name": "Relend Network USDC (HyperEVM)" + }, + { + "id": "relend-network-usdc-swell", + "symbol": "rusdc", + "name": "Relend Network USDC (Swell)" + }, + { + "id": "relend-usdc", + "symbol": "reusdc", + "name": "Relend USDC" + }, + { + "id": "relign", + "symbol": "relign", + "name": "RELIGN" + }, + { + "id": "remilia", + "symbol": "remilia", + "name": "Remilia" + }, + { + "id": "remilio", + "symbol": "remilio", + "name": "remilio" + }, + { + "id": "remint", + "symbol": "rmt", + "name": "Remint" + }, + { + "id": "rem-token", + "symbol": "rem", + "name": "REM Token" + }, + { + "id": "rena-finance", + "symbol": "rena", + "name": "RENA Finance" + }, + { + "id": "renbtc", + "symbol": "renbtc", + "name": "renBTC" + }, + { + "id": "render-token", + "symbol": "render", + "name": "Render" + }, + { + "id": "renew", + "symbol": "renew", + "name": "ReNeW" + }, + { + "id": "renewable-energy", + "symbol": "ret", + "name": "Renewable Energy" + }, + { + "id": "renq-finance", + "symbol": "renq", + "name": "Renq Finance" + }, + { + "id": "renta-network", + "symbol": "renta", + "name": "Renta Network" + }, + { + "id": "rentberry", + "symbol": "berry", + "name": "Rentberry" + }, + { + "id": "rentible", + "symbol": "rnb", + "name": "Rentible" + }, + { + "id": "rent-is-due", + "symbol": "rentcoin", + "name": "Rent is Due" + }, + { + "id": "rent-only-goes-up", + "symbol": "rent", + "name": "Rent Only Goes Up" + }, + { + "id": "renzo", + "symbol": "rez", + "name": "Renzo" + }, + { + "id": "renzo-restaked-eth", + "symbol": "ezeth", + "name": "Renzo Restaked ETH" + }, + { + "id": "renzo-restaked-jto", + "symbol": "ezjto", + "name": "Renzo Restaked JTO" + }, + { + "id": "renzo-restaked-lst", + "symbol": "pzeth", + "name": "Renzo Restaked LST" + }, + { + "id": "renzo-restaked-sol", + "symbol": "ezsol", + "name": "Renzo Restaked SOL" + }, + { + "id": "renzo-restaked-wbtc", + "symbol": "ezbtc", + "name": "Renzo Restaked WBTC" + }, + { + "id": "replicat-one-by-virtuals", + "symbol": "rcat", + "name": "Replicat-One by Virtuals" + }, + { + "id": "reploy", + "symbol": "rai", + "name": "Reploy" + }, + { + "id": "reply", + "symbol": "reply", + "name": "Reply" + }, + { + "id": "replyguys", + "symbol": "reply", + "name": "ReplyGuys" + }, + { + "id": "repo-analyzer-ai", + "symbol": "repoalyze", + "name": "REPO ANALYZER AI" + }, + { + "id": "repolite", + "symbol": "repolite", + "name": "Repolite" + }, + { + "id": "repost-dog", + "symbol": "rdog", + "name": "Repost Dog" + }, + { + "id": "reposwap", + "symbol": "repx", + "name": "RepoSwap" + }, + { + "id": "re-protocol-reusd", + "symbol": "reusd", + "name": "Re Protocol reUSD" + }, + { + "id": "re-protocol-reusde", + "symbol": "reusde", + "name": "Re Protocol reUSDe" + }, + { + "id": "republic-credits", + "symbol": "rpc", + "name": "Republic Credits" + }, + { + "id": "republic-note", + "symbol": "note", + "name": "Republic Note" + }, + { + "id": "republic-protocol", + "symbol": "ren", + "name": "Ren" + }, + { + "id": "republik", + "symbol": "rpk", + "name": "RepubliK" + }, + { + "id": "request-network", + "symbol": "req", + "name": "Request" + }, + { + "id": "researchcoin", + "symbol": "rsc", + "name": "ResearchCoin" + }, + { + "id": "reserve-3", + "symbol": "reserve", + "name": "Reserve" + }, + { + "id": "reserveblock", + "symbol": "vfx", + "name": "VerifiedX" + }, + { + "id": "reserve-protocol-eth-plus", + "symbol": "eth+", + "name": "ETHPlus" + }, + { + "id": "reserve-rights-token", + "symbol": "rsr", + "name": "Reserve Rights" + }, + { + "id": "reservoir", + "symbol": "dam", + "name": "Reservoir" + }, + { + "id": "reservoir-rusd", + "symbol": "rusd", + "name": "Reservoir rUSD" + }, + { + "id": "reservoir-srusd", + "symbol": "srusd", + "name": "Reservoir srUSD" + }, + { + "id": "rese-social", + "symbol": "rese", + "name": "Rese Social" + }, + { + "id": "reset-2", + "symbol": "reset", + "name": "#reset" + }, + { + "id": "resistance-dog", + "symbol": "redo", + "name": "Resistance Dog" + }, + { + "id": "resistance-duck", + "symbol": "redu", + "name": "Resistance Duck" + }, + { + "id": "resistance-girl", + "symbol": "regi", + "name": "Resistance Girl" + }, + { + "id": "resister", + "symbol": "rstr", + "name": "Resister" + }, + { + "id": "resolv", + "symbol": "resolv", + "name": "Resolv" + }, + { + "id": "resolv-rlp", + "symbol": "rlp", + "name": "Resolv Liquidity Provider Token" + }, + { + "id": "resolv-usr", + "symbol": "usr", + "name": "Resolv USR" + }, + { + "id": "resolv-wstusr", + "symbol": "wstusr", + "name": "Resolv wstUSR" + }, + { + "id": "resource-protocol", + "symbol": "source", + "name": "ReSource Protocol" + }, + { + "id": "respect-the-pump", + "symbol": "pump", + "name": "Respect The Pump" + }, + { + "id": "restaked-binance-staked-sol", + "symbol": "bzsol", + "name": "Restaked Binance Staked SOL" + }, + { + "id": "restaked-btc-b", + "symbol": "rbtc.b", + "name": "Restaked BTC.b" + }, + { + "id": "restaked-savax", + "symbol": "rsavax", + "name": "Restaked sAVAX" + }, + { + "id": "restaked-swell-eth", + "symbol": "rsweth", + "name": "Restaked Swell ETH" + }, + { + "id": "restake-finance", + "symbol": "rstk", + "name": "Restake Finance" + }, + { + "id": "restaking-vault-eth", + "symbol": "rsteth", + "name": "Restaking Vault ETH" + }, + { + "id": "restore-the-republic", + "symbol": "rtr", + "name": "Restore The Republic" + }, + { + "id": "resupply", + "symbol": "rsup", + "name": "Resupply" + }, + { + "id": "resupply-usd", + "symbol": "reusd", + "name": "Resupply USD" + }, + { + "id": "resveratrol-berberine", + "symbol": "trol", + "name": "Resveratrol & Berberine" + }, + { + "id": "retafi", + "symbol": "rtk", + "name": "RetaFi" + }, + { + "id": "retail-dao", + "symbol": "retail", + "name": "Retail DAO" + }, + { + "id": "retake-tv", + "symbol": "retake", + "name": "RETAKE.TV" + }, + { + "id": "retard-ai", + "symbol": "retard", + "name": "RETARD AI" + }, + { + "id": "retardcoin", + "symbol": "retard", + "name": "retardcoin" + }, + { + "id": "retard-coin", + "symbol": "retard", + "name": "Retard Coin" + }, + { + "id": "retardedapr", + "symbol": "rapr", + "name": "RetardedAPR" + }, + { + "id": "retarded-rat", + "symbol": "rad", + "name": "Radtarded Rat" + }, + { + "id": "retard-finance", + "symbol": "refi", + "name": "Retard Finance" + }, + { + "id": "retard-finder-coin", + "symbol": "rfc", + "name": "Retard Finder Coin" + }, + { + "id": "retardia", + "symbol": "retardia", + "name": "RETARDIA" + }, + { + "id": "retardio", + "symbol": "retardio", + "name": "RETARDIO" + }, + { + "id": "retardmaxxing", + "symbol": "retardmaxx", + "name": "Retardmaxxing" + }, + { + "id": "reterd", + "symbol": "reterd", + "name": "reterd" + }, + { + "id": "reth2", + "symbol": "reth2", + "name": "rETH2" + }, + { + "id": "retik-finance", + "symbol": "retik", + "name": "Retik Finance" + }, + { + "id": "retire-on-sol", + "symbol": "$retire", + "name": "Retire on Sol" + }, + { + "id": "retrocraft", + "symbol": "retro", + "name": "RetroCraft" + }, + { + "id": "retro-finance", + "symbol": "retro", + "name": "Retro Finance" + }, + { + "id": "retro-kids", + "symbol": "retro", + "name": "RETRO KIDS" + }, + { + "id": "retsa", + "symbol": "retsa", + "name": "Retsa" + }, + { + "id": "retsba", + "symbol": "retsba", + "name": "RETSBA" + }, + { + "id": "return-finance-lido-steth", + "symbol": "rfsteth", + "name": "Return Finance Lido stETH" + }, + { + "id": "return-to-beginnings", + "symbol": "roots", + "name": "Return to Beginnings" + }, + { + "id": "rev3al", + "symbol": "rev3l", + "name": "REV3AL" + }, + { + "id": "revain", + "symbol": "rev", + "name": "Revain" + }, + { + "id": "reveel", + "symbol": "reva", + "name": "Reveel" + }, + { + "id": "revenant", + "symbol": "gamefi", + "name": "Revenant" + }, + { + "id": "revenue-coin", + "symbol": "rvc", + "name": "Revenue Coin" + }, + { + "id": "reversal", + "symbol": "rvsl", + "name": "Reversal" + }, + { + "id": "reverse-unit-bias", + "symbol": "rub", + "name": "Reverse Unit Bias" + }, + { + "id": "revest-finance", + "symbol": "rvst", + "name": "Revest Finance" + }, + { + "id": "revolotto", + "symbol": "rvl", + "name": "Revolotto" + }, + { + "id": "revolt-2-earn", + "symbol": "rvlt", + "name": "Revolt 2 Earn" + }, + { + "id": "revomon-2", + "symbol": "revo", + "name": "Revomon" + }, + { + "id": "revox", + "symbol": "rex", + "name": "REVOX" + }, + { + "id": "revshare", + "symbol": "revs", + "name": "Revshare" + }, + { + "id": "revuto", + "symbol": "revu", + "name": "Revuto" + }, + { + "id": "revv", + "symbol": "revv", + "name": "REVV" + }, + { + "id": "rewardable", + "symbol": "reward", + "name": "Rewardable" + }, + { + "id": "reward-protocol", + "symbol": "rewd", + "name": "Reward Protocol" + }, + { + "id": "rex-3", + "symbol": "rex", + "name": "Rex" + }, + { + "id": "rexbt-by-virtuals", + "symbol": "rexbt", + "name": "rexbt by Virtuals" + }, + { + "id": "rexwifhat", + "symbol": "rexhat", + "name": "Rexwifhat" + }, + { + "id": "rezerve-money", + "symbol": "rzr", + "name": "Rezerve Money" + }, + { + "id": "rezor", + "symbol": "rzr", + "name": "Rezor" + }, + { + "id": "r-games", + "symbol": "rgame", + "name": "R Games" + }, + { + "id": "rgb", + "symbol": "rgb", + "name": "RGB" + }, + { + "id": "rhea-2", + "symbol": "rhea", + "name": "RHEA" + }, + { + "id": "rhetor", + "symbol": "rt", + "name": "Rhetor" + }, + { + "id": "rhinofi-2", + "symbol": "rhino", + "name": "RhinoFi" + }, + { + "id": "rhun-capital", + "symbol": "rhun", + "name": "Rhun Capital" + }, + { + "id": "ribbit-2", + "symbol": "rbt", + "name": "RIBBIT" + }, + { + "id": "ribbita-by-virtuals", + "symbol": "tibbir", + "name": "Ribbita by Virtuals" + }, + { + "id": "ribbit-meme", + "symbol": "ribbit", + "name": "Ribbit Meme" + }, + { + "id": "ribbit-on-base", + "symbol": "ribbit", + "name": "Ribbit on Base" + }, + { + "id": "ribble", + "symbol": "ribble", + "name": "Ribble" + }, + { + "id": "ribbon-finance", + "symbol": "rbn", + "name": "Ribbon Finance" + }, + { + "id": "ribus", + "symbol": "rib", + "name": "Ribus" + }, + { + "id": "rice-2", + "symbol": "rice", + "name": "RICE" + }, + { + "id": "rice-ai", + "symbol": "rice", + "name": "Rice AI" + }, + { + "id": "rich", + "symbol": "rch", + "name": "Rich" + }, + { + "id": "rich-2", + "symbol": "$rich", + "name": "Rich" + }, + { + "id": "richcoin", + "symbol": "richcoin", + "name": "恭喜发财" + }, + { + "id": "rich-on-sol", + "symbol": "rich", + "name": "RICH on SOL" + }, + { + "id": "richquack", + "symbol": "quack", + "name": "Rich Quack" + }, + { + "id": "rich-rabbit", + "symbol": "rabbit", + "name": "Rich Rabbit" + }, + { + "id": "rich-whale-alliance", + "symbol": "rwa", + "name": "Rich Whale Alliance" + }, + { + "id": "rick-the-npc", + "symbol": "rick", + "name": "Rick the NPC" + }, + { + "id": "ricky-the-raccoon", + "symbol": "ricky", + "name": "Ricky The Raccoon" + }, + { + "id": "rico", + "symbol": "rico", + "name": "Rico" + }, + { + "id": "riddle-by-virtuals", + "symbol": "riddle", + "name": "Riddle by Virtuals" + }, + { + "id": "ridges-ai", + "symbol": "sn62", + "name": "Ridges AI" + }, + { + "id": "ridotto", + "symbol": "rdt", + "name": "Ridotto" + }, + { + "id": "riecoin", + "symbol": "ric", + "name": "Riecoin" + }, + { + "id": "rifampicin", + "symbol": "$rif", + "name": "Rifampicin" + }, + { + "id": "rifpro", + "symbol": "rifp", + "name": "RIFPro" + }, + { + "id": "rift-ai", + "symbol": "rift", + "name": "RIFT AI" + }, + { + "id": "rif-token", + "symbol": "rif", + "name": "Rootstock Infrastructure Framework" + }, + { + "id": "rif-us-dollar", + "symbol": "usdrif", + "name": "RIF US Dollar" + }, + { + "id": "rigby-the-cat", + "symbol": "rigby", + "name": "Rigby The Cat" + }, + { + "id": "rigel-protocol", + "symbol": "rgp", + "name": "Rigel Protocol" + }, + { + "id": "rigoblock", + "symbol": "grg", + "name": "RigoBlock" + }, + { + "id": "rig-token", + "symbol": "rig", + "name": "RIG TOKEN" + }, + { + "id": "riko", + "symbol": "riko", + "name": "RIKO" + }, + { + "id": "riku", + "symbol": "riku", + "name": "RIKU" + }, + { + "id": "riky-the-raccoon", + "symbol": "riky", + "name": "Riky The Raccoon" + }, + { + "id": "rina-by-arc", + "symbol": "rina", + "name": "Rina By Arc" + }, + { + "id": "ring-2", + "symbol": "$ring", + "name": "RING" + }, + { + "id": "ring-ai", + "symbol": "ring", + "name": "Ring AI" + }, + { + "id": "ringfence", + "symbol": "ring", + "name": "Ringfence" + }, + { + "id": "rings-scbtc", + "symbol": "scbtc", + "name": "Rings scBTC" + }, + { + "id": "rings-sc-eth", + "symbol": "sceth", + "name": "Rings scETH" + }, + { + "id": "rings-scusd", + "symbol": "scusd", + "name": "Rings scUSD" + }, + { + "id": "ring-usd", + "symbol": "usdr", + "name": "Ring USD" + }, + { + "id": "rino", + "symbol": "rino", + "name": "Rino" + }, + { + "id": "rintaro", + "symbol": "rintaro", + "name": "Rintaro" + }, + { + "id": "rio-defi", + "symbol": "rfuel", + "name": "RioDeFi" + }, + { + "id": "riot-platforms-ondo-tokenized-stock", + "symbol": "rioton", + "name": "Riot Platforms (Ondo Tokenized Stock)" + }, + { + "id": "riot-platforms-xstock", + "symbol": "riotx", + "name": "Riot Platforms xStock" + }, + { + "id": "ripe-dao-governance-token", + "symbol": "ripe", + "name": "Ripe DAO Governance Token" + }, + { + "id": "ripio-credit-network", + "symbol": "rcn", + "name": "Ripio Credit Network" + }, + { + "id": "ripple", + "symbol": "xrp", + "name": "XRP" + }, + { + "id": "ripplebids", + "symbol": "xrpb-sol", + "name": "Ripplebids" + }, + { + "id": "ripples", + "symbol": "rpls", + "name": "Ripples" + }, + { + "id": "ripple-usd", + "symbol": "rlusd", + "name": "Ripple USD" + }, + { + "id": "ripple-with-rizz", + "symbol": "rizzle", + "name": "RIPPLE WITH RIZZ" + }, + { + "id": "rise-chain", + "symbol": "rise", + "name": "Rise Chain" + }, + { + "id": "riser", + "symbol": "ris", + "name": "Riser" + }, + { + "id": "rita-elite-order", + "symbol": "rita", + "name": "Rita Elite Order" + }, + { + "id": "ritestream", + "symbol": "rite", + "name": "ritestream" + }, + { + "id": "rivalz-network", + "symbol": "riz", + "name": "Rivalz Network" + }, + { + "id": "river", + "symbol": "river", + "name": "River" + }, + { + "id": "riverboat", + "symbol": "rib", + "name": "RiverBoat" + }, + { + "id": "riverex-welle", + "symbol": "welle", + "name": "Welle" + }, + { + "id": "river-pts", + "symbol": "river pts", + "name": "River Pts" + }, + { + "id": "rivusdao", + "symbol": "rivus", + "name": "RivusDAO" + }, + { + "id": "rize", + "symbol": "rize", + "name": "RIZE" + }, + { + "id": "rize-2", + "symbol": "rize", + "name": "Rize" + }, + { + "id": "rizo", + "symbol": "rizo", + "name": "Rizo" + }, + { + "id": "rizz", + "symbol": "rizz", + "name": "RIZZ" + }, + { + "id": "rizz-2", + "symbol": "rizz", + "name": "Rizz" + }, + { + "id": "rizzcoin", + "symbol": "rizz", + "name": "Rizzcoin" + }, + { + "id": "rizzmas", + "symbol": "rizzmas", + "name": "Rizzmas" + }, + { + "id": "rizzmas-2", + "symbol": "rizzmas", + "name": "RIZZMAS 2" + }, + { + "id": "rizzmaseve", + "symbol": "rizzmaseve", + "name": "RizzmasEve" + }, + { + "id": "rizznet", + "symbol": "rzto", + "name": "RZTO" + }, + { + "id": "rizzo-the-rat", + "symbol": "rizzo", + "name": "Rizzo the Rat" + }, + { + "id": "rizz-solana", + "symbol": "rizz", + "name": "RIZZ Solana" + }, + { + "id": "rizzy", + "symbol": "rizzy", + "name": "Rizzy" + }, + { + "id": "rizzyear", + "symbol": "rizzyear", + "name": "Rizzyear" + }, + { + "id": "rkey", + "symbol": "rkey", + "name": "Rkey" + }, + { + "id": "rloop", + "symbol": "rloop", + "name": "rLoop" + }, + { + "id": "rmrk", + "symbol": "rmrk", + "name": "RMRK" + }, + { + "id": "rna", + "symbol": "rna", + "name": "RNA" + }, + { + "id": "rna-2", + "symbol": "sn117", + "name": "RNA" + }, + { + "id": "rnt-token", + "symbol": "rnt", + "name": "RNT" + }, + { + "id": "roach", + "symbol": "$roach", + "name": "$ROACH" + }, + { + "id": "roadmap-coin", + "symbol": "rdmp", + "name": "Roadmap Coin" + }, + { + "id": "roaland-core", + "symbol": "roa", + "name": "ROACORE" + }, + { + "id": "roam-token", + "symbol": "roam", + "name": "ROAM Token" + }, + { + "id": "roaring-kitty", + "symbol": "roar", + "name": "Roaring Kitty" + }, + { + "id": "roaring-kitty-sol", + "symbol": "stonks", + "name": "Roaring Kitty (Sol)" + }, + { + "id": "roaring-kitty-solana", + "symbol": "kitty", + "name": "Roaring Kitty" + }, + { + "id": "roasthimjim", + "symbol": "jim", + "name": "Jim" + }, + { + "id": "roastmaster9000", + "symbol": "rm9000", + "name": "Roastmaster9000" + }, + { + "id": "roba", + "symbol": "roba", + "name": "ROBA" + }, + { + "id": "rob-banks", + "symbol": "banks", + "name": "Rob Banks" + }, + { + "id": "robco-network", + "symbol": "robco", + "name": "RobCo Network" + }, + { + "id": "robert", + "symbol": "robert", + "name": "Robert" + }, + { + "id": "robie", + "symbol": "$robie", + "name": "Robie" + }, + { + "id": "robinhood-markets-ondo-tokenized-stock", + "symbol": "hoodon", + "name": "Robinhood Markets (Ondo Tokenized Stock)" + }, + { + "id": "robinhood-xstock", + "symbol": "hoodx", + "name": "Robinhood xStock" + }, + { + "id": "robin-on-cronos", + "symbol": "robin", + "name": "Robin on Cronos" + }, + { + "id": "robin-rug", + "symbol": "rug", + "name": "Robin Rug" + }, + { + "id": "roblox-xstock", + "symbol": "rblxx", + "name": "Roblox xStock" + }, + { + "id": "robofi-token", + "symbol": "vics", + "name": "RoboFi" + }, + { + "id": "roboflux", + "symbol": "$rfq", + "name": "RoboFlux" + }, + { + "id": "robonomics-network", + "symbol": "xrt", + "name": "Robonomics Network" + }, + { + "id": "robora", + "symbol": "rbr", + "name": "Robora" + }, + { + "id": "robostack", + "symbol": "robot", + "name": "RoboStack" + }, + { + "id": "robot-2", + "symbol": "robot", + "name": "ROBOT" + }, + { + "id": "robotaxi", + "symbol": "taxi", + "name": "Robotaxi" + }, + { + "id": "robotexon", + "symbol": "rox", + "name": "Robotexon" + }, + { + "id": "robotic-doge", + "symbol": "doger", + "name": "Robotic Doge" + }, + { + "id": "robotics-intelligence", + "symbol": "ri", + "name": "Robotics Intelligence" + }, + { + "id": "robots-farm", + "symbol": "rbf", + "name": "Robots.Farm" + }, + { + "id": "roca-finance", + "symbol": "roca", + "name": "Roca Finance" + }, + { + "id": "rock-2", + "symbol": "rock", + "name": "Rock" + }, + { + "id": "rock-3", + "symbol": "rock", + "name": "ROCK" + }, + { + "id": "rock-4", + "symbol": "rock", + "name": "ROCK" + }, + { + "id": "rock-dao", + "symbol": "rock", + "name": "ROCK DAO" + }, + { + "id": "rockee-ai", + "symbol": "rock", + "name": "Rockee AI" + }, + { + "id": "rocket-2", + "symbol": "rocket", + "name": "ROCKET" + }, + { + "id": "rocketfi", + "symbol": "rocketfi", + "name": "RocketFi" + }, + { + "id": "rocket-lab-xstock", + "symbol": "rklbx", + "name": "Rocket Lab xStock" + }, + { + "id": "rocket-pool", + "symbol": "rpl", + "name": "Rocket Pool" + }, + { + "id": "rocket-pool-eth", + "symbol": "reth", + "name": "Rocket Pool ETH" + }, + { + "id": "rocketsloth", + "symbol": "rslt", + "name": "RocketSloth" + }, + { + "id": "rocketx", + "symbol": "rvf", + "name": "RocketX Exchange" + }, + { + "id": "rocki", + "symbol": "rocki", + "name": "Rocki" + }, + { + "id": "rocksolid-reth", + "symbol": "rock.reth", + "name": "RockSolid rETH" + }, + { + "id": "rockswap", + "symbol": "rock", + "name": "Rockswap" + }, + { + "id": "rocky", + "symbol": "rocky", + "name": "Rocky" + }, + { + "id": "rockycat", + "symbol": "rkc", + "name": "RockyCat" + }, + { + "id": "rocky-on-base", + "symbol": "$rocky", + "name": "ROCKY" + }, + { + "id": "rocky-the-dog", + "symbol": "rocky", + "name": "Rocky the dog" + }, + { + "id": "rocky-the-rock", + "symbol": "rocky", + "name": "Rocky" + }, + { + "id": "roco-finance", + "symbol": "roco", + "name": "Roco Finance" + }, + { + "id": "rod-ai", + "symbol": "rodai", + "name": "ROD.AI" + }, + { + "id": "rodeo-finance", + "symbol": "rdo", + "name": "Rodeo Finance" + }, + { + "id": "rodolfoorato", + "symbol": "rodolfo", + "name": "Rodolfoorato" + }, + { + "id": "roflcopter", + "symbol": "$rofl", + "name": "ROFLcopter" + }, + { + "id": "roger", + "symbol": "roger", + "name": "Roger" + }, + { + "id": "rogin-ai", + "symbol": "rog", + "name": "ROGin AI" + }, + { + "id": "rogue-ai", + "symbol": "rai", + "name": "Rogue AI" + }, + { + "id": "rogue-mav", + "symbol": "rmav", + "name": "Rogue MAV" + }, + { + "id": "roguex", + "symbol": "rox", + "name": "Roguex" + }, + { + "id": "roko-network", + "symbol": "roko", + "name": "Roko Network" + }, + { + "id": "rokos-matrix", + "symbol": "matrix", + "name": "Rokos Matrix" + }, + { + "id": "roll", + "symbol": "roll", + "name": "ROLL" + }, + { + "id": "rollback", + "symbol": "roll", + "name": "Rollback" + }, + { + "id": "rollbit-coin", + "symbol": "rlb", + "name": "Rollbit Coin" + }, + { + "id": "rollhub", + "symbol": "rhub", + "name": "ROLLHUB" + }, + { + "id": "rollie", + "symbol": "rollie", + "name": "ROLLIE" + }, + { + "id": "rollium", + "symbol": "rlm", + "name": "MarbleVerse" + }, + { + "id": "rollux-bridged-usdc-rollux", + "symbol": "usdc", + "name": "Rollux Bridged USDC (Rollux)" + }, + { + "id": "rome", + "symbol": "rome", + "name": "Rome" + }, + { + "id": "romeo", + "symbol": "romeo", + "name": "Romeo" + }, + { + "id": "rome-stablecoin", + "symbol": "rome", + "name": "ROME Stablecoin" + }, + { + "id": "ronaldinho-coin", + "symbol": "star10", + "name": "Ronaldinho Coin" + }, + { + "id": "rond", + "symbol": "rond", + "name": "ROND" + }, + { + "id": "ronda-on-sui", + "symbol": "ronda", + "name": "Ronda On Sui" + }, + { + "id": "ronen-coin", + "symbol": "ronen", + "name": "Ronen Coin" + }, + { + "id": "ronin", + "symbol": "ron", + "name": "Ronin" + }, + { + "id": "ronin-bridged-weth-ronin", + "symbol": "weth", + "name": "Ronin Bridged WETH (Ronin)" + }, + { + "id": "ronke", + "symbol": "ronke", + "name": "RONKE" + }, + { + "id": "ronnie", + "symbol": "ronnie", + "name": "Ronnie" + }, + { + "id": "ronout", + "symbol": "ronout", + "name": "Ronout" + }, + { + "id": "roobee", + "symbol": "roobee", + "name": "Roobee" + }, + { + "id": "rook", + "symbol": "rook", + "name": "Rook" + }, + { + "id": "rookie-card", + "symbol": "rookie", + "name": "ROOKIE CARD" + }, + { + "id": "roolz", + "symbol": "godl", + "name": "RoOLZ" + }, + { + "id": "roomcon", + "symbol": "roomcon", + "name": "ROOMCON" + }, + { + "id": "roost", + "symbol": "roost", + "name": "Roost" + }, + { + "id": "rootstock", + "symbol": "rbtc", + "name": "Rootstock Bitcoin" + }, + { + "id": "rootstock-bridged-usdt-rootstock", + "symbol": "rusdt", + "name": "Rootstock Bridged USDT (Rootstock)" + }, + { + "id": "rootstock-bridged-usdt-rootstock-2", + "symbol": "usdt", + "name": "Rootstock Bridged USDT (Rootstock)" + }, + { + "id": "rope-token", + "symbol": "rope", + "name": "Rope Token" + }, + { + "id": "ropirito", + "symbol": "ropirito", + "name": "Ropirito" + }, + { + "id": "rosa-inu", + "symbol": "rosa", + "name": "Rosa Inu" + }, + { + "id": "roscoe", + "symbol": "catguy", + "name": "Roscoe" + }, + { + "id": "rose-2", + "symbol": "rose", + "name": "Rose" + }, + { + "id": "rose-3", + "symbol": "rose", + "name": "Rose" + }, + { + "id": "rosecoin", + "symbol": "rose", + "name": "Rosecoin" + }, + { + "id": "rose-finance", + "symbol": "rose", + "name": "Rose Finance" + }, + { + "id": "rosen-bridge", + "symbol": "rsn", + "name": "Rosen Bridge" + }, + { + "id": "roseon", + "symbol": "rosx", + "name": "Roseon" + }, + { + "id": "rosie-the-robot", + "symbol": "rosie", + "name": "Rosie the Robot" + }, + { + "id": "rosscoin", + "symbol": "rosscoin", + "name": "Rosscoin" + }, + { + "id": "rouge-studio", + "symbol": "rouge", + "name": "Rouge Studio" + }, + { + "id": "rough-love-potion", + "symbol": "rlp", + "name": "Rough Love Potion" + }, + { + "id": "roule-token", + "symbol": "roul", + "name": "roule token" + }, + { + "id": "route", + "symbol": "route", + "name": "Router Protocol [OLD]" + }, + { + "id": "router-protocol-2", + "symbol": "route", + "name": "Router Protocol" + }, + { + "id": "routine-coin", + "symbol": "rou", + "name": "Routine Coin" + }, + { + "id": "rover-staked-bitcoin", + "symbol": "rovbtc", + "name": "Rover Staked Bitcoin" + }, + { + "id": "rovr-network", + "symbol": "rovr", + "name": "ROVR Network" + }, + { + "id": "rowan-coin", + "symbol": "rwn", + "name": "Rowan Coin" + }, + { + "id": "roxonn", + "symbol": "roxn", + "name": "ROXONN" + }, + { + "id": "roxy-frog", + "symbol": "roxy", + "name": "ROXY FROG" + }, + { + "id": "roy", + "symbol": "roy", + "name": "ROY" + }, + { + "id": "royal", + "symbol": "royal", + "name": "ROYAL" + }, + { + "id": "royal-finance-coin", + "symbol": "rfc", + "name": "Royal Finance Coin" + }, + { + "id": "rpg-maker-ai", + "symbol": "rpgmai", + "name": "RPG Maker Ai" + }, + { + "id": "rserg", + "symbol": "rserg", + "name": "rsERG" + }, + { + "id": "r-snoofi", + "symbol": "r/snoofi", + "name": "r/snoofi" + }, + { + "id": "rss3", + "symbol": "rss3", + "name": "RSS3" + }, + { + "id": "rss3-bridged-usdc-rss3", + "symbol": "usdc", + "name": "RSS3 Bridged USDC (RSS3)" + }, + { + "id": "rubber-ducky-cult", + "symbol": "$ducky", + "name": "Rubber Ducky Cult" + }, + { + "id": "rubic", + "symbol": "rbc", + "name": "Rubic" + }, + { + "id": "rubicon", + "symbol": "rubi", + "name": "Rubicon" + }, + { + "id": "rubidium", + "symbol": "rbd", + "name": "Rubidium" + }, + { + "id": "rubix", + "symbol": "rbt", + "name": "Rubix" + }, + { + "id": "rublex", + "symbol": "rbl", + "name": "Rublex" + }, + { + "id": "ruburt-f-kenidy-jr", + "symbol": "kenidy", + "name": "Ruburt F Kenidy Jr" + }, + { + "id": "rubx", + "symbol": "rubx", + "name": "RUBx" + }, + { + "id": "ruby-2", + "symbol": "ruby", + "name": "RUBY" + }, + { + "id": "ruby-coin", + "symbol": "ruby", + "name": "Ruby Coin" + }, + { + "id": "rubycoin-2", + "symbol": "rubycoin", + "name": "RUBYCOIN" + }, + { + "id": "ruby-play-network", + "symbol": "ruby", + "name": "Ruby Play Network" + }, + { + "id": "rubypulse", + "symbol": "ruby", + "name": "RubyPulse" + }, + { + "id": "rucka-coin", + "symbol": "rucka", + "name": "RUCKA COIN" + }, + { + "id": "rudi", + "symbol": "rudi", + "name": "rudi" + }, + { + "id": "rue-cat", + "symbol": "ruecat", + "name": "Rue Cat" + }, + { + "id": "rugflip", + "symbol": "rflip", + "name": "Rugflip" + }, + { + "id": "ruglord", + "symbol": "$rug$", + "name": "Ruglord" + }, + { + "id": "rugman", + "symbol": "$rug", + "name": "RUGMAN" + }, + { + "id": "rugproof", + "symbol": "rugproof", + "name": "RUGPROOF" + }, + { + "id": "rugproof-launchpad", + "symbol": "$rugproof", + "name": "RugProof Launchpad" + }, + { + "id": "rugproof-launchpad-2", + "symbol": "$rugproof", + "name": "RugProof Launchpad" + }, + { + "id": "rugpull", + "symbol": "rugpull", + "name": "Brian" + }, + { + "id": "rug-world-assets", + "symbol": "rwa", + "name": "Rug World Assets" + }, + { + "id": "rujira", + "symbol": "ruji", + "name": "Rujira" + }, + { + "id": "rumi-finance", + "symbol": "rumi", + "name": "Rumi Finance" + }, + { + "id": "run", + "symbol": "run", + "name": "Run" + }, + { + "id": "runblox", + "symbol": "rux", + "name": "RunBlox" + }, + { + "id": "runblox-arbitrum", + "symbol": "rux", + "name": "RunBlox (Arbitrum)" + }, + { + "id": "runbot", + "symbol": "rbot", + "name": "Runbot" + }, + { + "id": "runechain", + "symbol": "runix", + "name": "RuneChain" + }, + { + "id": "runecoin", + "symbol": "rsic", + "name": "RSIC•GENESIS•RUNE" + }, + { + "id": "runemine", + "symbol": "mine", + "name": "RuneMine" + }, + { + "id": "rune-pups", + "symbol": "pups", + "name": "Pups (Bitcoin)" + }, + { + "id": "runescape-gold-runes", + "symbol": "$gold", + "name": "RUNESCAPE•GOLD (Runes)" + }, + { + "id": "runesterminal", + "symbol": "runi", + "name": "RunesTerminal" + }, + { + "id": "runes-x-bitcoin", + "symbol": "✖", + "name": "RUNES•X•BITCOIN" + }, + { + "id": "runeworld-takeover", + "symbol": "rwld", + "name": "Runeworld Takeover" + }, + { + "id": "runigun", + "symbol": "rng", + "name": "RuniGun" + }, + { + "id": "runner-3", + "symbol": "runner", + "name": "RUNNER" + }, + { + "id": "runner-on-eth", + "symbol": "runner", + "name": "Runner on ETH" + }, + { + "id": "running-barn-owl", + "symbol": "ehhh", + "name": "Running Barn Owl" + }, + { + "id": "runnit", + "symbol": "runnit", + "name": "Runnit" + }, + { + "id": "runwago", + "symbol": "runwago", + "name": "Runwago" + }, + { + "id": "rupiah-token", + "symbol": "idrt", + "name": "Rupiah Token" + }, + { + "id": "ruri-truth-terminal-s-crush", + "symbol": "ruri", + "name": "Ruri - Truth Terminal's Crush" + }, + { + "id": "rush-3", + "symbol": "rush", + "name": "Rush" + }, + { + "id": "rusk-token", + "symbol": "rusk", + "name": "Rusk Token" + }, + { + "id": "russell", + "symbol": "russell", + "name": "RUSSELL" + }, + { + "id": "russell-2000-xstock", + "symbol": "iwmx", + "name": "Russell 2000 xStock" + }, + { + "id": "rustyai", + "symbol": "rusty", + "name": "RustyAI" + }, + { + "id": "rusty-robot-country-club", + "symbol": "rust", + "name": "Rusty Robot Country Club" + }, + { + "id": "rwa-ai", + "symbol": "rwa", + "name": "RWA-AI" + }, + { + "id": "rwadepin-protocol", + "symbol": "suirwapin", + "name": "RWADepin Protocol" + }, + { + "id": "rwa-finance", + "symbol": "rwas", + "name": "RWA Finance" + }, + { + "id": "rwai", + "symbol": "rwai", + "name": "RWAI by Virtuals" + }, + { + "id": "rwa-inc", + "symbol": "rwa", + "name": "RWA Inc." + }, + { + "id": "rwa-index", + "symbol": "mvrwa", + "name": "RWA Index" + }, + { + "id": "rwa-nova", + "symbol": "nova", + "name": "RWA NOVA" + }, + { + "id": "rwax", + "symbol": "rwax", + "name": "RWAX" + }, + { + "id": "rxcgames", + "symbol": "rxcg", + "name": "RXCGames" + }, + { + "id": "rxr-coin", + "symbol": "rxrc", + "name": "RXR Coin" + }, + { + "id": "ryo", + "symbol": "ryo", + "name": "Ryo Currency" + }, + { + "id": "ryo-coin", + "symbol": "ryo", + "name": "RYO Coin" + }, + { + "id": "ryoshis-vision", + "symbol": "ryoshi", + "name": "Ryoshis Vision" + }, + { + "id": "ryoshi-token", + "symbol": "ryoshi", + "name": "Ryoshi" + }, + { + "id": "ryoshi-with-knife", + "symbol": "ryoshi", + "name": "ryoshi with knife" + }, + { + "id": "ryuji", + "symbol": "ryuji", + "name": "Ryuji" + }, + { + "id": "ryujin", + "symbol": "ryu", + "name": "RyuJin" + }, + { + "id": "ryze", + "symbol": "ryze", + "name": "Ryze" + }, + { + "id": "rzcoin", + "symbol": "rz", + "name": "RZcoin" + }, + { + "id": "rzusd", + "symbol": "rzusd", + "name": "RZUSD" + }, + { + "id": "s3nse-ai", + "symbol": "s3nse", + "name": "S3NSE AI" + }, + { + "id": "saa-ai", + "symbol": "drpal", + "name": "SAA-AI" + }, + { + "id": "saad-boi", + "symbol": "saad", + "name": "Saad Boi" + }, + { + "id": "saakuru-labs", + "symbol": "skr", + "name": "Saakuru" + }, + { + "id": "saasgo", + "symbol": "saas", + "name": "SaaSGo" + }, + { + "id": "sabai-ecovers", + "symbol": "sabai", + "name": "Sabai Protocol" + }, + { + "id": "sabaka-inu", + "symbol": "sabaka inu", + "name": "Sabaka Inu" + }, + { + "id": "saber", + "symbol": "sbr", + "name": "Saber" + }, + { + "id": "sable", + "symbol": "sable", + "name": "Sable" + }, + { + "id": "sacabam", + "symbol": "scb", + "name": "Sacabam" + }, + { + "id": "sac-daddy-2", + "symbol": "daddy", + "name": "SAC DADDY" + }, + { + "id": "sachicoin", + "symbol": "sachi", + "name": "Sachicoin" + }, + { + "id": "sacho", + "symbol": "$sacho", + "name": "Sacho" + }, + { + "id": "sadant", + "symbol": "sadant", + "name": "SADANT" + }, + { + "id": "sad-ape", + "symbol": "sape", + "name": "Sad Ape" + }, + { + "id": "sadcat", + "symbol": "sad", + "name": "SadCat" + }, + { + "id": "sad-hamster", + "symbol": "hammy", + "name": "SAD HAMSTER" + }, + { + "id": "sad-meow", + "symbol": "sadmeow", + "name": "SAD MEOW" + }, + { + "id": "safe", + "symbol": "safe", + "name": "Safe" + }, + { + "id": "safe-2", + "symbol": "safe", + "name": "SAFE" + }, + { + "id": "safe-anwang", + "symbol": "safe", + "name": "SAFE(AnWang)" + }, + { + "id": "safeblast", + "symbol": "blast", + "name": "SafeBlast" + }, + { + "id": "safecircle", + "symbol": "sc", + "name": "SafeCircle" + }, + { + "id": "safecoin", + "symbol": "safe", + "name": "SAFEbit" + }, + { + "id": "safe-coin-2", + "symbol": "safe", + "name": "SafeCoin" + }, + { + "id": "safe-deal", + "symbol": "sfd", + "name": "SafeDeal" + }, + { + "id": "safegrok", + "symbol": "safegrok", + "name": "SafeGrok" + }, + { + "id": "safe-haven", + "symbol": "sha", + "name": "Safe Haven" + }, + { + "id": "safelaunch", + "symbol": "sfex", + "name": "SafeLaunch" + }, + { + "id": "safemars", + "symbol": "safemars", + "name": "Safemars" + }, + { + "id": "safemars-protocol", + "symbol": "smars", + "name": "Safemars Protocol" + }, + { + "id": "safememe", + "symbol": "sme", + "name": "SafeMeme" + }, + { + "id": "safemoo", + "symbol": "safemoo", + "name": "SafeMoo" + }, + { + "id": "safemoon-2", + "symbol": "sfm", + "name": "SafeMoon" + }, + { + "id": "safemoon-inu", + "symbol": "smi", + "name": "SafeMoon Inu" + }, + { + "id": "safe-nebula", + "symbol": "snb", + "name": "Safe Nebula" + }, + { + "id": "safepal", + "symbol": "sfp", + "name": "SafePal" + }, + { + "id": "safe-quantum-wallet", + "symbol": "sqw", + "name": "Safe Quantum Wallet" + }, + { + "id": "safe-scan", + "symbol": "sn76", + "name": "Safe Scan" + }, + { + "id": "safestake", + "symbol": "dvt", + "name": "SafeStake" + }, + { + "id": "safetrees", + "symbol": "trees", + "name": "Safetrees" + }, + { + "id": "saffron-finance", + "symbol": "sfi", + "name": "saffron.finance" + }, + { + "id": "safle", + "symbol": "safle", + "name": "Safle" + }, + { + "id": "safu", + "symbol": "safu", + "name": "SAFU" + }, + { + "id": "safu-2", + "symbol": "safu", + "name": "SAFU" + }, + { + "id": "safu-kek-gigafundz-888", + "symbol": "skg888", + "name": "Safu & Kek Gigafundz 888" + }, + { + "id": "safulauncher", + "symbol": "safu", + "name": "SafuLauncher" + }, + { + "id": "safuu", + "symbol": "safuu", + "name": "SAFUU" + }, + { + "id": "sag3-ai-by-virtuals", + "symbol": "sag3", + "name": "SAG3.ai by Virtuals" + }, + { + "id": "saga-2", + "symbol": "saga", + "name": "Saga" + }, + { + "id": "saga-bridged-usdc-saga", + "symbol": "usdc", + "name": "Squid Bridged USDC (Saga)" + }, + { + "id": "saga-bridged-usdt-saga", + "symbol": "usdt", + "name": "Saga Bridged USDT (Saga)" + }, + { + "id": "saga-bridged-weth-saga", + "symbol": "weth", + "name": "Saga Bridged WETH (Saga)" + }, + { + "id": "sagas-of-destiny", + "symbol": "sage", + "name": "Sagas Of Destiny" + }, + { + "id": "sage", + "symbol": "sage", + "name": "Sage by Virtuals" + }, + { + "id": "sage-market", + "symbol": "sage", + "name": "Sage Market" + }, + { + "id": "sage-universe", + "symbol": "sage", + "name": "Sage Universe" + }, + { + "id": "sagittarius", + "symbol": "sagit", + "name": "Sagittarius" + }, + { + "id": "sahara-ai", + "symbol": "sahara", + "name": "Sahara AI" + }, + { + "id": "sai", + "symbol": "sai", + "name": "Sai" + }, + { + "id": "saiko-ai", + "symbol": "saiko", + "name": "Saiko Ai" + }, + { + "id": "saiko-hamster", + "symbol": "$saiko", + "name": "SAIKO•HAMSTER" + }, + { + "id": "sail-2", + "symbol": "sail", + "name": "Clipper SAIL" + }, + { + "id": "sailana-inu", + "symbol": "sailana", + "name": "Sailana Inu" + }, + { + "id": "saios", + "symbol": "sai", + "name": "SAIOS" + }, + { + "id": "saitabit", + "symbol": "saitabit", + "name": "SaitaBit" + }, + { + "id": "saitama-soltama", + "symbol": "soltama", + "name": "Saitama (SOLTAMA)" + }, + { + "id": "saito", + "symbol": "saito", + "name": "Saito" + }, + { + "id": "saitoshi-by-virtuals", + "symbol": "sai", + "name": "Saitoshi by Virtuals" + }, + { + "id": "saiyan-pepe", + "symbol": "spepe", + "name": "Saiyan PEPE" + }, + { + "id": "sakai-vault", + "symbol": "sakai", + "name": "Sakai Vault" + }, + { + "id": "sake-token", + "symbol": "sake", + "name": "SakeSwap" + }, + { + "id": "salad", + "symbol": "sald", + "name": "Salad" + }, + { + "id": "salamanca", + "symbol": "don", + "name": "Salamanca" + }, + { + "id": "salesforce-ondo-tokenized-stock", + "symbol": "crmon", + "name": "Salesforce (Ondo Tokenized Stock)" + }, + { + "id": "salesforce-xstock", + "symbol": "crmx", + "name": "Salesforce xStock" + }, + { + "id": "sallar-2", + "symbol": "all", + "name": "Sallar" + }, + { + "id": "sally-a1c", + "symbol": "a1c", + "name": "Sally A1C" + }, + { + "id": "salsa-liquid-multiversx", + "symbol": "legld", + "name": "SALSA Liquid MultiversX" + }, + { + "id": "salt", + "symbol": "salt", + "name": "SALT" + }, + { + "id": "salt-bae-for-the-people", + "symbol": "sbae", + "name": "Salt Bae For The People" + }, + { + "id": "saltminecoin", + "symbol": "salt", + "name": "SALTMINECOIN" + }, + { + "id": "salty", + "symbol": "salty", + "name": "Salty" + }, + { + "id": "saluki", + "symbol": "saluki", + "name": "SALUKI" + }, + { + "id": "salute", + "symbol": "slt", + "name": "Salute" + }, + { + "id": "salvator-mundi", + "symbol": "mundi", + "name": "Salvator Mundi" + }, + { + "id": "salvium", + "symbol": "sal", + "name": "Salvium" + }, + { + "id": "salvor", + "symbol": "art", + "name": "Salvor" + }, + { + "id": "sam-2", + "symbol": "sam", + "name": "SAM" + }, + { + "id": "sam-bankmeme-fried", + "symbol": "sbf", + "name": "Sam Bankmeme Fried" + }, + { + "id": "sam-bikbaev-100", + "symbol": "bikbs100", + "name": "SAM BIKBAEV 100" + }, + { + "id": "sami", + "symbol": "sami1", + "name": "Sami" + }, + { + "id": "samo-wif-hat", + "symbol": "samowif", + "name": "samo wif hat" + }, + { + "id": "samoyedcoin", + "symbol": "samo", + "name": "Samoyedcoin" + }, + { + "id": "samsara-build", + "symbol": "sams", + "name": "Samsara.Build" + }, + { + "id": "samson-the-goldendoodle", + "symbol": "samson", + "name": "Samson the Goldendoodle" + }, + { + "id": "samsunspor-fan-token", + "symbol": "sam", + "name": "Samsunspor Fan Token" + }, + { + "id": "samur-ai", + "symbol": "samurai", + "name": "SamurAI" + }, + { + "id": "samurai-cat", + "symbol": "yuki", + "name": "Samurai Cat" + }, + { + "id": "samurai-starter", + "symbol": "sam", + "name": "Samurai Starter" + }, + { + "id": "sanafi-onchain", + "symbol": "sana", + "name": "Sanafi Onchain" + }, + { + "id": "san-chan", + "symbol": "san", + "name": "San Chan" + }, + { + "id": "san-chan-2", + "symbol": "sanchan", + "name": "San Chan" + }, + { + "id": "sancho", + "symbol": "sancho", + "name": "Sancho" + }, + { + "id": "sanctum", + "symbol": "sanctum", + "name": "Sanctum" + }, + { + "id": "sanctum-2", + "symbol": "cloud", + "name": "Cloud" + }, + { + "id": "sandclock", + "symbol": "quartz", + "name": "Sandclock" + }, + { + "id": "sandwich-cat", + "symbol": "saca", + "name": "Sandwich Cat" + }, + { + "id": "sandy", + "symbol": "sandy", + "name": "SANDY" + }, + { + "id": "sandy-codex", + "symbol": "sandy", + "name": "Sandy Codex" + }, + { + "id": "sanin", + "symbol": "sanin", + "name": "Sanin" + }, + { + "id": "sanin-inu", + "symbol": "sani", + "name": "Sanin Inu" + }, + { + "id": "sanji", + "symbol": "sanji", + "name": "Sanji" + }, + { + "id": "sanko-bridged-usdc-sanko", + "symbol": "usdc", + "name": "Sanko Bridged USDC (Sanko)" + }, + { + "id": "sanko-bridged-weth-sanko", + "symbol": "weth", + "name": "Sanko Bridged WETH (Sanko)" + }, + { + "id": "sanshu", + "symbol": "sanshu!", + "name": "SANSHU!" + }, + { + "id": "sanshu-inu", + "symbol": "sanshu", + "name": "Sanshu Inu (OLD)" + }, + { + "id": "santa-2", + "symbol": "santa", + "name": "SANTA" + }, + { + "id": "santa-3", + "symbol": "santa", + "name": "Santa" + }, + { + "id": "santa-by-virtuals", + "symbol": "santa", + "name": "SANTA by Virtuals" + }, + { + "id": "santacoin", + "symbol": "santa", + "name": "Santacoin" + }, + { + "id": "santa-coin-2", + "symbol": "santa", + "name": "Santa Coin" + }, + { + "id": "santa-hat", + "symbol": "santahat", + "name": "SANTA HAT" + }, + { + "id": "santa-inu", + "symbol": "saninu", + "name": "Santa Inu" + }, + { + "id": "santa-pepe", + "symbol": "santapepe", + "name": "Santa Pepe" + }, + { + "id": "santasol", + "symbol": "ssol", + "name": "SantaSol" + }, + { + "id": "santawifhat", + "symbol": "santa", + "name": "Santawifhat" + }, + { + "id": "santiment-network-token", + "symbol": "san", + "name": "Santiment Network" + }, + { + "id": "santos-fc-fan-token", + "symbol": "santos", + "name": "Santos FC Fan Token" + }, + { + "id": "sao-paulo-fc-fan-token", + "symbol": "spfc", + "name": "Sao Paulo FC Fan Token" + }, + { + "id": "sapien-2", + "symbol": "sapien", + "name": "Sapien" + }, + { + "id": "sapiens", + "symbol": "spn", + "name": "Sapiens AI" + }, + { + "id": "sapphire", + "symbol": "sapp", + "name": "Sapphire" + }, + { + "id": "sappy-seals-pixl", + "symbol": "pixl", + "name": "PIXL" + }, + { + "id": "sarah", + "symbol": "sarah", + "name": "Sarah" + }, + { + "id": "sardis-network", + "symbol": "srds", + "name": "Sardis Network" + }, + { + "id": "saros-finance", + "symbol": "saros", + "name": "Saros" + }, + { + "id": "sasha-cat", + "symbol": "sasha", + "name": "SASHA CAT" + }, + { + "id": "sashimi", + "symbol": "sashimi", + "name": "Sashimi" + }, + { + "id": "sassy-the-mf-sasquatch", + "symbol": "sassymf", + "name": "Sassy The MF Sasquatch" + }, + { + "id": "satellite-doge-1-mission", + "symbol": "doge-1", + "name": "Satellite Doge-1 Mission" + }, + { + "id": "satfi", + "symbol": "$satfi", + "name": "Satfi" + }, + { + "id": "satin-exchange", + "symbol": "satin", + "name": "Satin Exchange" + }, + { + "id": "satlayer", + "symbol": "slay", + "name": "SatLayer" + }, + { + "id": "satlayer-restaked-unibtc", + "symbol": "satunibtc", + "name": "SatLayer Restaked uniBTC" + }, + { + "id": "sato", + "symbol": "sato", + "name": "SATO" + }, + { + "id": "sator", + "symbol": "sao", + "name": "Sator" + }, + { + "id": "satori-network", + "symbol": "satori", + "name": "Satori Network" + }, + { + "id": "satoshai", + "symbol": "sai", + "name": "SatoshAI" + }, + { + "id": "satoshi-ai-agent-by-virtuals", + "symbol": "saint", + "name": "Satoshi AI agent by Virtuals" + }, + { + "id": "satoshi-btc-stablecoin", + "symbol": "tsat", + "name": "Satoshi BTC Stablecoin" + }, + { + "id": "satoshi-cash-network", + "symbol": "scash", + "name": "Satoshi Cash Network" + }, + { + "id": "satoshi-island", + "symbol": "stc", + "name": "Satoshi Island" + }, + { + "id": "satoshi-nakamoto", + "symbol": "satoshi", + "name": "Satoshi Nakamoto" + }, + { + "id": "satoshi-nakamoto-rune", + "symbol": "satoshi", + "name": "SATOSHI•NAKAMOTO (Bitcoin)" + }, + { + "id": "satoshi-nakamoto-sol", + "symbol": "$godfather", + "name": "SATOSHI NAKAMOTO (SOL)" + }, + { + "id": "satoshi-panda", + "symbol": "sap", + "name": "Satoshi Panda" + }, + { + "id": "satoshi-rune-titan-runes", + "symbol": "titan", + "name": "SATOSHI•RUNE•TITAN (Runes)" + }, + { + "id": "satoshi-stablecoin", + "symbol": "satusd", + "name": "Satoshi Stablecoin" + }, + { + "id": "satoshis-vision", + "symbol": "sats", + "name": "Satoshis Vision" + }, + { + "id": "satoshisync", + "symbol": "ssnc", + "name": "SatoshiSync" + }, + { + "id": "satoshitcoin", + "symbol": "satoshit", + "name": "SatoshitCoin" + }, + { + "id": "satoshivm", + "symbol": "savm", + "name": "SatoshiVM" + }, + { + "id": "sato-the-dog", + "symbol": "sato", + "name": "Sato The Dog" + }, + { + "id": "satoxcoin", + "symbol": "satox", + "name": "Satoxcoin" + }, + { + "id": "satozhi", + "symbol": "satoz", + "name": "Satozhi" + }, + { + "id": "sats-ordinals", + "symbol": "sats", + "name": "SATS (Ordinals)" + }, + { + "id": "satt", + "symbol": "satt", + "name": "SaTT" + }, + { + "id": "saturna", + "symbol": "sat", + "name": "Saturna" + }, + { + "id": "saturn-ai", + "symbol": "satai", + "name": "Saturn AI" + }, + { + "id": "satushi-nukumutu", + "symbol": "$nukumutu", + "name": "Satushi Nukumutu" + }, + { + "id": "satx", + "symbol": "satx", + "name": "$SATX" + }, + { + "id": "sauce", + "symbol": "sauce", + "name": "SAUCE" + }, + { + "id": "sauce-inu", + "symbol": "sauceinu", + "name": "Sauce Inu" + }, + { + "id": "saucerswap", + "symbol": "sauce", + "name": "SaucerSwap" + }, + { + "id": "saudi-bonk", + "symbol": "saudibonk", + "name": "Saudi Bonk" + }, + { + "id": "saudi-pepe", + "symbol": "saudipepe", + "name": "SAUDI PEPE" + }, + { + "id": "sausagers-meat", + "symbol": "meat", + "name": "Meat" + }, + { + "id": "savanna", + "symbol": "svn", + "name": "Savanna" + }, + { + "id": "savanna-survival", + "symbol": "svsa", + "name": "Savanna Survival" + }, + { + "id": "save", + "symbol": "save", + "name": "Save" + }, + { + "id": "save-baby-doge", + "symbol": "babydoge", + "name": "Save Baby Doge" + }, + { + "id": "savelucy", + "symbol": "lucy", + "name": "#savelucy" + }, + { + "id": "saveplanetearth", + "symbol": "spe", + "name": "SavePlanetEarth" + }, + { + "id": "save-the-ostriches", + "symbol": "ostrich", + "name": "Save The Ostriches" + }, + { + "id": "savings-crvusd", + "symbol": "scrvusd", + "name": "Savings crvUSD" + }, + { + "id": "savings-dai", + "symbol": "sdai", + "name": "Savings Dai" + }, + { + "id": "savings-eur0", + "symbol": "seur0", + "name": "Savings EUR0" + }, + { + "id": "savings-usd0", + "symbol": "susd0", + "name": "Savings USD0" + }, + { + "id": "savings-usx", + "symbol": "susx", + "name": "Savings USX" + }, + { + "id": "savings-xdai", + "symbol": "sdai", + "name": "Savings xDAI" + }, + { + "id": "saycoin", + "symbol": "say", + "name": "SAYCOIN" + }, + { + "id": "sbold-by-k3-capital", + "symbol": "sbold", + "name": "sBOLD by K3 Capital" + }, + { + "id": "sbrsol", + "symbol": "sbr", + "name": "Strategic Bitcoin Reserve" + }, + { + "id": "sbtc-2", + "symbol": "sbtc", + "name": "sBTC" + }, + { + "id": "scada", + "symbol": "scada", + "name": "SCADA" + }, + { + "id": "scales", + "symbol": "scales", + "name": "SCALES" + }, + { + "id": "scaleton", + "symbol": "dust", + "name": "DeDust" + }, + { + "id": "scalia-infrastructure", + "symbol": "scale", + "name": "Scalia Infrastructure" + }, + { + "id": "scallop", + "symbol": "sclp", + "name": "Scallop" + }, + { + "id": "scallop-2", + "symbol": "sca", + "name": "Scallop" + }, + { + "id": "scalr", + "symbol": "scalr", + "name": "Scalr" + }, + { + "id": "scamcoin", + "symbol": "scam", + "name": "Scamcoin" + }, + { + "id": "scamfari", + "symbol": "scm", + "name": "ScamFari" + }, + { + "id": "scan", + "symbol": "scan", + "name": "SCAN" + }, + { + "id": "scan-meme", + "symbol": "scan", + "name": "scan meme" + }, + { + "id": "scapesmania", + "symbol": "$mania", + "name": "ScapesMania" + }, + { + "id": "scarcity", + "symbol": "scx", + "name": "Scarcity" + }, + { + "id": "scarcity-2", + "symbol": "scarcity", + "name": "SCARCITY" + }, + { + "id": "scarlet-waifu-capital-managemnet", + "symbol": "waifu", + "name": "Scarlet Waifu Capital Management" + }, + { + "id": "scart360", + "symbol": "scart", + "name": "SCART360" + }, + { + "id": "scat", + "symbol": "cat", + "name": "Scat" + }, + { + "id": "s-c-corinthians-fan-token", + "symbol": "sccp", + "name": "S.C. Corinthians Fan Token" + }, + { + "id": "sceptre-staked-flr", + "symbol": "sflr", + "name": "Sceptre Staked FLR" + }, + { + "id": "schizo", + "symbol": "schizo", + "name": "SCHIZO" + }, + { + "id": "schizo-2", + "symbol": "schizo", + "name": "Schizo" + }, + { + "id": "schizodio", + "symbol": "schizodio", + "name": "Schizodio" + }, + { + "id": "schizoid", + "symbol": "zoid", + "name": "SCHIZOID" + }, + { + "id": "schizo-terminal", + "symbol": "minds", + "name": "Mindscraft" + }, + { + "id": "schnitzel", + "symbol": "sntzl", + "name": "SCHNITZEL" + }, + { + "id": "schnoz", + "symbol": "schnoz", + "name": "Schnoz" + }, + { + "id": "schrodi", + "symbol": "schrodi", + "name": "Schrodi" + }, + { + "id": "schrodinger", + "symbol": "meow", + "name": "Schrodinger" + }, + { + "id": "schrodinger-2", + "symbol": "sgr", + "name": "Schrodinger" + }, + { + "id": "schrodinger-3", + "symbol": "schrdngr", + "name": "Schrodinger" + }, + { + "id": "schrodinger-s-coin", + "symbol": "maybe", + "name": "Schrodinger's Coin" + }, + { + "id": "schuman-europ", + "symbol": "europ", + "name": "EURØP" + }, + { + "id": "science-cult-mascot", + "symbol": "hela", + "name": "Science Cult Mascot" + }, + { + "id": "scientia", + "symbol": "scie", + "name": "Scientia" + }, + { + "id": "scifosx", + "symbol": "sfx", + "name": "SciFoSX" + }, + { + "id": "sci-hub", + "symbol": "scihub", + "name": "sci-hub" + }, + { + "id": "sci-hub-2", + "symbol": "sci", + "name": "Sci-Hub" + }, + { + "id": "scinet", + "symbol": "scinet", + "name": "SciNet" + }, + { + "id": "sc-internacional-fan-token", + "symbol": "saci", + "name": "SC Internacional Fan Token" + }, + { + "id": "scoop", + "symbol": "scoop", + "name": "SCOOP" + }, + { + "id": "scooter", + "symbol": "scooter", + "name": "Scooter" + }, + { + "id": "scopuly-token", + "symbol": "scop", + "name": "Scopuly" + }, + { + "id": "scorai", + "symbol": "scorai", + "name": "Staking Compound ORAI" + }, + { + "id": "scorch", + "symbol": "scorch", + "name": "SCORCH" + }, + { + "id": "score", + "symbol": "sn44", + "name": "Score" + }, + { + "id": "scorpio", + "symbol": "scorpio", + "name": "Scorpio" + }, + { + "id": "scorpion", + "symbol": "scorp", + "name": "Scorpion" + }, + { + "id": "scotcoin-2", + "symbol": "scot", + "name": "Scotcoin" + }, + { + "id": "scottie-doggie", + "symbol": "scottie", + "name": "Scottie Doggie" + }, + { + "id": "scottyai", + "symbol": "scotty", + "name": "ScottyTheAi" + }, + { + "id": "scotty-beam", + "symbol": "scotty", + "name": "Scotty Beam" + }, + { + "id": "scoutly-ai", + "symbol": "scout", + "name": "Scoutly AI" + }, + { + "id": "scout-protocol-token", + "symbol": "dev", + "name": "Scout Protocol Token" + }, + { + "id": "scrap", + "symbol": "scrap", + "name": "Scrap" + }, + { + "id": "scrat", + "symbol": "scrat", + "name": "Scrat" + }, + { + "id": "scratch-3", + "symbol": "$scratch", + "name": "Scratch" + }, + { + "id": "screaming-hyrax", + "symbol": "$mama", + "name": "Screaming Hyrax" + }, + { + "id": "screx", + "symbol": "scrx", + "name": "Screx" + }, + { + "id": "scribes", + "symbol": "scribes", + "name": "Scribes" + }, + { + "id": "script-network", + "symbol": "scpt", + "name": "Script Network" + }, + { + "id": "script-network-spay", + "symbol": "spay", + "name": "Script Network SPAY" + }, + { + "id": "scriptonia", + "symbol": "script", + "name": "Scriptonia" + }, + { + "id": "scriv", + "symbol": "scriv", + "name": "SCRIV" + }, + { + "id": "scroll", + "symbol": "scr", + "name": "Scroll" + }, + { + "id": "scrolly-the-map", + "symbol": "scrolly", + "name": "Scrolly the map" + }, + { + "id": "scuba-dog", + "symbol": "scuba", + "name": "Scuba Dog" + }, + { + "id": "sdoge", + "symbol": "sdoge", + "name": "SDOGE" + }, + { + "id": "sdola", + "symbol": "sdola", + "name": "sDOLA" + }, + { + "id": "sdrive-app", + "symbol": "scoin", + "name": "SCOIN" + }, + { + "id": "seagle", + "symbol": "se", + "name": "SEagle" + }, + { + "id": "seal-2", + "symbol": "seal", + "name": "Seal" + }, + { + "id": "seal-3", + "symbol": "seal", + "name": "Seal" + }, + { + "id": "seal-dog", + "symbol": "sog", + "name": "Seal Dog" + }, + { + "id": "seal-sol", + "symbol": "seal", + "name": "Seal" + }, + { + "id": "seals-ready-to-crack-pengu-s-ice", + "symbol": "seals", + "name": "Seals-Ready to Crack Pengu's Ice" + }, + { + "id": "sealwifhat", + "symbol": "si", + "name": "sealwifhat" + }, + { + "id": "seamania", + "symbol": "seamania", + "name": "SEAMANIA" + }, + { + "id": "seamans-token", + "symbol": "seat", + "name": "Seamans Token" + }, + { + "id": "seamless-protocol", + "symbol": "seam", + "name": "Seamless Protocol" + }, + { + "id": "seamoon-protocol", + "symbol": "smp", + "name": "Seamoon Protocol" + }, + { + "id": "seba", + "symbol": "seba", + "name": "Seba" + }, + { + "id": "secondbtc", + "symbol": "sbtc", + "name": "SecondBTC" + }, + { + "id": "second-world-games", + "symbol": "swio", + "name": "Second World Games" + }, + { + "id": "secret", + "symbol": "scrt", + "name": "Secret" + }, + { + "id": "secret-erc20", + "symbol": "wscrt", + "name": "Secret (ERC20)" + }, + { + "id": "secret-society", + "symbol": "ss", + "name": "Secret Society" + }, + { + "id": "sect-bot-2", + "symbol": "sect", + "name": "SECT BOT" + }, + { + "id": "sector", + "symbol": "sect", + "name": "Sector" + }, + { + "id": "securechain-ai-2", + "symbol": "scai", + "name": "SecureChain AI" + }, + { + "id": "secured-moonrat-token", + "symbol": "smrat", + "name": "Secured MoonRat" + }, + { + "id": "security-token-offering", + "symbol": "stoos", + "name": "STO Operating System Token" + }, + { + "id": "seda-2", + "symbol": "seda", + "name": "SEDA" + }, + { + "id": "sedux-ai", + "symbol": "sedux", + "name": "SEDUX AI" + }, + { + "id": "seed-2", + "symbol": "seed", + "name": "SEED" + }, + { + "id": "seed-3", + "symbol": "seed", + "name": "SEED" + }, + { + "id": "seeded-network", + "symbol": "seeded", + "name": "Seeded Network" + }, + { + "id": "seedify-fund", + "symbol": "sfund", + "name": "Seedify.fund" + }, + { + "id": "seedlaunch", + "symbol": "slt", + "name": "SeedLaunch" + }, + { + "id": "seed-photo", + "symbol": "seed", + "name": "Seed.Photo" + }, + { + "id": "seed-usdn", + "symbol": "susdn", + "name": "seed USDN" + }, + { + "id": "seedworld", + "symbol": "sworld", + "name": "Seedworld" + }, + { + "id": "seek-tiger", + "symbol": "sti", + "name": "Seek Tiger" + }, + { + "id": "sei-fastusd", + "symbol": "fastusd", + "name": "Sei fastUSD" + }, + { + "id": "seigniorage-shares", + "symbol": "share", + "name": "Seigniorage Shares" + }, + { + "id": "sei-network", + "symbol": "sei", + "name": "Sei" + }, + { + "id": "seiren-games-network", + "symbol": "serg", + "name": "Seiren Games Network" + }, + { + "id": "sei-staked-fastusd", + "symbol": "sfastusd", + "name": "Sei Staked fastUSD" + }, + { + "id": "seiyan", + "symbol": "seiyan", + "name": "SEIYAN" + }, + { + "id": "seiyaneth", + "symbol": "seth", + "name": "seiyanETH" + }, + { + "id": "seka", + "symbol": "seka", + "name": "SEKA" + }, + { + "id": "sekoia-by-virtuals", + "symbol": "sekoia", + "name": "sekoia by Virtuals" + }, + { + "id": "sekuritance", + "symbol": "skrt", + "name": "Sekuritance" + }, + { + "id": "sekuya-2", + "symbol": "skya", + "name": "Sekuya Multiverse" + }, + { + "id": "selen-ai", + "symbol": "selen", + "name": "Selen Ai" + }, + { + "id": "selenium-2", + "symbol": "sele", + "name": "Selenium" + }, + { + "id": "self-chain", + "symbol": "slf", + "name": "Self Chain" + }, + { + "id": "selfiedogcoin", + "symbol": "selfie", + "name": "SelfieDogCoin" + }, + { + "id": "selfkey", + "symbol": "key", + "name": "SelfKey" + }, + { + "id": "selfkey-2", + "symbol": "self", + "name": "SelfKey" + }, + { + "id": "self-token", + "symbol": "self", + "name": "Self Token" + }, + { + "id": "semantic-layer", + "symbol": "42", + "name": "Semantic Layer" + }, + { + "id": "senaraflow", + "symbol": "snfl", + "name": "SenaraFlow" + }, + { + "id": "senate", + "symbol": "senate", + "name": "SENATE" + }, + { + "id": "send-2", + "symbol": "send", + "name": "Sendcoin" + }, + { + "id": "sendcrypto", + "symbol": "sendc", + "name": "SendCrypto" + }, + { + "id": "sender-ai", + "symbol": "asi", + "name": "Sender AI" + }, + { + "id": "sendit", + "symbol": "sendit", + "name": "Sendit" + }, + { + "id": "send-it", + "symbol": "sendit", + "name": "Send It" + }, + { + "id": "sendor", + "symbol": "sendor", + "name": "Sendor" + }, + { + "id": "send-token-2", + "symbol": "send", + "name": "Send" + }, + { + "id": "senku-ishigami-by-virtuals", + "symbol": "senku", + "name": "Senku Ishigami by Virtuals" + }, + { + "id": "sensay", + "symbol": "snsy", + "name": "Sensay" + }, + { + "id": "sense4fit", + "symbol": "sfit", + "name": "Sense4FIT" + }, + { + "id": "sensi", + "symbol": "sensi", + "name": "Sensi" + }, + { + "id": "senso", + "symbol": "senso", + "name": "SENSO" + }, + { + "id": "senspark", + "symbol": "sen", + "name": "Senspark (BNB)" + }, + { + "id": "senspark-matic", + "symbol": "sen", + "name": "Senspark (POL)" + }, + { + "id": "sensus", + "symbol": "sensus", + "name": "SENSUS" + }, + { + "id": "sentai-2", + "symbol": "sentai", + "name": "SENTAI" + }, + { + "id": "senti-ai", + "symbol": "senti", + "name": "Senti AI" + }, + { + "id": "sentient", + "symbol": "sent", + "name": "Sentient" + }, + { + "id": "sentient-ai", + "symbol": "setai", + "name": "SETAI Agents" + }, + { + "id": "sentient-memes-producer", + "symbol": "memetic", + "name": "sentient memes producer" + }, + { + "id": "sentiient", + "symbol": "sent", + "name": "Sentiient" + }, + { + "id": "sentinel", + "symbol": "p2p", + "name": "Sentinel" + }, + { + "id": "sentinel-protocol", + "symbol": "bounty", + "name": "ChainBounty" + }, + { + "id": "sentio-protocol", + "symbol": "sen", + "name": "Sentio AI" + }, + { + "id": "sentismai", + "symbol": "sentis", + "name": "SentismAI" + }, + { + "id": "sentra", + "symbol": "$stra", + "name": "Sentra" + }, + { + "id": "sentre", + "symbol": "sntr", + "name": "Sentre" + }, + { + "id": "sequel", + "symbol": "movie", + "name": "Sequel" + }, + { + "id": "ser-alpha", + "symbol": "seralpha", + "name": "Ser Alpha" + }, + { + "id": "seraph", + "symbol": "seraph", + "name": "Seraph" + }, + { + "id": "seraph-by-virtuals", + "symbol": "seraph", + "name": "Seraph by Virtuals" + }, + { + "id": "serenity-shield", + "symbol": "sersh", + "name": "Serenity" + }, + { + "id": "serious-coin", + "symbol": "$serious", + "name": "Serious Coin" + }, + { + "id": "serpent", + "symbol": "spt", + "name": "Serpent" + }, + { + "id": "serum", + "symbol": "srm", + "name": "Serum" + }, + { + "id": "serv0-protocol", + "symbol": "serv0", + "name": "Serv0 Protocol" + }, + { + "id": "servicenow-ondo-tokenized-stock", + "symbol": "nowon", + "name": "ServiceNow (Ondo Tokenized Stock)" + }, + { + "id": "session-token", + "symbol": "sesh", + "name": "Session Token" + }, + { + "id": "seth", + "symbol": "seth", + "name": "sETH" + }, + { + "id": "seth2", + "symbol": "seth2", + "name": "sETH2" + }, + { + "id": "settled-ethxy-token", + "symbol": "sexy", + "name": "Settled EthXY Token" + }, + { + "id": "seur", + "symbol": "seur", + "name": "sEUR" + }, + { + "id": "seven-deuce", + "symbol": "sdt", + "name": "Seven Deuce" + }, + { + "id": "sevilla-fan-token", + "symbol": "sevilla", + "name": "Sevilla Fan Token" + }, + { + "id": "s-finance", + "symbol": "sfg", + "name": "S.Finance" + }, + { + "id": "sgyd", + "symbol": "sgyd", + "name": "sGYD" + }, + { + "id": "shack-token", + "symbol": "shack", + "name": "Shack Token" + }, + { + "id": "shade-protocol", + "symbol": "shd", + "name": "Shade Protocol" + }, + { + "id": "shadow-2", + "symbol": "shadow", + "name": "Shadow" + }, + { + "id": "shadow-ai", + "symbol": "shadoai", + "name": "Shadow AI" + }, + { + "id": "shadowcats", + "symbol": "shadowcats", + "name": "Shadowcats" + }, + { + "id": "shadowladys-dn404", + "symbol": "$shadow", + "name": "Shadowladys DN404" + }, + { + "id": "shadow-liquid-staking-token", + "symbol": "x33", + "name": "Shadow Liquid Staking Token" + }, + { + "id": "shadow-node", + "symbol": "svpn", + "name": "Shadow Node" + }, + { + "id": "shadows-of-hope", + "symbol": "soh", + "name": "Shadows Of Hope" + }, + { + "id": "shadowswap-token", + "symbol": "shdw", + "name": "ShadowSwap Token" + }, + { + "id": "shadowtokens-bridged-usdc-elastos", + "symbol": "ethusdc", + "name": "Shadow Token Bridged USDC (Elastos)" + }, + { + "id": "shadowtokens-bridged-wbnb-elastos-smart-chain", + "symbol": "wbnb", + "name": "ShadowTokens Bridged WBNB (Elastos Smart Chain)" + }, + { + "id": "shadowtokens-bridged-weth-elastos-smart-chain", + "symbol": "weth", + "name": "ShadowTokens Bridged WETH (Elastos Smart Chain)" + }, + { + "id": "shady-labs", + "symbol": "shady", + "name": "Shady Labs" + }, + { + "id": "shaft-strategic-hub-for-ai-focused-technology", + "symbol": "shaft", + "name": "SHAFT (Strategic Hub For AI-Focused Technology)" + }, + { + "id": "shaicoin", + "symbol": "sha", + "name": "Shaicoin" + }, + { + "id": "shakaka", + "symbol": "shkk", + "name": "Shakaka" + }, + { + "id": "shakey-ai", + "symbol": "shakey", + "name": "Shakey AI" + }, + { + "id": "shamatte", + "symbol": "杀马特", + "name": "Shamatte" + }, + { + "id": "shambala", + "symbol": "bala", + "name": "Shambala" + }, + { + "id": "shanghai-composite-index-6900", + "symbol": "sci6900", + "name": "上证综合指数6900" + }, + { + "id": "shanghai-inu", + "symbol": "shang", + "name": "Shanghai Inu" + }, + { + "id": "shanum", + "symbol": "shan", + "name": "Shanum" + }, + { + "id": "shao", + "symbol": "shao", + "name": "SHAO" + }, + { + "id": "shapeshift-fox-token", + "symbol": "fox", + "name": "ShapeShift FOX" + }, + { + "id": "sharbi", + "symbol": "$sharbi", + "name": "Sharbi" + }, + { + "id": "shardeum", + "symbol": "shm", + "name": "Shardeum" + }, + { + "id": "shard-of-notcoin-nft-bond", + "symbol": "wnot", + "name": "Shard of Notcoin NFT bond" + }, + { + "id": "shards", + "symbol": "shards", + "name": "Shards" + }, + { + "id": "shards-protocol", + "symbol": "shards", + "name": "Shards Protocol" + }, + { + "id": "shardus", + "symbol": "ult", + "name": "Shardus" + }, + { + "id": "sharedstake-governance-token", + "symbol": "sgtv2", + "name": "SharedStake Governance v2" + }, + { + "id": "share-on-crypto", + "symbol": "share", + "name": "SHARE" + }, + { + "id": "sharering", + "symbol": "shr", + "name": "ShareToken" + }, + { + "id": "shark-cat", + "symbol": "sc", + "name": "Shark Cat" + }, + { + "id": "sharki", + "symbol": "sharki", + "name": "Sharki" + }, + { + "id": "shark-raptor-rocket-launcher", + "symbol": "srrl", + "name": "shark raptor rocket launcher" + }, + { + "id": "sharky-fi", + "symbol": "shark", + "name": "Sharky" + }, + { + "id": "sharky-sharkx", + "symbol": "shark", + "name": "Sharky Sharkx" + }, + { + "id": "sharp-ai", + "symbol": "sharp", + "name": "Sharp AI [OLD]" + }, + { + "id": "sharp-ai-2", + "symbol": "sharp", + "name": "Sharp AI" + }, + { + "id": "sharpe-ai", + "symbol": "sai", + "name": "Sharpe AI" + }, + { + "id": "sharpei", + "symbol": "shar", + "name": "SHARPEI" + }, + { + "id": "sharplink-gaming-inc", + "symbol": "sbet", + "name": "SharpLink Gaming, Inc." + }, + { + "id": "sharplink-gaming-inc-ondo-tokenized-stock", + "symbol": "sbeton", + "name": "SharpLink Gaming, Inc (Ondo Tokenized Stock)" + }, + { + "id": "sharplink-gaming-xstock", + "symbol": "sbetx", + "name": "SharpLink Gaming xStock" + }, + { + "id": "sharp-token", + "symbol": "sharp", + "name": "Sharp Token" + }, + { + "id": "shart", + "symbol": "shart", + "name": "SHART" + }, + { + "id": "shaww", + "symbol": "shaww", + "name": "shaww" + }, + { + "id": "sheboshis", + "symbol": "sheb", + "name": "SHEBOSHIS" + }, + { + "id": "sheboshis-2", + "symbol": "sheb", + "name": "Sheboshis" + }, + { + "id": "sheep-wif-hat", + "symbol": "swif", + "name": "Sheep Wif Hat" + }, + { + "id": "sheerluck-ai", + "symbol": "sheerluck", + "name": "Sheerluck AI" + }, + { + "id": "sheesha-finance", + "symbol": "sheesha", + "name": "Sheesha Finance (BEP20)" + }, + { + "id": "sheesha-finance-erc20", + "symbol": "sheesha", + "name": "Sheesha Finance (ERC20)" + }, + { + "id": "sheesha-finance-polygon", + "symbol": "msheesha", + "name": "Sheesha Finance Polygon" + }, + { + "id": "sheeshin-on-solana", + "symbol": "sheesh", + "name": "SheeshSPL" + }, + { + "id": "sheishei", + "symbol": "shei", + "name": "SheiShei" + }, + { + "id": "shell", + "symbol": "ss20", + "name": "SHELL" + }, + { + "id": "shelling", + "symbol": "shl", + "name": "Shelling" + }, + { + "id": "shen", + "symbol": "shen", + "name": "Shen" + }, + { + "id": "shen-nao-lian", + "symbol": "深脑链", + "name": "深脑链" + }, + { + "id": "she-rises", + "symbol": "aka", + "name": "She Rises" + }, + { + "id": "sherk", + "symbol": "sherk", + "name": "Sherk" + }, + { + "id": "sherlock", + "symbol": "sher", + "name": "Sherlock" + }, + { + "id": "shezmu", + "symbol": "shezmu", + "name": "Shezmu" + }, + { + "id": "shft", + "symbol": "shft", + "name": "SHIFT" + }, + { + "id": "shib2", + "symbol": "shib2", + "name": "SHIB2" + }, + { + "id": "shib2-0", + "symbol": "shib2.0", + "name": "Shib2.0" + }, + { + "id": "shiba", + "symbol": "shiba", + "name": "Shiba" + }, + { + "id": "shibaai", + "symbol": "shibaai", + "name": "SHIBAAI" + }, + { + "id": "shiba-armstrong", + "symbol": "shiba", + "name": "Shiba Armstrong" + }, + { + "id": "shibabitcoin-2", + "symbol": "sbbtc", + "name": "Shibabitcoin" + }, + { + "id": "shiba-bsc", + "symbol": "shibsc", + "name": "SHIBA BSC" + }, + { + "id": "shiba-classic", + "symbol": "shibc", + "name": "Shiba Classic" + }, + { + "id": "shiba-classic-2", + "symbol": "shibc", + "name": "Shiba Classic" + }, + { + "id": "shibacoin", + "symbol": "shic", + "name": "ShibaCoin" + }, + { + "id": "shibacorgi", + "symbol": "shico", + "name": "ShibaCorgi" + }, + { + "id": "shibadoge", + "symbol": "shibdoge", + "name": "ShibaDoge" + }, + { + "id": "shiba-doge-burn", + "symbol": "burn", + "name": "BURN" + }, + { + "id": "shiba-inu", + "symbol": "shib", + "name": "Shiba Inu" + }, + { + "id": "shiba-inu-empire", + "symbol": "shibemp", + "name": "Shiba Inu Empire" + }, + { + "id": "shiba-inu-treat", + "symbol": "treat", + "name": "Shiba Inu Treat" + }, + { + "id": "shiba-inu-wormhole", + "symbol": "shib", + "name": "Shiba Inu (Wormhole)" + }, + { + "id": "shibakeanu", + "symbol": "$shibk", + "name": "ShibaKeanu" + }, + { + "id": "shibaken-finance", + "symbol": "shibaken", + "name": "Shibaken Finance" + }, + { + "id": "shibaments", + "symbol": "sbmt", + "name": "Shibaments" + }, + { + "id": "shibana", + "symbol": "bana", + "name": "Shibana" + }, + { + "id": "shibanft", + "symbol": "shibanft", + "name": "ShibaNFT" + }, + { + "id": "shiba-on-base", + "symbol": "shib", + "name": "SHIBA ON BASE" + }, + { + "id": "shibapoconk", + "symbol": "conk", + "name": "ShibaPoconk" + }, + { + "id": "shiba-predator", + "symbol": "qom", + "name": "Shiba Predator" + }, + { + "id": "shibarium-name-service", + "symbol": "sns", + "name": "Shibarium Name Service" + }, + { + "id": "shibarium-wrapped-bone", + "symbol": "wbone", + "name": "Shibarium Wrapped BONE" + }, + { + "id": "shib-army", + "symbol": "shibarmy", + "name": "Shib Army" + }, + { + "id": "shiba-saga", + "symbol": "shia", + "name": "Shiba Saga" + }, + { + "id": "shibasso", + "symbol": "shibasso", + "name": "Shibasso" + }, + { + "id": "shibavax", + "symbol": "shibx", + "name": "Shibavax" + }, + { + "id": "shibaverse", + "symbol": "verse", + "name": "Shibaverse" + }, + { + "id": "shiba-v-pepe", + "symbol": "shepe", + "name": "Shiba V Pepe" + }, + { + "id": "shiba-wing", + "symbol": "wing", + "name": "Shiba Wing" + }, + { + "id": "shibceo", + "symbol": "shibceo", + "name": "ShibCEO" + }, + { + "id": "shibgf", + "symbol": "shibgf", + "name": "SHIBGF" + }, + { + "id": "shibmas", + "symbol": "smas", + "name": "Shibmas" + }, + { + "id": "shibonk-311f81df-a4ea-4f31-9e61-df0af8211bd7", + "symbol": "sbonk", + "name": "SHIBONK" + }, + { + "id": "shib-on-solana", + "symbol": "shib", + "name": "SHIB ON SOLANA" + }, + { + "id": "shib-original-vision", + "symbol": "sov", + "name": "Shib Original Vision" + }, + { + "id": "shibussy", + "symbol": "shibussy", + "name": "Shibussy" + }, + { + "id": "shibwifhatcoin", + "symbol": "shib", + "name": "Shibwifhatcoin" + }, + { + "id": "shiden", + "symbol": "sdn", + "name": "Shiden Network" + }, + { + "id": "shido-2", + "symbol": "shido", + "name": "Shido Network" + }, + { + "id": "shido-bridged-usdc", + "symbol": "usdc", + "name": "Shido Bridged USDC (Shido)" + }, + { + "id": "shido-dex", + "symbol": "shdx", + "name": "Shido DEX" + }, + { + "id": "shieldeum", + "symbol": "sdm", + "name": "Shieldeum" + }, + { + "id": "shield-protocol-3", + "symbol": "shield", + "name": "Shield protocol" + }, + { + "id": "shift-2", + "symbol": "$shift", + "name": "SHIFT" + }, + { + "id": "shift-ai", + "symbol": "shift", + "name": "Shift AI" + }, + { + "id": "shifu", + "symbol": "shifu", + "name": "Shifu" + }, + { + "id": "shih-tzu", + "symbol": "shih", + "name": "Shih Tzu" + }, + { + "id": "shih-tzu-3", + "symbol": "shih", + "name": "Shih Tzu" + }, + { + "id": "shikoku", + "symbol": "shik", + "name": "Shikoku" + }, + { + "id": "shikoku-inu", + "symbol": "shiko", + "name": "Shikoku Inu" + }, + { + "id": "shikoku-inu-2", + "symbol": "shik", + "name": "Shikoku Inu" + }, + { + "id": "shila-inu", + "symbol": "shil", + "name": "Shila Inu" + }, + { + "id": "shill-bill", + "symbol": "bill", + "name": "Shill Bill" + }, + { + "id": "shill-guard-token", + "symbol": "sgt", + "name": "Shill Guard Token" + }, + { + "id": "shillguy", + "symbol": "shill", + "name": "SHILLGUY" + }, + { + "id": "shill-token", + "symbol": "shill", + "name": "SHILL Token" + }, + { + "id": "shimbainu", + "symbol": "smba", + "name": "ShimbaINU" + }, + { + "id": "shimmer", + "symbol": "smr", + "name": "Shimmer" + }, + { + "id": "shimmerbridge-bridged-usdt-shimmerevm", + "symbol": "usdt", + "name": "ShimmerBridge Bridged USDT (ShimmerEVM)" + }, + { + "id": "shimmersea-lum", + "symbol": "lum", + "name": "ShimmerSea Lum" + }, + { + "id": "shina-inu", + "symbol": "shi", + "name": "Shina Inu" + }, + { + "id": "shina-inu-2", + "symbol": "shin", + "name": "Shina Inu" + }, + { + "id": "shine-chain", + "symbol": "sc20", + "name": "Shine Chain" + }, + { + "id": "shinjiru-inu", + "symbol": "shinji", + "name": "Shinjiru Inu" + }, + { + "id": "shinobi-2", + "symbol": "ninja", + "name": "Shinobi" + }, + { + "id": "shiro-neko-2", + "symbol": "shiro", + "name": "Shiro Neko" + }, + { + "id": "shiro-neko-cto", + "symbol": "shiro", + "name": "Shiro Neko CTO" + }, + { + "id": "shiro-the-frogdog", + "symbol": "frogdog", + "name": "Shiro the FrogDog" + }, + { + "id": "shirtum", + "symbol": "shi", + "name": "Shirtum" + }, + { + "id": "shiryo-inu", + "symbol": "shiryo-inu", + "name": "Shiryo" + }, + { + "id": "shisha-coin-2", + "symbol": "shisha", + "name": "Shisha Coin" + }, + { + "id": "shita-kiri-suzume", + "symbol": "suzume", + "name": "Shita-kiri Suzume" + }, + { + "id": "shitcats", + "symbol": "shats", + "name": "Shitcats" + }, + { + "id": "shitcoin-2", + "symbol": "shit", + "name": "Shitcoin" + }, + { + "id": "shitcoin-3", + "symbol": "shitcoin", + "name": "SHITCOIN" + }, + { + "id": "shitcoin-on-ton", + "symbol": "shit", + "name": "Shitcoin on TON" + }, + { + "id": "shitzu", + "symbol": "shitzu", + "name": "Shitzu" + }, + { + "id": "shiva-inu", + "symbol": "shiv", + "name": "Shiva Inu" + }, + { + "id": "shiyo", + "symbol": "shiyo", + "name": "shiyo" + }, + { + "id": "shockwaves", + "symbol": "neuros", + "name": "Shockwaves" + }, + { + "id": "shoe", + "symbol": "shoe", + "name": "Shoe" + }, + { + "id": "shoefy", + "symbol": "shoe", + "name": "ShoeFy" + }, + { + "id": "shog", + "symbol": "shog", + "name": "SHOG" + }, + { + "id": "shoggoth", + "symbol": "shoggoth", + "name": "Shoggoth" + }, + { + "id": "shogun", + "symbol": "shogun", + "name": "Shogun" + }, + { + "id": "shoki-2", + "symbol": "sok", + "name": "shoki" + }, + { + "id": "shong-inu", + "symbol": "shong", + "name": "Shong Inu" + }, + { + "id": "shontoken", + "symbol": "shon", + "name": "Shon" + }, + { + "id": "shoot-2", + "symbol": "shoot", + "name": "Mars Battle" + }, + { + "id": "shopify-ondo-tokenized-stock", + "symbol": "shopon", + "name": "Shopify (Ondo Tokenized Stock)" + }, + { + "id": "shopnext-loyalty-token", + "symbol": "next", + "name": "ShopNext Loyalty Token" + }, + { + "id": "shopping-io-2", + "symbol": "spi", + "name": "Shopping.io" + }, + { + "id": "shopping-io-token", + "symbol": "shop", + "name": "Shopping.io" + }, + { + "id": "shork", + "symbol": "shork", + "name": "Shork" + }, + { + "id": "shoulda-bought-more", + "symbol": "more", + "name": "Shoulda Bought More" + }, + { + "id": "shping", + "symbol": "shping", + "name": "Shping" + }, + { + "id": "shr00m", + "symbol": "shr00m", + "name": "Shr00m" + }, + { + "id": "shrapnel-2", + "symbol": "shrap", + "name": "Shrapnel" + }, + { + "id": "shredn", + "symbol": "shred", + "name": "ShredN" + }, + { + "id": "shredn-dog", + "symbol": "shredn", + "name": "Shredn Dog" + }, + { + "id": "shrimp-2", + "symbol": "shrimp", + "name": "Shrimp" + }, + { + "id": "shrimp-paste", + "symbol": "shrimp", + "name": "Shrimp Paste" + }, + { + "id": "shroom", + "symbol": "shroom", + "name": "Shroom" + }, + { + "id": "shroom-finance", + "symbol": "shroom", + "name": "Niftyx Protocol" + }, + { + "id": "shrooms-strategy", + "symbol": "shroomstr", + "name": "Shrooms Strategy" + }, + { + "id": "shroomy", + "symbol": "shroomy", + "name": "Shroomy" + }, + { + "id": "shrub", + "symbol": "shrub", + "name": "Shrub" + }, + { + "id": "shrub-2", + "symbol": "$shrub", + "name": "Shrub" + }, + { + "id": "shrubius-maximus", + "symbol": "shrubius", + "name": "Shrubius Maximus" + }, + { + "id": "shuffle-2", + "symbol": "shfl", + "name": "Shuffle" + }, + { + "id": "shui-cfx", + "symbol": "scfx", + "name": "SHUI CFX" + }, + { + "id": "shushuwoa", + "symbol": "鼠鼠我啊", + "name": "鼠鼠我啊" + }, + { + "id": "shuts-wave", + "symbol": "swave", + "name": "shuts Wave" + }, + { + "id": "shutter", + "symbol": "shu", + "name": "Shutter" + }, + { + "id": "shyft-network-2", + "symbol": "shft", + "name": "Shyft Network" + }, + { + "id": "shytoshi-kusama", + "symbol": "shy", + "name": "Shytoshi Kusama" + }, + { + "id": "siacoin", + "symbol": "sc", + "name": "Siacoin" + }, + { + "id": "siamese", + "symbol": "siam", + "name": "Siamese" + }, + { + "id": "siaprime-coin", + "symbol": "scp", + "name": "ScPrime" + }, + { + "id": "sibert", + "symbol": "sibert", + "name": "Sibert" + }, + { + "id": "side-eye-cat", + "symbol": "sec", + "name": "Side Eye Cat" + }, + { + "id": "sidekick", + "symbol": "k", + "name": "Sidekick" + }, + { + "id": "sidelined", + "symbol": "sidelined", + "name": "sidelined" + }, + { + "id": "sideliner-coin", + "symbol": "sideliner", + "name": "Sideliner Coin" + }, + { + "id": "sideshift-token", + "symbol": "xai", + "name": "SideShift" + }, + { + "id": "sidus", + "symbol": "sidus", + "name": "Sidus" + }, + { + "id": "sienna", + "symbol": "sienna", + "name": "Sienna" + }, + { + "id": "sierra-2", + "symbol": "sierra", + "name": "Sierra" + }, + { + "id": "sifchain", + "symbol": "erowan", + "name": "Sifchain" + }, + { + "id": "sifu-vision-2", + "symbol": "sifu", + "name": "Sifu Vision" + }, + { + "id": "sigma", + "symbol": "sigma", + "name": "Sigma" + }, + { + "id": "sigma-2", + "symbol": "sigma", + "name": "SIGMA" + }, + { + "id": "sigma-3", + "symbol": "sigma", + "name": "SIGMA" + }, + { + "id": "sigma-ai-terminal", + "symbol": "sai", + "name": "Sigma AI Terminal" + }, + { + "id": "sigma-bnb-usd", + "symbol": "bnbusd", + "name": "Sigma bnb USD" + }, + { + "id": "sigma-boy", + "symbol": "sigmaboy", + "name": "Sigma Boy" + }, + { + "id": "sigmadotmoney", + "symbol": "sigma", + "name": "SigmaDotMoney" + }, + { + "id": "sigmagyattohiofanumskibidigooner", + "symbol": "rizz", + "name": "SigmaGyattOhioFanumSkibidiGooner" + }, + { + "id": "sigma-music", + "symbol": "fan", + "name": "Sigma Music" + }, + { + "id": "sigmew", + "symbol": "sigmew", + "name": "sigmew" + }, + { + "id": "signata", + "symbol": "sata", + "name": "Signata" + }, + { + "id": "signet-2", + "symbol": "signet", + "name": "Signet" + }, + { + "id": "sign-global", + "symbol": "sign", + "name": "Sign" + }, + { + "id": "signum", + "symbol": "signa", + "name": "Signum" + }, + { + "id": "sigrsv", + "symbol": "sigrsv", + "name": "SigRSV" + }, + { + "id": "sigusd", + "symbol": "sigusd", + "name": "SigUSD" + }, + { + "id": "silencio", + "symbol": "slc", + "name": "Silencio" + }, + { + "id": "silensio", + "symbol": "silen", + "name": "Silensio" + }, + { + "id": "silentis", + "symbol": "silentis", + "name": "Silentis" + }, + { + "id": "silent-notary", + "symbol": "ubsn", + "name": "Silent Notary" + }, + { + "id": "silent-pass", + "symbol": "sp", + "name": "Silent Pass" + }, + { + "id": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", + "symbol": "silk", + "name": "Silk" + }, + { + "id": "silky", + "symbol": "silky", + "name": "silky" + }, + { + "id": "sillycat", + "symbol": "sillycat", + "name": "Sillycat" + }, + { + "id": "silly-dragon", + "symbol": "silly", + "name": "Silly Dragon" + }, + { + "id": "silly-goose", + "symbol": "goo", + "name": "Silly Goose" + }, + { + "id": "sillynubcat", + "symbol": "nub", + "name": "nubcat" + }, + { + "id": "silo-finance", + "symbol": "silo", + "name": "Silo Finance [OLD]" + }, + { + "id": "silo-finance-2", + "symbol": "silo", + "name": "Silo Finance" + }, + { + "id": "silo-staked-sei", + "symbol": "isei", + "name": "Silo Staked SEI" + }, + { + "id": "silver-2", + "symbol": "ag", + "name": "Silver" + }, + { + "id": "silver-3", + "symbol": "$silver", + "name": "$SILVER" + }, + { + "id": "silver-4", + "symbol": "silver", + "name": "SILVER" + }, + { + "id": "silvercoin-2", + "symbol": "silvercoin", + "name": "silvercoin" + }, + { + "id": "silver-standard", + "symbol": "bars", + "name": "Silver Standard" + }, + { + "id": "silverstonks", + "symbol": "sstx", + "name": "Silver Stonks" + }, + { + "id": "silver-tokenized-stock-defichain", + "symbol": "dslv", + "name": "iShares Silver Trust Defichain" + }, + { + "id": "sim", + "symbol": "simai", + "name": "Sim" + }, + { + "id": "similiscan", + "symbol": "sms", + "name": "SimiliScan" + }, + { + "id": "simmi-token", + "symbol": "simmi", + "name": "Simmi Token" + }, + { + "id": "simon-for-nyc-dog-mayor", + "symbol": "simon", + "name": "Simon for NYC dog Mayor" + }, + { + "id": "simong-coin", + "symbol": "smc", + "name": "SIMONG COIN" + }, + { + "id": "simon-s-cat", + "symbol": "cat", + "name": "Simon's Cat" + }, + { + "id": "simon-the-gator", + "symbol": "simon", + "name": "Simon the Gator" + }, + { + "id": "simpcoin", + "symbol": "simp", + "name": "SimpCoin" + }, + { + "id": "simple-ai", + "symbol": "smpl", + "name": "Simple AI" + }, + { + "id": "simple-coin", + "symbol": "simple", + "name": "Simple coin" + }, + { + "id": "simps", + "symbol": "simp", + "name": "Simps" + }, + { + "id": "simps-on-sol", + "symbol": "simp", + "name": "SIMPS ON SOL" + }, + { + "id": "simracer-coin", + "symbol": "src", + "name": "Simracer Coin" + }, + { + "id": "simsai", + "symbol": "simsai", + "name": "SimsAI" + }, + { + "id": "simulize-ai", + "symbol": "smzai", + "name": "Simulize AI" + }, + { + "id": "sin", + "symbol": "sin", + "name": "sinDAO" + }, + { + "id": "sin-city", + "symbol": "sin", + "name": "Sinverse" + }, + { + "id": "single-finance", + "symbol": "single", + "name": "Single Finance" + }, + { + "id": "singsing", + "symbol": "sing", + "name": "SingSing" + }, + { + "id": "sing-token", + "symbol": "sing", + "name": "Sing" + }, + { + "id": "singularity", + "symbol": "sgly", + "name": "Singularity" + }, + { + "id": "singularity-2", + "symbol": "sing", + "name": "Singularity" + }, + { + "id": "singularitydao", + "symbol": "sdao", + "name": "SingularityDAO" + }, + { + "id": "singularity-finance", + "symbol": "sfi", + "name": "Singularity Finance" + }, + { + "id": "singularitynet", + "symbol": "agix", + "name": "SingularityNET" + }, + { + "id": "singularry", + "symbol": "singularry", + "name": "Singularry" + }, + { + "id": "sint-truidense-voetbalvereniging-fan-token", + "symbol": "stv", + "name": "Sint-Truidense Voetbalvereniging Fan Token" + }, + { + "id": "sipher", + "symbol": "sipher", + "name": "SIPHER" + }, + { + "id": "sir", + "symbol": "sir", + "name": "Sir" + }, + { + "id": "siren", + "symbol": "si", + "name": "Siren" + }, + { + "id": "siren-2", + "symbol": "siren", + "name": "Siren" + }, + { + "id": "sirin-labs-token", + "symbol": "srn", + "name": "Sirin Labs" + }, + { + "id": "siriusnet", + "symbol": "sint", + "name": "Siriusnet" + }, + { + "id": "sis", + "symbol": "sis", + "name": "sis" + }, + { + "id": "sister", + "symbol": "sstr", + "name": "SISTER" + }, + { + "id": "six", + "symbol": "six", + "name": "Six Sigma" + }, + { + "id": "six-network", + "symbol": "six", + "name": "SIX Network" + }, + { + "id": "sixpack-token-sixp", + "symbol": "sixp", + "name": "Sixpack Token (SIXP)" + }, + { + "id": "siyana", + "symbol": "syyn", + "name": "Siyana" + }, + { + "id": "size", + "symbol": "size", + "name": "SIZE" + }, + { + "id": "size-2", + "symbol": "size", + "name": "SIZE" + }, + { + "id": "sizechat", + "symbol": "size", + "name": "SizeChat" + }, + { + "id": "skai", + "symbol": "skai", + "name": "Skillful AI" + }, + { + "id": "skainet", + "symbol": "skai", + "name": "SKAINET" + }, + { + "id": "skale", + "symbol": "skl", + "name": "SKALE" + }, + { + "id": "skale-ima-bridged-wbtc", + "symbol": "wbtc", + "name": "Skale IMA Bridged WBTC" + }, + { + "id": "skate", + "symbol": "skate", + "name": "Skate" + }, + { + "id": "skatecat", + "symbol": "skatecat", + "name": "SkateCat" + }, + { + "id": "skeb", + "symbol": "skeb", + "name": "Skeb" + }, + { + "id": "skeleton", + "symbol": "skelsui", + "name": "SKELETON" + }, + { + "id": "skey-network", + "symbol": "skey", + "name": "Skey Network" + }, + { + "id": "skibidi-dop-dop", + "symbol": "skibidi", + "name": "Skibidi Dop Dop" + }, + { + "id": "skibidi-toilet-2", + "symbol": "skbdi", + "name": "Skibidi Toilet" + }, + { + "id": "skill-issue", + "symbol": "skill", + "name": "Skill Issue" + }, + { + "id": "ski-mask-cat", + "symbol": "skicat", + "name": "SKI MASK CAT" + }, + { + "id": "ski-mask-dog", + "symbol": "ski", + "name": "Ski Mask Dog" + }, + { + "id": "ski-mask-laika", + "symbol": "skilaika", + "name": "Ski Mask Laika" + }, + { + "id": "skimask-pnut", + "symbol": "skinut", + "name": "Skimask Pnut" + }, + { + "id": "ski-mask-pup", + "symbol": "skipup", + "name": "SKI MASK PUP" + }, + { + "id": "skitten", + "symbol": "skitten", + "name": "$SKITTEN" + }, + { + "id": "sklay", + "symbol": "sklay", + "name": "sKLAY" + }, + { + "id": "skol", + "symbol": "$skol", + "name": "Skol" + }, + { + "id": "skor-ai", + "symbol": "skorai", + "name": "SKOR AI" + }, + { + "id": "skpanax", + "symbol": "skx", + "name": "SKPANAX" + }, + { + "id": "skrumble-network", + "symbol": "skm", + "name": "Skrumble Network" + }, + { + "id": "skullcoin", + "symbol": "skull", + "name": "Skullcoin" + }, + { + "id": "skullcoin-2", + "symbol": "skull", + "name": "Skullcoin" + }, + { + "id": "skull-of-pepe-token", + "symbol": "skop", + "name": "Skull of Pepe Token" + }, + { + "id": "skull-with-ripped-hood", + "symbol": "rip", + "name": "skull with ripped hood" + }, + { + "id": "skully", + "symbol": "skully", + "name": "Skully" + }, + { + "id": "sky", + "symbol": "sky", + "name": "Sky" + }, + { + "id": "sky0", + "symbol": "sky0", + "name": "SKY0" + }, + { + "id": "skyai", + "symbol": "skyai", + "name": "SkyAI" + }, + { + "id": "skycastle", + "symbol": "sky", + "name": "Skycastle" + }, + { + "id": "skycoin", + "symbol": "sky", + "name": "Skycoin" + }, + { + "id": "sky-coin", + "symbol": "xso", + "name": "Sky Coin" + }, + { + "id": "skydrome", + "symbol": "sky", + "name": "Skydrome" + }, + { + "id": "skyhash", + "symbol": "skh", + "name": "Skyhash" + }, + { + "id": "sky-hause", + "symbol": "skyh", + "name": "Sky Hause" + }, + { + "id": "skynet-2", + "symbol": "drones", + "name": "Skynet" + }, + { + "id": "skynet-3", + "symbol": "sky", + "name": "Skynet" + }, + { + "id": "skynity-skydust", + "symbol": "sdt", + "name": "SkyNity SkyDust" + }, + { + "id": "skyops", + "symbol": "skyops", + "name": "Skyops" + }, + { + "id": "slam-token", + "symbol": "slam", + "name": "Slam" + }, + { + "id": "slap", + "symbol": "slap", + "name": "Slap" + }, + { + "id": "slap-cat", + "symbol": "slap", + "name": "Slap cat" + }, + { + "id": "slap-city", + "symbol": "stacks", + "name": "STACKS" + }, + { + "id": "slash-vision-labs", + "symbol": "svl", + "name": "Slash Vision Labs" + }, + { + "id": "slaunch", + "symbol": "s", + "name": "Slaunch" + }, + { + "id": "slay", + "symbol": "slay", + "name": "SLAY" + }, + { + "id": "sl-benfica-fan-token", + "symbol": "benfica", + "name": "SL Benfica Fan Token" + }, + { + "id": "sleepless-ai", + "symbol": "ai", + "name": "Sleepless AI" + }, + { + "id": "sleepless-coin", + "symbol": "sleepless", + "name": "SLEEPLESS COIN" + }, + { + "id": "slerf", + "symbol": "slerf", + "name": "Slerf [OLD]" + }, + { + "id": "slerf-2", + "symbol": "slerf", + "name": "Slerf" + }, + { + "id": "slex", + "symbol": "slex", + "name": "Slex" + }, + { + "id": "slime", + "symbol": "slime", + "name": "SLIME" + }, + { + "id": "slimex", + "symbol": "slx", + "name": "Slimex" + }, + { + "id": "slingshot-2", + "symbol": "sling", + "name": "Slingshot" + }, + { + "id": "slinky", + "symbol": "slinky", + "name": "Slinky" + }, + { + "id": "slippy", + "symbol": "slippy", + "name": "SLIPPY" + }, + { + "id": "slisbnb-non-transferable-receipt", + "symbol": "slisbnbx", + "name": "slisBNB Non-Transferable Receipt" + }, + { + "id": "slop", + "symbol": "slop", + "name": "Slop" + }, + { + "id": "slopana", + "symbol": "slopana", + "name": "Slopana" + }, + { + "id": "slopfather", + "symbol": "fatha", + "name": "Slopfather" + }, + { + "id": "slothana", + "symbol": "sloth", + "name": "Slothana" + }, + { + "id": "slove", + "symbol": "slove", + "name": "SLOVE" + }, + { + "id": "slp", + "symbol": "slp", + "name": "SLP" + }, + { + "id": "slub", + "symbol": "slub", + "name": "SLUB" + }, + { + "id": "slumbo", + "symbol": "slumbo", + "name": "SLUMBO" + }, + { + "id": "slurp-2", + "symbol": "slurp", + "name": "slurp" + }, + { + "id": "smack", + "symbol": "$smack", + "name": "SMACK" + }, + { + "id": "smackm", + "symbol": "smackm", + "name": "SMACKM" + }, + { + "id": "small-fartcoin", + "symbol": "tootcoin", + "name": "small fartcoin" + }, + { + "id": "small-thing", + "symbol": "st", + "name": "Small Thing" + }, + { + "id": "smardex", + "symbol": "sdex", + "name": "SMARDEX" + }, + { + "id": "smardex-usdn", + "symbol": "usdn", + "name": "SMARDEX USDN" + }, + { + "id": "smardex-wrapped-usdn", + "symbol": "wusdn", + "name": "SMARDEX WRAPPED USDN" + }, + { + "id": "smart-blockchain", + "symbol": "smart", + "name": "SMART BLOCKCHAIN" + }, + { + "id": "smartcash", + "symbol": "smart", + "name": "SmartCash" + }, + { + "id": "smart-coin-smrtr", + "symbol": "smrtr", + "name": "SmarterCoin" + }, + { + "id": "smartcredit-token", + "symbol": "smartcredit", + "name": "SmartCredit" + }, + { + "id": "smart-energy-pay", + "symbol": "sep", + "name": "Smart Energy Pay" + }, + { + "id": "smartgolftoken-sgi", + "symbol": "sgi", + "name": "SmartGolf Token" + }, + { + "id": "smartlands", + "symbol": "dnt", + "name": "Definder Network" + }, + { + "id": "smart-layer-network", + "symbol": "sln", + "name": "Smart Layer Network" + }, + { + "id": "smart-lending-ai", + "symbol": "slai", + "name": "Smart Lending AI" + }, + { + "id": "smartmall-token", + "symbol": "smt", + "name": "Smartmall Token" + }, + { + "id": "smart-mfg", + "symbol": "mfg", + "name": "Smart MFG" + }, + { + "id": "smartnft", + "symbol": "smartnft", + "name": "SmartNFT" + }, + { + "id": "smart-pay-technology", + "symbol": "spt", + "name": "SMART PAY TECHNOLOGY" + }, + { + "id": "smart-pocket", + "symbol": "sp", + "name": "Smart Pocket" + }, + { + "id": "smartpractice", + "symbol": "smrt", + "name": "SmartPractice" + }, + { + "id": "smart-quantum-game", + "symbol": "sqmg", + "name": "Smart Quantum Game" + }, + { + "id": "smart-reckon-intelligence", + "symbol": "sri", + "name": "Smart Reckon Intelligence" + }, + { + "id": "smart-wallet-token-2", + "symbol": "swt", + "name": "Smart Wallet" + }, + { + "id": "smartworld-global", + "symbol": "swgt", + "name": "SmartWorld Global Token" + }, + { + "id": "smarty-pay", + "symbol": "spy", + "name": "Smarty Pay" + }, + { + "id": "smb-token", + "symbol": "smb", + "name": "SMB Token" + }, + { + "id": "smidge", + "symbol": "smidge", + "name": "Smidge" + }, + { + "id": "smiley-coin", + "symbol": "smiley", + "name": "Smiley Coin" + }, + { + "id": "smiling-dolphin", + "symbol": "miharu", + "name": "Smiling Dolphin" + }, + { + "id": "smiling-dolphin-2", + "symbol": "miharu", + "name": "Smiling Dolphin" + }, + { + "id": "smog", + "symbol": "smog", + "name": "Smog" + }, + { + "id": "smokincat", + "symbol": "smct", + "name": "SmokinCat" + }, + { + "id": "smokin-frog", + "symbol": "sfrog", + "name": "Smokin Frog" + }, + { + "id": "smoking-chicken-fish", + "symbol": "scf", + "name": "Smoking Chicken Fish" + }, + { + "id": "smokingchickenfisheth", + "symbol": "scf", + "name": "Smoking Chicken Fish" + }, + { + "id": "smoking-eagle-dog", + "symbol": "sed", + "name": "Smoking Eagle Dog" + }, + { + "id": "smoking-giraffe", + "symbol": "graf", + "name": "Smoking Giraffe" + }, + { + "id": "smolano", + "symbol": "slo", + "name": "SmoLanO" + }, + { + "id": "smol-bun", + "symbol": "bun", + "name": "Smol Bun" + }, + { + "id": "smol-cat", + "symbol": "smol", + "name": "Smol Cat" + }, + { + "id": "smolcoin", + "symbol": "smol", + "name": "Smolcoin [OLD]" + }, + { + "id": "smolcoin-2", + "symbol": "smol", + "name": "SMOL" + }, + { + "id": "smol-dodo", + "symbol": "$dod", + "name": "Smol dodo" + }, + { + "id": "smolecoin", + "symbol": "smole", + "name": "smolecoin" + }, + { + "id": "smol-pep", + "symbol": "pep", + "name": "smol pep" + }, + { + "id": "smol-su", + "symbol": "su", + "name": "Smol Su" + }, + { + "id": "smooth-love-potion", + "symbol": "slp", + "name": "Smooth Love Potion" + }, + { + "id": "smoothy", + "symbol": "smty", + "name": "Smoothy" + }, + { + "id": "smoovie-phone", + "symbol": "sp", + "name": "Smoovie Phone" + }, + { + "id": "smore", + "symbol": "smore", + "name": "SMORE" + }, + { + "id": "smp7700", + "symbol": "smp", + "name": "SMP7700" + }, + { + "id": "smudge-cat", + "symbol": "smudcat", + "name": "Smudge Cat" + }, + { + "id": "smudge-lord", + "symbol": "smudge", + "name": "Smudge Lord" + }, + { + "id": "snailmoon", + "symbol": "snm", + "name": "SnailMoon" + }, + { + "id": "snail-trail", + "symbol": "slime", + "name": "Snail Trail" + }, + { + "id": "snake-2", + "symbol": "snk", + "name": "Snake" + }, + { + "id": "snake-3", + "symbol": "snake", + "name": "snake" + }, + { + "id": "snake-4", + "symbol": "snake", + "name": "SNAKE" + }, + { + "id": "snake-5", + "symbol": "snake", + "name": "Snake" + }, + { + "id": "snake-of-solana", + "symbol": "hiss", + "name": "Snake Of Solana" + }, + { + "id": "snakes-game", + "symbol": "snakes", + "name": "Snakes Game" + }, + { + "id": "snake-wif-hat", + "symbol": "sssss", + "name": "Snake wif Hat" + }, + { + "id": "snap-2", + "symbol": "snap", + "name": "SNAP" + }, + { + "id": "snapcat", + "symbol": "snapcat", + "name": "Snapcat" + }, + { + "id": "snap-first-space-coin", + "symbol": "snap", + "name": "Snap: first space coin" + }, + { + "id": "snap-kero", + "symbol": "$nap", + "name": "SNAP" + }, + { + "id": "snapmuse-io", + "symbol": "smx", + "name": "Snapmuse.io" + }, + { + "id": "snappy", + "symbol": "snap", + "name": "Snappy" + }, + { + "id": "snaps", + "symbol": "snps", + "name": "Snaps" + }, + { + "id": "snapx", + "symbol": "xnap", + "name": "SnapX" + }, + { + "id": "snardler-wormfriend", + "symbol": "snardler", + "name": "Snardler Wormfriend" + }, + { + "id": "snek", + "symbol": "snek", + "name": "Snek" + }, + { + "id": "sng-token", + "symbol": "sng", + "name": "SNG Token" + }, + { + "id": "snibbu", + "symbol": "snibbu", + "name": "Snibbu" + }, + { + "id": "snibbu-2", + "symbol": "snibbu", + "name": "Snibbu" + }, + { + "id": "snibbu-the-crab", + "symbol": "snibbu", + "name": "Snibbu the Crab" + }, + { + "id": "sniff", + "symbol": "$sniff", + "name": "SNIFF" + }, + { + "id": "sniper-search", + "symbol": "ss", + "name": "Sniper Search" + }, + { + "id": "snook", + "symbol": "snk", + "name": "Snook" + }, + { + "id": "snoopybabe", + "symbol": "sbabe", + "name": "SNOOPYBABE" + }, + { + "id": "snor", + "symbol": "snor", + "name": "SNOR" + }, + { + "id": "snort", + "symbol": "snort", + "name": "SNORT" + }, + { + "id": "snorter", + "symbol": "snort", + "name": "Snorter" + }, + { + "id": "snowball-token", + "symbol": "snob", + "name": "Snowball" + }, + { + "id": "snowbank", + "symbol": "sb", + "name": "Snowbank" + }, + { + "id": "snowcrash-token", + "symbol": "nora", + "name": "SnowCrash" + }, + { + "id": "snowflake-ondo-tokenized-stock", + "symbol": "snowon", + "name": "Snowflake (Ondo Tokenized Stock)" + }, + { + "id": "snowman", + "symbol": "snow", + "name": "Snowman" + }, + { + "id": "snowswap", + "symbol": "snow", + "name": "Snowswap" + }, + { + "id": "snowtomb", + "symbol": "stomb", + "name": "Snowtomb" + }, + { + "id": "snp500", + "symbol": "snp500", + "name": "SNP500" + }, + { + "id": "snpad", + "symbol": "snpad", + "name": "SNPad" + }, + { + "id": "snpit-token", + "symbol": "snpt", + "name": "SNPIT TOKEN" + }, + { + "id": "snusd", + "symbol": "snusd", + "name": "sNUSD" + }, + { + "id": "snx-yvault", + "symbol": "yvsnx", + "name": "SNX yVault" + }, + { + "id": "socean-staked-sol", + "symbol": "inf", + "name": "Sanctum Infinity" + }, + { + "id": "socialcrab", + "symbol": "scrb", + "name": "SocialCrab" + }, + { + "id": "social-good-project", + "symbol": "sg", + "name": "SocialGood" + }, + { + "id": "socialgrowai", + "symbol": "growai", + "name": "SocialGrowAI" + }, + { + "id": "social-lens-ai", + "symbol": "lens", + "name": "Social Lens Ai" + }, + { + "id": "socialswap-token", + "symbol": "sst", + "name": "Social Swap" + }, + { + "id": "social-trade", + "symbol": "st", + "name": "Social Trade" + }, + { + "id": "societe-generale-forge-eurcv", + "symbol": "eurcv", + "name": "EUR CoinVertible" + }, + { + "id": "sociove", + "symbol": "aicreator", + "name": "sociove" + }, + { + "id": "sock-inu", + "symbol": "sinu", + "name": "Sock Inu" + }, + { + "id": "socks", + "symbol": "socks", + "name": "SOCKS" + }, + { + "id": "socomfy", + "symbol": "comfy", + "name": "SOCOMFY" + }, + { + "id": "sodax", + "symbol": "soda", + "name": "SODAX" + }, + { + "id": "soex", + "symbol": "soex", + "name": "SOEX" + }, + { + "id": "sofacat", + "symbol": "sofac", + "name": "SofaCat" + }, + { + "id": "soft-coq-inu", + "symbol": "softco", + "name": "SOFT COQ INU" + }, + { + "id": "soft-dao", + "symbol": "soft", + "name": "Soft DAO" + }, + { + "id": "soft-shill", + "symbol": "coded", + "name": "soft shill" + }, + { + "id": "sogent", + "symbol": "sogent", + "name": "Sogent" + }, + { + "id": "sogni-ai", + "symbol": "sogni", + "name": "Sogni AI" + }, + { + "id": "sohotrn", + "symbol": "sohot", + "name": "SOHOTRN" + }, + { + "id": "soil", + "symbol": "soil", + "name": "Soil" + }, + { + "id": "sojak", + "symbol": "sojak", + "name": "Sojak" + }, + { + "id": "sokuswap", + "symbol": "soku", + "name": "SokuSwap" + }, + { + "id": "sol402-proxy", + "symbol": "sol402", + "name": "Sol402 Proxy" + }, + { + "id": "sola-ai", + "symbol": "sola", + "name": "SOLA AI" + }, + { + "id": "solabrador-2", + "symbol": "sober", + "name": "Solabrador" + }, + { + "id": "solace-2", + "symbol": "$solace", + "name": "Solace" + }, + { + "id": "solace-ai", + "symbol": "$slce", + "name": "Solace AI" + }, + { + "id": "solala", + "symbol": "solala", + "name": "Solala" + }, + { + "id": "solama", + "symbol": "solama", + "name": "Solama" + }, + { + "id": "solamander", + "symbol": "soly", + "name": "Solamander" + }, + { + "id": "solamb", + "symbol": "solamb", + "name": "Solamb" + }, + { + "id": "solami", + "symbol": "solami", + "name": "solami" + }, + { + "id": "solana", + "symbol": "sol", + "name": "Solana" + }, + { + "id": "solana-alligator", + "symbol": "soligator", + "name": "Solana Alligator" + }, + { + "id": "solana-beach", + "symbol": "solana", + "name": "Solana Beach" + }, + { + "id": "solana-bridged-trx-solana", + "symbol": "trx", + "name": "Solana Bridged TRX (Solana)" + }, + { + "id": "solana-cat", + "symbol": "solcat", + "name": "Solana Cat" + }, + { + "id": "solana-compass-staked-sol", + "symbol": "compasssol", + "name": "Solana Compass Staked SOL" + }, + { + "id": "solanaconda", + "symbol": "sonda", + "name": "Solanaconda" + }, + { + "id": "solanacorn", + "symbol": "corn", + "name": "Solanacorn" + }, + { + "id": "solana-deads", + "symbol": "deads", + "name": "Solana Deads" + }, + { + "id": "solana-ecosystem-index", + "symbol": "soli", + "name": "Solana Ecosystem Index" + }, + { + "id": "solanahub-staked-sol", + "symbol": "rasol", + "name": "SolanaHub staked SOL" + }, + { + "id": "solana-kit", + "symbol": "solkit", + "name": "Solana Kit" + }, + { + "id": "solana-mascot", + "symbol": "lumio", + "name": "Solana Mascot" + }, + { + "id": "solana-meme-token", + "symbol": "sol10", + "name": "SOLANA MEME TOKEN" + }, + { + "id": "solana-money-glitch", + "symbol": "smg", + "name": "Solana Money Glitch" + }, + { + "id": "solanamoneyloop", + "symbol": "loop", + "name": "SolanaMoneyLoop" + }, + { + "id": "solana-name-service", + "symbol": "sns", + "name": "Solana Name Service" + }, + { + "id": "solanapepe", + "symbol": "spepe", + "name": "SolanaPepe" + }, + { + "id": "solana-shib", + "symbol": "sshib", + "name": "Solana Shib " + }, + { + "id": "solana-social-explorer", + "symbol": "sse", + "name": "Solana Social Explorer" + }, + { + "id": "solana-spaces", + "symbol": "store", + "name": "Solana Spaces" + }, + { + "id": "solana-s-stablecoin", + "symbol": "usx", + "name": "Solana's Stablecoin" + }, + { + "id": "solana-stock-index", + "symbol": "ssx", + "name": "Solana Stock Index" + }, + { + "id": "solana-street-bets", + "symbol": "ssb", + "name": "Solana Street Bets" + }, + { + "id": "solana-summer", + "symbol": "summer", + "name": "Solana Summer" + }, + { + "id": "solana-swap", + "symbol": "sos", + "name": "Solana Swap" + }, + { + "id": "solana-vm", + "symbol": "svm", + "name": "Solana VM" + }, + { + "id": "solana-wars", + "symbol": "solwars", + "name": "Solana Wars" + }, + { + "id": "solanians", + "symbol": "solanians", + "name": "SOLANIANS" + }, + { + "id": "solanium", + "symbol": "slim", + "name": "Solanium" + }, + { + "id": "solano", + "symbol": "solano", + "name": "Solano" + }, + { + "id": "solarba", + "symbol": "solarba", + "name": "SolARBa" + }, + { + "id": "solarbeam", + "symbol": "solar", + "name": "Solarbeam" + }, + { + "id": "solarcoin", + "symbol": "slr", + "name": "Solarcoin" + }, + { + "id": "solar-dex", + "symbol": "solar", + "name": "Solar Dex" + }, + { + "id": "solar-energy", + "symbol": "seg", + "name": "Solar Energy" + }, + { + "id": "solareum-3", + "symbol": "solareum", + "name": "SOLAREUM" + }, + { + "id": "solarflare", + "symbol": "flare", + "name": "Solarflare" + }, + { + "id": "solaris-ai", + "symbol": "solaris", + "name": "Solaris AI" + }, + { + "id": "solar-swap", + "symbol": "solar", + "name": "Solar Swap" + }, + { + "id": "solarx-2", + "symbol": "sxch", + "name": "SolarX" + }, + { + "id": "sola-token", + "symbol": "sola", + "name": "SOLA" + }, + { + "id": "solawave", + "symbol": "solawave", + "name": "Solawave" + }, + { + "id": "sola-x", + "symbol": "sax", + "name": "SOLA-X" + }, + { + "id": "solaxy", + "symbol": "solx", + "name": "Solaxy" + }, + { + "id": "solaya", + "symbol": "solaya", + "name": "Solaya" + }, + { + "id": "solayer", + "symbol": "layer", + "name": "Solayer" + }, + { + "id": "solayer-staked-sol", + "symbol": "ssol", + "name": "Solayer Staked SOL" + }, + { + "id": "solayer-usd", + "symbol": "susd", + "name": "Solayer USD" + }, + { + "id": "sol-bastard", + "symbol": "soba", + "name": "Sol Bastard" + }, + { + "id": "solberg", + "symbol": "slb", + "name": "Solberg" + }, + { + "id": "solblaze", + "symbol": "blze", + "name": "Blaze" + }, + { + "id": "solbook", + "symbol": "book", + "name": "SolBook" + }, + { + "id": "solbox", + "symbol": "solbox", + "name": "SolBox" + }, + { + "id": "solcard", + "symbol": "solc", + "name": "SolCard" + }, + { + "id": "solcasino-token", + "symbol": "scs", + "name": "Solcasino Token" + }, + { + "id": "solcat", + "symbol": "solcat", + "name": "SOLCAT" + }, + { + "id": "sol-cat", + "symbol": "cat", + "name": "CAT" + }, + { + "id": "solcex", + "symbol": "solcex", + "name": "SolCex" + }, + { + "id": "solchat", + "symbol": "chat", + "name": "Solchat" + }, + { + "id": "solchicks-token", + "symbol": "chicks", + "name": "SolChicks" + }, + { + "id": "solcial", + "symbol": "slcl", + "name": "Solcial" + }, + { + "id": "solcloud", + "symbol": "cloud", + "name": "SolCloud" + }, + { + "id": "solcontrol", + "symbol": "sctrl", + "name": "SolControl" + }, + { + "id": "solcypher", + "symbol": "cypher", + "name": "SolCypher" + }, + { + "id": "soldex", + "symbol": "solx", + "name": "Soldex" + }, + { + "id": "soldocs", + "symbol": "docs", + "name": "SolDocs" + }, + { + "id": "soldoge", + "symbol": "sdoge", + "name": "SolDoge" + }, + { + "id": "soldragon", + "symbol": "dragon", + "name": "SolDragon" + }, + { + "id": "sol-drip", + "symbol": "drip", + "name": "SOL DRIP" + }, + { + "id": "solenceai", + "symbol": "sai", + "name": "SolenceAi" + }, + { + "id": "solend", + "symbol": "slnd", + "name": "Solend" + }, + { + "id": "soleng", + "symbol": "soleng", + "name": "SOLENG" + }, + { + "id": "soley", + "symbol": "soley", + "name": "Soley" + }, + { + "id": "soleye-offchain-tracker", + "symbol": "eye", + "name": "SolEye - OFFCHAIN TRACKER" + }, + { + "id": "solfarm", + "symbol": "tulip", + "name": "Tulip Protocol" + }, + { + "id": "solfarm-2", + "symbol": "sfarm", + "name": "SolFarm" + }, + { + "id": "solfiles", + "symbol": "files", + "name": "Solfiles" + }, + { + "id": "solforge-fusion", + "symbol": "sfg", + "name": "SolForge Fusion" + }, + { + "id": "solgoat", + "symbol": "solgoat", + "name": "SolGoat" + }, + { + "id": "solgram", + "symbol": "gram", + "name": "SOLGRAM" + }, + { + "id": "solhive", + "symbol": "hive", + "name": "SolHive" + }, + { + "id": "solholder", + "symbol": "solholder", + "name": "SOLHolder" + }, + { + "id": "solice", + "symbol": "slc", + "name": "Solice" + }, + { + "id": "solid", + "symbol": "solid", + "name": "Solana ID" + }, + { + "id": "solid-2", + "symbol": "solid", + "name": "Solid" + }, + { + "id": "solide", + "symbol": "solide", + "name": "SOLIDE" + }, + { + "id": "solidefi", + "symbol": "solfi", + "name": "SoliDefi" + }, + { + "id": "solident-biometric-identity", + "symbol": "solident", + "name": "Solident : Biometric Identity" + }, + { + "id": "solidlizard", + "symbol": "sliz", + "name": "SolidLizard" + }, + { + "id": "solidlydex", + "symbol": "solid", + "name": "Solidly" + }, + { + "id": "solidus-aitech", + "symbol": "aitech", + "name": "Solidus Ai Tech" + }, + { + "id": "solid-usd-sousd", + "symbol": "sousd", + "name": "Solid USD (soUSD)" + }, + { + "id": "solid-x", + "symbol": "solidx", + "name": "Solid X" + }, + { + "id": "solify100", + "symbol": "s100", + "name": "Solify100" + }, + { + "id": "solito", + "symbol": "solito", + "name": "SOLITO" + }, + { + "id": "soljakey", + "symbol": "soljakey", + "name": "soljakey" + }, + { + "id": "soljar", + "symbol": "soljar", + "name": "SolJar" + }, + { + "id": "sol-killer", + "symbol": "damn", + "name": "Sol Killer" + }, + { + "id": "solland", + "symbol": "sln", + "name": "Solland" + }, + { + "id": "solle", + "symbol": "solle", + "name": "SOLLE" + }, + { + "id": "solly", + "symbol": "solly", + "name": "SOLLY" + }, + { + "id": "sollytics", + "symbol": "lytics", + "name": "SolLytics" + }, + { + "id": "solmail", + "symbol": "mail", + "name": "SolMail" + }, + { + "id": "solmax", + "symbol": "solmax", + "name": "Solmax" + }, + { + "id": "solmedia", + "symbol": "media", + "name": "Solmedia" + }, + { + "id": "solmev", + "symbol": "sn116", + "name": "SolMev" + }, + { + "id": "solmix", + "symbol": "mixer", + "name": "SolMix" + }, + { + "id": "solmoon-bsc", + "symbol": "smoon", + "name": "Solmoon BSC" + }, + { + "id": "solnav-ai", + "symbol": "solnav", + "name": "SolNav AI" + }, + { + "id": "solnic", + "symbol": "solnic", + "name": "Solnic" + }, + { + "id": "solo", + "symbol": "solo", + "name": "Solo" + }, + { + "id": "solo-coin", + "symbol": "solo", + "name": "Sologenic" + }, + { + "id": "solod-the-buddy", + "symbol": "buddy", + "name": "Solod The Buddy" + }, + { + "id": "solomon-defina", + "symbol": "solo", + "name": "Solomon (Defina)" + }, + { + "id": "solomon-usdv", + "symbol": "usdv", + "name": "Solomon USDv" + }, + { + "id": "solong-the-dragon", + "symbol": "solong", + "name": "SOLONG The Dragon" + }, + { + "id": "solordi", + "symbol": "solo", + "name": "Solordi" + }, + { + "id": "solotto", + "symbol": "lotto", + "name": "Solotto" + }, + { + "id": "solpaca", + "symbol": "solpac", + "name": "Solpaca" + }, + { + "id": "solpad-finance", + "symbol": "solpad", + "name": "Solpad Finance" + }, + { + "id": "solpages", + "symbol": "solp", + "name": "SolPages" + }, + { + "id": "solpaka", + "symbol": "solpaka", + "name": "Solpaka" + }, + { + "id": "solpets", + "symbol": "pets", + "name": "SolPets" + }, + { + "id": "solphin", + "symbol": "solphin", + "name": "Solphin" + }, + { + "id": "solpod", + "symbol": "solpod", + "name": "SolPod" + }, + { + "id": "solport-tom-s-bunny-lola", + "symbol": "lola", + "name": "Solport Tom's bunny Lola" + }, + { + "id": "solpump", + "symbol": "solpump", + "name": "SOLPUMP" + }, + { + "id": "solribbit", + "symbol": "ribbit", + "name": "SolRibbit" + }, + { + "id": "solrise-finance", + "symbol": "slrs", + "name": "Solrise Finance" + }, + { + "id": "sol-roulette", + "symbol": "roulette", + "name": "SOL Roulette" + }, + { + "id": "sol-runner", + "symbol": "solrunner", + "name": "SOL Runner" + }, + { + "id": "sols", + "symbol": "sols", + "name": "sols" + }, + { + "id": "solsnap", + "symbol": "blob", + "name": "Blob Network" + }, + { + "id": "solspend", + "symbol": "spend", + "name": "SolSpend" + }, + { + "id": "solsrch", + "symbol": "srch", + "name": "SolSrch" + }, + { + "id": "solster", + "symbol": "str", + "name": "Solster" + }, + { + "id": "solstice-eusx", + "symbol": "eusx", + "name": "Solstice eUSX" + }, + { + "id": "solstorm", + "symbol": "storm", + "name": "SOLSTORM" + }, + { + "id": "solstream", + "symbol": "stream", + "name": "Solstream" + }, + { + "id": "soltan", + "symbol": "soltan", + "name": "SOLTAN" + }, + { + "id": "soltradingbot", + "symbol": "stbot", + "name": "SolTradingBot" + }, + { + "id": "solv-btc", + "symbol": "solvbtc", + "name": "Solv Protocol BTC" + }, + { + "id": "solve-care", + "symbol": "solve", + "name": "SOLVE" + }, + { + "id": "solvex-network", + "symbol": "solvex", + "name": "Solvex Network" + }, + { + "id": "solv-protocol", + "symbol": "solv", + "name": "Solv Protocol" + }, + { + "id": "solv-protocol-solvbtc-bbn", + "symbol": "xsolvbtc", + "name": "Solv Protocol Staked BTC" + }, + { + "id": "solv-protocol-solvbtc-bera", + "symbol": "solvbtc.bera", + "name": "Solv Protocol SolvBTC.BERA" + }, + { + "id": "solv-protocol-solvbtc-bnb", + "symbol": "solvbtc.bnb", + "name": "Solv Protocol SolvBTC.BNB" + }, + { + "id": "solv-protocol-solvbtc-core", + "symbol": "solvbtc.core", + "name": "Solv Protocol SolvBTC.CORE" + }, + { + "id": "solv-protocol-solvbtc-jupiter", + "symbol": "solvbtc.jup", + "name": "Solv Protocol SolvBTC Jupiter" + }, + { + "id": "sol-wormhole", + "symbol": "wsol", + "name": "Wormhole Bridged WSOL" + }, + { + "id": "sol-x", + "symbol": "solx", + "name": "Sol X" + }, + { + "id": "solxencat", + "symbol": "xencat", + "name": "SolXenCat" + }, + { + "id": "soly-ai", + "symbol": "soly", + "name": "SOLY AI" + }, + { + "id": "solyard-finance", + "symbol": "yard", + "name": "Solyard Finance" + }, + { + "id": "solycat", + "symbol": "solycat", + "name": "Solycat" + }, + { + "id": "solympics", + "symbol": "solympics", + "name": "Solympics" + }, + { + "id": "solzilla", + "symbol": "solzilla", + "name": "Solzilla" + }, + { + "id": "soma-finance", + "symbol": "soma", + "name": "SOMA.finance" + }, + { + "id": "som-bonkmon-fraud", + "symbol": "sbf", + "name": "Som Bonkmon Fraud" + }, + { + "id": "sombrero-memes", + "symbol": "sombrero", + "name": "Sombrero Memes" + }, + { + "id": "somesing", + "symbol": "ssg", + "name": "SOMESING" + }, + { + "id": "sommelier", + "symbol": "somm", + "name": "Sommelier" + }, + { + "id": "somnia", + "symbol": "somi", + "name": "Somnia" + }, + { + "id": "somnium-space-cubes", + "symbol": "cube", + "name": "Somnium Space CUBEs" + }, + { + "id": "somon", + "symbol": "owo", + "name": "SoMon" + }, + { + "id": "so-much-higher", + "symbol": "smh", + "name": "So Much Higher" + }, + { + "id": "sonar-2", + "symbol": "sonar", + "name": "SONAR" + }, + { + "id": "sonar-3", + "symbol": "s0x", + "name": "sonar" + }, + { + "id": "sonarwatch", + "symbol": "sonar", + "name": "SonarWatch" + }, + { + "id": "sonata-network", + "symbol": "sona", + "name": "Sonata Network" + }, + { + "id": "sone", + "symbol": "sone", + "name": "SONE" + }, + { + "id": "soneium-bridged-astar-soneium", + "symbol": "astr", + "name": "Soneium Bridged ASTR (Soneium)" + }, + { + "id": "soneium-bridged-usdc-soneium", + "symbol": "usdc.e", + "name": "Soneium Bridged USDC (Soneium)" + }, + { + "id": "soneium-bridged-usdt-soneium", + "symbol": "usdt", + "name": "Soneium Bridged USDT (Soneium)" + }, + { + "id": "songbird", + "symbol": "sgb", + "name": "Songbird" + }, + { + "id": "songbird-finance", + "symbol": "sfin", + "name": "Songbird Finance" + }, + { + "id": "songjam-by-virtuals", + "symbol": "sang", + "name": "Songjam by Virtuals" + }, + { + "id": "sonic-2", + "symbol": "sonic", + "name": "Sonic" + }, + { + "id": "sonic-3", + "symbol": "s", + "name": "Sonic" + }, + { + "id": "sonic-4", + "symbol": "sonic", + "name": "Sonic" + }, + { + "id": "sonic-ai", + "symbol": "sonic", + "name": "Sonic AI" + }, + { + "id": "sonic-bridged-usdt-sonic", + "symbol": "usdt", + "name": "Sonic Bridged USDT (Sonic)" + }, + { + "id": "sonic-inu", + "symbol": "sonic", + "name": "Sonic Inu" + }, + { + "id": "sonic-name-service", + "symbol": "sns", + "name": "Sonic Name Service" + }, + { + "id": "sonic-snipe-bot", + "symbol": "sonic", + "name": "Sonic Snipe Bot" + }, + { + "id": "sonic-sniper-bot", + "symbol": "sonic", + "name": "Sonic Sniper BOT" + }, + { + "id": "sonic-solana", + "symbol": "sonic", + "name": "Sonic Solana" + }, + { + "id": "sonic-svm", + "symbol": "sonic", + "name": "Sonic SVM" + }, + { + "id": "sonic-the-goat", + "symbol": "goat", + "name": "Sonic The Goat" + }, + { + "id": "sonicwifhat", + "symbol": "sonicwif", + "name": "SonicWifHat" + }, + { + "id": "sonik", + "symbol": "sonik", + "name": "SONIK" + }, + { + "id": "sonne-finance", + "symbol": "sonne", + "name": "Sonne Finance" + }, + { + "id": "son-of-brett", + "symbol": "bratt", + "name": "Son of Brett" + }, + { + "id": "sono-pazzi-questi-romani", + "symbol": "spqr", + "name": "Sono Pazzi Questi Romani" + }, + { + "id": "sonorc", + "symbol": "sonorc", + "name": "Sonorc" + }, + { + "id": "sonorus", + "symbol": "sns", + "name": "Sonorus" + }, + { + "id": "soon-2", + "symbol": "soon", + "name": "SOON" + }, + { + "id": "soonchain", + "symbol": "soonx", + "name": "SoonChain" + }, + { + "id": "sopay", + "symbol": "sop", + "name": "SoPay" + }, + { + "id": "sophia", + "symbol": "sph", + "name": "Sophia" + }, + { + "id": "sophiaverse", + "symbol": "soph", + "name": "SophiaVerse" + }, + { + "id": "sophon", + "symbol": "soph", + "name": "Sophon" + }, + { + "id": "sophon-bridged-usdc-sophon", + "symbol": "usdc", + "name": "Sophon Bridged USDC (Sophon)" + }, + { + "id": "sophon-bridged-usdt-sophon", + "symbol": "usdt", + "name": "Sophon Bridged USDT (Sophon)" + }, + { + "id": "sora", + "symbol": "xor", + "name": "Sora" + }, + { + "id": "sora-ai", + "symbol": "sora", + "name": "Sora AI" + }, + { + "id": "soracle", + "symbol": "soracle", + "name": "Soracle" + }, + { + "id": "sora-doge", + "symbol": "soradoge", + "name": "Sora Doge" + }, + { + "id": "sora-labs", + "symbol": "sora", + "name": "Sora Labs" + }, + { + "id": "sora-oracle", + "symbol": "sora", + "name": "Sora Oracle" + }, + { + "id": "sora-solana", + "symbol": "sora", + "name": "Sora Solana" + }, + { + "id": "sora-synthetic-brl", + "symbol": "xstbrl", + "name": "SORA Synthetic BRL" + }, + { + "id": "sora-synthetic-jpy", + "symbol": "xstjpy", + "name": "SORA Synthetic JPY" + }, + { + "id": "sora-synthetic-ltc", + "symbol": "xstltc", + "name": "SORA Synthetic LTC" + }, + { + "id": "sora-synthetic-rub", + "symbol": "xstrub", + "name": "SORA Synthetic RUB" + }, + { + "id": "sora-synthetic-usd", + "symbol": "xstusd", + "name": "SORA Synthetic USD" + }, + { + "id": "sora-synthetic-xag", + "symbol": "xstxag", + "name": "SORA Synthetic XAG" + }, + { + "id": "sora-validator-token", + "symbol": "val", + "name": "Sora Validator" + }, + { + "id": "sorcery-finance", + "symbol": "sor", + "name": "Sorcery Finance" + }, + { + "id": "soroosh-smart-ecosystem", + "symbol": "sse", + "name": "Soroosh Smart Ecosystem" + }, + { + "id": "soros", + "symbol": "sor", + "name": "Soros" + }, + { + "id": "sorra", + "symbol": "sor", + "name": "Sorra" + }, + { + "id": "sorry", + "symbol": "sry", + "name": "Sorry" + }, + { + "id": "sorya", + "symbol": "sorya", + "name": "Sorya" + }, + { + "id": "sosana", + "symbol": "sosana", + "name": "SOSANA" + }, + { + "id": "sosovalue", + "symbol": "soso", + "name": "SoSoValue" + }, + { + "id": "soulbazaar", + "symbol": "$souls", + "name": "SoulBazaar" + }, + { + "id": "soulbucks", + "symbol": "sbx", + "name": "Soulbucks" + }, + { + "id": "soul-dog-city-bones", + "symbol": "bones", + "name": "Soul Dogs City Bones" + }, + { + "id": "soul-graph", + "symbol": "grph", + "name": "Soul Graph" + }, + { + "id": "soulja-coin", + "symbol": "sboy", + "name": "Soulja Coin" + }, + { + "id": "soulonsol", + "symbol": "sos", + "name": "SOULONSOL" + }, + { + "id": "soulpeg-usd", + "symbol": "spusd", + "name": "SoulPeg USD" + }, + { + "id": "soul-scanner", + "symbol": "soul", + "name": "Soul Scanner" + }, + { + "id": "sound-linx", + "symbol": "sdlx", + "name": "SoundLinX" + }, + { + "id": "soundsright", + "symbol": "sn105", + "name": "SoundsRight" + }, + { + "id": "souni-token", + "symbol": "son", + "name": "Souni" + }, + { + "id": "soup-finance", + "symbol": "soup", + "name": "Soup Finance" + }, + { + "id": "soup-game", + "symbol": "soup", + "name": "soup.game" + }, + { + "id": "source", + "symbol": "source", + "name": "Source" + }, + { + "id": "south-korea-coin", + "symbol": "korea", + "name": "South Korea Coin" + }, + { + "id": "sovra-ai-by-virtuals", + "symbol": "sovra", + "name": "Sovra Ai by Virtuals" + }, + { + "id": "sovrun", + "symbol": "sovrn", + "name": "Sovrun" + }, + { + "id": "sovryn", + "symbol": "sov", + "name": "Sovryn" + }, + { + "id": "sovryn-dollar", + "symbol": "dllr", + "name": "Sovryn Dollar" + }, + { + "id": "sowaka", + "symbol": "swk", + "name": "Sowaka" + }, + { + "id": "sox", + "symbol": "sox", + "name": "SOX" + }, + { + "id": "soyjak", + "symbol": "soy", + "name": "Soyjak" + }, + { + "id": "soyjak-2", + "symbol": "soy", + "name": "Soyjak" + }, + { + "id": "soylanamanletcaptainz", + "symbol": "ansem", + "name": "SoylanaManletCaptainZ" + }, + { + "id": "sozoai", + "symbol": "soai", + "name": "SōzōAI" + }, + { + "id": "sp500-xstock", + "symbol": "spyx", + "name": "SP500 xStock" + }, + { + "id": "space-2", + "symbol": "$space", + "name": "Space" + }, + { + "id": "space-and-time", + "symbol": "sxt", + "name": "Space and Time" + }, + { + "id": "spacebar", + "symbol": "air", + "name": "Spacebar" + }, + { + "id": "spacebucks", + "symbol": "sbx", + "name": "Spacebucks" + }, + { + "id": "spacecatch", + "symbol": "catch", + "name": "SpaceCatch" + }, + { + "id": "spacechain-erc-20", + "symbol": "spc", + "name": "SpaceChain (ERC-20)" + }, + { + "id": "spacecoin-2", + "symbol": "space", + "name": "Spacecoin" + }, + { + "id": "spacedawgs", + "symbol": "dawgs", + "name": "SpaceDawgs" + }, + { + "id": "spacedoge-2", + "symbol": "spdg", + "name": "SPACEDOGE" + }, + { + "id": "space-dog-solana", + "symbol": "laika", + "name": "Space Dog Solana" + }, + { + "id": "spacefalcon", + "symbol": "fcon", + "name": "SpaceFalcon" + }, + { + "id": "spacefi-zksync", + "symbol": "space", + "name": "SpaceFi" + }, + { + "id": "space-frog-x", + "symbol": "sfx", + "name": "Space Frog X" + }, + { + "id": "space-id", + "symbol": "id", + "name": "SPACE ID" + }, + { + "id": "spacelens", + "symbol": "space", + "name": "Spacelens" + }, + { + "id": "spacemesh", + "symbol": "$smh", + "name": "Spacemesh" + }, + { + "id": "spacemine", + "symbol": "mine", + "name": "SpaceMine" + }, + { + "id": "space-misfits", + "symbol": "smcw", + "name": "Space Misfits" + }, + { + "id": "spacem-token", + "symbol": "spcm", + "name": "SPACEM WORLD" + }, + { + "id": "spacen", + "symbol": "sn", + "name": "SpaceN" + }, + { + "id": "space-nation-oikos", + "symbol": "oik", + "name": "Space Nation Oikos" + }, + { + "id": "spacepenguin", + "symbol": "p3nguin", + "name": "SpacePenguin" + }, + { + "id": "spacepi-token", + "symbol": "spacepi", + "name": "SpacePi Token" + }, + { + "id": "spaceswap-milk2", + "symbol": "milk2", + "name": "Spaceswap MILK2" + }, + { + "id": "spaceswap-shake", + "symbol": "shake", + "name": "Spaceswap SHAKE" + }, + { + "id": "space-token-bsc", + "symbol": "space", + "name": "Space Token" + }, + { + "id": "spacex-prestocks-2", + "symbol": "spacex", + "name": "SpaceX PreStocks" + }, + { + "id": "spad", + "symbol": "spad", + "name": "SPAD" + }, + { + "id": "spain-coin", + "symbol": "esp", + "name": "Spain Coin" + }, + { + "id": "spain-national-fan-token", + "symbol": "snft", + "name": "Spain National Football Team Fan Token" + }, + { + "id": "spare-parts-universe", + "symbol": "spu", + "name": "Spare Parts Universe" + }, + { + "id": "spark-2", + "symbol": "spk", + "name": "Spark" + }, + { + "id": "spark-3", + "symbol": "spark", + "name": "Spark" + }, + { + "id": "spark-4", + "symbol": "spark", + "name": "SPARK" + }, + { + "id": "sparkdex", + "symbol": "sprk", + "name": "SparkDEX" + }, + { + "id": "sparklife", + "symbol": "sps", + "name": "Sparklife" + }, + { + "id": "sparklucky", + "symbol": "slc", + "name": "SparkLucky" + }, + { + "id": "sparkpoint", + "symbol": "srk", + "name": "SparkPoint" + }, + { + "id": "sparta-2", + "symbol": "sparta", + "name": "SPARTA" + }, + { + "id": "spartacus", + "symbol": "spa", + "name": "Spartacus" + }, + { + "id": "spartadex", + "symbol": "sparta", + "name": "SpartaDEX" + }, + { + "id": "spartan-protocol-token", + "symbol": "sparta", + "name": "Spartan Protocol" + }, + { + "id": "spatial-computing", + "symbol": "cmpt", + "name": "Spatial Computing" + }, + { + "id": "spawn", + "symbol": "spawn", + "name": "Spawn" + }, + { + "id": "spawn-tools", + "symbol": "spawn", + "name": "Spawn Tools" + }, + { + "id": "spdr-s-p-500-etf-ondo-tokenized-etf", + "symbol": "spyon", + "name": "SPDR S&P 500 ETF (Ondo Tokenized ETF)" + }, + { + "id": "spdr-s-p-500-etf-trust-defichain", + "symbol": "dspy", + "name": "SPDR S&P 500 ETF Trust Defichain" + }, + { + "id": "speak-ventures", + "symbol": "speak", + "name": "Speak Ventures" + }, + { + "id": "speciex", + "symbol": "spex", + "name": "Speciex" + }, + { + "id": "spectra-2", + "symbol": "spectra", + "name": "SPECTRA" + }, + { + "id": "spectra-finance", + "symbol": "spectra", + "name": "Spectra" + }, + { + "id": "spectral", + "symbol": "spec", + "name": "Spectral" + }, + { + "id": "spectral-sight", + "symbol": "sight", + "name": "Spectral Sight" + }, + { + "id": "spectre-2", + "symbol": "spctr", + "name": "Spectre" + }, + { + "id": "spectre-ai", + "symbol": "spectre", + "name": "Spectre AI" + }, + { + "id": "spectrecoin", + "symbol": "alias", + "name": "Alias" + }, + { + "id": "spectre-network", + "symbol": "spr", + "name": "Spectre" + }, + { + "id": "spectrum-2", + "symbol": "spctrm", + "name": "Spectrum" + }, + { + "id": "spectrum-eth", + "symbol": "speth", + "name": "Spectrum ETH" + }, + { + "id": "speculate-dao", + "symbol": "spec", + "name": "Speculate DAO" + }, + { + "id": "speculation", + "symbol": "specu", + "name": "Speculation" + }, + { + "id": "speedrun", + "symbol": "run", + "name": "Speedrun" + }, + { + "id": "speedrun-2", + "symbol": "speed", + "name": "Speedrun" + }, + { + "id": "speed-star-joc", + "symbol": "joc", + "name": "Speed Star JOC" + }, + { + "id": "speed-star-speed", + "symbol": "speed", + "name": "Speed Star SPEED" + }, + { + "id": "speed-star-star", + "symbol": "star", + "name": "Speed Star STAR" + }, + { + "id": "speedy-2", + "symbol": "speedy", + "name": "Speedy" + }, + { + "id": "speero", + "symbol": "speero", + "name": "Speero" + }, + { + "id": "spellfire", + "symbol": "spellfire", + "name": "Spellfire" + }, + { + "id": "spell-token", + "symbol": "spell", + "name": "Spell" + }, + { + "id": "sperax", + "symbol": "spa", + "name": "Sperax" + }, + { + "id": "sperax-usd", + "symbol": "usds", + "name": "Sperax USD" + }, + { + "id": "s-p-global-ondo-tokenized-stock", + "symbol": "spgion", + "name": "S&P Global (Ondo Tokenized Stock)" + }, + { + "id": "s-p-global-xstock", + "symbol": "spgix", + "name": "S&P Global xStock" + }, + { + "id": "sphere-finance", + "symbol": "sphere", + "name": "Sphere Finance" + }, + { + "id": "spheroid-universe", + "symbol": "sph", + "name": "Spheroid Universe" + }, + { + "id": "spheron-network", + "symbol": "spon", + "name": "Spheron Network" + }, + { + "id": "sphynx-labs-bae5b42e-5e37-4607-8691-b56d3a5f344c", + "symbol": "sphynx", + "name": "Sphynx Labs" + }, + { + "id": "spice-2", + "symbol": "spice", + "name": "Spice" + }, + { + "id": "spice-3", + "symbol": "spice", + "name": "SPICE" + }, + { + "id": "spice-pusd-vault", + "symbol": "pusdnote", + "name": "SPICE pUSD Vault" + }, + { + "id": "spiderswap", + "symbol": "spdr", + "name": "SpiderSwap" + }, + { + "id": "spike", + "symbol": "spike", + "name": "Spike" + }, + { + "id": "spike-2", + "symbol": "spike", + "name": "Spike" + }, + { + "id": "spike-on-eth", + "symbol": "spike", + "name": "Spike" + }, + { + "id": "spiko-us-t-bills-money-market-fund", + "symbol": "ustbl", + "name": "Spiko US T-Bills Money Market Fund" + }, + { + "id": "spindash", + "symbol": "spindash", + "name": "SpinDash" + }, + { + "id": "spinedao-token", + "symbol": "spine", + "name": "SpineDAO Token" + }, + { + "id": "spin-fi", + "symbol": "$spin", + "name": "Spin Fi" + }, + { + "id": "spin-it", + "symbol": "spin", + "name": "Spin It" + }, + { + "id": "spinnft", + "symbol": "spin", + "name": "SpinNFT" + }, + { + "id": "spinning-cat", + "symbol": "oiiaoiia", + "name": "Spinning Cat" + }, + { + "id": "spintop", + "symbol": "spin", + "name": "Spintop" + }, + { + "id": "spintria", + "symbol": "sp", + "name": "Spintria" + }, + { + "id": "spira", + "symbol": "spira", + "name": "SPIRA" + }, + { + "id": "spiraldao-coil", + "symbol": "coil", + "name": "SpiralDAO Coil" + }, + { + "id": "spiritcoin", + "symbol": "spiritcoin", + "name": "spiritcoin" + }, + { + "id": "splash-2", + "symbol": "splash", + "name": "SPLASH" + }, + { + "id": "splash-ai", + "symbol": "splash", + "name": "SPLASH AI" + }, + { + "id": "splash-dog", + "symbol": "buster", + "name": "Splash Dog" + }, + { + "id": "splashing-staked-sei", + "symbol": "spsei", + "name": "Splashing Staked SEI" + }, + { + "id": "splash-trade", + "symbol": "splash", + "name": "Splash" + }, + { + "id": "splendor", + "symbol": "spld", + "name": "Splendor" + }, + { + "id": "splinterlands", + "symbol": "sps", + "name": "Splintershards" + }, + { + "id": "splo", + "symbol": "splo", + "name": "Splo" + }, + { + "id": "sploots-by-virtuals", + "symbol": "sploot", + "name": "Sploots by Virtuals" + }, + { + "id": "spodermen", + "symbol": "spoody", + "name": "Spodermen" + }, + { + "id": "sponge-2", + "symbol": "$sponge", + "name": "Sponge" + }, + { + "id": "sponge-f08b2fe4-9d9c-47c3-b5a0-84c2ac3bbbff", + "symbol": "$sponge", + "name": "Sponge (OLD)" + }, + { + "id": "spookyshiba-2", + "symbol": "spky", + "name": "SpookyShiba" + }, + { + "id": "spookyswap", + "symbol": "boo", + "name": "SpookySwap [Old]" + }, + { + "id": "spookyswap-2", + "symbol": "boo", + "name": "SpookySwap" + }, + { + "id": "spookyswap-bridged-wbnb-fantom", + "symbol": "wbnb", + "name": "SpookySwap Bridged WBNB (Fantom)" + }, + { + "id": "spooky-the-phantom", + "symbol": "spooky", + "name": "Spooky The Phantom" + }, + { + "id": "spore", + "symbol": "spore", + "name": "Spore" + }, + { + "id": "spore-2", + "symbol": "spore", + "name": "Spore" + }, + { + "id": "spores-network", + "symbol": "spo", + "name": "Spores Network" + }, + { + "id": "sporkdao", + "symbol": "spork", + "name": "SporkDAO" + }, + { + "id": "sport", + "symbol": "sport", + "name": "SPORT" + }, + { + "id": "sport-bettor-ai", + "symbol": "zebro", + "name": "Sport Bettor AI" + }, + { + "id": "sports-analyst-ai", + "symbol": "sport", + "name": "Sports Analyst AI" + }, + { + "id": "sports-bet", + "symbol": "sbet", + "name": "Sports Bet" + }, + { + "id": "sportstensor", + "symbol": "sn41", + "name": "Sportstensor" + }, + { + "id": "spot", + "symbol": "spot", + "name": "Spot" + }, + { + "id": "spotify-ondo-tokenized-stock", + "symbol": "spoton", + "name": "Spotify (Ondo Tokenized Stock)" + }, + { + "id": "spottie-wifi", + "symbol": "wifi", + "name": "Spottie WiFi" + }, + { + "id": "spotwin", + "symbol": "spotwin", + "name": "SpotWin" + }, + { + "id": "spqr", + "symbol": "spqr", + "name": "SPQR" + }, + { + "id": "spredd", + "symbol": "sprdd", + "name": "SPREDD" + }, + { + "id": "spring", + "symbol": "spring", + "name": "Spring Token" + }, + { + "id": "spring-staked-sui", + "symbol": "ssui", + "name": "Spring Staked SUI" + }, + { + "id": "sprotostrategy", + "symbol": "sprstr", + "name": "SprotoStrategy" + }, + { + "id": "s-p-small-cap-xstock", + "symbol": "ijrx", + "name": "S&P Small Cap xStock" + }, + { + "id": "spud", + "symbol": "spud", + "name": "SPUD" + }, + { + "id": "spurdex", + "symbol": "spdx", + "name": "SpurDex" + }, + { + "id": "spurdo", + "symbol": "spurdo", + "name": "Spurdo" + }, + { + "id": "spurdo-2", + "symbol": "spurdo", + "name": "Spurdo" + }, + { + "id": "spurdo-3", + "symbol": "spurdo", + "name": "SPURDO" + }, + { + "id": "spurdo-on-eth", + "symbol": "spurdo", + "name": "SPURDO ON ETH" + }, + { + "id": "spurdo-sparde", + "symbol": "spurdo", + "name": "Spurdo Spärde" + }, + { + "id": "spurdo-sparde-2", + "symbol": "spurdo", + "name": "Spurdo Spärde" + }, + { + "id": "spurdo-sparde-3", + "symbol": "spurdo", + "name": "Spurdo Spärde" + }, + { + "id": "spx6900", + "symbol": "spx", + "name": "SPX6900" + }, + { + "id": "spx6900-2-0", + "symbol": "spx2.0", + "name": "SPX6900 2.0" + }, + { + "id": "spx6969", + "symbol": "spx6969", + "name": "SPX6969" + }, + { + "id": "sp-xf", + "symbol": "spix", + "name": "spιxfι" + }, + { + "id": "spy-ai-agent", + "symbol": "spyai", + "name": "SPY AI AGENT by Virtuals" + }, + { + "id": "spyro", + "symbol": "spyro", + "name": "SPYRO" + }, + { + "id": "sqd", + "symbol": "sqd", + "name": "SQD" + }, + { + "id": "sqrbit", + "symbol": "sqrb", + "name": "SQRBIT" + }, + { + "id": "sqrcat", + "symbol": "sqrcat", + "name": "SQRCAT" + }, + { + "id": "sqrfund", + "symbol": "sqr", + "name": "sqrFUND" + }, + { + "id": "squad", + "symbol": "squad", + "name": "Superpower Squad" + }, + { + "id": "squad-strategy", + "symbol": "squadstr", + "name": "SQUAD Strategy" + }, + { + "id": "squadswap", + "symbol": "squad", + "name": "SquadSwap" + }, + { + "id": "squid-game", + "symbol": "squid", + "name": "Squid Game" + }, + { + "id": "squid-game-2", + "symbol": "squid", + "name": "Squid Game" + }, + { + "id": "squidgrow-2", + "symbol": "sqgrow", + "name": "SquidGrow" + }, + { + "id": "squidonsui", + "symbol": "sqid", + "name": "SquidOnSui" + }, + { + "id": "squigglestrategy", + "symbol": "squigstr", + "name": "SquiggleStrategy" + }, + { + "id": "squill", + "symbol": "squill", + "name": "Squill" + }, + { + "id": "squirrel-by", + "symbol": "squirrel", + "name": "Squirrel By 𝓜𝓪𝓽𝓽 𝓕𝓾𝓻𝓲𝓮" + }, + { + "id": "squirrel-swap", + "symbol": "sqrl", + "name": "Squirrel Swap" + }, + { + "id": "squirrel-wallet", + "symbol": "nuts", + "name": "Squirrel Wallet" + }, + { + "id": "squirry", + "symbol": "squirry", + "name": "Squirry" + }, + { + "id": "squish", + "symbol": "$squish", + "name": "Squish" + }, + { + "id": "sroomai-dao", + "symbol": "shr0", + "name": "SroomAI DAO" + }, + { + "id": "srune", + "symbol": "srune", + "name": "sRUNE" + }, + { + "id": "ssui", + "symbol": "ssui", + "name": "sSUI" + }, + { + "id": "ssv-network", + "symbol": "ssv", + "name": "SSV Network" + }, + { + "id": "stabble", + "symbol": "stb", + "name": "stabble" + }, + { + "id": "stability", + "symbol": "stbl", + "name": "Stability" + }, + { + "id": "stability-world-ai", + "symbol": "aiw", + "name": "Stability World AI" + }, + { + "id": "stabilize", + "symbol": "stbz", + "name": "Stabilize" + }, + { + "id": "stable-2", + "symbol": "$stable", + "name": "​​Stable" + }, + { + "id": "stablecoin", + "symbol": "stable", + "name": "Stablecoin" + }, + { + "id": "stable-coin-2", + "symbol": "sbc", + "name": "Stable Coin" + }, + { + "id": "stable-coin-3", + "symbol": "sc", + "name": "Stable Coin" + }, + { + "id": "stablecomp", + "symbol": "scomp", + "name": "Stablecomp" + }, + { + "id": "stabledoc-token", + "symbol": "sdt", + "name": "Stabledoc" + }, + { + "id": "stable-usdlr", + "symbol": "usdlr", + "name": "Stable USDLR" + }, + { + "id": "stabl-fi", + "symbol": "cash", + "name": "Stabl.fi CASH" + }, + { + "id": "stablr-euro", + "symbol": "eurr", + "name": "StablR Euro" + }, + { + "id": "stablr-usd", + "symbol": "usdr", + "name": "StablR USD" + }, + { + "id": "stably-cusd", + "symbol": "cusd", + "name": "CUSD" + }, + { + "id": "stabull-finance", + "symbol": "stabul", + "name": "Stabull Finance" + }, + { + "id": "stacker-ai", + "symbol": "$stack", + "name": "STACKER AI" + }, + { + "id": "stacking-dao", + "symbol": "ststx", + "name": "Stacking DAO Stacked Stacks" + }, + { + "id": "stacking-dao-stacked-stacks-btc", + "symbol": "ststxbtc", + "name": "Stacking DAO Stacked Stacks BTC" + }, + { + "id": "stackos", + "symbol": "sfx", + "name": "StackOS" + }, + { + "id": "stacktical", + "symbol": "dsla", + "name": "DSLA Protocol" + }, + { + "id": "stacy-staked-xtz", + "symbol": "stxtz", + "name": "Stacy Staked XTZ" + }, + { + "id": "stader", + "symbol": "sd", + "name": "Stader" + }, + { + "id": "stader-bnbx", + "symbol": "bnbx", + "name": "Stader BNBx" + }, + { + "id": "stader-ethx", + "symbol": "ethx", + "name": "Stader ETHx" + }, + { + "id": "stader-maticx", + "symbol": "maticx", + "name": "Stader MaticX" + }, + { + "id": "stader-sftmx", + "symbol": "sftmx", + "name": "BeethovenX sFTMX" + }, + { + "id": "stadium-coin", + "symbol": "stadium", + "name": "Stadium Coin" + }, + { + "id": "stafi", + "symbol": "fis", + "name": "Stafi" + }, + { + "id": "stafi-staked-sol", + "symbol": "rsol", + "name": "StaFi Staked SOL" + }, + { + "id": "stage", + "symbol": "stage", + "name": "Stage" + }, + { + "id": "staicy-sport", + "symbol": "sport", + "name": "Staicy Sport" + }, + { + "id": "staika", + "symbol": "stik", + "name": "Staika" + }, + { + "id": "stakecube", + "symbol": "scc", + "name": "Stakecube" + }, + { + "id": "staked-aave-balancer-pool-token", + "symbol": "stkabpt", + "name": "Staked Aave Balancer Pool Token" + }, + { + "id": "staked-ageur", + "symbol": "steur", + "name": "Angle Staked EURA" + }, + { + "id": "stake-dao", + "symbol": "sdt", + "name": "Stake DAO" + }, + { + "id": "stake-dao-crv", + "symbol": "sdcrv", + "name": "Stake DAO CRV" + }, + { + "id": "stake-dao-fxn", + "symbol": "sdfxn", + "name": "Stake DAO FXN" + }, + { + "id": "stake-dao-sdpendle", + "symbol": "sdpendle", + "name": "Stake DAO sdPENDLE" + }, + { + "id": "stake-dao-ynd", + "symbol": "sdynd", + "name": "Stake DAO YND" + }, + { + "id": "staked-aria-premier-launch", + "symbol": "stapl", + "name": "Staked Aria Premier Launch" + }, + { + "id": "staked-aurora", + "symbol": "staur", + "name": "Staked Aurora" + }, + { + "id": "staked-avail", + "symbol": "stavail", + "name": "Deq Staked AVAIL" + }, + { + "id": "staked-bifi", + "symbol": "moobifi", + "name": "Staked BIFI" + }, + { + "id": "staked-bitz", + "symbol": "sbitz", + "name": "Staked BITZ" + }, + { + "id": "staked-cap-usd", + "symbol": "stcusd", + "name": "Staked Cap USD" + }, + { + "id": "staked-ether", + "symbol": "steth", + "name": "Lido Staked Ether" + }, + { + "id": "staked-frax-ether", + "symbol": "sfrxeth", + "name": "Staked Frax Ether" + }, + { + "id": "staked-frax-usd", + "symbol": "sfrxusd", + "name": "Staked Frax USD" + }, + { + "id": "staked-fx", + "symbol": "stfx", + "name": "Staked FX" + }, + { + "id": "staked-hope", + "symbol": "sthope", + "name": "Staked HOPE" + }, + { + "id": "staked-hype", + "symbol": "sthype", + "name": "Staked HYPE" + }, + { + "id": "staked-hype-shares", + "symbol": "wsthype", + "name": "Staked HYPE Shares" + }, + { + "id": "staked-inv", + "symbol": "sinv", + "name": "Staked INV" + }, + { + "id": "staked-iota", + "symbol": "stiota", + "name": "Staked IOTA" + }, + { + "id": "staked-ip", + "symbol": "stip", + "name": "Staked IP" + }, + { + "id": "staked-kcs", + "symbol": "skcs", + "name": "Staked KCS" + }, + { + "id": "staked-kofi-aptos", + "symbol": "stkapt", + "name": "Staked Kofi (Aptos)" + }, + { + "id": "staked-loop", + "symbol": "stloop", + "name": "Staked LOOP" + }, + { + "id": "staked-metis-token", + "symbol": "artmetis", + "name": "Staked Metis Token" + }, + { + "id": "staked-msusd", + "symbol": "smsusd", + "name": "Staked msUSD" + }, + { + "id": "staked-near", + "symbol": "stnear", + "name": "Staked NEAR" + }, + { + "id": "staked-neptune-oas", + "symbol": "stoas", + "name": "Staked Neptune OAS" + }, + { + "id": "staked-ogn", + "symbol": "xogn", + "name": "Staked OGN" + }, + { + "id": "staked-piku", + "symbol": "spiku", + "name": "Staked PIKU" + }, + { + "id": "staked-stream-usd", + "symbol": "xusd", + "name": "Staked Stream USD" + }, + { + "id": "staked-strk", + "symbol": "nststrk", + "name": "Nostra Staked STRK" + }, + { + "id": "staked-tao-root", + "symbol": "sn0", + "name": "Staked TAO (Root)" + }, + { + "id": "staked-tharwa-usd", + "symbol": "sthusd", + "name": "Staked Tharwa USD" + }, + { + "id": "staked-tlos", + "symbol": "stlos", + "name": "Staked TLOS" + }, + { + "id": "staked-trx", + "symbol": "strx", + "name": "Staked TRX" + }, + { + "id": "staked-usd1", + "symbol": "susd1+", + "name": "staked USD1+" + }, + { + "id": "staked-usd-coin", + "symbol": "susd", + "name": "Staked USD Coin" + }, + { + "id": "staked-usdt", + "symbol": "stusdt", + "name": "Staked USDT" + }, + { + "id": "staked-usn", + "symbol": "susn", + "name": "Staked USN" + }, + { + "id": "staked-uty", + "symbol": "yuty", + "name": "Staked UTY" + }, + { + "id": "staked-yearn-crv-vault", + "symbol": "st-ycrv", + "name": "Staked Yearn CRV Vault" + }, + { + "id": "staked-yearn-ether", + "symbol": "st-yeth", + "name": "Staked Yearn Ether" + }, + { + "id": "staked-yusd", + "symbol": "syusd", + "name": "Staked YUSD" + }, + { + "id": "staked-yuzu-usd", + "symbol": "syzusd", + "name": "Staked Yuzu USD" + }, + { + "id": "stake-flow", + "symbol": "flow", + "name": "STAKE FLOW" + }, + { + "id": "stakefy", + "symbol": "sfy", + "name": "Stakefy" + }, + { + "id": "stakehouse-keth", + "symbol": "keth", + "name": "Stakehouse kETH" + }, + { + "id": "stakelayer", + "symbol": "stakelayer", + "name": "StakeLayer" + }, + { + "id": "stake-link", + "symbol": "sdl", + "name": "stake.link" + }, + { + "id": "stake-link-staked-link", + "symbol": "stlink", + "name": "Staked LINK" + }, + { + "id": "stakequest-legends-ticker-sql", + "symbol": "sql", + "name": "StakeQuest Legends" + }, + { + "id": "stakestone", + "symbol": "sto", + "name": "StakeStone" + }, + { + "id": "stakestone-berachain-vault-token", + "symbol": "berastone", + "name": "StakeStone Berachain Vault Token" + }, + { + "id": "stakestone-ether", + "symbol": "stone", + "name": "StakeStone ETH" + }, + { + "id": "stake-together", + "symbol": "stpeth", + "name": "Stake Together" + }, + { + "id": "stakevault-network", + "symbol": "svn", + "name": "StakeVault.Network" + }, + { + "id": "stakewise", + "symbol": "swise", + "name": "StakeWise" + }, + { + "id": "stakewise-staked-gno-2", + "symbol": "osgno", + "name": "StakeWise Staked GNO" + }, + { + "id": "stakewise-v3-oseth", + "symbol": "oseth", + "name": "StakeWise Staked ETH" + }, + { + "id": "staking-2", + "symbol": "sn88", + "name": "Sταking" + }, + { + "id": "stakingverse-staked-lyx", + "symbol": "slyx", + "name": "Stakingverse Staked LYX" + }, + { + "id": "stampmap", + "symbol": "stmap", + "name": "StampMap" + }, + { + "id": "standard-protocol", + "symbol": "stnd", + "name": "Standard Protocol" + }, + { + "id": "standard-token", + "symbol": "tst", + "name": "TheStandard Token" + }, + { + "id": "standard-trust-assurance-community", + "symbol": "staco", + "name": "Standard Trust Assurance Community" + }, + { + "id": "stand-with-crypto-fund", + "symbol": "swc", + "name": "Stand With Crypto Fund" + }, + { + "id": "standx-dusd", + "symbol": "dusd", + "name": "StandX DUSD" + }, + { + "id": "stank-memes", + "symbol": "stank", + "name": "Stank Memes" + }, + { + "id": "stanley-cup-coin", + "symbol": "stan", + "name": "STAN" + }, + { + "id": "star", + "symbol": "star", + "name": "Star" + }, + { + "id": "star-atlas", + "symbol": "atlas", + "name": "Star Atlas" + }, + { + "id": "star-atlas-dao", + "symbol": "polis", + "name": "Star Atlas DAO" + }, + { + "id": "starbase-2", + "symbol": "starbase", + "name": "STARBASE" + }, + { + "id": "starbro", + "symbol": "starbro", + "name": "STARBRO" + }, + { + "id": "starbucks-ondo-tokenized-stock", + "symbol": "sbuxon", + "name": "Starbucks (Ondo Tokenized Stock)" + }, + { + "id": "star-cat", + "symbol": "sc", + "name": "STAR CAT" + }, + { + "id": "starcoin", + "symbol": "stc", + "name": "Starcoin" + }, + { + "id": "starecat", + "symbol": "helia", + "name": "StareCat" + }, + { + "id": "starecat-2", + "symbol": "starecat", + "name": "Starecat" + }, + { + "id": "stargate", + "symbol": "stargate", + "name": "Stargate" + }, + { + "id": "stargate-bridged-pearl-avalanche", + "symbol": "pearl", + "name": "Stargate Bridged Pearl (Avalanche)" + }, + { + "id": "stargate-bridged-shell-avalanche", + "symbol": "shell", + "name": "Stargate Bridged Shell (Avalanche)" + }, + { + "id": "stargate-bridged-usdc", + "symbol": "usdc.e", + "name": "Stargate Bridged USDC" + }, + { + "id": "stargate-bridged-usdc-iota-evm", + "symbol": "usdt", + "name": "Stargate Bridged USDT (Iota EVM)" + }, + { + "id": "stargate-bridged-usdc-vana", + "symbol": "usdc.e", + "name": "Stargate Bridged USDC (Vana)" + }, + { + "id": "stargate-bridged-usdt0", + "symbol": "usdt0", + "name": "Stargate Bridged USDT0" + }, + { + "id": "stargate-bridged-usdt-flare-network", + "symbol": "usdt", + "name": "Stargate Bridged USDT (Flare Network)" + }, + { + "id": "stargate-bridged-usdt-fuse", + "symbol": "usdt", + "name": "Stargate Bridged USDT (Fuse)" + }, + { + "id": "stargate-bridged-usdt-peaq", + "symbol": "usdt", + "name": "Stargate Bridged USDT (Peaq)" + }, + { + "id": "stargate-bridged-usdt-plume", + "symbol": "usdt", + "name": "Stargate Bridged USDT (Plume)" + }, + { + "id": "stargate-bridged-usdt-somnia", + "symbol": "usdt", + "name": "Stargate Bridged USDT (Somnia)" + }, + { + "id": "stargate-bridged-usdt-xdc", + "symbol": "usdt", + "name": "Stargate Bridged USDT (XDC)" + }, + { + "id": "stargate-bridged-weth", + "symbol": "weth", + "name": "Stargate Bridged WETH" + }, + { + "id": "stargate-bridged-weth-fuse", + "symbol": "weth", + "name": "Stargate Bridged WETH (Fuse)" + }, + { + "id": "stargate-finance", + "symbol": "stg", + "name": "Stargate Finance" + }, + { + "id": "stargaze", + "symbol": "stars", + "name": "Stargaze" + }, + { + "id": "starheroes", + "symbol": "star", + "name": "StarHeroes" + }, + { + "id": "staring-robot", + "symbol": "sonny", + "name": "staring robot" + }, + { + "id": "starkgate-bridged-dai-v2-starknet", + "symbol": "dai", + "name": "StarkGate Bridged Dai V2 (Starknet)" + }, + { + "id": "starknet", + "symbol": "strk", + "name": "Starknet" + }, + { + "id": "starknet-brother", + "symbol": "brother", + "name": "STARKNET BROTHER" + }, + { + "id": "starkpunks", + "symbol": "punk", + "name": "Starkpunks" + }, + { + "id": "starlaunch", + "symbol": "stars", + "name": "StarLaunch" + }, + { + "id": "starlink", + "symbol": "starl", + "name": "StarLink" + }, + { + "id": "starnet-bridged-wsteth-starknet", + "symbol": "wsteth", + "name": "Starknet Bridged wstETH (Starknet)" + }, + { + "id": "starri", + "symbol": "starri", + "name": "Starri" + }, + { + "id": "starrynift", + "symbol": "snift", + "name": "StarryNift" + }, + { + "id": "stars", + "symbol": "srx", + "name": "Stars" + }, + { + "id": "stars-2", + "symbol": "stars", + "name": "STARS" + }, + { + "id": "starsharks", + "symbol": "sss", + "name": "StarSharks" + }, + { + "id": "starship", + "symbol": "starship", + "name": "StarShip" + }, + { + "id": "starship-4", + "symbol": "stship", + "name": "Starship on Solana 🚀" + }, + { + "id": "starslax", + "symbol": "sslx", + "name": "StarSlax" + }, + { + "id": "starsmint", + "symbol": "stars", + "name": "StarsMint" + }, + { + "id": "startup", + "symbol": "startup", + "name": "Startup" + }, + { + "id": "starworks-global-ecosystem", + "symbol": "starx", + "name": "STARX" + }, + { + "id": "stash-inu", + "symbol": "stash", + "name": "Stash Inu" + }, + { + "id": "stasis-eurs", + "symbol": "eurs", + "name": "STASIS EURO" + }, + { + "id": "stasis-network", + "symbol": "bloc", + "name": "BlockCentral Token" + }, + { + "id": "stat", + "symbol": "stat", + "name": "STAT" + }, + { + "id": "statera", + "symbol": "sta", + "name": "Statera" + }, + { + "id": "static-hyperlend-hyperevm-whype-v2", + "symbol": "stathhyperevmwhypev2", + "name": "Static HyperLend HyperEVM WHYPE v2" + }, + { + "id": "staticky", + "symbol": "$staticky", + "name": "StatiCKy" + }, + { + "id": "station-this", + "symbol": "ms2", + "name": "Station This" + }, + { + "id": "sta-token", + "symbol": "sta", + "name": "STA" + }, + { + "id": "statter-network", + "symbol": "stt", + "name": "Statter Network" + }, + { + "id": "status", + "symbol": "snt", + "name": "Status" + }, + { + "id": "stau", + "symbol": "stau", + "name": "STAU" + }, + { + "id": "stax-token", + "symbol": "stax", + "name": "STAX Token" + }, + { + "id": "staynex", + "symbol": "stay", + "name": "STAYNEX" + }, + { + "id": "staysafu", + "symbol": "safu", + "name": "StaySAFU" + }, + { + "id": "stbgt", + "symbol": "stbgt", + "name": "stBGT" + }, + { + "id": "stbl", + "symbol": "stbl", + "name": "STBL" + }, + { + "id": "stbl-gold", + "symbol": "stblg", + "name": "STBL Gold" + }, + { + "id": "steakd", + "symbol": "sdx", + "name": "Steakd" + }, + { + "id": "steakhouse-eth-base-morpho-vault", + "symbol": "steaketh", + "name": "Steakhouse ETH (Base) Morpho Vault" + }, + { + "id": "steakhouse-eth-morpho-vault", + "symbol": "steaketh", + "name": "Steakhouse ETH Morpho Vault" + }, + { + "id": "steakhouse-eura-base-morpho-vault", + "symbol": "steakusda", + "name": "Steakhouse EURA (Base) Morpho Vault" + }, + { + "id": "steakhouse-eurcv-morpho-vault", + "symbol": "steakeurcv", + "name": "Steakhouse EURCV Morpho Vault" + }, + { + "id": "steakhouse-m-morpho-vault", + "symbol": "steakm", + "name": "Steakhouse M Morpho Vault" + }, + { + "id": "steakhouse-pyusd-morpho-vault", + "symbol": "steakpyusd", + "name": "Steakhouse PYUSD Morpho Vault" + }, + { + "id": "steakhouse-rusd-morpho-vault", + "symbol": "steakrusd", + "name": "Steakhouse RUSD Morpho Vault" + }, + { + "id": "steakhouse-usda-base-morpho-vault", + "symbol": "steakusda", + "name": "Steakhouse USDA (Base) Morpho Vault" + }, + { + "id": "steakhouse-usdc-base-morpho-vault", + "symbol": "steakusdc", + "name": "Steakhouse USDC (Base) Morpho Vault" + }, + { + "id": "steakhouse-usdc-morpho-vault", + "symbol": "steakusdc", + "name": "Steakhouse USDC Morpho Vault" + }, + { + "id": "steakhouse-usdl-morpho-vault", + "symbol": "steakusdl", + "name": "Steakhouse USDL Morpho Vault" + }, + { + "id": "steakhouse-usdm-base-morpho-vault", + "symbol": "steakusdm", + "name": "Steakhouse USDM (Base) Morpho Vault" + }, + { + "id": "steakhouse-usdt-morpho-vault", + "symbol": "steakusdt", + "name": "Steakhouse USDT Morpho Vault" + }, + { + "id": "steakhouse-wbtc-morpho-vault", + "symbol": "steakwbtc", + "name": "Steakhouse WBTC Morpho Vault" + }, + { + "id": "steakhut-finance", + "symbol": "steak", + "name": "SteakHut Finance" + }, + { + "id": "stealth-ai", + "symbol": "stealth", + "name": "Stealth AI" + }, + { + "id": "stealth-sdk", + "symbol": "stealth", + "name": "StealthSDK" + }, + { + "id": "steam", + "symbol": "steam", + "name": "STEAM" + }, + { + "id": "steam22", + "symbol": "stm", + "name": "Steam22" + }, + { + "id": "steamboat-willie", + "symbol": "mickey", + "name": "Steamboat Willie" + }, + { + "id": "steam-exchange", + "symbol": "wsteamx", + "name": "Wrapped STEAMX" + }, + { + "id": "steem", + "symbol": "steem", + "name": "Steem" + }, + { + "id": "steem-dollars", + "symbol": "sbd", + "name": "Steem Dollars" + }, + { + "id": "steep-jubs", + "symbol": "opple", + "name": "steep jubs" + }, + { + "id": "stella-armada", + "symbol": "sarm", + "name": "Stella Armada" + }, + { + "id": "stella-fantasy-token", + "symbol": "sfty", + "name": "Stella Fantasy Token" + }, + { + "id": "stellar", + "symbol": "xlm", + "name": "Stellar" + }, + { + "id": "stellar-synthetic-usd", + "symbol": "susd", + "name": "Stellar Synthetic USD" + }, + { + "id": "stellaryai", + "symbol": "stelai", + "name": "StellaryAI" + }, + { + "id": "stellar-yusdc", + "symbol": "yusdc", + "name": "Ultracapital yUSDC" + }, + { + "id": "stellaswap", + "symbol": "stella", + "name": "StellaSwap" + }, + { + "id": "stellaswap-staked-dot", + "symbol": "stdot", + "name": "StellaSwap Staked DOT" + }, + { + "id": "stellite", + "symbol": "xla", + "name": "Scala" + }, + { + "id": "stelsi", + "symbol": "stls", + "name": "STELSI" + }, + { + "id": "stemx", + "symbol": "stemx", + "name": "STEMX" + }, + { + "id": "stenchcoin", + "symbol": "stenchcoin", + "name": "Stenchcoin" + }, + { + "id": "step", + "symbol": "step", + "name": "Step" + }, + { + "id": "step-app-fitfi", + "symbol": "fitfi", + "name": "Step App" + }, + { + "id": "step-bridged-wbtc-step-network", + "symbol": "wbtc", + "name": "Step Bridged WBTC (Step Network)" + }, + { + "id": "step-finance", + "symbol": "step", + "name": "Step Finance" + }, + { + "id": "step-hero", + "symbol": "hero", + "name": "Step Hero" + }, + { + "id": "stepn", + "symbol": "gmt", + "name": "GMT" + }, + { + "id": "step-staked-sol", + "symbol": "stepsol", + "name": "Step Staked SOL" + }, + { + "id": "steth-arm-lp-token", + "symbol": "arm-weth-steth", + "name": "stETH ARM LP Token" + }, + { + "id": "steve", + "symbol": "$steve", + "name": "STEVE" + }, + { + "id": "steve-2", + "symbol": "steve", + "name": "Steve" + }, + { + "id": "steve-3", + "symbol": "$steve", + "name": "Steve" + }, + { + "id": "stfx", + "symbol": "stfx", + "name": "STFX" + }, + { + "id": "stick", + "symbol": "stick", + "name": "Stick" + }, + { + "id": "stickbug", + "symbol": "stickbug", + "name": "stickbug" + }, + { + "id": "stickdao", + "symbol": "stick", + "name": "StickDAO" + }, + { + "id": "stickman-2", + "symbol": "stickman", + "name": "stickman" + }, + { + "id": "stick-on-kaspa", + "symbol": "stick", + "name": "Stick" + }, + { + "id": "stink-coin", + "symbol": "stinkcoin", + "name": "Stink Coin" + }, + { + "id": "stix", + "symbol": "stix", + "name": "STIX" + }, + { + "id": "stkatom", + "symbol": "stkatom", + "name": "pSTAKE Staked ATOM" + }, + { + "id": "stkd-scrt", + "symbol": "stkd", + "name": "Stkd SCRT" + }, + { + "id": "stobox-token", + "symbol": "stbu", + "name": "Stobox Token" + }, + { + "id": "sto-chain", + "symbol": "stoc", + "name": "STO Chain" + }, + { + "id": "stockcoin", + "symbol": "stockcoin", + "name": "stockcoin" + }, + { + "id": "stockify", + "symbol": "stk", + "name": "Stockify" + }, + { + "id": "stockops-ai", + "symbol": "stops", + "name": "Stockops AI" + }, + { + "id": "stohn-coin", + "symbol": "soh", + "name": "Stohn Coin" + }, + { + "id": "stoicism", + "symbol": "stoic", + "name": "Stoicism" + }, + { + "id": "ston", + "symbol": "ston", + "name": "Ston" + }, + { + "id": "ston-2", + "symbol": "ston", + "name": "STON" + }, + { + "id": "stoned-2", + "symbol": "stoned", + "name": "STONED" + }, + { + "id": "stonefish-ai", + "symbol": "sai", + "name": "STONEFISH AI" + }, + { + "id": "stonks-3", + "symbol": "stonks", + "name": "sTONks" + }, + { + "id": "stonks-4", + "symbol": "stnk", + "name": "Stonks" + }, + { + "id": "stonks-5", + "symbol": "stonks", + "name": "STONKS" + }, + { + "id": "stonks-6", + "symbol": "stonks", + "name": "stonks" + }, + { + "id": "stonksdao", + "symbol": "stonks", + "name": "STONKSDAO" + }, + { + "id": "stonks-on-eth", + "symbol": "stonks", + "name": "Stonks on ETH" + }, + { + "id": "stooges", + "symbol": "stog", + "name": "Stooges" + }, + { + "id": "stool-prisondente", + "symbol": "jailstool", + "name": "Stool Prisondente" + }, + { + "id": "stoopid-cats", + "symbol": "stocat", + "name": "Stoopid Cats" + }, + { + "id": "storagechain", + "symbol": "wstor", + "name": "StorageChain" + }, + { + "id": "storagent", + "symbol": "storagent", + "name": "STORAGENT" + }, + { + "id": "storb", + "symbol": "sn26", + "name": "Storb" + }, + { + "id": "store-of-value", + "symbol": "val", + "name": "Store of Value" + }, + { + "id": "storex", + "symbol": "strx", + "name": "Storex" + }, + { + "id": "storj", + "symbol": "storj", + "name": "Storj" + }, + { + "id": "stork", + "symbol": "sms", + "name": "Stork" + }, + { + "id": "storm", + "symbol": "stmx", + "name": "StormX" + }, + { + "id": "storm-money", + "symbol": "storm", + "name": "Storm Money" + }, + { + "id": "storm-token", + "symbol": "storm", + "name": "Storm" + }, + { + "id": "storm-trade", + "symbol": "storm", + "name": "Storm Trade" + }, + { + "id": "storm-warfare", + "symbol": "jan", + "name": "Storm Warfare" + }, + { + "id": "storx", + "symbol": "srx", + "name": "StorX" + }, + { + "id": "story", + "symbol": "story", + "name": "Story" + }, + { + "id": "story-2", + "symbol": "ip", + "name": "Story" + }, + { + "id": "storyfire", + "symbol": "blaze", + "name": "StoryFire" + }, + { + "id": "stox", + "symbol": "stx", + "name": "Stox" + }, + { + "id": "stp-network", + "symbol": "awe", + "name": "AWE Network" + }, + { + "id": "straitsx-indonesia-rupiah", + "symbol": "xidr", + "name": "XIDR" + }, + { + "id": "straitsx-xusd", + "symbol": "xusd", + "name": "StraitsX XUSD" + }, + { + "id": "strategic-bitcoin-reserve", + "symbol": "sbr", + "name": "Strategic Bitcoin Reserve" + }, + { + "id": "strategic-eth-reserve", + "symbol": "sξr", + "name": "Strategic ETH Reserve" + }, + { + "id": "strategic-hub-for-innovation-in-blockchain", + "symbol": "shib", + "name": "Strategic Hub for Innovation in Blockchain" + }, + { + "id": "strategic-meme-reserve", + "symbol": "smr", + "name": "Strategic Meme Reserve" + }, + { + "id": "strategic-solana-reserve", + "symbol": "ssr", + "name": "Strategic Solana Reserve" + }, + { + "id": "strategy-punks", + "symbol": "$strpnk", + "name": "Strategy Punks" + }, + { + "id": "stratis", + "symbol": "strax", + "name": "Xertra" + }, + { + "id": "stratos", + "symbol": "stos", + "name": "Stratos" + }, + { + "id": "stratostack", + "symbol": "stack", + "name": "StratoStack" + }, + { + "id": "stratovm", + "symbol": "svm", + "name": "StratoVM" + }, + { + "id": "strawberry-ai", + "symbol": "berry", + "name": "Strawberry AI" + }, + { + "id": "strawberry-elephant", + "symbol": "صباح الفر", + "name": "Strawberry Elephant" + }, + { + "id": "strawberry-in-bloom", + "symbol": "berry", + "name": "Strawberry In Bloom" + }, + { + "id": "stray-dog", + "symbol": "straydog", + "name": "Stray Dog" + }, + { + "id": "streamcoin", + "symbol": "strm", + "name": "StreamCoin" + }, + { + "id": "streamdotfun", + "symbol": "stream", + "name": "streamdotfun" + }, + { + "id": "streamercoin", + "symbol": "streamer", + "name": "StreamerCoin" + }, + { + "id": "streamer-inu", + "symbol": "strm", + "name": "Streamer Inu" + }, + { + "id": "streamflow", + "symbol": "stream", + "name": "Streamflow" + }, + { + "id": "stream-guy", + "symbol": "streamguy", + "name": "Stream Guy" + }, + { + "id": "streamr", + "symbol": "data", + "name": "Streamr" + }, + { + "id": "streamr-xdata", + "symbol": "xdata", + "name": "Streamr XDATA" + }, + { + "id": "stream-szn", + "symbol": "strszn", + "name": "Stream SZN" + }, + { + "id": "stream-until-100m-mc", + "symbol": "live", + "name": "Stream until 100M MC" + }, + { + "id": "streetvision-by-natix", + "symbol": "sn72", + "name": "StreetVision by NATIX" + }, + { + "id": "streme", + "symbol": "streme", + "name": "Streme" + }, + { + "id": "stressed-guy", + "symbol": "stressguy", + "name": "Stressed Guy" + }, + { + "id": "stride", + "symbol": "strd", + "name": "Stride" + }, + { + "id": "stride-staked-atom", + "symbol": "statom", + "name": "Stride Staked Atom" + }, + { + "id": "stride-staked-dydx", + "symbol": "stdydx", + "name": "Stride Staked DYDX" + }, + { + "id": "stride-staked-dym", + "symbol": "stdym", + "name": "Stride Staked DYM" + }, + { + "id": "stride-staked-injective", + "symbol": "stinj", + "name": "Stride Staked Injective" + }, + { + "id": "stride-staked-islm", + "symbol": "stislm", + "name": "Stride Staked ISLM" + }, + { + "id": "stride-staked-juno", + "symbol": "stjuno", + "name": "Stride Staked Juno" + }, + { + "id": "stride-staked-osmo", + "symbol": "stosmo", + "name": "Stride Staked Osmo" + }, + { + "id": "stride-staked-saga", + "symbol": "stsaga", + "name": "Stride Staked SAGA" + }, + { + "id": "stride-staked-stars", + "symbol": "ststars", + "name": "Stride Staked Stars" + }, + { + "id": "stride-staked-tia", + "symbol": "sttia", + "name": "Stride Staked TIA" + }, + { + "id": "stride-staked-umee", + "symbol": "stumee", + "name": "Stride Staked Umee" + }, + { + "id": "strike", + "symbol": "strike", + "name": "Strike" + }, + { + "id": "strike-2", + "symbol": "strike", + "name": "Strike" + }, + { + "id": "strike-3", + "symbol": "strike", + "name": "STRIKE" + }, + { + "id": "strikebit-ai", + "symbol": "strike", + "name": "StrikeBit AI" + }, + { + "id": "strikecoin", + "symbol": "strx", + "name": "StrikeX" + }, + { + "id": "strike-protocol", + "symbol": "stpr", + "name": "Strike Protocol" + }, + { + "id": "striker", + "symbol": "stkri", + "name": "Striker" + }, + { + "id": "strip-finance", + "symbol": "strip", + "name": "Strip Finance" + }, + { + "id": "strong", + "symbol": "strong", + "name": "Strong" + }, + { + "id": "stronger", + "symbol": "strngr", + "name": "Stronger" + }, + { + "id": "stronghands", + "symbol": "shnd", + "name": "StrongHands" + }, + { + "id": "stronghands-finance", + "symbol": "ishnd", + "name": "StrongHands Finance" + }, + { + "id": "stronghold-staked-sol", + "symbol": "strongsol", + "name": "Stronghold Staked SOL" + }, + { + "id": "stronghold-token", + "symbol": "shx", + "name": "Stronghold" + }, + { + "id": "stryke", + "symbol": "syk", + "name": "Stryke" + }, + { + "id": "study", + "symbol": "study", + "name": "Study" + }, + { + "id": "study-conviction", + "symbol": "study", + "name": "Study conviction" + }, + { + "id": "stupidcoin", + "symbol": "stupidcoin", + "name": "Stupidcoin" + }, + { + "id": "stupidcoin-2", + "symbol": "stupid", + "name": "StupidCoin" + }, + { + "id": "stupid-inu", + "symbol": "stupid", + "name": "STUPID INU" + }, + { + "id": "stupid-world-liberty-financial", + "symbol": "wlfi", + "name": "Stupid World Liberty Financial" + }, + { + "id": "sturdy", + "symbol": "strdy", + "name": "Sturdy" + }, + { + "id": "sturdy-subnet", + "symbol": "sn10", + "name": "Sturdy" + }, + { + "id": "stxai", + "symbol": "stxai", + "name": "stXAI" + }, + { + "id": "style-protocol-2", + "symbol": "style", + "name": "STYLE Token" + }, + { + "id": "stylex", + "symbol": "stylex", + "name": "StyleX" + }, + { + "id": "styro-steve", + "symbol": "ss", + "name": "Styro Steve" + }, + { + "id": "subhub", + "symbol": "subhub", + "name": "SubHub" + }, + { + "id": "subquery-network", + "symbol": "sqt", + "name": "SubQuery Network" + }, + { + "id": "subsocial", + "symbol": "sub", + "name": "Subsocial" + }, + { + "id": "subsquid", + "symbol": "sqd", + "name": "SQD" + }, + { + "id": "subvortex", + "symbol": "sn7", + "name": "SubVortex" + }, + { + "id": "suby", + "symbol": "suby", + "name": "SUBY" + }, + { + "id": "succession", + "symbol": "sccn", + "name": "Succession" + }, + { + "id": "success-kid", + "symbol": "skid", + "name": "Success Kid" + }, + { + "id": "succinct", + "symbol": "prove", + "name": "Succinct" + }, + { + "id": "suckypanther", + "symbol": "suckyp", + "name": "Suckypanther" + }, + { + "id": "sudeng", + "symbol": "hippo", + "name": "sudeng" + }, + { + "id": "sudoswap", + "symbol": "sudo", + "name": "sudoswap" + }, + { + "id": "sugarbounce", + "symbol": "sugarb", + "name": "SugarBlock" + }, + { + "id": "sugar-boy", + "symbol": "sugar", + "name": "Sugar Boy" + }, + { + "id": "sugar-bush", + "symbol": "sugar", + "name": "SUGAR BUSH" + }, + { + "id": "sugar-bush-the-squirrel", + "symbol": "sugar", + "name": "Sugar Bush the Squirrel" + }, + { + "id": "sugar-kingdom-odyssey", + "symbol": "sko", + "name": "Sugar Kingdom Odyssey" + }, + { + "id": "sugarverse", + "symbol": "cndy", + "name": "Sugarverse" + }, + { + "id": "sui", + "symbol": "sui", + "name": "Sui" + }, + { + "id": "suia", + "symbol": "suia", + "name": "SUIA" + }, + { + "id": "sui-agents", + "symbol": "suiai", + "name": "SUI Agents" + }, + { + "id": "suiai", + "symbol": "suai", + "name": "SuiAI" + }, + { + "id": "suiba-inu", + "symbol": "suib", + "name": "Suiba Inu" + }, + { + "id": "suibeaver", + "symbol": "dam", + "name": "suibeaver" + }, + { + "id": "sui-booster-dao", + "symbol": "boost", + "name": "Sui Booster DAO" + }, + { + "id": "suiboxer", + "symbol": "sbox", + "name": "SUIBoxer" + }, + { + "id": "sui-bridged-ether-sui", + "symbol": "sbeth", + "name": "Sui Bridged Ether (Sui)" + }, + { + "id": "sui-bridged-usdt-sui", + "symbol": "sbusdt", + "name": "Sui Bridged USDT (Sui)" + }, + { + "id": "sui-bridged-wbtc-sui", + "symbol": "wbtc", + "name": "Sui Bridged WBTC (Sui)" + }, + { + "id": "sui-bull", + "symbol": "bull", + "name": "Sui Bull" + }, + { + "id": "sui-chad", + "symbol": "chad", + "name": "Sui Chad" + }, + { + "id": "suicune-on-sui", + "symbol": "hsui", + "name": "Suicune" + }, + { + "id": "suicy-the-seal", + "symbol": "suicy", + "name": "Suicy the Seal" + }, + { + "id": "suidefai-by-suiai", + "symbol": "suid", + "name": "SUIDeFAI by SuiAI" + }, + { + "id": "sui-depin", + "symbol": "suidepin", + "name": "Sui DePIN" + }, + { + "id": "sui-desci-agents", + "symbol": "desci", + "name": "SUI Desci Agents" + }, + { + "id": "sui-dog", + "symbol": "suidog", + "name": "SUI Dog" + }, + { + "id": "suieet", + "symbol": "suieet", + "name": "SUIEET" + }, + { + "id": "suijak", + "symbol": "suijak", + "name": "Suijak" + }, + { + "id": "suilama", + "symbol": "suilama", + "name": "Suilama" + }, + { + "id": "suilend", + "symbol": "send", + "name": "Suilend" + }, + { + "id": "suiman", + "symbol": "suiman", + "name": "Suiman" + }, + { + "id": "suimon", + "symbol": "suimon", + "name": "Suimon" + }, + { + "id": "sui-monster", + "symbol": "suimon", + "name": "Sui Monster" + }, + { + "id": "suinami", + "symbol": "nami", + "name": "SUINAMI" + }, + { + "id": "suins-token", + "symbol": "ns", + "name": "SuiNS Token" + }, + { + "id": "suipad", + "symbol": "suip", + "name": "SuiPad" + }, + { + "id": "sui-plop", + "symbol": "plop", + "name": "SUI Plop" + }, + { + "id": "suirex", + "symbol": "rex", + "name": "suirex" + }, + { + "id": "suirtle", + "symbol": "suirtle", + "name": "Suirtle" + }, + { + "id": "sui-rwa", + "symbol": "suirwa", + "name": "Sui RWA" + }, + { + "id": "suissma-ai-by-virtuals", + "symbol": "suiss", + "name": "SUISSMA AI by Virtuals" + }, + { + "id": "suiswap", + "symbol": "sswp", + "name": "Suiswap" + }, + { + "id": "suitard", + "symbol": "std", + "name": "suitard" + }, + { + "id": "suite-2", + "symbol": "suite", + "name": "Suite" + }, + { + "id": "sui-trump", + "symbol": "suitrump", + "name": "SUI TRUMP" + }, + { + "id": "sui-universe", + "symbol": "su", + "name": "Sui Universe" + }, + { + "id": "sui-xstock", + "symbol": "suigx", + "name": "SUI xStock" + }, + { + "id": "sukhavati-network", + "symbol": "skt", + "name": "Sukhavati Network" + }, + { + "id": "suki", + "symbol": "suki", + "name": "SUKI" + }, + { + "id": "suku", + "symbol": "suku", + "name": "SUKU" + }, + { + "id": "sully", + "symbol": "sully", + "name": "SULLY" + }, + { + "id": "sultanoshi", + "symbol": "stoshi", + "name": "Sultanoshi" + }, + { + "id": "sumer-money-sueth", + "symbol": "sueth", + "name": "Sumer.Money suETH" + }, + { + "id": "sumer-money-suusd", + "symbol": "suusd", + "name": "Sumer.Money suUSD" + }, + { + "id": "sumi", + "symbol": "sumi", + "name": "SUMI" + }, + { + "id": "summer", + "symbol": "summer", + "name": "Summer" + }, + { + "id": "summer-2", + "symbol": "sumr", + "name": "Summer" + }, + { + "id": "summer-point-token", + "symbol": "sumx", + "name": "Summer Point Token" + }, + { + "id": "summit", + "symbol": "summit", + "name": "SUMMIT" + }, + { + "id": "summoners-league", + "symbol": "summon", + "name": "Summoners League" + }, + { + "id": "suncat", + "symbol": "suncat", + "name": "Suncat" + }, + { + "id": "suncontract", + "symbol": "snc", + "name": "SunContract" + }, + { + "id": "sundae-bar", + "symbol": "sn121", + "name": "Sundae_Bar" + }, + { + "id": "sundaeswap", + "symbol": "sundae", + "name": "SundaeSwap" + }, + { + "id": "sundog", + "symbol": "sundog", + "name": "Sundog" + }, + { + "id": "sunflower-land", + "symbol": "sfl", + "name": "Sunflower Land" + }, + { + "id": "sunlion", + "symbol": "sunlion", + "name": "sunlion" + }, + { + "id": "sun-minimeal", + "symbol": "soil", + "name": "SUN Minimeal" + }, + { + "id": "sunned", + "symbol": "sunned", + "name": "SUNNED" + }, + { + "id": "sunnysideup", + "symbol": "ssu", + "name": "SunnySideUp" + }, + { + "id": "sunpepe", + "symbol": "sunpepe", + "name": "sunpepe" + }, + { + "id": "sunpig", + "symbol": "sunpig", + "name": "SUNPIG" + }, + { + "id": "sunpumptrading", + "symbol": "spt", + "name": "SunPumpTrading" + }, + { + "id": "sunrise", + "symbol": "sunc", + "name": "Sunrise" + }, + { + "id": "sunrise-layer", + "symbol": "rise", + "name": "Sunrise" + }, + { + "id": "sun-token", + "symbol": "sun", + "name": "Sun Token" + }, + { + "id": "sun-tzu", + "symbol": "tzu", + "name": "Sun Tzu" + }, + { + "id": "sunwukong", + "symbol": "sunwukong", + "name": "SunWukong" + }, + { + "id": "sun-wukong", + "symbol": "wukong", + "name": "sun wukong" + }, + { + "id": "suona", + "symbol": "唢呐", + "name": "唢呐" + }, + { + "id": "supah", + "symbol": "suph", + "name": "SUPAH" + }, + { + "id": "supa-pump", + "symbol": "supa", + "name": "Supa Pump" + }, + { + "id": "supe-infinity", + "symbol": "supe", + "name": "Supe Infinity" + }, + { + "id": "super-anon", + "symbol": "anon", + "name": "Anon" + }, + { + "id": "superbid", + "symbol": "superbid", + "name": "SuperBid" + }, + { + "id": "superbridge-bridged-scrvusd", + "symbol": "scrvusd", + "name": "Superbridge Bridged scrvUSD" + }, + { + "id": "superbridge-bridged-weth-soneium", + "symbol": "weth", + "name": "Superbridge Bridged WETH (Soneium)" + }, + { + "id": "superbridge-bridged-wsteth-base", + "symbol": "wsteth", + "name": "Superbridge Bridged wstETH (Base)" + }, + { + "id": "superbridge-bridged-wsteth-optimism", + "symbol": "wsteth", + "name": "Superbridge Bridged wstETH (Optimism)" + }, + { + "id": "supercells", + "symbol": "sct", + "name": "SuperCells" + }, + { + "id": "super-champs", + "symbol": "champ", + "name": "Super Champs" + }, + { + "id": "superciety", + "symbol": "super", + "name": "PeerMe SUPER" + }, + { + "id": "super-closed-source", + "symbol": "closedai", + "name": "Super Closed Source" + }, + { + "id": "supercoin-2", + "symbol": "supercoin", + "name": "supercoin" + }, + { + "id": "super-connector", + "symbol": "super", + "name": "Super Connector" + }, + { + "id": "super-cycle-2", + "symbol": "cycle", + "name": "Super Cycle" + }, + { + "id": "supercycle-real", + "symbol": "supercycle", + "name": "supercycle(real)" + }, + { + "id": "superdapp", + "symbol": "supr", + "name": "SuperDapp" + }, + { + "id": "superfans-tech", + "symbol": "fan", + "name": "SuperFans.Tech" + }, + { + "id": "superfarm", + "symbol": "super", + "name": "SuperVerse" + }, + { + "id": "superflare", + "symbol": "superflr", + "name": "SuperFlare" + }, + { + "id": "superfluid", + "symbol": "sup", + "name": "Superfluid" + }, + { + "id": "superfriend", + "symbol": "supfriend", + "name": "Superfriend" + }, + { + "id": "superfruits-ai", + "symbol": "supai", + "name": "SuperFruits AI" + }, + { + "id": "supergrok", + "symbol": "supergrok", + "name": "SuperGrok" + }, + { + "id": "superior", + "symbol": "superior", + "name": "SUPERIOR" + }, + { + "id": "supermarioporsche911inu", + "symbol": "silkroad", + "name": "SuperMarioPorsche911Inu" + }, + { + "id": "supermeme", + "symbol": "spr", + "name": "SuperMeme" + }, + { + "id": "super-meme-fighter", + "symbol": "smf", + "name": "Super Meme Fighter" + }, + { + "id": "super-micro-computer-ondo-tokenized-stock", + "symbol": "smcion", + "name": "Super Micro Computer (Ondo Tokenized Stock)" + }, + { + "id": "super-oeth", + "symbol": "superoeth", + "name": "Super OETH" + }, + { + "id": "superp", + "symbol": "sup", + "name": "Superp" + }, + { + "id": "super-president-trump-47", + "symbol": "trump47", + "name": "Super President Trump 47" + }, + { + "id": "superrare", + "symbol": "rare", + "name": "SuperRare" + }, + { + "id": "superrarebears-hype", + "symbol": "hype", + "name": "SuperRareBears HYPE" + }, + { + "id": "superrarebears-rare", + "symbol": "rare", + "name": "SuperRareBears RARE" + }, + { + "id": "superreturn-ssuperusd", + "symbol": "ssuperusd", + "name": "SuperReturn sSuperUSD" + }, + { + "id": "superseed", + "symbol": "supr", + "name": "Superseed" + }, + { + "id": "superseed-bridged-usdc-superseed", + "symbol": "usdc", + "name": "Superseed Bridged USDC (Superseed)" + }, + { + "id": "superseed-bridged-weth-superseed", + "symbol": "weth", + "name": "Superseed Bridged WETH (Superseed)" + }, + { + "id": "super-seyian-eth", + "symbol": "sseth", + "name": "Super Seyian ETH" + }, + { + "id": "superstate-short-duration-us-government-securities-fund-ustb", + "symbol": "ustb", + "name": "Superstate Short Duration U.S. Government Securities Fund (USTB)" + }, + { + "id": "superstate-uscc", + "symbol": "uscc", + "name": "Superstate USCC" + }, + { + "id": "supersui", + "symbol": "supersui", + "name": "superSUI" + }, + { + "id": "super-suiyan", + "symbol": "suiyan", + "name": "Super Suiyan" + }, + { + "id": "super-trump", + "symbol": "strump", + "name": "Super Trump" + }, + { + "id": "super-trust", + "symbol": "sut", + "name": "Super Trust" + }, + { + "id": "super-useless-token", + "symbol": "sut", + "name": "Super Useless Token" + }, + { + "id": "super-vet", + "symbol": "svet", + "name": "Super Vet" + }, + { + "id": "superwalk", + "symbol": "grnd", + "name": "SuperWalk GRND" + }, + { + "id": "superwalk-walk", + "symbol": "walk", + "name": "SuperWalk WALK" + }, + { + "id": "super-zero", + "symbol": "sero", + "name": "SERO" + }, + { + "id": "supportfi-ai", + "symbol": "sfai", + "name": "SupportFi AI" + }, + { + "id": "supra", + "symbol": "supra", + "name": "Supra" + }, + { + "id": "suprana", + "symbol": "sup", + "name": "Suprana" + }, + { + "id": "sureremit", + "symbol": "rmt", + "name": "SureRemit" + }, + { + "id": "surf", + "symbol": "surf", + "name": "SURF" + }, + { + "id": "surf-2", + "symbol": "surf", + "name": "Surf" + }, + { + "id": "surfing-coco", + "symbol": "coco", + "name": "Surfing Coco" + }, + { + "id": "surge-2", + "symbol": "srg", + "name": "SURGE" + }, + { + "id": "surge-3", + "symbol": "surge", + "name": "Surge" + }, + { + "id": "surge-4", + "symbol": "surge", + "name": "Surge" + }, + { + "id": "surreal-ai", + "symbol": "surreal", + "name": "SURREAL AI" + }, + { + "id": "survarium", + "symbol": "surv", + "name": "Survarium" + }, + { + "id": "survive", + "symbol": "survive", + "name": "SURVIVE" + }, + { + "id": "sus", + "symbol": "sus", + "name": "Sus" + }, + { + "id": "susda", + "symbol": "susda", + "name": "sUSDa" + }, + { + "id": "susdai", + "symbol": "susdai", + "name": "Staked USDai" + }, + { + "id": "susds", + "symbol": "susds", + "name": "sUSDS" + }, + { + "id": "susd-yvault", + "symbol": "yvsusd", + "name": "sUSD yVault" + }, + { + "id": "sushi", + "symbol": "sushi", + "name": "Sushi" + }, + { + "id": "sushi-fighter", + "symbol": "$sushi", + "name": "Sushi Fighter" + }, + { + "id": "sushi-yvault", + "symbol": "yvsushi", + "name": "SUSHI yVault" + }, + { + "id": "sustainable-energy-token", + "symbol": "set", + "name": "Sustainable Energy" + }, + { + "id": "suvereno", + "symbol": "suv", + "name": "Suvereno" + }, + { + "id": "suwi", + "symbol": "suwi", + "name": "suwi" + }, + { + "id": "suzaku-token", + "symbol": "suz", + "name": "Suzaku Token" + }, + { + "id": "suzuverse", + "symbol": "sgt", + "name": "AI Avatar" + }, + { + "id": "swag", + "symbol": "$swag", + "name": "Swag" + }, + { + "id": "swag-coin", + "symbol": "swag", + "name": "swag coin" + }, + { + "id": "swaggy", + "symbol": "swaggy", + "name": "SWAGGY" + }, + { + "id": "swan-chain", + "symbol": "swan", + "name": "Swan Chain" + }, + { + "id": "swap315", + "symbol": "s315", + "name": "SWAP315" + }, + { + "id": "swapbased-coin", + "symbol": "coin", + "name": "SwapBased COIN" + }, + { + "id": "swapblast-finance-token", + "symbol": "sbf", + "name": "SwapBlast Finance Token" + }, + { + "id": "swapmode", + "symbol": "smd", + "name": "SwapMode" + }, + { + "id": "swapped-finance", + "symbol": "swpd", + "name": "Swapped Finance" + }, + { + "id": "swappi", + "symbol": "ppi", + "name": "Swappi" + }, + { + "id": "swapr", + "symbol": "swpr", + "name": "Swapr" + }, + { + "id": "swaprum", + "symbol": "sapr", + "name": "Swaprum" + }, + { + "id": "swapx-2", + "symbol": "swpx", + "name": "SwapX" + }, + { + "id": "swapz-app", + "symbol": "swapz", + "name": "SWAPZ.app" + }, + { + "id": "swarm", + "symbol": "swm", + "name": "Swarm Network" + }, + { + "id": "swarm-2", + "symbol": "swarm", + "name": "Swarm" + }, + { + "id": "swarm-3", + "symbol": "sn124", + "name": "Swarm" + }, + { + "id": "swarm-4", + "symbol": "swrm", + "name": "Swarm" + }, + { + "id": "swarm-bzz", + "symbol": "bzz", + "name": "Swarm" + }, + { + "id": "swarm-markets", + "symbol": "smt", + "name": "Swarm Markets" + }, + { + "id": "swarm-network", + "symbol": "truth", + "name": "Swarm Network" + }, + { + "id": "swarmnode-ai", + "symbol": "snai", + "name": "SwarmNode.ai" + }, + { + "id": "swarms", + "symbol": "swarms", + "name": "Swarms" + }, + { + "id": "swash", + "symbol": "swash", + "name": "Swash" + }, + { + "id": "swasticoin", + "symbol": "yzy", + "name": "Swasticoin" + }, + { + "id": "sway-social", + "symbol": "sway", + "name": "Sway Social" + }, + { + "id": "sweatcoin", + "symbol": "sweat", + "name": "SWEAT" + }, + { + "id": "sweeper", + "symbol": "sweep", + "name": "Sweeper" + }, + { + "id": "sweep-token", + "symbol": "sweep", + "name": "Sweep Token" + }, + { + "id": "sweets", + "symbol": "$swts", + "name": "SWEETS" + }, + { + "id": "swell-network", + "symbol": "swell", + "name": "Swell" + }, + { + "id": "sweply", + "symbol": "swply", + "name": "Sweply" + }, + { + "id": "swe-rizzo", + "symbol": "sn45", + "name": "SWE - Rizzo" + }, + { + "id": "sweth", + "symbol": "sweth", + "name": "Swell Ethereum" + }, + { + "id": "swftcoin", + "symbol": "swftc", + "name": "SWFTCOIN" + }, + { + "id": "swiftcash", + "symbol": "swift", + "name": "SwiftCash" + }, + { + "id": "swiftpad", + "symbol": "swift", + "name": "SwiftPad" + }, + { + "id": "swinca-2", + "symbol": "swi", + "name": "Swinca" + }, + { + "id": "swingby", + "symbol": "swingby", + "name": "Swingby" + }, + { + "id": "swing-bydney", + "symbol": "plsr", + "name": "Swing Bydney" + }, + { + "id": "swing-xyz", + "symbol": "$swing", + "name": "Swing.xyz" + }, + { + "id": "swipe", + "symbol": "sxp", + "name": "Solar" + }, + { + "id": "swissborg", + "symbol": "borg", + "name": "SwissBorg" + }, + { + "id": "swisscheese", + "symbol": "swch", + "name": "SwissCheese" + }, + { + "id": "swisstronik", + "symbol": "swtr", + "name": "Swisstronik" + }, + { + "id": "switchboard", + "symbol": "swtch", + "name": "Switchboard" + }, + { + "id": "switcheo", + "symbol": "swth", + "name": "Carbon Protocol" + }, + { + "id": "switch-token", + "symbol": "switch", + "name": "Switch Token" + }, + { + "id": "swole-chad-doge", + "symbol": "swoge", + "name": "Swole Chad Doge" + }, + { + "id": "swop", + "symbol": "swop", + "name": "Swop" + }, + { + "id": "swop-2", + "symbol": "swop", + "name": "Swop" + }, + { + "id": "sword-2", + "symbol": "sword", + "name": "SWORD" + }, + { + "id": "sword-and-magic-world", + "symbol": "swo", + "name": "Sword and Magic World" + }, + { + "id": "swquery", + "symbol": "swquery", + "name": "SWquery" + }, + { + "id": "swtcoin", + "symbol": "swat", + "name": "SWTCoin" + }, + { + "id": "swusd", + "symbol": "swusd", + "name": "Swerve.fi USD" + }, + { + "id": "swyft-2", + "symbol": "sft", + "name": "Swyft" + }, + { + "id": "sx-network", + "symbol": "sx", + "name": "SX Network (OLD)" + }, + { + "id": "sx-network-2", + "symbol": "sx", + "name": "SX Network" + }, + { + "id": "sx-rollup-bridged-usdc-sx-rollup", + "symbol": "usdc", + "name": "SX Rollup Bridged USDC (SX Rollup)" + }, + { + "id": "sybtc", + "symbol": "sybtc", + "name": "Symbiosis SyBTC" + }, + { + "id": "sydney", + "symbol": "sydney", + "name": "Sydney" + }, + { + "id": "sygnum-fiusd-liquidity-fund", + "symbol": "fiusd", + "name": "Sygnum FIUSD Liquidity Fund" + }, + { + "id": "sylo", + "symbol": "sylo", + "name": "Sylo" + }, + { + "id": "sylvi-agent", + "symbol": "sylviai", + "name": "SYLVI AGENT" + }, + { + "id": "symbaiex", + "symbol": "symx", + "name": "SYMBaiEX" + }, + { + "id": "symbiosis-bridged-usdc-bahamut", + "symbol": "usdc", + "name": "Symbiosis Bridged USDC (Bahamut)" + }, + { + "id": "symbiosis-bridged-usdt-bahamut", + "symbol": "usdt", + "name": "Symbiosis Bridged USDT (Bahamut)" + }, + { + "id": "symbiosis-finance", + "symbol": "sis", + "name": "Symbiosis" + }, + { + "id": "symbol", + "symbol": "xym", + "name": "Symbol" + }, + { + "id": "symmio", + "symbol": "symm", + "name": "SYMMIO" + }, + { + "id": "sympson-ai", + "symbol": "$symp", + "name": "Sympson by Virtuals" + }, + { + "id": "symverse-2", + "symbol": "symm", + "name": "SymVerse" + }, + { + "id": "synap-logic", + "symbol": "syp", + "name": "SYNAP LOGIC" + }, + { + "id": "synapse-2", + "symbol": "syn", + "name": "Synapse" + }, + { + "id": "synapse-bridged-usdc-elastos", + "symbol": "usdc", + "name": "Synapse Bridged USDC (Elastos)" + }, + { + "id": "synapse-bridged-wavax-dfk-chain", + "symbol": "wavax", + "name": "Synapse Bridged wAVAX (DFK Chain)" + }, + { + "id": "synapse-network-2", + "symbol": "zksnp", + "name": "Synapse Network" + }, + { + "id": "synari", + "symbol": "syn", + "name": "Synari" + }, + { + "id": "synatra-staked-sol", + "symbol": "ysol", + "name": "Synatra Staked SOL" + }, + { + "id": "synatra-staked-usdc", + "symbol": "yusd", + "name": "Synatra Staked USDC" + }, + { + "id": "syncdex", + "symbol": "sydx", + "name": "SyncDex" + }, + { + "id": "synclub-staked-bnb", + "symbol": "slisbnb", + "name": "Lista Staked BNB" + }, + { + "id": "sync-network", + "symbol": "sync", + "name": "Sync Network" + }, + { + "id": "syncoin", + "symbol": "snc", + "name": "Syncoin" + }, + { + "id": "syncvault", + "symbol": "svts", + "name": "SyncVault" + }, + { + "id": "syndicate-2", + "symbol": "synr", + "name": "MOBLAND" + }, + { + "id": "syndicate-3", + "symbol": "synd", + "name": "Syndicate" + }, + { + "id": "syndicate-of-vigilantes", + "symbol": "vigi", + "name": "Syndicate of Vigilantes" + }, + { + "id": "syn-dog", + "symbol": "syn", + "name": "Syn Dog" + }, + { + "id": "synesis-one", + "symbol": "sns", + "name": "Synesis One" + }, + { + "id": "synfutures", + "symbol": "f", + "name": "SynFutures" + }, + { + "id": "synk", + "symbol": "synk", + "name": "Synk" + }, + { + "id": "synonym-finance", + "symbol": "syno", + "name": "SYNO Finance" + }, + { + "id": "synternet-synt", + "symbol": "synt", + "name": "Synternet" + }, + { + "id": "syntetika-bitcoin", + "symbol": "hbtc", + "name": "Syntetika Bitcoin" + }, + { + "id": "syntetika-staked-bitcoin", + "symbol": "shbtc", + "name": "Syntetika Staked Bitcoin" + }, + { + "id": "synth-2", + "symbol": "sn50", + "name": "Synth" + }, + { + "id": "synthesizeai", + "symbol": "synth", + "name": "SynthesizeAI" + }, + { + "id": "synthesizer-dog", + "symbol": "syndog", + "name": "Synthesizer Dog" + }, + { + "id": "synthetic-amber", + "symbol": "samb", + "name": "Synthetic Amber" + }, + { + "id": "synthetify-token", + "symbol": "sny", + "name": "Synthetify" + }, + { + "id": "synthra", + "symbol": "syn", + "name": "Synthra" + }, + { + "id": "synthswap", + "symbol": "synth", + "name": "Synthswap" + }, + { + "id": "syntor-ai", + "symbol": "tor", + "name": "Syntor Ai" + }, + { + "id": "sypool", + "symbol": "syp", + "name": "Sypool" + }, + { + "id": "syrax-ai", + "symbol": "syrax", + "name": "Syrax AI" + }, + { + "id": "syrup", + "symbol": "syrup", + "name": "Maple Finance" + }, + { + "id": "syrupusdc", + "symbol": "syrupusdc", + "name": "syrupUSDC" + }, + { + "id": "syrupusdt", + "symbol": "syrupusdt", + "name": "syrupUSDT" + }, + { + "id": "syscoin", + "symbol": "sys", + "name": "Syscoin" + }, + { + "id": "syusd", + "symbol": "syusd", + "name": "Synnax Stablecoin" + }, + { + "id": "szar", + "symbol": "szar", + "name": "SZAR" + }, + { + "id": "szn", + "symbol": "szn", + "name": "szn" + }, + { + "id": "t23", + "symbol": "t23", + "name": "T23" + }, + { + "id": "t3-ai", + "symbol": "t3", + "name": "T3 AI" + }, + { + "id": "t3rn", + "symbol": "trn", + "name": "t3rn" + }, + { + "id": "t420", + "symbol": "t420", + "name": "T420" + }, + { + "id": "tabbypos", + "symbol": "tabby", + "name": "TabbyPOS" + }, + { + "id": "tabman", + "symbol": "tab", + "name": "TabMan" + }, + { + "id": "taboo-token", + "symbol": "taboo", + "name": "Taboo" + }, + { + "id": "taboshi", + "symbol": "taboshi", + "name": "Taboshi" + }, + { + "id": "tabtrader", + "symbol": "ttt", + "name": "TabTrader" + }, + { + "id": "tac", + "symbol": "tac", + "name": "TAC" + }, + { + "id": "tac-bridged-ton-tac", + "symbol": "ton", + "name": "TAC Bridged TON (TAC)" + }, + { + "id": "tac-bridged-usdt-tac", + "symbol": "usdt", + "name": "TAC Bridged USDT (TAC)" + }, + { + "id": "tac-bridged-weth-tac", + "symbol": "weth", + "name": "TAC Bridged WETH (TAC)" + }, + { + "id": "ta-da", + "symbol": "tada", + "name": "Ta-da" + }, + { + "id": "tagger", + "symbol": "tag", + "name": "TAGGER" + }, + { + "id": "taggr", + "symbol": "taggr", + "name": "TAGGR" + }, + { + "id": "taho", + "symbol": "taho", + "name": "Taho" + }, + { + "id": "taikai", + "symbol": "tkai", + "name": "TAIKAI" + }, + { + "id": "taiki-inu", + "symbol": "taiki", + "name": "TAIKI INU" + }, + { + "id": "taiko", + "symbol": "taiko", + "name": "Taiko" + }, + { + "id": "taiko-bridged-usdc-taiko", + "symbol": "usdc", + "name": "Taiko Bridged USDC (Taiko)" + }, + { + "id": "tainet", + "symbol": "tai", + "name": "TaiNet" + }, + { + "id": "tairon", + "symbol": "tairo", + "name": "Tairon" + }, + { + "id": "taitiko", + "symbol": "ttg", + "name": "Taitiko" + }, + { + "id": "taiwan-semiconductor-manufacturing-ondo-tokenized-stock", + "symbol": "tsmon", + "name": "Taiwan Semiconductor Manufacturing (Ondo Tokenized Stock)" + }, + { + "id": "taix", + "symbol": "taix", + "name": "TAIX" + }, + { + "id": "tajcoin", + "symbol": "taj", + "name": "TajCoin" + }, + { + "id": "tajir-tech-hub", + "symbol": "tjrm", + "name": "Tajir Tech Hub" + }, + { + "id": "takamaka-green-coin", + "symbol": "tkg", + "name": "Takamaka" + }, + { + "id": "taker-protocol", + "symbol": "taker", + "name": "Taker Protocol" + }, + { + "id": "take-the-l", + "symbol": "l", + "name": "Take the L" + }, + { + "id": "taki", + "symbol": "taki", + "name": "Taki Games" + }, + { + "id": "tako", + "symbol": "tako", + "name": "Tako" + }, + { + "id": "tako-2", + "symbol": "tako", + "name": "TAKO" + }, + { + "id": "takongrensheng", + "symbol": "踏空人生", + "name": "踏空人生" + }, + { + "id": "tala", + "symbol": "1ozt", + "name": "TALA" + }, + { + "id": "talaxeum", + "symbol": "talax", + "name": "Talaxeum" + }, + { + "id": "tale", + "symbol": "tale", + "name": "TALE" + }, + { + "id": "talecraft", + "symbol": "craft", + "name": "TaleCraft" + }, + { + "id": "talentido", + "symbol": "tal", + "name": "TalentIDO" + }, + { + "id": "talent-protocol", + "symbol": "talent", + "name": "Talent Protocol" + }, + { + "id": "talex", + "symbol": "x", + "name": "TaleX" + }, + { + "id": "talisman", + "symbol": "seek", + "name": "Talisman" + }, + { + "id": "talis-protocol", + "symbol": "talis", + "name": "Talis Protocol" + }, + { + "id": "talken", + "symbol": "talk", + "name": "Talken" + }, + { + "id": "talos", + "symbol": "agent", + "name": "AGENT" + }, + { + "id": "talos-2", + "symbol": "t", + "name": "Talos" + }, + { + "id": "tamatest", + "symbol": "tamatest", + "name": "Tamatest" + }, + { + "id": "tangible", + "symbol": "tngbl", + "name": "Tangible" + }, + { + "id": "tangle-network", + "symbol": "tnt", + "name": "Tangle Network" + }, + { + "id": "tangoswap", + "symbol": "tango", + "name": "TangoSwap" + }, + { + "id": "tangyuan", + "symbol": "tangyuan", + "name": "TangYuan" + }, + { + "id": "tanpin", + "symbol": "tanpin", + "name": "TanPin" + }, + { + "id": "tanssi", + "symbol": "tanssi", + "name": "Tanssi" + }, + { + "id": "tanuki", + "symbol": "tanuki", + "name": "Tanuki" + }, + { + "id": "tanuki-coin", + "symbol": "tanuki", + "name": "Tanuki Coin" + }, + { + "id": "tanuki-wisdom-runes", + "symbol": "🦝", + "name": "TANUKI•WISDOM (Runes)" + }, + { + "id": "tao-accounting-system", + "symbol": "tas", + "name": "Tao Accounting System" + }, + { + "id": "taobank", + "symbol": "tbank", + "name": "TaoBank" + }, + { + "id": "tao-bot", + "symbol": "taobot", + "name": "tao.bot" + }, + { + "id": "taocat-by-virtuals", + "symbol": "taocat", + "name": "TAOCat by Virtuals" + }, + { + "id": "tao-ceti", + "symbol": "ceti", + "name": "Tao Ceτi" + }, + { + "id": "taohash", + "symbol": "sn14", + "name": "TAOHash" + }, + { + "id": "taoillium", + "symbol": "sn109", + "name": "Taoillium" + }, + { + "id": "tao-inu", + "symbol": "taonu", + "name": "TAO INU" + }, + { + "id": "taolie-coin", + "symbol": "taolie", + "name": "TAOlie Coin" + }, + { + "id": "tao-meme", + "symbol": "tao", + "name": "Tao Meme" + }, + { + "id": "taonado", + "symbol": "sn113", + "name": "taonado" + }, + { + "id": "taopad", + "symbol": "tpad", + "name": "TaoPad" + }, + { + "id": "tao-private-network", + "symbol": "sn65", + "name": "TAO Private Network" + }, + { + "id": "t-a-o-s", + "symbol": "taos", + "name": "T A O S" + }, + { + "id": "taoshi", + "symbol": "taoshi", + "name": "TAOSHI" + }, + { + "id": "taotools", + "symbol": "taotools", + "name": "TAOTools" + }, + { + "id": "taounity", + "symbol": "utao", + "name": "TAOUnity" + }, + { + "id": "tap", + "symbol": "xtp", + "name": "XTP" + }, + { + "id": "tapdadoge", + "symbol": "run", + "name": "TapDaDoge" + }, + { + "id": "tapestry-ai", + "symbol": "taps", + "name": "Tapestry AI" + }, + { + "id": "tap-hold-and-load-in-4k", + "symbol": "thl", + "name": "Tap Hold and Load in 4k" + }, + { + "id": "tapify", + "symbol": "tap (bitcoin)", + "name": "Tapify" + }, + { + "id": "taproot", + "symbol": "taproot", + "name": "Taproot" + }, + { + "id": "tapswaptoken", + "symbol": "taps", + "name": "TapSwapToken" + }, + { + "id": "taraswap", + "symbol": "tswap", + "name": "Taraswap" + }, + { + "id": "taraxa", + "symbol": "tara", + "name": "Taraxa" + }, + { + "id": "taraxa-bridged-usdt-taraxa", + "symbol": "usdt", + "name": "Taraxa Bridged USDT (Taraxa)" + }, + { + "id": "tard", + "symbol": "tard", + "name": "Tard" + }, + { + "id": "tardi", + "symbol": "tardi", + "name": "Tardi" + }, + { + "id": "tardigrade", + "symbol": "tardi", + "name": "tardigrade" + }, + { + "id": "tardigrades-cult", + "symbol": "tard", + "name": "Tardigrades Cult" + }, + { + "id": "tardigrades-finance", + "symbol": "trdg", + "name": "TRDGtoken" + }, + { + "id": "targetwatch-bot", + "symbol": "twb", + "name": "TargetWatch Bot" + }, + { + "id": "target-xstock", + "symbol": "tgtx", + "name": "Target xStock" + }, + { + "id": "targon", + "symbol": "sn4", + "name": "Targon" + }, + { + "id": "tariffcoin", + "symbol": "tariffcoin", + "name": "tariffcoin" + }, + { + "id": "taro", + "symbol": "taro", + "name": "Taro" + }, + { + "id": "tarot", + "symbol": "tarot", + "name": "Tarot V1" + }, + { + "id": "tarot-2", + "symbol": "tarot", + "name": "Tarot" + }, + { + "id": "tars-protocol", + "symbol": "tai", + "name": "TARS AI" + }, + { + "id": "tass-hub", + "symbol": "tasshub", + "name": "TASS HUB" + }, + { + "id": "tastenft", + "symbol": "taste", + "name": "TasteNFT" + }, + { + "id": "tate", + "symbol": "tate", + "name": "TATE" + }, + { + "id": "tate-terminal", + "symbol": "tate", + "name": "Tate Terminal" + }, + { + "id": "tatsu", + "symbol": "tatsu", + "name": "Tatsu" + }, + { + "id": "taurus-2", + "symbol": "taurus", + "name": "Taurus" + }, + { + "id": "taxa-token", + "symbol": "txt", + "name": "Taxa Network" + }, + { + "id": "tax-income-from-fees", + "symbol": "tiff", + "name": "Tax Income From Fees" + }, + { + "id": "taxpad", + "symbol": "tax", + "name": "Taxpad" + }, + { + "id": "taxsolutions-ai", + "symbol": "tsai", + "name": "TaxSolutions AI" + }, + { + "id": "taxy-network", + "symbol": "taxy", + "name": "TAXY NETWORK" + }, + { + "id": "tay", + "symbol": "tay", + "name": "TAY" + }, + { + "id": "taylor-swift-s-cat", + "symbol": "benji", + "name": "Taylor Swift's Cat Benji" + }, + { + "id": "tbag", + "symbol": "tbag", + "name": "TBAG" + }, + { + "id": "tbcc", + "symbol": "tbcc", + "name": "TBCC" + }, + { + "id": "tbll-xstock", + "symbol": "tbllx", + "name": "TBLL xStock" + }, + { + "id": "tbtc", + "symbol": "tbtc", + "name": "tBTC" + }, + { + "id": "tcc", + "symbol": "tcc", + "name": "TCC" + }, + { + "id": "tcg-verse", + "symbol": "tcgc", + "name": "TCG Verse" + }, + { + "id": "tcom-global", + "symbol": "tcom", + "name": "TCOM Global" + }, + { + "id": "tcy", + "symbol": "tcy", + "name": "TCY" + }, + { + "id": "tdccp", + "symbol": "tdccp", + "name": "TDCCP" + }, + { + "id": "tdoge", + "symbol": "tdoge", + "name": "τDoge" + }, + { + "id": "tea-fi", + "symbol": "tea", + "name": "Tea-Fi" + }, + { + "id": "teafi-token", + "symbol": "tea", + "name": "TeaFi Token" + }, + { + "id": "team556", + "symbol": "team", + "name": "Team556" + }, + { + "id": "team-canguro", + "symbol": "canguro", + "name": "Team Canguro" + }, + { + "id": "tea-meme-coin", + "symbol": "tea", + "name": "Tea Meme Coin" + }, + { + "id": "team-heretics-fan-token", + "symbol": "th", + "name": "Team Heretics Fan Token" + }, + { + "id": "team-mysten", + "symbol": "mysten", + "name": "Team Mysten" + }, + { + "id": "teamwater", + "symbol": "water", + "name": "TeamWater" + }, + { + "id": "tea-protocol", + "symbol": "tea", + "name": "Tea Protocol" + }, + { + "id": "tear", + "symbol": "tear", + "name": "TEAR" + }, + { + "id": "tear-2", + "symbol": "tear", + "name": "TEAR" + }, + { + "id": "tech", + "symbol": "tech", + "name": "NumberGoUpTech" + }, + { + "id": "tech-deck-turtle", + "symbol": "tdt", + "name": "Tech Deck Turtle" + }, + { + "id": "tectonic", + "symbol": "tonic", + "name": "Tectonic" + }, + { + "id": "tectum", + "symbol": "tet", + "name": "Tectum" + }, + { + "id": "teddy-bear", + "symbol": "bear", + "name": "TEDDY BEAR" + }, + { + "id": "teddy-bear-2", + "symbol": "teddy", + "name": "Teddy Bear" + }, + { + "id": "teddy-dollar", + "symbol": "tsd", + "name": "Teddy Dollar" + }, + { + "id": "teddy-the-tile-doge", + "symbol": "teddy", + "name": "Teddy the Tile Doge" + }, + { + "id": "te-food", + "symbol": "tone", + "name": "TE-FOOD" + }, + { + "id": "tegisto", + "symbol": "tgs", + "name": "Tegisto" + }, + { + "id": "tegro", + "symbol": "tgr", + "name": "Tegro" + }, + { + "id": "tehbag", + "symbol": "bag", + "name": "tehBag" + }, + { + "id": "teh-epik-duck", + "symbol": "epik", + "name": "TEH EPIK DUCK" + }, + { + "id": "teh-fund", + "symbol": "fund", + "name": "Teh Fund" + }, + { + "id": "tektias-2", + "symbol": "tkt", + "name": "TEKTIAS" + }, + { + "id": "telcoin", + "symbol": "tel", + "name": "Telcoin" + }, + { + "id": "telebtc-2", + "symbol": "telebtc", + "name": "teleBTC" + }, + { + "id": "telepath8", + "symbol": "p8bci", + "name": "Telepath8" + }, + { + "id": "teleport-system-token", + "symbol": "tst", + "name": "Teleport System Token" + }, + { + "id": "telestai", + "symbol": "tls", + "name": "Telestai" + }, + { + "id": "teleswap", + "symbol": "tswap", + "name": "TeleSwap" + }, + { + "id": "tell-a-tale", + "symbol": "tat", + "name": "Tell A Tale" + }, + { + "id": "tellor", + "symbol": "trb", + "name": "Tellor Tributes" + }, + { + "id": "telos", + "symbol": "tlos", + "name": "Telos" + }, + { + "id": "telos-bridged-wbtc-telos", + "symbol": "wbtc", + "name": "Telos Bridged WBTC (Telos)" + }, + { + "id": "tema", + "symbol": "tema", + "name": "Tema" + }, + { + "id": "temco", + "symbol": "temco", + "name": "TEMCO" + }, + { + "id": "tem-market", + "symbol": "tem", + "name": "TEM MARKET" + }, + { + "id": "templar", + "symbol": "sn3", + "name": "τemplar" + }, + { + "id": "templardao", + "symbol": "tem", + "name": "Templar DAO" + }, + { + "id": "temple", + "symbol": "temple", + "name": "TempleDAO" + }, + { + "id": "temporal-3022", + "symbol": "3022", + "name": "Temporal 3022" + }, + { + "id": "tempus-ai-xstock", + "symbol": "temx", + "name": "Tempus AI xStock" + }, + { + "id": "temtem", + "symbol": "tem", + "name": "Temtum" + }, + { + "id": "ten", + "symbol": "tenfi", + "name": "TEN" + }, + { + "id": "ten-best-coins", + "symbol": "tbc", + "name": "Ten Best Coins" + }, + { + "id": "tendies-icp", + "symbol": "tendy", + "name": "Tendies (ICP)" + }, + { + "id": "teneo-protocol", + "symbol": "teneo", + "name": "Teneo" + }, + { + "id": "tenet-1b000f7b-59cb-4e06-89ce-d62b32d362b9", + "symbol": "tenet", + "name": "TENET" + }, + { + "id": "tenex", + "symbol": "sn67", + "name": "TENEX" + }, + { + "id": "tenge-tenge", + "symbol": "tenge", + "name": "TENGE TENGE" + }, + { + "id": "tenna-by-virtuals", + "symbol": "tenna", + "name": "Tenna by Virtuals" + }, + { + "id": "tenset", + "symbol": "10set", + "name": "Tenset" + }, + { + "id": "tenshi", + "symbol": "tenshi", + "name": "Tenshi" + }, + { + "id": "tensor", + "symbol": "tnsr", + "name": "Tensor" + }, + { + "id": "tensora", + "symbol": "tora", + "name": "Tensora" + }, + { + "id": "tensorhub", + "symbol": "thub", + "name": "TensorHub" + }, + { + "id": "tensorium", + "symbol": "tnsr", + "name": "Tensorium [OLD]" + }, + { + "id": "tensorplex-staked-tao", + "symbol": "sttao", + "name": "Tensorplex Staked TAO" + }, + { + "id": "tensorprox", + "symbol": "sn91", + "name": "tensorprox" + }, + { + "id": "tensorscan-ai", + "symbol": "tsa", + "name": "TensorScan AI" + }, + { + "id": "tensorspace", + "symbol": "tpu", + "name": "TensorSpace" + }, + { + "id": "tenter-usd-t", + "symbol": "usd.t", + "name": "Tenter USD.T" + }, + { + "id": "tenup", + "symbol": "tup", + "name": "Tenup" + }, + { + "id": "tenx", + "symbol": "pay", + "name": "TenX" + }, + { + "id": "tenx-2", + "symbol": "tenx", + "name": "TenX" + }, + { + "id": "tera-smart-money", + "symbol": "tera", + "name": "TERA" + }, + { + "id": "teratto", + "symbol": "trcon", + "name": "TERATTO" + }, + { + "id": "terawulf-xstock", + "symbol": "wulfx", + "name": "TeraWulf xStock" + }, + { + "id": "teritori", + "symbol": "tori", + "name": "Teritori" + }, + { + "id": "term-finance", + "symbol": "term", + "name": "Term Finance" + }, + { + "id": "terminal", + "symbol": "terminal", + "name": "Terminal" + }, + { + "id": "terminalius-maximus", + "symbol": "baron", + "name": "Terminalius Maximus" + }, + { + "id": "terminal-of-fun", + "symbol": "fun", + "name": "terminal of fun" + }, + { + "id": "terminus", + "symbol": "tmns", + "name": "Terminus" + }, + { + "id": "terminus-2", + "symbol": "terminus", + "name": "Terminus" + }, + { + "id": "terminus-3", + "symbol": "terminus", + "name": "Terminus" + }, + { + "id": "term-structure", + "symbol": "term", + "name": "Term Structure" + }, + { + "id": "terner", + "symbol": "terner", + "name": "Terner" + }, + { + "id": "ternio", + "symbol": "tern", + "name": "Ternio" + }, + { + "id": "terrace", + "symbol": "trc", + "name": "Terrace" + }, + { + "id": "terracoin", + "symbol": "trc", + "name": "Terracoin" + }, + { + "id": "terra-luna", + "symbol": "lunc", + "name": "Terra Luna Classic" + }, + { + "id": "terra-luna-2", + "symbol": "luna", + "name": "Terra" + }, + { + "id": "terran-coin", + "symbol": "trr", + "name": "Terran Coin" + }, + { + "id": "terraport", + "symbol": "terra", + "name": "Terraport" + }, + { + "id": "terrausd", + "symbol": "ustc", + "name": "TerraClassicUSD" + }, + { + "id": "terrausd-wormhole", + "symbol": "ust", + "name": "TerraUSD (Wormhole)" + }, + { + "id": "terry-in-the-trenches", + "symbol": "terry", + "name": "Terry In The Trenches" + }, + { + "id": "tert", + "symbol": "tert", + "name": "Tert" + }, + { + "id": "tesla-ondo-tokenized-stock", + "symbol": "tslaon", + "name": "Tesla (Ondo Tokenized Stock)" + }, + { + "id": "tesla-xstock", + "symbol": "tslax", + "name": "Tesla xStock" + }, + { + "id": "tesseract", + "symbol": "t4d", + "name": "Tesseract" + }, + { + "id": "test-2", + "symbol": "test", + "name": "Test" + }, + { + "id": "test-3", + "symbol": "tst", + "name": "Test" + }, + { + "id": "test-token-please-ignore", + "symbol": "test", + "name": "test token please ignore" + }, + { + "id": "tethecat-bridged-usdt", + "symbol": "usdt.c", + "name": "TetheCat Bridged USDT" + }, + { + "id": "tethegamer", + "symbol": "tethegamer", + "name": "Tethegamer" + }, + { + "id": "tether", + "symbol": "usdt", + "name": "Tether" + }, + { + "id": "tether-avalanche-bridged-usdt-e", + "symbol": "usdte", + "name": "Bridged Tether (Avalanche)" + }, + { + "id": "tethereum-3", + "symbol": "t99", + "name": "Tethereum" + }, + { + "id": "tether-eurt", + "symbol": "eurt", + "name": "Euro Tether" + }, + { + "id": "tether-gold", + "symbol": "xaut", + "name": "Tether Gold" + }, + { + "id": "tether-gold-tokens", + "symbol": "xaut0", + "name": "Tether Gold Tokens" + }, + { + "id": "tether-pulsechain", + "symbol": "usdt", + "name": "Bridged USDT (PulseChain)" + }, + { + "id": "tether-rainbow-bridge", + "symbol": "usdt.e", + "name": "Bridged Tether (Rainbow Bridge)" + }, + { + "id": "tether-usd-wormhole", + "symbol": "usdtso", + "name": "Bridged Tether (Wormhole)" + }, + { + "id": "tether-usd-wormhole-from-ethereum", + "symbol": "usdt", + "name": "Wormhole Bridged USDT (Sui)" + }, + { + "id": "tethys-finance", + "symbol": "tethys", + "name": "Tethys Finance" + }, + { + "id": "tetra", + "symbol": "tetrap", + "name": "TETRA" + }, + { + "id": "tetsuo-coin", + "symbol": "tetsuo", + "name": "Tetsuo Coin" + }, + { + "id": "tetu", + "symbol": "tetu", + "name": "TETU" + }, + { + "id": "tevaera", + "symbol": "teva", + "name": "Tevaera" + }, + { + "id": "texan", + "symbol": "texan", + "name": "Texan" + }, + { + "id": "texitcoin", + "symbol": "txc", + "name": "TEXITcoin" + }, + { + "id": "texor-cloud", + "symbol": "txr", + "name": "Texor.cloud" + }, + { + "id": "tezos", + "symbol": "xtz", + "name": "Tezos" + }, + { + "id": "tezos-domains", + "symbol": "ted", + "name": "Tezos Domains" + }, + { + "id": "tezos-pepe-2", + "symbol": "tzpepe", + "name": "Tezos Pepe" + }, + { + "id": "tg20-tgram", + "symbol": "tgram", + "name": "TG20 TGram" + }, + { + "id": "tg-casino", + "symbol": "tgc", + "name": "TG.Casino" + }, + { + "id": "tgmetrics", + "symbol": "tgmetrics", + "name": "TgMetrics" + }, + { + "id": "thala", + "symbol": "thl", + "name": "Thala" + }, + { + "id": "thala-apt", + "symbol": "thapt", + "name": "Thala APT" + }, + { + "id": "thales", + "symbol": "thales", + "name": "Thales" + }, + { + "id": "thales-ai", + "symbol": "thales", + "name": "Thales AI" + }, + { + "id": "thank-you-abstract-god", + "symbol": "tyag", + "name": "Thank You Abstract God" + }, + { + "id": "thank-you-so-much", + "symbol": "tysm", + "name": "Thank You So Much" + }, + { + "id": "thankyousonicgod", + "symbol": "tysg", + "name": "ThankYouSonicGod" + }, + { + "id": "tharwa", + "symbol": "trwa", + "name": "Tharwa" + }, + { + "id": "tharwa-usd", + "symbol": "thusd", + "name": "Tharwa USD" + }, + { + "id": "that", + "symbol": "that", + "name": "THAT" + }, + { + "id": "thats-crazy", + "symbol": "crazy", + "name": "Thats Crazy" + }, + { + "id": "that-s-iffy-my-dude", + "symbol": "t.i.m.d", + "name": "That's Iffy My Dude" + }, + { + "id": "the1", + "symbol": "the1", + "name": "The1" + }, + { + "id": "the-4th-pillar", + "symbol": "four", + "name": "4th Pillar FOUR" + }, + { + "id": "the-abyss", + "symbol": "abyss", + "name": "Abyss" + }, + { + "id": "the-amazing-digital-circus", + "symbol": "tadc", + "name": "The Amazing Digital Circus" + }, + { + "id": "the-america-party", + "symbol": "tap", + "name": "The America Party" + }, + { + "id": "the-america-party-2", + "symbol": "tap", + "name": "The America Party" + }, + { + "id": "the-america-party-3", + "symbol": "tap", + "name": "THE AMERICA PARTY" + }, + { + "id": "the-anthropic-order", + "symbol": "tao", + "name": "The Anthropic Order" + }, + { + "id": "the-antyshifty", + "symbol": "$anty", + "name": "The AntiShifty" + }, + { + "id": "the-ape-2", + "symbol": "ape", + "name": "The Ape" + }, + { + "id": "the-arena", + "symbol": "arena", + "name": "The Arena" + }, + { + "id": "the-baby-cheetah", + "symbol": "zola", + "name": "The Baby Cheetah" + }, + { + "id": "the-balkan-dwarf", + "symbol": "$kekec", + "name": "The Balkan Dwarf" + }, + { + "id": "the-basilisk", + "symbol": "basilisk", + "name": "The Basilisk" + }, + { + "id": "the-best-website-ever", + "symbol": "bwe", + "name": "The Best Website Ever" + }, + { + "id": "the-big-five", + "symbol": "bft", + "name": "The Big Five" + }, + { + "id": "the-big-red", + "symbol": "$td", + "name": "The Big Red" + }, + { + "id": "the-bitcoin-killa", + "symbol": "killa", + "name": "The Bitcoin Killa" + }, + { + "id": "the-bitcoin-mascot", + "symbol": "bitty", + "name": "The Bitcoin Mascot" + }, + { + "id": "the-black-sheep", + "symbol": "shigga", + "name": "the black sheep" + }, + { + "id": "the-blinking-ai-cat-catfather", + "symbol": "catf", + "name": "The Blinking AI Cat - Catfather" + }, + { + "id": "the-blox-project", + "symbol": "blox", + "name": "The Blox Project" + }, + { + "id": "the-bnb-fish", + "symbol": "yuli", + "name": "The BnB Fish" + }, + { + "id": "the-bonk-prophecy", + "symbol": "prophecy", + "name": "The Bonk Prophecy" + }, + { + "id": "the-book-of-sol", + "symbol": "script", + "name": "The book of SOL" + }, + { + "id": "the-breadverse", + "symbol": "bread", + "name": "The Breadverse" + }, + { + "id": "the-brothers-dao", + "symbol": "bro", + "name": "The Brothers DAO" + }, + { + "id": "the-bubbleheads", + "symbol": "bubble", + "name": "The Bubbleheads" + }, + { + "id": "the-bull-era", + "symbol": "bull", + "name": "The Bull Era" + }, + { + "id": "thecat", + "symbol": "thecat", + "name": "TheCat" + }, + { + "id": "the-coin", + "symbol": "the", + "name": "the coin" + }, + { + "id": "the-coq-father-boss", + "symbol": "bosscoq", + "name": "THE COQ FATHER BOSS" + }, + { + "id": "the-corgi-of-polkabridge", + "symbol": "corgib", + "name": "The Corgi of PolkaBridge" + }, + { + "id": "the-css-god-by-virtuals", + "symbol": "websim", + "name": "The Css God by Virtuals" + }, + { + "id": "the-degensons", + "symbol": "degens", + "name": "The Degensons" + }, + { + "id": "the-dev-is-a-baby", + "symbol": "bbydev", + "name": "The Dev is a Baby" + }, + { + "id": "the-dev-is-an-ape", + "symbol": "apedev", + "name": "The dev is an Ape" + }, + { + "id": "thedip", + "symbol": "thedip", + "name": "TheDip" + }, + { + "id": "the-dissolution-of-value", + "symbol": "value", + "name": "The Dissolution of Value" + }, + { + "id": "the-doge-nft", + "symbol": "dog", + "name": "Own The Doge" + }, + { + "id": "the-dub-token", + "symbol": "dub", + "name": "The DUB Token" + }, + { + "id": "the-eagle", + "symbol": "eagle", + "name": "The Eagle" + }, + { + "id": "the-ear-stays-on", + "symbol": "ear", + "name": "THE EAR STAYS ON" + }, + { + "id": "the-eid-sheep", + "symbol": "$tes", + "name": "The Eid Sheep" + }, + { + "id": "the-emerald-company", + "symbol": "emrld", + "name": "The Emerald Company" + }, + { + "id": "the-essential-coin", + "symbol": "esc", + "name": "The Essential Coin" + }, + { + "id": "the-everlasting-parachain", + "symbol": "elp", + "name": "The Everlasting Parachain" + }, + { + "id": "the-eye", + "symbol": "eye", + "name": "THE EYE" + }, + { + "id": "the-face-of-sarcasm", + "symbol": "kappa", + "name": "the face of sarcasm" + }, + { + "id": "the-final-bitcoin", + "symbol": "shitcoin", + "name": "THE FINAL BITCOIN" + }, + { + "id": "the-final-quarter", + "symbol": "q4", + "name": "The Final Quarter" + }, + { + "id": "the-first-meme", + "symbol": "first", + "name": "The First Meme" + }, + { + "id": "the-first-play", + "symbol": "1st", + "name": "The First Play" + }, + { + "id": "theforce-trade", + "symbol": "foc", + "name": "TheForce Trade" + }, + { + "id": "the-freemoon-token", + "symbol": "fmn", + "name": "The FREEMOON Token" + }, + { + "id": "the-future-is-autonomous", + "symbol": "tfia", + "name": "The Future Is autonomous" + }, + { + "id": "the-goat-cz", + "symbol": "czgoat", + "name": "CZ THE GOAT" + }, + { + "id": "the-grapes-grape-coin", + "symbol": "grape", + "name": "Grape Coin" + }, + { + "id": "the-graph", + "symbol": "grt", + "name": "The Graph" + }, + { + "id": "the-grays-currency", + "symbol": "ptgc", + "name": "The Grays Currency" + }, + { + "id": "the-greatest-investment", + "symbol": "land", + "name": "the greatest investment" + }, + { + "id": "the-great-extraction", + "symbol": "tge", + "name": "the great extraction" + }, + { + "id": "the-great-void-token", + "symbol": "void", + "name": "The Great Void Token" + }, + { + "id": "the-green-era", + "symbol": "green", + "name": "The Green Era" + }, + { + "id": "the-hawk", + "symbol": "unbroken", + "name": "The Hawk" + }, + { + "id": "the-honest-guy", + "symbol": "thguy", + "name": "the honest guy" + }, + { + "id": "the-husl", + "symbol": "husl", + "name": "The HUSL" + }, + { + "id": "the-illusion-project", + "symbol": "illusion", + "name": "The ILLUSION Project" + }, + { + "id": "the-imperfect-coin", + "symbol": "imperfect", + "name": "the imperfect coin" + }, + { + "id": "the-infinite-garden", + "symbol": "eth", + "name": "The Infinite Garden" + }, + { + "id": "the-innovation-game", + "symbol": "tig", + "name": "The Innovation Game" + }, + { + "id": "the-internet-s-ai-punching-bag", + "symbol": "garry", + "name": "The Internet's AI Punching Bag" + }, + { + "id": "the-investor", + "symbol": "investor", + "name": "The “Investor”" + }, + { + "id": "the-invincible-game-token", + "symbol": "iggt", + "name": "The Invincible Game Token" + }, + { + "id": "the-joker-coin", + "symbol": "joker", + "name": "The Joker Coin" + }, + { + "id": "the-jupiter-cat", + "symbol": "jupcat", + "name": "The Jupiter Cat" + }, + { + "id": "the-killbox-game", + "symbol": "kbox", + "name": "The Killbox Game" + }, + { + "id": "the-kingdom-coin", + "symbol": "tkc", + "name": "The Kingdom Coin" + }, + { + "id": "the-last-job", + "symbol": "quit", + "name": "The Last Job" + }, + { + "id": "the-last-play", + "symbol": "retire", + "name": "The Last Play" + }, + { + "id": "the-life-of-cat", + "symbol": "cat", + "name": "the life of cat" + }, + { + "id": "the-lion", + "symbol": "lion", + "name": "The Lion" + }, + { + "id": "the-lokie-cabal", + "symbol": "cabal", + "name": "The Lokie Cabal" + }, + { + "id": "the-longest-pumpfun-stream", + "symbol": "pumpathon", + "name": "THE LONGEST PUMPFUN STREAM" + }, + { + "id": "the-loonies", + "symbol": "loon", + "name": "The Loonies" + }, + { + "id": "the-lux-network", + "symbol": "tln", + "name": "The Lux Network" + }, + { + "id": "the-martian-dog", + "symbol": "marvin", + "name": "The Martian Dog" + }, + { + "id": "the-mascot-of-crypto", + "symbol": "candle", + "name": "the mascot of crypto" + }, + { + "id": "the-meerkat-meme", + "symbol": "meerkat", + "name": "The Meerkat Meme" + }, + { + "id": "the-meme-game", + "symbol": "memegame", + "name": "THE MEME GAME" + }, + { + "id": "the-misc-u-aware", + "symbol": "misc", + "name": "the misc. u aware?" + }, + { + "id": "the-monopolist", + "symbol": "mono", + "name": "The Monopolist" + }, + { + "id": "the-most-expensive-shiba-inu", + "symbol": "dengdeng", + "name": "The Most Expensive Shiba Inu" + }, + { + "id": "the-most-watched-egg", + "symbol": "egg", + "name": "the most watched egg" + }, + { + "id": "thena", + "symbol": "the", + "name": "Thena" + }, + { + "id": "the-nation-token", + "symbol": "nato", + "name": "The Nation Token" + }, + { + "id": "the-neko", + "symbol": "neko", + "name": "The Neko" + }, + { + "id": "the-new-genesis", + "symbol": "gen", + "name": "The New Genesis" + }, + { + "id": "the-next-gem-ai", + "symbol": "gemai", + "name": "The Next Gem AI" + }, + { + "id": "the-night-riders", + "symbol": "tnr", + "name": "The Night Riders" + }, + { + "id": "the-nutting-professor", + "symbol": "pronut", + "name": "The Nutting Professor" + }, + { + "id": "the-odor", + "symbol": "odor", + "name": "The Odor" + }, + { + "id": "the-official-67-coin", + "symbol": "67", + "name": "The Official 67 Coin" + }, + { + "id": "the-official-bozo", + "symbol": "bozo", + "name": "THE•OFFICIAL•BOZO" + }, + { + "id": "the-og-cheems-inu", + "symbol": "ogcinu", + "name": "The OG Cheems Inu" + }, + { + "id": "the-omnipotence", + "symbol": "omn", + "name": "The Omnipotence" + }, + { + "id": "the-open-league-meme", + "symbol": "tol", + "name": "The Open League MEME" + }, + { + "id": "the-open-network", + "symbol": "ton", + "name": "Toncoin" + }, + { + "id": "the-orange-era", + "symbol": "orange", + "name": "The Orange Era" + }, + { + "id": "the-order-of-the-golden-bull", + "symbol": "$golden", + "name": "The Order of the Golden Bull" + }, + { + "id": "theoriq", + "symbol": "thq", + "name": "Theoriq" + }, + { + "id": "theos", + "symbol": "theos", + "name": "Theos" + }, + { + "id": "theo-short-duration-us-treasury-fund", + "symbol": "thbill", + "name": "Theo Short Duration US Treasury Fund" + }, + { + "id": "the-other-party", + "symbol": "pod", + "name": "The Other Party" + }, + { + "id": "the-p33l", + "symbol": "p33l", + "name": "THE P33L" + }, + { + "id": "the-pea-guy-by-virtuals", + "symbol": "peaguy", + "name": "The Pea Guy by Virtuals" + }, + { + "id": "the-penny-has-been-retired", + "symbol": "penny", + "name": "the penny has been retired" + }, + { + "id": "the-phoenix", + "symbol": "fire", + "name": "The Phoenix" + }, + { + "id": "the-pride", + "symbol": "pride", + "name": "The Pride" + }, + { + "id": "the-professor", + "symbol": "lab", + "name": "The Professor" + }, + { + "id": "the-protocol", + "symbol": "the", + "name": "The Protocol" + }, + { + "id": "the-real-goal", + "symbol": "land", + "name": "the real goal" + }, + { + "id": "the-real-landwolf", + "symbol": "wolf", + "name": "LandWolf" + }, + { + "id": "the-republican-party", + "symbol": "gop", + "name": "The Republican Party" + }, + { + "id": "the-resistance-cat", + "symbol": "$reca", + "name": "The Resistance Cat" + }, + { + "id": "there-s-only-one-of-me", + "symbol": "tooom", + "name": "There's only one of me" + }, + { + "id": "the-retirement-coin", + "symbol": "retirement", + "name": "THE RETIREMENT COIN" + }, + { + "id": "the-retirement-token", + "symbol": "42069k", + "name": "The Retirement Token" + }, + { + "id": "there-will-be-signs", + "symbol": "signs", + "name": "There Will Be Signs" + }, + { + "id": "the-right-wing", + "symbol": "right", + "name": "The Right Wing" + }, + { + "id": "thermo-fisher-xstock", + "symbol": "tmox", + "name": "Thermo Fisher xStock" + }, + { + "id": "the-root-network", + "symbol": "root", + "name": "The Root Network" + }, + { + "id": "the-rugcoon", + "symbol": "rugga", + "name": "The RugCoon" + }, + { + "id": "the-rug-game", + "symbol": "trg", + "name": "The Rug Game" + }, + { + "id": "the-runix-token", + "symbol": "runix", + "name": "THE•RUNIX•TOKEN" + }, + { + "id": "the-sandbox", + "symbol": "sand", + "name": "The Sandbox" + }, + { + "id": "the-sandbox-wormhole", + "symbol": "sand", + "name": "The Sandbox (Wormhole)" + }, + { + "id": "the-sexiest-number", + "symbol": "69", + "name": "the sexiest number" + }, + { + "id": "the-singularity", + "symbol": "singularity", + "name": "The Singularity" + }, + { + "id": "thesirion-2", + "symbol": "tso", + "name": "Thesirion" + }, + { + "id": "thesis-cat", + "symbol": "quant", + "name": "thesis cat" + }, + { + "id": "the-society-library", + "symbol": "sl", + "name": "The Society Library" + }, + { + "id": "the-soldog", + "symbol": "laika", + "name": "LAIKA the Cosmodog" + }, + { + "id": "the-spellcaster", + "symbol": "spell", + "name": "The Spellcaster" + }, + { + "id": "the-spirit-of-gambling", + "symbol": "tokabu", + "name": "The Spirit of Gambling" + }, + { + "id": "the-standard-euro", + "symbol": "euros", + "name": "The Standard EURO" + }, + { + "id": "thestandard-usd", + "symbol": "usds", + "name": "TheStandard USD" + }, + { + "id": "the-story-of-binance", + "symbol": "币安故事", + "name": "The Story of Binance" + }, + { + "id": "the-substance", + "symbol": "dose", + "name": "THE SUBSTANCE" + }, + { + "id": "the-surfing-frenchie", + "symbol": "dale", + "name": "The Surfing Frenchie" + }, + { + "id": "the-swarm", + "symbol": "swarm", + "name": "The SWARM" + }, + { + "id": "thetadrop", + "symbol": "tdrop", + "name": "ThetaDrop" + }, + { + "id": "theta-fuel", + "symbol": "tfuel", + "name": "Theta Fuel" + }, + { + "id": "thetan-arena", + "symbol": "thg", + "name": "Thetan World" + }, + { + "id": "thetanuts-finance", + "symbol": "nuts", + "name": "Thetanuts Finance" + }, + { + "id": "theta-token", + "symbol": "theta", + "name": "Theta Network" + }, + { + "id": "the-theory-of-gravity", + "symbol": "thog", + "name": "Theory Of Gravity" + }, + { + "id": "the-three-kingdoms", + "symbol": "ttk", + "name": "The Three Kingdoms" + }, + { + "id": "the-ticker-is-elsa", + "symbol": "elsa", + "name": "THE•TICKER•IS•ELSA" + }, + { + "id": "the-ticker-is-eth", + "symbol": "eth", + "name": "The Ticker Is ETH" + }, + { + "id": "the-trenches", + "symbol": "trenches", + "name": "TheTrenches" + }, + { + "id": "thetrumptoken", + "symbol": "great", + "name": "TheTrumpToken" + }, + { + "id": "the-unfettered-souls", + "symbol": "souls", + "name": "Unfettered Ecosystem" + }, + { + "id": "the-upsider-ai", + "symbol": "up", + "name": "The Upsider AI" + }, + { + "id": "the-vault-staked-sol", + "symbol": "vsol", + "name": "The Vault Staked SOL" + }, + { + "id": "the-virtua-kolect", + "symbol": "tvk", + "name": "Virtua" + }, + { + "id": "the-void", + "symbol": "void", + "name": "The Void" + }, + { + "id": "the-void-2", + "symbol": "void", + "name": "the void" + }, + { + "id": "the-winkyverse", + "symbol": "wnk", + "name": "Winkies" + }, + { + "id": "the-winners-circle", + "symbol": "hrse", + "name": "The Winners Circle" + }, + { + "id": "the-wizard-of-buyback", + "symbol": "wizb", + "name": "The Wizard of Buyback" + }, + { + "id": "the-word", + "symbol": "twd", + "name": "THE WORD" + }, + { + "id": "the-worked-dev", + "symbol": "work", + "name": "Work.Courses" + }, + { + "id": "the-world-state", + "symbol": "w$c", + "name": "World$tateCoin" + }, + { + "id": "theydontloveyoulikeiloveyou", + "symbol": "wait", + "name": "theydontloveyoulikeiloveyou" + }, + { + "id": "the-year-of-the-snake", + "symbol": "2025", + "name": "The Year Of The Snake" + }, + { + "id": "thief", + "symbol": "nami", + "name": "Thief Cat" + }, + { + "id": "think-protocol", + "symbol": "think", + "name": "THINK Protocol" + }, + { + "id": "thirstcoin", + "symbol": "thirstcoin", + "name": "Thirstcoin" + }, + { + "id": "this-can-be-anything", + "symbol": "imagine", + "name": "This Can Be Anything" + }, + { + "id": "this-coin-is-scarce", + "symbol": "scarce", + "name": "this coin is scarce" + }, + { + "id": "this-coin-is-so-good", + "symbol": "glaze", + "name": "this coin is so good" + }, + { + "id": "this-is-a-farm", + "symbol": "farm", + "name": "This is a Farm" + }, + { + "id": "this-is-a-special-memecoin", + "symbol": "tism", + "name": "this is a special memecoin" + }, + { + "id": "this-is-fine-2", + "symbol": "fine", + "name": "This is fine" + }, + { + "id": "this-is-fine-ethereum", + "symbol": "fine", + "name": "This Is Fine - Ethereum" + }, + { + "id": "this-is-my-iguana", + "symbol": "timi", + "name": "This Is My Iguana" + }, + { + "id": "this-shit-will-run", + "symbol": "diarrhea", + "name": "this shit will run" + }, + { + "id": "this-will-be-worth-alot", + "symbol": "alot", + "name": "this will be worth alot" + }, + { + "id": "this-will-cook", + "symbol": "women", + "name": "this will cook" + }, + { + "id": "this-will-make-ur-monthly-salary", + "symbol": "salary", + "name": "This will make ur monthly salary" + }, + { + "id": "this-will-spread", + "symbol": "plaguecoin", + "name": "This Will Spread" + }, + { + "id": "tholana", + "symbol": "thol", + "name": "Tholana" + }, + { + "id": "thol-token", + "symbol": "thol", + "name": "AngelBlock" + }, + { + "id": "thor", + "symbol": "thor", + "name": "ThorFi" + }, + { + "id": "thorchain", + "symbol": "rune", + "name": "THORChain" + }, + { + "id": "thoreum-v2", + "symbol": "thoreum", + "name": "Thoreum V3" + }, + { + "id": "thorstarter", + "symbol": "xrune", + "name": "Thorstarter" + }, + { + "id": "thorswap", + "symbol": "thor", + "name": "THORSwap" + }, + { + "id": "thorwallet", + "symbol": "tgt", + "name": "THORWallet DEX" + }, + { + "id": "thor-wallet", + "symbol": "titn", + "name": "THORWallet" + }, + { + "id": "thought", + "symbol": "tht", + "name": "Thought" + }, + { + "id": "threat-research-history-trail", + "symbol": "thrt", + "name": "Threat Research & History Trail" + }, + { + "id": "threatslayerai-by-virtuals", + "symbol": "slayer", + "name": "ThreatSlayerAI by Virtuals" + }, + { + "id": "three", + "symbol": "$three", + "name": "THREE" + }, + { + "id": "three-2", + "symbol": "3", + "name": "Three" + }, + { + "id": "threefold-token", + "symbol": "tft", + "name": "ThreeFold" + }, + { + "id": "three-hundred-ai", + "symbol": "thnd", + "name": "Three Hundred AI" + }, + { + "id": "threshold-network-token", + "symbol": "t", + "name": "Threshold Network" + }, + { + "id": "threshold-usd", + "symbol": "thusd", + "name": "Threshold USD" + }, + { + "id": "throne", + "symbol": "thn", + "name": "Throne" + }, + { + "id": "thug", + "symbol": "thug", + "name": "THUG" + }, + { + "id": "thug-life", + "symbol": "thug", + "name": "Thug Life" + }, + { + "id": "thumb", + "symbol": "thumb", + "name": "Thumb" + }, + { + "id": "thundercore-bridged-tt-wbnb-thundercore", + "symbol": "tt-wbnb", + "name": "ThunderCore Bridged TT-WBNB (ThunderCore)" + }, + { + "id": "thundercore-bridged-tt-weth-thundercore", + "symbol": "tt-weth", + "name": "ThunderCore Bridged TT-WETH (ThunderCore)" + }, + { + "id": "thundercore-bridged-usdc-thundercore", + "symbol": "usdc", + "name": "Thundercore Bridged USDC (Thundercore)" + }, + { + "id": "thundercore-bridged-usdt-thundercore", + "symbol": "usdt", + "name": "Thundercore Bridged USDT (Thundercore)" + }, + { + "id": "thundercore-bridged-wbtc-thundercore", + "symbol": "tt-wbtc", + "name": "ThunderCore Bridged TT-WBTC (ThunderCore)" + }, + { + "id": "thunderhead-staked-flip", + "symbol": "stflip", + "name": "Thunderhead Staked FLIP" + }, + { + "id": "thunder-token", + "symbol": "tt", + "name": "ThunderCore" + }, + { + "id": "tia", + "symbol": "tia", + "name": "Tiamonds [OLD]" + }, + { + "id": "tickeron", + "symbol": "tickeron", + "name": "Tickeron" + }, + { + "id": "tickerstm", + "symbol": "tickstm", + "name": "tickerSTM" + }, + { + "id": "tickle", + "symbol": "tickle", + "name": "Tickle" + }, + { + "id": "tico", + "symbol": "tico", + "name": "Funtico" + }, + { + "id": "tidal-finance", + "symbol": "tidal", + "name": "Tidal Finance" + }, + { + "id": "tidecoin", + "symbol": "tdc", + "name": "Tidecoin" + }, + { + "id": "tidefi", + "symbol": "tdfy", + "name": "Tidefi" + }, + { + "id": "tidex-token", + "symbol": "tdx", + "name": "Tidex" + }, + { + "id": "tifi-token", + "symbol": "tifi", + "name": "TiFi" + }, + { + "id": "tiger-alpha", + "symbol": "sn107", + "name": "Tiger Alpha" + }, + { + "id": "tiger-king", + "symbol": "tking", + "name": "Tiger King Coin" + }, + { + "id": "tiger-scrub-money-2", + "symbol": "tiger", + "name": "Tiger Scrub Money" + }, + { + "id": "tiger-shark", + "symbol": "tigershark", + "name": "Tiger Shark" + }, + { + "id": "tigra", + "symbol": "tigra", + "name": "Tigra" + }, + { + "id": "tigres-fan-token", + "symbol": "tigres", + "name": "Tigres Fan Token" + }, + { + "id": "tiktrix", + "symbol": "trix", + "name": "TikTrix" + }, + { + "id": "tilly-the-killer-whale", + "symbol": "tilly", + "name": "Tilly The Killer Whale" + }, + { + "id": "tilt-coin", + "symbol": "tilt", + "name": "Tilt Coin" + }, + { + "id": "tim-cheese", + "symbol": "tim", + "name": "Tim Cheese" + }, + { + "id": "time", + "symbol": "time", + "name": "TIME" + }, + { + "id": "time-alliance-guild-time", + "symbol": "time", + "name": "Time Alliance Guild Time" + }, + { + "id": "time-capital-markets", + "symbol": "tcm", + "name": "Time Capital Markets" + }, + { + "id": "timecoin-2", + "symbol": "$time", + "name": "TIMECOIN" + }, + { + "id": "t-i-m-e-dividend", + "symbol": "time", + "name": "T.I.M.E. Dividend" + }, + { + "id": "timeless", + "symbol": "lit", + "name": "Timeless" + }, + { + "id": "timeless-2", + "symbol": "timeless", + "name": "Timeless" + }, + { + "id": "timeless-davido", + "symbol": "davido", + "name": "Timeless Davido" + }, + { + "id": "times", + "symbol": "$times", + "name": "TIMES" + }, + { + "id": "timespace", + "symbol": "πts", + "name": "πTimeSpace" + }, + { + "id": "timeswap", + "symbol": "time", + "name": "Timeswap" + }, + { + "id": "timeworx", + "symbol": "tix", + "name": "Timeworx" + }, + { + "id": "timmi", + "symbol": "timmi", + "name": "TIMMI" + }, + { + "id": "tingus", + "symbol": "tingus", + "name": "TINGUS" + }, + { + "id": "tinhatcat", + "symbol": "thc", + "name": "TinHatCat" + }, + { + "id": "tinkernet", + "symbol": "tnkr", + "name": "Tinkernet" + }, + { + "id": "t-inu", + "symbol": "tinu", + "name": "Trump Inu" + }, + { + "id": "tiny", + "symbol": "tiny", + "name": "TINY" + }, + { + "id": "tiny-fren", + "symbol": "smol", + "name": "Tiny Fren" + }, + { + "id": "tiny-panda", + "symbol": "$tinyp", + "name": "Tiny Panda" + }, + { + "id": "tipcoin", + "symbol": "tip", + "name": "Tipcoin" + }, + { + "id": "tipja", + "symbol": "tipja", + "name": "Tipja" + }, + { + "id": "tipn", + "symbol": "tipn", + "name": "Tipn" + }, + { + "id": "tired-dad", + "symbol": "tired", + "name": "Tired Dad" + }, + { + "id": "tired-of-it-all", + "symbol": "tired", + "name": "tired of it all" + }, + { + "id": "tism", + "symbol": "tism", + "name": "TISM" + }, + { + "id": "tism-2", + "symbol": "tism", + "name": "tism" + }, + { + "id": "titan-2", + "symbol": "titan", + "name": "Titan" + }, + { + "id": "titan-3", + "symbol": "titan", + "name": "TITAN" + }, + { + "id": "titan-ai", + "symbol": "tiai", + "name": "TITAN AI" + }, + { + "id": "titan-blaze", + "symbol": "blaze", + "name": "Titan Blaze" + }, + { + "id": "titanium22", + "symbol": "ti", + "name": "Titanium22" + }, + { + "id": "titan-token", + "symbol": "tnt", + "name": "Titan Token" + }, + { + "id": "titan-trading-token", + "symbol": "tes", + "name": "Titan Trading Token" + }, + { + "id": "titanx", + "symbol": "titanx", + "name": "TitanX" + }, + { + "id": "titcoin-2", + "symbol": "titcoin", + "name": "titcoin" + }, + { + "id": "tiwicat", + "symbol": "twc", + "name": "TIWICAT" + }, + { + "id": "tknz-fun", + "symbol": "tknz", + "name": "TKNZ.FUN" + }, + { + "id": "tlx", + "symbol": "tlx", + "name": "TLX" + }, + { + "id": "t-mac-dao", + "symbol": "tmg", + "name": "T-mac DAO" + }, + { + "id": "t-mania-sol", + "symbol": "tmania", + "name": "Trump Mania" + }, + { + "id": "tmc-corp", + "symbol": "tmc", + "name": "TMC Corp" + }, + { + "id": "t-mobile-xstock", + "symbol": "tmusx", + "name": "T-Mobile xStock" + }, + { + "id": "tn100x", + "symbol": "tn100x", + "name": "TN100x" + }, + { + "id": "tnc", + "symbol": "techie", + "name": "TNC" + }, + { + "id": "toad", + "symbol": "toad", + "name": "TOAD" + }, + { + "id": "toad-2", + "symbol": "toad", + "name": "TOAD" + }, + { + "id": "toadie-meme-coin", + "symbol": "toad", + "name": "Toadie Meme Coin" + }, + { + "id": "toad-killer", + "symbol": "$toad", + "name": "Toad Killer" + }, + { + "id": "toad-sol", + "symbol": "$toad", + "name": "Toad (SOL)" + }, + { + "id": "toadzstrategy", + "symbol": "toadstr", + "name": "ToadzStrategy" + }, + { + "id": "toast-fun", + "symbol": "toast", + "name": "toast.fun" + }, + { + "id": "tobi", + "symbol": "tobi", + "name": "tobi" + }, + { + "id": "toby-toadgod", + "symbol": "toby", + "name": "Toby ToadGod" + }, + { + "id": "tocagg", + "symbol": "tcg", + "name": "ToCa.Gg" + }, + { + "id": "tocen", + "symbol": "toce", + "name": "Tocen" + }, + { + "id": "tochi-base", + "symbol": "tochi", + "name": "Tochi Base" + }, + { + "id": "toco", + "symbol": "toco", + "name": "TOCO" + }, + { + "id": "todd", + "symbol": "todd", + "name": "todd" + }, + { + "id": "todin", + "symbol": "tdn", + "name": "Todin" + }, + { + "id": "toding-protocol", + "symbol": "toding", + "name": "ToDing Protocol" + }, + { + "id": "toga", + "symbol": "toga", + "name": "TOGA" + }, + { + "id": "toge", + "symbol": "toge", + "name": "TOGE" + }, + { + "id": "toilet-dust", + "symbol": "toilet", + "name": "Toilet Dust" + }, + { + "id": "tokabu", + "symbol": "tokabu", + "name": "Tokabu" + }, + { + "id": "tokai", + "symbol": "tok", + "name": "Tokai" + }, + { + "id": "tokamak-network", + "symbol": "ton", + "name": "Tokamak Network" + }, + { + "id": "tokemak", + "symbol": "toke", + "name": "Auto Finance" + }, + { + "id": "token", + "symbol": "token", + "name": "Token.com" + }, + { + "id": "token6900", + "symbol": "t6900", + "name": "Token6900" + }, + { + "id": "token-7007", + "symbol": "7007", + "name": "Token 7007" + }, + { + "id": "tokenbot-2", + "symbol": "clanker", + "name": "tokenbot" + }, + { + "id": "tokencard", + "symbol": "tkn", + "name": "Monolith" + }, + { + "id": "tokenclub", + "symbol": "tct", + "name": "TokenClub" + }, + { + "id": "token-dforce-usd", + "symbol": "usx", + "name": "dForce USD" + }, + { + "id": "token-engineering-commons", + "symbol": "tec", + "name": "Token Engineering Commons" + }, + { + "id": "tokenfi", + "symbol": "token", + "name": "TokenFi" + }, + { + "id": "tokenize-xchange", + "symbol": "tkx", + "name": "Tokenize Xchange" + }, + { + "id": "tokenlon", + "symbol": "lon", + "name": "Tokenlon" + }, + { + "id": "token-metrics-ai", + "symbol": "tmai", + "name": "Token Metrics AI" + }, + { + "id": "token-name-service", + "symbol": "tkn", + "name": "Token Name Service" + }, + { + "id": "token-of-games", + "symbol": "tog", + "name": "Token of Games" + }, + { + "id": "tokenomy", + "symbol": "ten", + "name": "Tokenomy" + }, + { + "id": "tokenos-ai", + "symbol": "tos", + "name": "TokenOS AI" + }, + { + "id": "token-pocket", + "symbol": "tpt", + "name": "TokenPocket Token" + }, + { + "id": "token-s", + "symbol": "s", + "name": "Token S" + }, + { + "id": "tokensight", + "symbol": "tkst", + "name": "TokenSight" + }, + { + "id": "token-teknoloji-a-s-euro", + "symbol": "eurot", + "name": "Token Teknoloji A.Ş. EURO" + }, + { + "id": "token-teknoloji-a-s-ons-gold", + "symbol": "onsg", + "name": "Token Teknoloji A.Ş. ONS Gold" + }, + { + "id": "token-teknoloji-a-s-ons-silver", + "symbol": "onss", + "name": "Token Teknoloji A.Ş. ONS Silver" + }, + { + "id": "token-teknoloji-a-s-usd", + "symbol": "usdot", + "name": "Token Teknoloji A.Ş. USD" + }, + { + "id": "token-there-is-no-cap-ily", + "symbol": "ily", + "name": "There is no cap, ILY" + }, + { + "id": "tokeo", + "symbol": "toke", + "name": "Tokeo" + }, + { + "id": "tokero-levelup-token", + "symbol": "tokero", + "name": "TOKERO" + }, + { + "id": "tokery-finance", + "symbol": "tofi", + "name": "Tokery Finance" + }, + { + "id": "tokhit", + "symbol": "hitt", + "name": "TOKHIT" + }, + { + "id": "toki", + "symbol": "toki", + "name": "toki" + }, + { + "id": "toki-2", + "symbol": "toki", + "name": "Toki" + }, + { + "id": "tokito", + "symbol": "tokito", + "name": "Tokito" + }, + { + "id": "toko", + "symbol": "toko", + "name": "Tokoin" + }, + { + "id": "tokocrypto", + "symbol": "tko", + "name": "Tokocrypto" + }, + { + "id": "tokpie", + "symbol": "tkp", + "name": "TOKPIE" + }, + { + "id": "toku", + "symbol": "toku", + "name": "Toku" + }, + { + "id": "tokuda", + "symbol": "tkd", + "name": "TOKUDA" + }, + { + "id": "tokyo-au", + "symbol": "tokau", + "name": "Tokyo AU" + }, + { + "id": "tokyo-games-token", + "symbol": "tgt", + "name": "Tokyo Games Token" + }, + { + "id": "toli-the-trencher", + "symbol": "toli", + "name": "Toli The Trencher" + }, + { + "id": "toly", + "symbol": "toly", + "name": "Toly" + }, + { + "id": "tolys-cat", + "symbol": "oppie", + "name": "TOLYS CAT" + }, + { + "id": "toly-s-minutes", + "symbol": "toly", + "name": "toly's minutes" + }, + { + "id": "tomarket", + "symbol": "toma", + "name": "Tomarket" + }, + { + "id": "tomato", + "symbol": "tomato", + "name": "Tomato" + }, + { + "id": "tomatocoin-2", + "symbol": "tcoin", + "name": "TomatoCoin" + }, + { + "id": "tomatok", + "symbol": "tott", + "name": "TOMATOK" + }, + { + "id": "tomb", + "symbol": "tomb", + "name": "Tomb" + }, + { + "id": "tombili-the-fat-cat", + "symbol": "fatcat", + "name": "Tombili the Fat Cat" + }, + { + "id": "tombplus-tshare-plus", + "symbol": "tshare+", + "name": "TombPlus TSHARE+" + }, + { + "id": "tomb-shares", + "symbol": "tshare", + "name": "Tomb Shares" + }, + { + "id": "tom-coin", + "symbol": "tmc", + "name": "Tom Coin" + }, + { + "id": "tominet", + "symbol": "tomi", + "name": "TOMI" + }, + { + "id": "tommy", + "symbol": "tommy", + "name": "TOMMY" + }, + { + "id": "tomo-cat", + "symbol": "tomo", + "name": "Tomo Cat" + }, + { + "id": "tomochain", + "symbol": "vic", + "name": "Viction" + }, + { + "id": "tomoe", + "symbol": "tomoe", + "name": "TomoChain ERC-20" + }, + { + "id": "tom-s-odyssey", + "symbol": "tom", + "name": "Tom's Odyssey" + }, + { + "id": "tomwifhat", + "symbol": "twif", + "name": "Tomwifhat" + }, + { + "id": "toncapy", + "symbol": "tcapy", + "name": "TonCapy" + }, + { + "id": "ton-cat", + "symbol": "tcat", + "name": "Ton Cat" + }, + { + "id": "ton-cats-jetton", + "symbol": "cats", + "name": "TON Cats Jetton" + }, + { + "id": "ton-dog", + "symbol": "tdog", + "name": "TON DOG" + }, + { + "id": "tonex", + "symbol": "tnx", + "name": "Tonex" + }, + { + "id": "ton-fish-memecoin", + "symbol": "fish", + "name": "TON FISH MEMECOIN" + }, + { + "id": "tong", + "symbol": "tong", + "name": "Tong" + }, + { + "id": "tongue-cat", + "symbol": "luis", + "name": "Tongue Cat" + }, + { + "id": "tonhydra", + "symbol": "hydra", + "name": "Hydra" + }, + { + "id": "tonic", + "symbol": "tonic", + "name": "Tonic" + }, + { + "id": "tonic-2", + "symbol": "$tonic", + "name": "TONIC" + }, + { + "id": "ton-inu", + "symbol": "tinu", + "name": "Ton Inu" + }, + { + "id": "tonio", + "symbol": "tonio", + "name": "Tonio" + }, + { + "id": "tonio-e-luck", + "symbol": "luck", + "name": "Tonio e Luck" + }, + { + "id": "tonk-inu", + "symbol": "tonk", + "name": "Tonk Inu" + }, + { + "id": "ton-launchpad", + "symbol": "tonpad", + "name": "Ton Launchpad" + }, + { + "id": "ton-mixer", + "symbol": "mixer", + "name": "$TON Mixer" + }, + { + "id": "tonnel-network", + "symbol": "tonnel", + "name": "TONNEL Network" + }, + { + "id": "tonomy", + "symbol": "tono", + "name": "Tonomy" + }, + { + "id": "tonoreum", + "symbol": "tor", + "name": "Tonoreum" + }, + { + "id": "ton-question", + "symbol": "tq", + "name": "Ton Question" + }, + { + "id": "ton-raffles", + "symbol": "raff", + "name": "TON Raffles" + }, + { + "id": "ton-ship", + "symbol": "ship", + "name": "Ton Ship" + }, + { + "id": "tonstakers", + "symbol": "tston", + "name": "Tonstakers" + }, + { + "id": "tonstation", + "symbol": "mrsoon", + "name": "TON Station" + }, + { + "id": "ton-tiger", + "symbol": "tiger", + "name": "TON Tiger" + }, + { + "id": "tontoken", + "symbol": "ton", + "name": "TON Community" + }, + { + "id": "tonx", + "symbol": "tele", + "name": "TELE" + }, + { + "id": "ton-xstock", + "symbol": "tonxx", + "name": "TON xStock" + }, + { + "id": "tony-2", + "symbol": "tony", + "name": "TONY" + }, + { + "id": "tony-the-duck", + "symbol": "tony", + "name": "TONY THE DUCK" + }, + { + "id": "tooker-kurlson", + "symbol": "tooker", + "name": "tooker kurlson" + }, + { + "id": "tools", + "symbol": "tools", + "name": "TOOLS" + }, + { + "id": "toona", + "symbol": "toona", + "name": "toona" + }, + { + "id": "tootcoin", + "symbol": "toot", + "name": "Tootcoin" + }, + { + "id": "topblast", + "symbol": "bl4st", + "name": "TOPBLAST" + }, + { + "id": "topcat-2", + "symbol": "topcat", + "name": "Topcat" + }, + { + "id": "top-g", + "symbol": "topg", + "name": "Top G" + }, + { + "id": "topgoal", + "symbol": "goal", + "name": "TopGoal" + }, + { + "id": "top-hat", + "symbol": "hat", + "name": "Top Hat" + }, + { + "id": "top-hat-2", + "symbol": "tophat", + "name": "TOP HAT" + }, + { + "id": "topkek-capital", + "symbol": "topkek", + "name": "TOPKEK Capital" + }, + { + "id": "topless", + "symbol": "topless", + "name": "Topless" + }, + { + "id": "topmanager", + "symbol": "tmt", + "name": "TopManager" + }, + { + "id": "top-network", + "symbol": "top", + "name": "TOP AI Network" + }, + { + "id": "top-protocol", + "symbol": "top", + "name": "TOP PROTOCOL" + }, + { + "id": "topshelf-finance", + "symbol": "liqr", + "name": "Topshelf Finance" + }, + { + "id": "toptrade", + "symbol": "ttt", + "name": "TopTrade" + }, + { + "id": "tor", + "symbol": "tor", + "name": "TOR" + }, + { + "id": "tora-neko", + "symbol": "tora", + "name": "TORA NEKO" + }, + { + "id": "torch-of-liberty", + "symbol": "liberty", + "name": "Torch of Liberty" + }, + { + "id": "tordess", + "symbol": "tds", + "name": "Tordess" + }, + { + "id": "tornado-cash", + "symbol": "torn", + "name": "Tornado Cash" + }, + { + "id": "toro-2", + "symbol": "$toro", + "name": "EL-Toro" + }, + { + "id": "torq-swap", + "symbol": "tqs", + "name": "Torq Swap" + }, + { + "id": "torsy", + "symbol": "torsy", + "name": "TORSY" + }, + { + "id": "tortuga-staked-aptos", + "symbol": "tapt", + "name": "Tortuga Staked Aptos" + }, + { + "id": "torum", + "symbol": "xtm", + "name": "Torum" + }, + { + "id": "torus", + "symbol": "torus", + "name": "Torus" + }, + { + "id": "tosdis", + "symbol": "dis", + "name": "TosDis" + }, + { + "id": "toshi", + "symbol": "toshi", + "name": "Toshi" + }, + { + "id": "toshi-2", + "symbol": "toshi", + "name": "Toshi" + }, + { + "id": "totakeke", + "symbol": "totakeke", + "name": "Totakeke" + }, + { + "id": "totakeke-s-sister", + "symbol": "mike", + "name": "Mike" + }, + { + "id": "to-the-sun", + "symbol": "sunpump", + "name": "To The Sun" + }, + { + "id": "toto", + "symbol": "toto", + "name": "TOTO" + }, + { + "id": "toto-2", + "symbol": "toto", + "name": "TOTO" + }, + { + "id": "toto-3", + "symbol": "toto", + "name": "Tiamonds" + }, + { + "id": "tottenham-hotspur-fc-fan-token", + "symbol": "spurs", + "name": "Tottenham Hotspur FC Fan Token" + }, + { + "id": "toucan-protocol-base-carbon-tonne", + "symbol": "bct", + "name": "Base Carbon Tonne" + }, + { + "id": "toucan-protocol-nature-carbon-tonne", + "symbol": "nct", + "name": "Toucan Protocol: Nature Carbon Tonne" + }, + { + "id": "touch-grass", + "symbol": "touchgrass", + "name": "Touch Grass" + }, + { + "id": "toupee-tech", + "symbol": "wig", + "name": "Toupée Tech" + }, + { + "id": "tour-billion-coin", + "symbol": "tbc", + "name": "Tour Billion Coin" + }, + { + "id": "tourism-industry-metavers", + "symbol": "tim", + "name": "Tourism Industry Metavers" + }, + { + "id": "towelie", + "symbol": "toweli", + "name": "Towelie" + }, + { + "id": "tower", + "symbol": "tower", + "name": "Tower" + }, + { + "id": "towns", + "symbol": "towns", + "name": "Towns" + }, + { + "id": "toxicdeer-finance", + "symbol": "deer", + "name": "ToxicDeer Finance" + }, + { + "id": "toyota-ondo-tokenized-stock", + "symbol": "tmon", + "name": "Toyota (Ondo Tokenized Stock)" + }, + { + "id": "toyow-token", + "symbol": "ttn", + "name": "Toyow" + }, + { + "id": "tpro", + "symbol": "tpro", + "name": "TPRO Network" + }, + { + "id": "tptu", + "symbol": "tptu", + "name": "TPTU" + }, + { + "id": "tqqq-xstock", + "symbol": "tqqqx", + "name": "TQQQ xStock" + }, + { + "id": "trabzonspor-fan-token", + "symbol": "tra", + "name": "Trabzonspor Fan Token" + }, + { + "id": "trac", + "symbol": "trac", + "name": "TRAC (Ordinals)" + }, + { + "id": "trace-ai", + "symbol": "tai", + "name": "Trace AI" + }, + { + "id": "traceon-ai", + "symbol": "toai", + "name": "Traceon AI" + }, + { + "id": "tracer-2", + "symbol": "trcr", + "name": "Tracer" + }, + { + "id": "traceva", + "symbol": "trcv", + "name": "Traceva" + }, + { + "id": "trackedbio", + "symbol": "trackedbio", + "name": "TrackedBio" + }, + { + "id": "trackgood-ai", + "symbol": "trai", + "name": "Trackgood AI" + }, + { + "id": "trackius-ai", + "symbol": "tkus", + "name": "Trackius.ai" + }, + { + "id": "tracyai-by-virtuals", + "symbol": "tracy", + "name": "TracyAI by Virtuals" + }, + { + "id": "tradable-apac-diversified-finance-provider-sstn", + "symbol": "pc0000033", + "name": "Tradable APAC Diversified Finance Provider SSTN" + }, + { + "id": "tradable-eu-latam-pos-financing-sstl", + "symbol": "pc0000049", + "name": "Tradable Eu/LatAm PoS Financing SSTL" + }, + { + "id": "tradable-latam-bnpl-sstn", + "symbol": "pc0000027", + "name": "Tradable LatAm BNPL SSTN" + }, + { + "id": "tradable-latam-charge-card-ssn", + "symbol": "pc0000111", + "name": "Tradable LatAm Charge Card SSN" + }, + { + "id": "tradable-latam-fintech-sstn", + "symbol": "pc0000097", + "name": "Tradable LatAm Fintech SSTN" + }, + { + "id": "tradable-latam-middle-market-lender-sstl", + "symbol": "pc0000085", + "name": "Tradable LatAm Middle-Market Lender SSTL" + }, + { + "id": "tradable-na-legal-receivables-ssl", + "symbol": "pc0000081", + "name": "Tradable NA Legal Receivables SSL" + }, + { + "id": "tradable-na-neobank-sstl", + "symbol": "pc0000023", + "name": "Tradable NA Neobank SSTL" + }, + { + "id": "tradable-na-rent-financing-platform-sstn", + "symbol": "pc0000031", + "name": "Tradable NA Rent Financing Platform SSTN" + }, + { + "id": "tradable-na-residential-real-estate-backed-credit-card-sstn", + "symbol": "pc0000113", + "name": "Tradable NA Residential Real Estate-Backed Credit Card SSTN" + }, + { + "id": "tradable-na-third-party-online-merchant-sstn", + "symbol": "pc0000015", + "name": "Tradable NA Third Party Online Merchant SSTN" + }, + { + "id": "tradable-north-america-pos-lender-sstn", + "symbol": "pc0000019", + "name": "Tradable North America PoS Lender SSTN" + }, + { + "id": "tradable-singapore-fintech-ssl", + "symbol": "pc0000077", + "name": "Tradable Singapore Fintech SSL" + }, + { + "id": "tradable-singapore-fintech-ssl-2", + "symbol": "pc0000023", + "name": "Tradable Singapore Fintech SSL" + }, + { + "id": "trade-bionic", + "symbol": "onic", + "name": "Trade Bionic" + }, + { + "id": "trade-gaurd", + "symbol": "tg", + "name": "Trade Gaurd" + }, + { + "id": "trade-leaf", + "symbol": "tlf", + "name": "Tradeleaf" + }, + { + "id": "trademaster-ninja", + "symbol": "trdm", + "name": "TradeMaster.ninja" + }, + { + "id": "trader", + "symbol": "tde", + "name": "Trader" + }, + { + "id": "trader-2", + "symbol": "trader", + "name": "Agent XYZ" + }, + { + "id": "traders-coin", + "symbol": "trdc", + "name": "Traders Coin" + }, + { + "id": "traders-wallet", + "symbol": "trw", + "name": "Traders Wallet [OLD]" + }, + { + "id": "tradescoop", + "symbol": "scoop", + "name": "Tradescoop by Virtuals" + }, + { + "id": "tradesman", + "symbol": "tradie", + "name": "TRADESMAN" + }, + { + "id": "tradetomato", + "symbol": "ttm", + "name": "Tradetomato" + }, + { + "id": "tradfi-bro", + "symbol": "cfa", + "name": "Tradfi Bro" + }, + { + "id": "tradiecoin", + "symbol": "tradiecoin", + "name": "Tradiecoin" + }, + { + "id": "trading-oracle", + "symbol": "orcl", + "name": "Trading Oracle" + }, + { + "id": "trading-views", + "symbol": "tradingviews", + "name": "Trading Views" + }, + { + "id": "tradoor", + "symbol": "tradoor", + "name": "Tradoor" + }, + { + "id": "trady", + "symbol": "trady", + "name": "TRADY" + }, + { + "id": "trailblaze", + "symbol": "xblaze", + "name": "Trailblaze" + }, + { + "id": "trainingdietmax", + "symbol": "tdm", + "name": "TrainingDietMax" + }, + { + "id": "trakx", + "symbol": "trkx", + "name": "Trakx" + }, + { + "id": "tralalero-tralala", + "symbol": "tralalero", + "name": "Tralalero Tralala" + }, + { + "id": "trala-token", + "symbol": "trala", + "name": "TRALA TOKEN" + }, + { + "id": "tranche-finance", + "symbol": "slice", + "name": "Tranche Finance" + }, + { + "id": "tranchess", + "symbol": "chess", + "name": "Tranchess" + }, + { + "id": "tranchevest", + "symbol": "tranche", + "name": "TrancheVest" + }, + { + "id": "transfidelity", + "symbol": "fidel", + "name": "Transfidelity" + }, + { + "id": "transhuman-coin", + "symbol": "thc", + "name": "Transhuman Coin" + }, + { + "id": "translate", + "symbol": "translate", + "name": "TRANSLATE" + }, + { + "id": "trash-coin", + "symbol": "trash", + "name": "Trash Coin" + }, + { + "id": "trashy-by-matt-furie", + "symbol": "trashy", + "name": "Trashy By Matt Furie" + }, + { + "id": "trava-finance", + "symbol": "trava", + "name": "Trava Finance" + }, + { + "id": "traveling-to-all-50-states-live", + "symbol": "50states", + "name": "Traveling To All 50 States LIVE" + }, + { + "id": "trax", + "symbol": "trax", + "name": "TRAX" + }, + { + "id": "traxx", + "symbol": "traxx", + "name": "Traxx" + }, + { + "id": "treasure-labs-loot", + "symbol": "loot", + "name": "Treasure Labs LOOT" + }, + { + "id": "treasure-under-sea", + "symbol": "tus", + "name": "Treasure Under Sea" + }, + { + "id": "treasury-bond-eth-tokenized-stock-defichain", + "symbol": "dtlt", + "name": "iShares 20+ Year Treasury Bond ETF Defichain" + }, + { + "id": "treasury-coin", + "symbol": "treasury", + "name": "Treasury Coin" + }, + { + "id": "treat-token", + "symbol": "treat", + "name": "Treat Token" + }, + { + "id": "treble", + "symbol": "treb", + "name": "Treble" + }, + { + "id": "trebly", + "symbol": "treb", + "name": "Trebly" + }, + { + "id": "tree-capital", + "symbol": "tree", + "name": "Tree" + }, + { + "id": "treecle", + "symbol": "trcl", + "name": "Treecle" + }, + { + "id": "treehouse", + "symbol": "tree", + "name": "Treehouse" + }, + { + "id": "treehouse-avax", + "symbol": "tavax", + "name": "Treehouse AVAX" + }, + { + "id": "treehouse-eth", + "symbol": "teth", + "name": "Treehouse ETH" + }, + { + "id": "treeplanting", + "symbol": "tree", + "name": "/treeplanting" + }, + { + "id": "treeroot", + "symbol": "root", + "name": "TreeRoot" + }, + { + "id": "treescoin", + "symbol": "trees", + "name": "TreesCoin" + }, + { + "id": "tree-stuck-in-cat", + "symbol": "treeincat", + "name": "Tree Stuck in Cat" + }, + { + "id": "trellis", + "symbol": "treis", + "name": "Trellis" + }, + { + "id": "tren", + "symbol": "tren", + "name": "TREN" + }, + { + "id": "trenchai", + "symbol": "trenchai", + "name": "TrenchAI" + }, + { + "id": "trenchbuddy", + "symbol": "trench", + "name": "TrenchBuddy" + }, + { + "id": "trench-coin", + "symbol": "trench", + "name": "Trench Coin" + }, + { + "id": "trench-digger", + "symbol": "trench", + "name": "Trench Digger" + }, + { + "id": "trencher", + "symbol": "trencher", + "name": "Trencher" + }, + { + "id": "trencher-broadcasting-company", + "symbol": "tbc", + "name": "Trencher Broadcasting Company" + }, + { + "id": "trendbet", + "symbol": "tbt", + "name": "TrendBet" + }, + { + "id": "trendbot", + "symbol": "trendbot", + "name": "TrendBot" + }, + { + "id": "trendix", + "symbol": "trdx", + "name": "Trendix" + }, + { + "id": "tren-protocol-token", + "symbol": "tren", + "name": "TREN Protocol Token" + }, + { + "id": "trepe", + "symbol": "$trepe", + "name": "Trepe" + }, + { + "id": "trevee", + "symbol": "trevee", + "name": "Trevee" + }, + { + "id": "trevee-plasma-usd", + "symbol": "plusd", + "name": "Trevee Plasma USD" + }, + { + "id": "trevee-staked-plasma-usd", + "symbol": "splusd", + "name": "Trevee Staked Plasma USD" + }, + { + "id": "trex20", + "symbol": "tx20", + "name": "Trex20" + }, + { + "id": "triad", + "symbol": "trd", + "name": "Triad" + }, + { + "id": "trias-token", + "symbol": "trias", + "name": "TriasLab" + }, + { + "id": "tribal-token", + "symbol": "tribl", + "name": "Tribal Token" + }, + { + "id": "tribal-triballygames", + "symbol": "tribal", + "name": "TRIBAL" + }, + { + "id": "tribe-2", + "symbol": "tribe", + "name": "Tribe" + }, + { + "id": "tribe-3", + "symbol": "tribe", + "name": "Tribe" + }, + { + "id": "triceps", + "symbol": "trix", + "name": "Triceps" + }, + { + "id": "tridentdao", + "symbol": "psi", + "name": "TridentDAO" + }, + { + "id": "trigo", + "symbol": "trg", + "name": "TRIGO" + }, + { + "id": "trillions", + "symbol": "trillions", + "name": "Trillions" + }, + { + "id": "trillions-strategy", + "symbol": "tstr", + "name": "trillions Strategy" + }, + { + "id": "trilly", + "symbol": "trilly", + "name": "trilly" + }, + { + "id": "trinique", + "symbol": "tnq", + "name": "TNQ" + }, + { + "id": "trinity-of-the-fabled-abyss-fragment", + "symbol": "abys", + "name": "Trinity Of The Fabled Abyss Fragment" + }, + { + "id": "trio-ordinals", + "symbol": "trio", + "name": "Trio (Ordinals)" + }, + { + "id": "trip", + "symbol": "trip", + "name": "Trip" + }, + { + "id": "tri-sigma", + "symbol": "trisig", + "name": "Tri Sigma" + }, + { + "id": "trisk", + "symbol": "trisk", + "name": "TRISK" + }, + { + "id": "trisolaris", + "symbol": "tri", + "name": "Trisolaris" + }, + { + "id": "tritcoin", + "symbol": "trit", + "name": "Tritcoin" + }, + { + "id": "triton", + "symbol": "xeq", + "name": "Equilibria" + }, + { + "id": "triumph", + "symbol": "tri", + "name": "Triumph" + }, + { + "id": "triviagent-by-virtuals", + "symbol": "trivi", + "name": "TriviAgent by Virtuals" + }, + { + "id": "trivian", + "symbol": "trivia", + "name": "Trivians" + }, + { + "id": "trog", + "symbol": "trog", + "name": "Trog" + }, + { + "id": "troll", + "symbol": "troll", + "name": "Troll" + }, + { + "id": "troll-2", + "symbol": "troll", + "name": "TROLL" + }, + { + "id": "troll-2-0", + "symbol": "troll 2.0", + "name": "TROLL 2.0" + }, + { + "id": "trollcoin-2", + "symbol": "troll", + "name": "TrollCoin" + }, + { + "id": "troll-dog", + "symbol": "toby", + "name": "Troll Dog" + }, + { + "id": "troll-face", + "symbol": "troll", + "name": "Troll Face" + }, + { + "id": "trollge", + "symbol": "trollge", + "name": "TROLLGE" + }, + { + "id": "troll-house", + "symbol": "trollhouse", + "name": "Troll House" + }, + { + "id": "trolli-cto", + "symbol": "trollicto", + "name": "TROLLI CTO" + }, + { + "id": "troll-s-brother", + "symbol": "fapguy", + "name": "Troll's Brother" + }, + { + "id": "troll-s-wife", + "symbol": "trolga", + "name": "Troll's Wife" + }, + { + "id": "tron", + "symbol": "trx", + "name": "TRON" + }, + { + "id": "tron-bsc", + "symbol": "trx", + "name": "TRON (BSC)" + }, + { + "id": "tron-bull", + "symbol": "bull", + "name": "Tron Bull" + }, + { + "id": "tron-bull-coin", + "symbol": "tbull", + "name": "Tron Bull Coin" + }, + { + "id": "tron-cat", + "symbol": "tcat", + "name": "Tron Cat" + }, + { + "id": "tronches", + "symbol": "tronches", + "name": "TRONCHES" + }, + { + "id": "tronclassic", + "symbol": "trxc", + "name": "TronClassic" + }, + { + "id": "tron-mascot", + "symbol": "suntron", + "name": "TRON MASCOT" + }, + { + "id": "tronpad", + "symbol": "tronpad", + "name": "TRONPAD" + }, + { + "id": "tronstrategy", + "symbol": "strategy", + "name": "TronStrategy" + }, + { + "id": "tron-xstock", + "symbol": "tronx", + "name": "Tron xStock" + }, + { + "id": "troppy", + "symbol": "troppy", + "name": "TROPPY" + }, + { + "id": "troy", + "symbol": "troy", + "name": "TROY" + }, + { + "id": "trrue", + "symbol": "trrue", + "name": "TRRUE" + }, + { + "id": "trubadger", + "symbol": "trubgr", + "name": "TruBadger" + }, + { + "id": "true", + "symbol": "true", + "name": "TRUE" + }, + { + "id": "true-base-army", + "symbol": "tba", + "name": "True Base Army" + }, + { + "id": "truebit-protocol", + "symbol": "tru", + "name": "Truebit Protocol" + }, + { + "id": "truefi", + "symbol": "tru", + "name": "TrueFi" + }, + { + "id": "true-usd", + "symbol": "tusd", + "name": "TrueUSD" + }, + { + "id": "truffi", + "symbol": "truffi", + "name": "Truffi" + }, + { + "id": "truffle-token", + "symbol": "truff", + "name": "Truffle Token" + }, + { + "id": "trufin-staked-apt", + "symbol": "truapt", + "name": "TruFin Staked APT" + }, + { + "id": "trufin-staked-inj", + "symbol": "truinj", + "name": "TruFin Staked INJ" + }, + { + "id": "trufin-staked-matic", + "symbol": "trumatic", + "name": "TruFin Staked MATIC" + }, + { + "id": "trufin-staked-near", + "symbol": "trunear", + "name": "TruFin Staked NEAR" + }, + { + "id": "truflation", + "symbol": "truf", + "name": "TRUF.Network" + }, + { + "id": "trulink", + "symbol": "tru", + "name": "Trulink" + }, + { + "id": "trump-47", + "symbol": "47", + "name": "TRUMP 47" + }, + { + "id": "trump-ai", + "symbol": "$traimp", + "name": "Trump AI" + }, + { + "id": "trump-ai-2", + "symbol": "$trumpai", + "name": "Trump AI" + }, + { + "id": "trumpchain", + "symbol": "djt", + "name": "TrumpChain" + }, + { + "id": "trumpcoin", + "symbol": "djt", + "name": "TrumpCoin" + }, + { + "id": "trumpcoin-709b1637-4ceb-4e9e-878d-2b137bee017d", + "symbol": "dtc", + "name": "TrumpCoin" + }, + { + "id": "trump-derangement-syndrome", + "symbol": "tds", + "name": "Trump Derangement Syndrome" + }, + { + "id": "trumped-ai", + "symbol": "trumped.ai", + "name": "trumped.ai" + }, + { + "id": "trumpeffect69420", + "symbol": "trump", + "name": "TrumpEffect69420" + }, + { + "id": "trumpie", + "symbol": "trumpie", + "name": "trumpie" + }, + { + "id": "trumpius-maximus", + "symbol": "trumpius", + "name": "Trumpius Maximus" + }, + { + "id": "trumpmaga", + "symbol": "$trumaga", + "name": "TrumpMAGA" + }, + { + "id": "trump-official-dance-move", + "symbol": "shimmy", + "name": "Trump Official Dance Move" + }, + { + "id": "trump-pepe", + "symbol": "trumpe", + "name": "Trump Pepe" + }, + { + "id": "trump-s-golden-bull", + "symbol": "bull", + "name": "Trump's Golden Bull" + }, + { + "id": "trump-shuffle", + "symbol": "shuffle", + "name": "Trump Shuffle" + }, + { + "id": "trump-s-tender-tabby", + "symbol": "tabby", + "name": "Trump's Tender Tabby" + }, + { + "id": "trump-was-right-about-everything", + "symbol": "twrae", + "name": "Trump Was Right About Everything" + }, + { + "id": "trust-2", + "symbol": "trust", + "name": "TRUST" + }, + { + "id": "trusta-ai", + "symbol": "ta", + "name": "Trusta AI" + }, + { + "id": "trust-ai", + "symbol": "trt", + "name": "TRUST AI" + }, + { + "id": "trustfi-network-token", + "symbol": "tfi", + "name": "TrustFi Network" + }, + { + "id": "trust-in-nom", + "symbol": "nom", + "name": "Trust in Nom" + }, + { + "id": "trustinweb3", + "symbol": "t3ai", + "name": "trustInWeb3" + }, + { + "id": "trust-me-bro", + "symbol": "trust me bro", + "name": "trust me bro" + }, + { + "id": "trust-me-bros-by-virtuals", + "symbol": "trust", + "name": "$TRUST ME BROs by Virtuals" + }, + { + "id": "trustnft", + "symbol": "trustnft", + "name": "TrustNFT" + }, + { + "id": "trustpad-2-0", + "symbol": "tpad", + "name": "TrustPad" + }, + { + "id": "trust-protocol-ai", + "symbol": "trust", + "name": "TRUST Protocol AI" + }, + { + "id": "trustra", + "symbol": "trust", + "name": "Trustra" + }, + { + "id": "trustswap", + "symbol": "swap", + "name": "TrustSwap" + }, + { + "id": "trust-the-process", + "symbol": "trust", + "name": "Trust The Process" + }, + { + "id": "trust-trading-group", + "symbol": "ttg", + "name": "Trust Trading Group" + }, + { + "id": "trust-wallet-token", + "symbol": "twt", + "name": "Trust Wallet" + }, + { + "id": "truth", + "symbol": "truu", + "name": "Truth" + }, + { + "id": "truthaiswarm", + "symbol": "truthai", + "name": "TruthAiSwarm" + }, + { + "id": "truthchain", + "symbol": "truth", + "name": "TruthChain" + }, + { + "id": "truth-exe", + "symbol": "true", + "name": "Truth.exe" + }, + { + "id": "truthfi", + "symbol": "truthfi", + "name": "TruthFi" + }, + { + "id": "truthgpt", + "symbol": "truth", + "name": "TruthGPT" + }, + { + "id": "truth-inu", + "symbol": "$truth", + "name": "Truth Inu" + }, + { + "id": "truth-terminal-s-hentai", + "symbol": "hentai", + "name": "Truth Terminal's Hentai" + }, + { + "id": "trxde-fun", + "symbol": "trxde", + "name": "trXde.fun" + }, + { + "id": "tryc", + "symbol": "tryc", + "name": "TRYC" + }, + { + "id": "tryton", + "symbol": "trt", + "name": "TryTON" + }, + { + "id": "tshot-token", + "symbol": "tshot", + "name": "TSHOT Token" + }, + { + "id": "tsla6900", + "symbol": "tsla", + "name": "TSLA6900" + }, + { + "id": "tsmc-xstock", + "symbol": "tsmx", + "name": "TSMC xStock" + }, + { + "id": "tsotchke", + "symbol": "tsotchke", + "name": "Tsotchke" + }, + { + "id": "tsuba", + "symbol": "tsuba", + "name": "TSUBA" + }, + { + "id": "tsubasa-utilitiy-token", + "symbol": "tsubasaut", + "name": "TSUBASA Utilitiy Token" + }, + { + "id": "tsuki", + "symbol": "tsuki", + "name": "Tsuki" + }, + { + "id": "tsuki-inu", + "symbol": "tkinu", + "name": "Tsuki Inu" + }, + { + "id": "tsunami-2", + "symbol": "tsunami", + "name": "Tsunami" + }, + { + "id": "tsutsuji-doge-s-sister", + "symbol": "tsuji", + "name": "Tsutsuji Doge's Sister" + }, + { + "id": "ttai", + "symbol": "ttai", + "name": "TTAI" + }, + { + "id": "ttaj", + "symbol": "ttaj", + "name": "TTAJ" + }, + { + "id": "ttbmath-coin", + "symbol": "ttbm", + "name": "TTBMATH COIN" + }, + { + "id": "ttcoin", + "symbol": "tc", + "name": "TTcoin" + }, + { + "id": "tub", + "symbol": "tub", + "name": "tub" + }, + { + "id": "tubbi", + "symbol": "tubbi", + "name": "Tubbi" + }, + { + "id": "tucker-carlson", + "symbol": "tucker", + "name": "TUCKER CARLSON" + }, + { + "id": "tuff", + "symbol": "tuff", + "name": "Tuff" + }, + { + "id": "tuggin", + "symbol": "tuggin", + "name": "Tuggin" + }, + { + "id": "tuggin-2", + "symbol": "tuggin", + "name": "Tuggin" + }, + { + "id": "tuition-coin", + "symbol": "tuit", + "name": "Tuition Coin" + }, + { + "id": "tuki", + "symbol": "tuki", + "name": "tuki" + }, + { + "id": "tune-fm", + "symbol": "jam", + "name": "Tune.Fm" + }, + { + "id": "tung-tung-tung-sahur", + "symbol": "sahur", + "name": "Tung Tung Tung Sahur" + }, + { + "id": "tunp", + "symbol": "tunp", + "name": "TUNP$" + }, + { + "id": "tupelothedog", + "symbol": "tupelo", + "name": "tupelothedog" + }, + { + "id": "turbo", + "symbol": "turbo", + "name": "Turbo" + }, + { + "id": "turbodex", + "symbol": "turbo", + "name": "TurboDEX" + }, + { + "id": "turbo-eth", + "symbol": "teth", + "name": "Turbo ETH" + }, + { + "id": "turbomoon", + "symbol": "tmoon", + "name": "TurboMoon" + }, + { + "id": "turbos-finance", + "symbol": "turbos", + "name": "Turbos Finance" + }, + { + "id": "turbo-usd", + "symbol": "tusd", + "name": "Turbo USD" + }, + { + "id": "turbousd-unstablecoin", + "symbol": "₸usd", + "name": "TurboUSD Unstablecoin" + }, + { + "id": "turbo-win", + "symbol": "turbo", + "name": "TURBO.WIN" + }, + { + "id": "turbox", + "symbol": "tbx", + "name": "TurboX" + }, + { + "id": "turingbitchain", + "symbol": "tbc", + "name": "Turingbitchain" + }, + { + "id": "turn-your-penny-into-a-house", + "symbol": "penny", + "name": "turn your penny into a house" + }, + { + "id": "turtle-2", + "symbol": "turtle", + "name": "Turtle" + }, + { + "id": "turtle-4", + "symbol": "turtle", + "name": "Turtle" + }, + { + "id": "turtle-on-speed", + "symbol": "turt", + "name": "Turtle on Speed" + }, + { + "id": "turtsat", + "symbol": "turt", + "name": "TurtSat" + }, + { + "id": "tusd-yvault", + "symbol": "yvtusd", + "name": "TUSD yVault" + }, + { + "id": "tutellus", + "symbol": "tut", + "name": "Tutellus" + }, + { + "id": "tutorial", + "symbol": "tut", + "name": "Tutorial" + }, + { + "id": "tutut-coin", + "symbol": "tutc", + "name": "TUTUT COIN" + }, + { + "id": "tuzki", + "symbol": "tuzki", + "name": "Tuzki" + }, + { + "id": "tweet", + "symbol": "tweet", + "name": "TWEET" + }, + { + "id": "tweetdm", + "symbol": "inbox", + "name": "Inbox" + }, + { + "id": "twelve-legions", + "symbol": "ctl", + "name": "Twelve Legions" + }, + { + "id": "twelve-zodiac", + "symbol": "twelve", + "name": "Twelve Zodiac" + }, + { + "id": "twin-asset-token-aapl", + "symbol": "aapl", + "name": "TWIN ASSET TOKEN AAPL" + }, + { + "id": "twin-asset-token-coin", + "symbol": "coin", + "name": "TWIN ASSET TOKEN COIN" + }, + { + "id": "twin-asset-token-iaapl", + "symbol": "iaapl", + "name": "TWIN ASSET TOKEN iAAPL" + }, + { + "id": "twin-asset-token-icoin-short", + "symbol": "icoin", + "name": "TWIN Asset Token iCOIN short" + }, + { + "id": "twin-asset-token-imstr", + "symbol": "imstr", + "name": "TWIN ASSET TOKEN iMSTR" + }, + { + "id": "twin-asset-token-invda-short", + "symbol": "invda", + "name": "TWIN Asset Token iNVDA Short" + }, + { + "id": "twin-asset-token-mstr", + "symbol": "mstr", + "name": "TWIN ASSET TOKEN MSTR" + }, + { + "id": "twin-asset-token-nvda-long", + "symbol": "nvda", + "name": "TWIN Asset Token NVDA Long" + }, + { + "id": "twin-protocol", + "symbol": "twin", + "name": "Twin Protocol" + }, + { + "id": "twiskers", + "symbol": "twx", + "name": "Twiskers" + }, + { + "id": "twotalkingcats", + "symbol": "twocat", + "name": "TwoTalkingCats" + }, + { + "id": "twtr-fun", + "symbol": "twtr", + "name": "TWTR.fun" + }, + { + "id": "twurtle-the-turtle", + "symbol": "twurtle", + "name": "Twurtle the turtle" + }, + { + "id": "tx24", + "symbol": "txt", + "name": "Tx24" + }, + { + "id": "txn-club", + "symbol": "txn", + "name": "TXN Club" + }, + { + "id": "txsync-bridged-wsteth-zksync", + "symbol": "wsteth", + "name": "txSync Bridged wstETH (zkSync)" + }, + { + "id": "tyche-protocol", + "symbol": "tyche", + "name": "Tyche Protocol" + }, + { + "id": "tycoon-by-shareland", + "symbol": "tycoon", + "name": "Tycoon by Shareland" + }, + { + "id": "tyke-the-elephant", + "symbol": "tyke", + "name": "Tyke The Elephant" + }, + { + "id": "tyler", + "symbol": "tyler", + "name": "Tyler" + }, + { + "id": "tyler-2", + "symbol": "tyler", + "name": "Tyler" + }, + { + "id": "typeai", + "symbol": "type", + "name": "TypeAI" + }, + { + "id": "typen", + "symbol": "typen", + "name": "Typen" + }, + { + "id": "typerium", + "symbol": "type", + "name": "Typerium" + }, + { + "id": "type-shit", + "symbol": "type", + "name": "Type Shit" + }, + { + "id": "typus", + "symbol": "typus", + "name": "Typus" + }, + { + "id": "tyz-token", + "symbol": "tyz", + "name": "TYZ Token" + }, + { + "id": "u", + "symbol": "u", + "name": "U" + }, + { + "id": "ua1", + "symbol": "ua1", + "name": "UA1" + }, + { + "id": "uahg", + "symbol": "uahg", + "name": "UAHg" + }, + { + "id": "uber-ondo-tokenized-stock", + "symbol": "uberon", + "name": "Uber (Ondo Tokenized Stock)" + }, + { + "id": "uber-xstock", + "symbol": "uberx", + "name": "Uber xStock" + }, + { + "id": "ubeswap", + "symbol": "ube", + "name": "Ubeswap (OLD)" + }, + { + "id": "ubeswap-2", + "symbol": "ube", + "name": "Ubeswap" + }, + { + "id": "ubix-network", + "symbol": "ubx", + "name": "UBIX Network" + }, + { + "id": "ubs_umint_eth", + "symbol": "umint", + "name": "UBS USD Money Market Investment Fund Token" + }, + { + "id": "ubtc", + "symbol": "ubtc", + "name": "uBTC" + }, + { + "id": "ubxs-token", + "symbol": "ubxs", + "name": "UBXS" + }, + { + "id": "ucf-finance", + "symbol": "ucf", + "name": "UCF Finance" + }, + { + "id": "uchain-2", + "symbol": "ucn", + "name": "UCHAIN" + }, + { + "id": "ucit", + "symbol": "ucit", + "name": "UCIT" + }, + { + "id": "u-coin", + "symbol": "u", + "name": "U Coin" + }, + { + "id": "ucon-social", + "symbol": "ucon", + "name": "Ucon Social" + }, + { + "id": "ucrowdme", + "symbol": "ucm", + "name": "UCROWDME" + }, + { + "id": "ucx", + "symbol": "ucx", + "name": "UCX" + }, + { + "id": "udao", + "symbol": "udao", + "name": "UDAO" + }, + { + "id": "udder-chaos-milk", + "symbol": "milk", + "name": "MILK" + }, + { + "id": "udinese-calcio-fan-token", + "symbol": "udi", + "name": "Udinese Calcio Fan Token" + }, + { + "id": "uerii", + "symbol": "uerii", + "name": "UERII" + }, + { + "id": "ufc-fan-token", + "symbol": "ufc", + "name": "UFC Fan Token" + }, + { + "id": "ufo-gaming", + "symbol": "ufo", + "name": "UFO Gaming" + }, + { + "id": "ufopepe", + "symbol": "ufo", + "name": "UFOPEPE" + }, + { + "id": "ufo-token", + "symbol": "ufo", + "name": "UFO Token" + }, + { + "id": "ufundotapp", + "symbol": "ufun", + "name": "ufunapp" + }, + { + "id": "uggo", + "symbol": "uggo", + "name": "UGGO" + }, + { + "id": "ugly-dog", + "symbol": "uglydog", + "name": "Ugly Dog" + }, + { + "id": "ugold-inc", + "symbol": "ugold", + "name": "UGOLD Inc." + }, + { + "id": "uhive", + "symbol": "hve2", + "name": "Uhive" + }, + { + "id": "uiui", + "symbol": "ui", + "name": "UIUI" + }, + { + "id": "ulord", + "symbol": "ut", + "name": "Ulord" + }, + { + "id": "ultima", + "symbol": "ultima", + "name": "Ultima" + }, + { + "id": "ultimo", + "symbol": "ultimo", + "name": "ULTIMO" + }, + { + "id": "ultiverse", + "symbol": "ulti", + "name": "Ultiverse" + }, + { + "id": "ultra", + "symbol": "uos", + "name": "Ultra" + }, + { + "id": "ultracapital-yeth", + "symbol": "yeth", + "name": "Ultracapital yETH" + }, + { + "id": "ultragate", + "symbol": "ulg", + "name": "Ultragate" + }, + { + "id": "ultrapro", + "symbol": "upro", + "name": "Ultrapro" + }, + { + "id": "ultrasafe", + "symbol": "ultra", + "name": "UltraSafe" + }, + { + "id": "ultrasolid", + "symbol": "us", + "name": "UltraSolid" + }, + { + "id": "ultraxrp", + "symbol": "ultraxrp", + "name": "UltraXRP" + }, + { + "id": "ultron", + "symbol": "ulx", + "name": "ULTRON" + }, + { + "id": "uma", + "symbol": "uma", + "name": "UMA" + }, + { + "id": "umbra", + "symbol": "umbra", + "name": "Umbra" + }, + { + "id": "umbrella-network", + "symbol": "umb", + "name": "Umbrella Network" + }, + { + "id": "ume", + "symbol": "ume", + "name": "UME" + }, + { + "id": "umee", + "symbol": "ux", + "name": "UX Chain" + }, + { + "id": "umi-2", + "symbol": "umi", + "name": "Umi" + }, + { + "id": "umi-digital", + "symbol": "umi", + "name": "Umi Digital" + }, + { + "id": "unagii-dai", + "symbol": "udai", + "name": "Unagii Dai" + }, + { + "id": "unagii-eth", + "symbol": "ueth", + "name": "Unagii ETH" + }, + { + "id": "unagii-tether-usd", + "symbol": "uusdt", + "name": "Unagii Tether USD" + }, + { + "id": "unagii-usd-coin", + "symbol": "uusdc", + "name": "Unagii USD Coin" + }, + { + "id": "unagii-wrapped-bitcoin", + "symbol": "uwbtc", + "name": "Unagii Wrapped Bitcoin" + }, + { + "id": "unagi-token", + "symbol": "una", + "name": "Unagi Token" + }, + { + "id": "unamano", + "symbol": "whypad", + "name": "Unamano" + }, + { + "id": "unbagging-the-ocean", + "symbol": "unbagged", + "name": "Unbagging The Ocean" + }, + { + "id": "unbanked", + "symbol": "unbnk", + "name": "Unbanked" + }, + { + "id": "uncap-usd", + "symbol": "usdu", + "name": "Uncap USD" + }, + { + "id": "unchained", + "symbol": "unchained", + "name": "Unchained" + }, + { + "id": "unchain-x", + "symbol": "unx", + "name": "Unchain X" + }, + { + "id": "uncharted", + "symbol": "u", + "name": "Uncharted" + }, + { + "id": "uncle-sam", + "symbol": "usam", + "name": "Uncle Sam" + }, + { + "id": "uncommon-goods", + "symbol": "uncommongoods", + "name": "UNCOMMON•GOODS" + }, + { + "id": "undead-blocks", + "symbol": "undead", + "name": "Undead Blocks" + }, + { + "id": "undeads-games", + "symbol": "uds", + "name": "Undeads Games" + }, + { + "id": "underdog", + "symbol": "underdog", + "name": "Underdog" + }, + { + "id": "underworld", + "symbol": "udw", + "name": "Underworld" + }, + { + "id": "unemployed-coin", + "symbol": "unemployed", + "name": "UNEMPLOYED COIN" + }, + { + "id": "unfederalreserve", + "symbol": "ersdl", + "name": "Residual Token" + }, + { + "id": "unfk", + "symbol": "$unfk", + "name": "UNFK" + }, + { + "id": "ungraduate-gamer", + "symbol": "ugg", + "name": "Ungraduate Gamer" + }, + { + "id": "uni", + "symbol": "uni", + "name": "Uni" + }, + { + "id": "uniart", + "symbol": "uniart", + "name": "UNIART" + }, + { + "id": "unibase", + "symbol": "ub", + "name": "Unibase" + }, + { + "id": "unibit", + "symbol": "uibt", + "name": "Unibit" + }, + { + "id": "unibot", + "symbol": "unibot", + "name": "Unibot" + }, + { + "id": "unibright", + "symbol": "ubt", + "name": "Unibright" + }, + { + "id": "unibros", + "symbol": "unibros", + "name": "UNIBROS" + }, + { + "id": "unice", + "symbol": "unice", + "name": "UNICE" + }, + { + "id": "unich", + "symbol": "un", + "name": "Unich" + }, + { + "id": "unichain-bridged-usdt-unichain", + "symbol": "usdt", + "name": "Unichain Bridged USDT (Unichain)" + }, + { + "id": "unichain-bridged-wbtc-unichain-2", + "symbol": "wbtc", + "name": "Unichain Bridged WBTC (Unichain)" + }, + { + "id": "unichain-bridged-weth-unichain", + "symbol": "weth", + "name": "Unichain Bridged WETH (Unichain)" + }, + { + "id": "unicorn-3", + "symbol": "uwu", + "name": "Unicorn" + }, + { + "id": "unicorn-4", + "symbol": "unicorn", + "name": "Unicorn" + }, + { + "id": "unicorn-5", + "symbol": "unicorn", + "name": "Unicorn" + }, + { + "id": "unicorn-fart-dust", + "symbol": "ufd", + "name": "Unicorn Fart Dust" + }, + { + "id": "unicorn-meat", + "symbol": "w🍖", + "name": "Unicorn Meat" + }, + { + "id": "unicorn-metaverse", + "symbol": "universe", + "name": "Unicorn Metaverse" + }, + { + "id": "unicorn-pussy", + "symbol": "up", + "name": "Unicorn Pussy" + }, + { + "id": "unicorn-token", + "symbol": "uni", + "name": "UNICORN" + }, + { + "id": "unicorn-ultra", + "symbol": "u2u", + "name": "U2U Network" + }, + { + "id": "unicrypt-2", + "symbol": "uncx", + "name": "UNCX Network" + }, + { + "id": "unidentified-anomalous-phenomena", + "symbol": "uap", + "name": "Unidentified Anomalous Phenomena" + }, + { + "id": "unidex", + "symbol": "unidx", + "name": "UniDex" + }, + { + "id": "unido-ep", + "symbol": "udo", + "name": "Unido" + }, + { + "id": "unifai-network", + "symbol": "uai", + "name": "UnifAI Network" + }, + { + "id": "unifi-2", + "symbol": "unifi", + "name": "UNIFI" + }, + { + "id": "unification", + "symbol": "fund", + "name": "Unification" + }, + { + "id": "unified-restaked-lst", + "symbol": "urlrt", + "name": "Unified Restaked LST" + }, + { + "id": "unifi-protocol-dao", + "symbol": "unfi", + "name": "Unifi Protocol DAO" + }, + { + "id": "unilab-network", + "symbol": "ulab", + "name": "Unilab" + }, + { + "id": "unilayer", + "symbol": "layer", + "name": "UniLayer" + }, + { + "id": "unio-coin", + "symbol": "unio", + "name": "Unio Coin" + }, + { + "id": "union-2", + "symbol": "u", + "name": "Union" + }, + { + "id": "union-protocol-governance-token", + "symbol": "unn", + "name": "UNION Protocol Governance" + }, + { + "id": "unipoly", + "symbol": "unp", + "name": "Unipoly" + }, + { + "id": "uniq-digital-coin", + "symbol": "udc", + "name": "Uniq Digital Coin" + }, + { + "id": "unique-network", + "symbol": "unq", + "name": "Unique Network" + }, + { + "id": "unique-one", + "symbol": "rare", + "name": "Unique One" + }, + { + "id": "unique-utility-token", + "symbol": "unqt", + "name": "Unique Utility" + }, + { + "id": "unirouter", + "symbol": "uro", + "name": "UniRouter" + }, + { + "id": "unisocks", + "symbol": "socks", + "name": "Unisocks" + }, + { + "id": "unistake", + "symbol": "unistake", + "name": "Unistake" + }, + { + "id": "uniswap", + "symbol": "uni", + "name": "Uniswap" + }, + { + "id": "uniswap-wormhole", + "symbol": "uni", + "name": "Uniswap (Wormhole)" + }, + { + "id": "unit", + "symbol": "$unit", + "name": "UNIT" + }, + { + "id": "unit0", + "symbol": "unit0", + "name": "Unit0" + }, + { + "id": "unit-00-rei", + "symbol": "rei", + "name": "Rei" + }, + { + "id": "unit-bitcoin", + "symbol": "ubtc", + "name": "Unit Bitcoin" + }, + { + "id": "unit-dao", + "symbol": "un", + "name": "UNIT DAO" + }, + { + "id": "unite-2", + "symbol": "unite", + "name": "Unite" + }, + { + "id": "united-base-postal", + "symbol": "ubps", + "name": "United Base Postal" + }, + { + "id": "unitedcoin", + "symbol": "units", + "name": "UnitedCoin" + }, + { + "id": "unitedhealth-ondo-tokenized-stock", + "symbol": "unhon", + "name": "UnitedHealth (Ondo Tokenized Stock)" + }, + { + "id": "unitedhealth-xstock", + "symbol": "unhx", + "name": "UnitedHealth xStock" + }, + { + "id": "united-states-dominant-peg", + "symbol": "usdp", + "name": "United States Dominant Peg" + }, + { + "id": "unitedstates-national-debt-coin", + "symbol": "usndc", + "name": "UnitedStates National Debt Coin" + }, + { + "id": "united-states-of-memerica", + "symbol": "memerica", + "name": "United States of Memerica" + }, + { + "id": "unite-the-kingdom", + "symbol": "utk", + "name": "UNITE THE KINGDOM" + }, + { + "id": "unit-ethereum", + "symbol": "ueth", + "name": "Unit Ethereum" + }, + { + "id": "unit-fartcoin", + "symbol": "ufart", + "name": "Unit Fartcoin" + }, + { + "id": "unit-network", + "symbol": "unit", + "name": "Unit Network" + }, + { + "id": "uniton-token", + "symbol": "utn", + "name": "Uniton Token" + }, + { + "id": "unit-plasma", + "symbol": "uxpl", + "name": "Unit Plasma" + }, + { + "id": "unit-pump", + "symbol": "upump", + "name": "Unit Pump" + }, + { + "id": "unitrade", + "symbol": "trade", + "name": "Unitrade" + }, + { + "id": "units-network-bridged-usdt-units-network", + "symbol": "usdt", + "name": "Unit0 Network Bridged USDT (Unit0 Network)" + }, + { + "id": "unit-solana", + "symbol": "usol", + "name": "Unit Solana" + }, + { + "id": "unitus", + "symbol": "uis", + "name": "Unitus" + }, + { + "id": "unity-2", + "symbol": "uty", + "name": "Unity" + }, + { + "id": "unitymeta-token", + "symbol": "umt", + "name": "UnityMeta Token" + }, + { + "id": "unityventures", + "symbol": "uv", + "name": "Unityventures" + }, + { + "id": "unityx", + "symbol": "utx", + "name": "UNITYX" + }, + { + "id": "universal-basic-compute", + "symbol": "ubc", + "name": "Universal Basic Compute" + }, + { + "id": "universal-basic-income", + "symbol": "ubi", + "name": "Universal Basic Income" + }, + { + "id": "universal-btc", + "symbol": "unibtc", + "name": "Universal BTC" + }, + { + "id": "universal-contact", + "symbol": "cwf", + "name": "Universal Contact" + }, + { + "id": "universal-eth", + "symbol": "unieth", + "name": "Universal ETH" + }, + { + "id": "universal-health-token", + "symbol": "uht", + "name": "Universal Health Token" + }, + { + "id": "universal-operating-system", + "symbol": "$uos", + "name": "Universal Operating System [OLD]" + }, + { + "id": "universal-operating-system-2", + "symbol": "$uos", + "name": "Universal Operating System" + }, + { + "id": "universal-usdc", + "symbol": "uusdc", + "name": "Universal USDC" + }, + { + "id": "universe-boss-coin", + "symbol": "ubc", + "name": "Universe Boss Coin" + }, + { + "id": "universe-of-gamers", + "symbol": "uog", + "name": "Universe Of Gamers" + }, + { + "id": "universe-xyz", + "symbol": "xyz", + "name": "Universe.XYZ" + }, + { + "id": "uniwhale", + "symbol": "unw", + "name": "Uniwhale" + }, + { + "id": "unix", + "symbol": "unix", + "name": "UniX" + }, + { + "id": "uni-yvault", + "symbol": "yvuni", + "name": "UNI yVault" + }, + { + "id": "unizen", + "symbol": "zcx", + "name": "Unizen" + }, + { + "id": "unknown-ai", + "symbol": "unai", + "name": "Unknown AI" + }, + { + "id": "unleashclub", + "symbol": "unleash", + "name": "UnleashClub" + }, + { + "id": "unlend-finance", + "symbol": "uft", + "name": "UniLend Finance" + }, + { + "id": "unlockprotocoltoken", + "symbol": "up", + "name": "UnlockProtocolToken" + }, + { + "id": "unlucky-2", + "symbol": "unlucky", + "name": "UNLUCKY" + }, + { + "id": "unmarshal", + "symbol": "marsh", + "name": "Unmarshal" + }, + { + "id": "uno", + "symbol": "uno", + "name": "Uno" + }, + { + "id": "unobtanium", + "symbol": "uno", + "name": "Unobtanium" + }, + { + "id": "uno-re", + "symbol": "uno", + "name": "Lunos" + }, + { + "id": "unreal-finance", + "symbol": "ugt", + "name": "Unreal Finance" + }, + { + "id": "unseen", + "symbol": "uncn", + "name": "Unseen" + }, + { + "id": "unsheth", + "symbol": "ush", + "name": "unshETHing_Token" + }, + { + "id": "unstable-coin", + "symbol": "usduc", + "name": "Unstable Coin" + }, + { + "id": "unstable-cult", + "symbol": "usc", + "name": "Unstable Cult" + }, + { + "id": "unstable-cult-2", + "symbol": "usc", + "name": "Unstable Cult" + }, + { + "id": "unstable-dark-coin", + "symbol": "usdark", + "name": "unstable dark coin" + }, + { + "id": "unstable-states-dollar", + "symbol": "usd", + "name": "Unstable States Dollar" + }, + { + "id": "unstable-tether", + "symbol": "usdut", + "name": "Unstable Tether" + }, + { + "id": "unstable-tit", + "symbol": "ust", + "name": "Unstable Tit" + }, + { + "id": "uns-token", + "symbol": "uns", + "name": "UNS Token" + }, + { + "id": "unstoppable-coin", + "symbol": "uc", + "name": "unstoppable coin" + }, + { + "id": "unvaxxed-sperm-2", + "symbol": "unvaxsperm", + "name": "Unvaxxed Sperm" + }, + { + "id": "unvest", + "symbol": "unv", + "name": "Unvest" + }, + { + "id": "unwa", + "symbol": "unwa", + "name": "unwa" + }, + { + "id": "uomi", + "symbol": "uomi", + "name": "UOMI" + }, + { + "id": "up", + "symbol": "up", + "name": "TonUP" + }, + { + "id": "up-and-to-the-right", + "symbol": "upright", + "name": "UP AND TO THE RIGHT" + }, + { + "id": "upbots", + "symbol": "mbxn", + "name": "UpBots Token" + }, + { + "id": "upcx", + "symbol": "upc", + "name": "UPCX" + }, + { + "id": "updog", + "symbol": "updog", + "name": "UpDog" + }, + { + "id": "updog-apt", + "symbol": "updog", + "name": "UPDOG" + }, + { + "id": "upgrates", + "symbol": "upg", + "name": "Upgrates" + }, + { + "id": "upheaval", + "symbol": "uphl", + "name": "Upheaval Finance" + }, + { + "id": "upland", + "symbol": "sparklet", + "name": "Upland" + }, + { + "id": "uplift", + "symbol": "lift", + "name": "Uplift" + }, + { + "id": "uponly-token", + "symbol": "upo", + "name": "UpOnly" + }, + { + "id": "upril", + "symbol": "upril", + "name": "Upril" + }, + { + "id": "uprock", + "symbol": "upt", + "name": "UpRock" + }, + { + "id": "upsidedowncat-2", + "symbol": "usdcat", + "name": "upsidedowncat" + }, + { + "id": "upside-down-meme", + "symbol": "wewe", + "name": "WEWECOIN" + }, + { + "id": "upsorber", + "symbol": "up", + "name": "Upsorber" + }, + { + "id": "upstabletoken", + "symbol": "ustx", + "name": "UpStable" + }, + { + "id": "upstarty", + "symbol": "upy", + "name": "Upsmarty" + }, + { + "id": "uptober", + "symbol": "uptober", + "name": "UPTOBER" + }, + { + "id": "uptober-2", + "symbol": "uptober", + "name": "Uptober" + }, + { + "id": "uptober-3", + "symbol": "uptober", + "name": "Uptober" + }, + { + "id": "up-token-2", + "symbol": "up", + "name": "uP Token" + }, + { + "id": "uptop", + "symbol": "uptop", + "name": "UpTop" + }, + { + "id": "uptos", + "symbol": "uptos", + "name": "UPTOS" + }, + { + "id": "upup-space", + "symbol": "upp", + "name": "Upup Space" + }, + { + "id": "upvember", + "symbol": "upvember", + "name": "UPVEMBER" + }, + { + "id": "upx", + "symbol": "upx", + "name": "uPX" + }, + { + "id": "uquid-coin", + "symbol": "uqc", + "name": "Uquid Coin" + }, + { + "id": "ura-dex", + "symbol": "ura", + "name": "Ura" + }, + { + "id": "uranium", + "symbol": "xu3o8", + "name": "Uranium" + }, + { + "id": "uraniumx", + "symbol": "urx", + "name": "UraniumX" + }, + { + "id": "uranus-2", + "symbol": "uranus", + "name": "URANUS" + }, + { + "id": "uranus-3", + "symbol": "urs", + "name": "Uranus" + }, + { + "id": "uranus-4", + "symbol": "uranus", + "name": "Uranus" + }, + { + "id": "uranus-dex", + "symbol": "ura", + "name": "Uranus DEX" + }, + { + "id": "uranus-sol", + "symbol": "anus", + "name": "URANUS (SOL)" + }, + { + "id": "ureeqa", + "symbol": "urqa", + "name": "UREEQA" + }, + { + "id": "urim", + "symbol": "urim", + "name": "Urim" + }, + { + "id": "urmom", + "symbol": "urmom", + "name": "URMOM" + }, + { + "id": "urmom-2", + "symbol": "urmom", + "name": "urmom" + }, + { + "id": "urmom-3", + "symbol": "urmom", + "name": "urmom" + }, + { + "id": "urolithin-a", + "symbol": "$uro", + "name": "Urolithin A" + }, + { + "id": "urus-token", + "symbol": "urus", + "name": "Aurox" + }, + { + "id": "usacoin", + "symbol": "usacoin", + "name": "USAcoin" + }, + { + "id": "usai", + "symbol": "usai", + "name": "USAi" + }, + { + "id": "usaid", + "symbol": "usaid", + "name": "USAID" + }, + { + "id": "us-ambassador-animal-cruelty-law", + "symbol": "reba", + "name": "US Ambassador Animal Cruelty Law" + }, + { + "id": "usbd", + "symbol": "$usbd", + "name": "USBD" + }, + { + "id": "usd", + "symbol": "usd+", + "name": "Overnight.fi USD+" + }, + { + "id": "usd0-liquid-bond", + "symbol": "usd0++", + "name": "Staked USD0" + }, + { + "id": "usd1", + "symbol": "usd1", + "name": "USD1 [Old]" + }, + { + "id": "usd1doge", + "symbol": "usd1doge", + "name": "USD1DOGE" + }, + { + "id": "usd1-wlfi", + "symbol": "usd1", + "name": "USD1" + }, + { + "id": "usd2-usd2", + "symbol": "usd2", + "name": "USD2 (USD2)" + }, + { + "id": "usda-2", + "symbol": "usda", + "name": "USDa" + }, + { + "id": "usda-3", + "symbol": "usda", + "name": "USDA" + }, + { + "id": "usdai", + "symbol": "usdai", + "name": "USDai" + }, + { + "id": "usdb", + "symbol": "usdb", + "name": "USDB" + }, + { + "id": "usd-bit", + "symbol": "usdbit", + "name": "USD BIT" + }, + { + "id": "usdbr", + "symbol": "usdbr", + "name": "USDbr" + }, + { + "id": "usd-coin", + "symbol": "usdc", + "name": "USDC" + }, + { + "id": "usd-coin-avalanche-bridged-usdc-e", + "symbol": "usdc.e", + "name": "Avalanche Bridged USDC (Avalanche)" + }, + { + "id": "usd-coin-bridged-zed20", + "symbol": "usdc.z", + "name": "ZEDX Bridged USDC (Zedxion)" + }, + { + "id": "usd-coin-celer", + "symbol": "ceusdc", + "name": "Bridged USD Coin (Celer)" + }, + { + "id": "usd-coin-ethereum-bridged", + "symbol": "usdc.e", + "name": "Arbitrum Bridged USDC (Arbitrum)" + }, + { + "id": "usd-coin-pulsechain", + "symbol": "usdc", + "name": "Bridged USD Coin (PulseChain)" + }, + { + "id": "usd-coinvertible", + "symbol": "usdcv", + "name": "USD CoinVertible" + }, + { + "id": "usd-coin-wormhole-bnb", + "symbol": "usdcbnb", + "name": "Bridged USD Coin (Wormhole BNB)" + }, + { + "id": "usd-coin-wormhole-from-ethereum", + "symbol": "usdcet", + "name": "Bridged USD Coin (Wormhole Ethereum)" + }, + { + "id": "usdc-plus-overnight", + "symbol": "usdc+", + "name": "Overnight.fi USDC+" + }, + { + "id": "usdc-rainbow-bridge", + "symbol": "usdc.e", + "name": "Rainbow Bridged USDC (Near)" + }, + { + "id": "usdc-reflect", + "symbol": "usdc+", + "name": "Reflect USDC+" + }, + { + "id": "usdc-yvault", + "symbol": "yvusdc", + "name": "USDC yVault" + }, + { + "id": "usdd", + "symbol": "usdd", + "name": "USDD" + }, + { + "id": "usd-dwin", + "symbol": "usdw", + "name": "USD DWIN" + }, + { + "id": "usde-2", + "symbol": "usde", + "name": "USDE (ERD)" + }, + { + "id": "usdebt", + "symbol": "usdebt", + "name": "USDEBT" + }, + { + "id": "us-degen-index-6900", + "symbol": "dxy", + "name": "US Degen Index 6900" + }, + { + "id": "usdex-8136b88a-eceb-4eaf-b910-9578cbc70136", + "symbol": "usdex+", + "name": "USDEX+" + }, + { + "id": "usdfc", + "symbol": "usdfc", + "name": "USDFC" + }, + { + "id": "usdfi", + "symbol": "usdfi", + "name": "USDFI" + }, + { + "id": "usdfi-stable", + "symbol": "stable", + "name": "Stable" + }, + { + "id": "usdh", + "symbol": "usdh", + "name": "USDH" + }, + { + "id": "usdh-2", + "symbol": "usdh", + "name": "USDH" + }, + { + "id": "usdm-2", + "symbol": "usdm", + "name": "USDM" + }, + { + "id": "usd-mapped-token", + "symbol": "usdm", + "name": "USD Mapped Token" + }, + { + "id": "usd-mars", + "symbol": "usdm", + "name": "USD Mars" + }, + { + "id": "usds", + "symbol": "usds", + "name": "USDS" + }, + { + "id": "usdt0", + "symbol": "usdt0", + "name": "USDT0" + }, + { + "id": "usdtb", + "symbol": "usdtb", + "name": "USDtb" + }, + { + "id": "usdtez", + "symbol": "usdtz", + "name": "USDtez" + }, + { + "id": "usdtplus", + "symbol": "usdt+", + "name": "Overnight.fi USDT+" + }, + { + "id": "usdt-yvault", + "symbol": "yvusdt", + "name": "USDT yVault" + }, + { + "id": "usdu", + "symbol": "usdu", + "name": "USDu" + }, + { + "id": "usdv-2", + "symbol": "usdv", + "name": "USDV" + }, + { + "id": "usdv-3", + "symbol": "usdv", + "name": "USDV" + }, + { + "id": "usd-wink", + "symbol": "usdw", + "name": "USD WINK" + }, + { + "id": "usdx", + "symbol": "usdx", + "name": "USDX" + }, + { + "id": "usdx-money-staked-usdx", + "symbol": "susdx", + "name": "Stables Labs Staked USDX" + }, + { + "id": "usdx-money-usdx", + "symbol": "usdx", + "name": "Stables Labs USDX" + }, + { + "id": "usdz", + "symbol": "usdz", + "name": "USDZ" + }, + { + "id": "useful-coin", + "symbol": "commodity", + "name": "useful coin" + }, + { + "id": "useful-coin-2", + "symbol": "useful", + "name": "USEFUL COIN" + }, + { + "id": "useless-3", + "symbol": "useless", + "name": "Useless Coin" + }, + { + "id": "useless-ai", + "symbol": "ailess", + "name": "USELESS AI" + }, + { + "id": "uselessani", + "symbol": "uselessani", + "name": "UselessAni" + }, + { + "id": "useless-blockchain", + "symbol": "usb", + "name": "Useless Blockchain" + }, + { + "id": "useless-coin", + "symbol": "useless", + "name": "USELESS COIN" + }, + { + "id": "ushark", + "symbol": "ushark", + "name": "uShark Token" + }, + { + "id": "ushi", + "symbol": "ushi", + "name": "Ushi" + }, + { + "id": "usic", + "symbol": "usi", + "name": "USIC" + }, + { + "id": "usk", + "symbol": "usk", + "name": "USK" + }, + { + "id": "usmeme", + "symbol": "usm", + "name": "USMeme" + }, + { + "id": "us-nerite-dollar", + "symbol": "usnd", + "name": "US Nerite Dollar" + }, + { + "id": "uspepe", + "symbol": "uspepe", + "name": "Uspepe" + }, + { + "id": "us-permissionless-dollar", + "symbol": "uspd", + "name": "US Permissionless Dollar" + }, + { + "id": "ussi", + "symbol": "ussi", + "name": "USSI" + }, + { + "id": "ustbl-tokenized-u-s-treasury-bill", + "symbol": "ustbl", + "name": "USTBL (Tokenized U.S. Treasury Bill)" + }, + { + "id": "ustream-coin", + "symbol": "ustream", + "name": "Ustream Coin" + }, + { + "id": "usual", + "symbol": "usual", + "name": "Usual" + }, + { + "id": "usual-eur", + "symbol": "eur0", + "name": "Usual EUR" + }, + { + "id": "usual-star", + "symbol": "usual*", + "name": "USUAL Star" + }, + { + "id": "usual-usd", + "symbol": "usd0", + "name": "Usual USD" + }, + { + "id": "usualx", + "symbol": "usualx", + "name": "USUALx" + }, + { + "id": "usud", + "symbol": "usud", + "name": "USUD" + }, + { + "id": "us-usach", + "symbol": "usach", + "name": "Us Usach" + }, + { + "id": "usx", + "symbol": "usx", + "name": "USX" + }, + { + "id": "utgard", + "symbol": "utg", + "name": "Utgard" + }, + { + "id": "utility-ape", + "symbol": "$banana", + "name": "Utility Ape" + }, + { + "id": "utility-coin", + "symbol": "utility", + "name": "Utility Coin" + }, + { + "id": "utility-nexusmind", + "symbol": "unmd", + "name": "Utility NexusMind" + }, + { + "id": "utility-web3shot", + "symbol": "uw3s", + "name": "Utility Web3Shot" + }, + { + "id": "uton", + "symbol": "uton", + "name": "uTON" + }, + { + "id": "utopia-3", + "symbol": "utopia", + "name": "Utopia" + }, + { + "id": "utrade", + "symbol": "utt", + "name": "uTrade" + }, + { + "id": "utrust", + "symbol": "utk", + "name": "Utrust" + }, + { + "id": "utu-coin", + "symbol": "utu", + "name": "UTU Coin" + }, + { + "id": "utya", + "symbol": "utya", + "name": "Utya" + }, + { + "id": "utya-black", + "symbol": "utyab", + "name": "UTYABSWAP" + }, + { + "id": "uwon", + "symbol": "uwon", + "name": "UWON" + }, + { + "id": "uwu", + "symbol": "uwu", + "name": "uwu" + }, + { + "id": "uwu-69", + "symbol": "uwu69", + "name": "UWU 69" + }, + { + "id": "uxd-stablecoin", + "symbol": "uxd", + "name": "UXD Stablecoin" + }, + { + "id": "uxlink", + "symbol": "uxlink", + "name": "UXLINK" + }, + { + "id": "v2ex", + "symbol": "v2ex", + "name": "V2EX" + }, + { + "id": "vabble-2", + "symbol": "vfx", + "name": "Vabble" + }, + { + "id": "vaderai-by-virtuals", + "symbol": "vader", + "name": "Vader" + }, + { + "id": "vader-protocol", + "symbol": "vader", + "name": "Vader Protocol" + }, + { + "id": "vai", + "symbol": "vai", + "name": "Vai" + }, + { + "id": "vainguard", + "symbol": "vain", + "name": "Vainguard" + }, + { + "id": "vaiot", + "symbol": "vai", + "name": "VAIOT" + }, + { + "id": "vala-capital-markets", + "symbol": "vcm", + "name": "VALA CAPITAL MARKETS" + }, + { + "id": "valencia-cf-fan-token", + "symbol": "vcf", + "name": "Valencia CF Fan Token" + }, + { + "id": "valentine", + "symbol": "valentine", + "name": "Valentine" + }, + { + "id": "valentine-floki", + "symbol": "toshe", + "name": "TOSHE" + }, + { + "id": "valentine-grok-companion", + "symbol": "valentine", + "name": "Valentine Grok Companion" + }, + { + "id": "valentine-grok-companion-2", + "symbol": "valentine", + "name": "Valentine Grok Companion" + }, + { + "id": "valentine-grok-companion-3", + "symbol": "valentine", + "name": "Valentine Grok Companion" + }, + { + "id": "valentine-michael-smith", + "symbol": "valentine", + "name": "Valentine Michael Smith" + }, + { + "id": "valhalla-index", + "symbol": "odin", + "name": "Odin Liquidity Network" + }, + { + "id": "validao", + "symbol": "vdo", + "name": "ValiDAO" + }, + { + "id": "valinity", + "symbol": "vy", + "name": "Valinity" + }, + { + "id": "valleydao", + "symbol": "grow", + "name": "ValleyDAO" + }, + { + "id": "valor-2", + "symbol": "valor", + "name": "VALOR" + }, + { + "id": "valtoro", + "symbol": "valtoro", + "name": "VALTORO" + }, + { + "id": "value-liquidity", + "symbol": "value", + "name": "Value DeFi" + }, + { + "id": "valyr", + "symbol": "valyr", + "name": "Valyr" + }, + { + "id": "vampaire-squid", + "symbol": "vs", + "name": "vampAIre squid" + }, + { + "id": "vana", + "symbol": "vana", + "name": "Vana" + }, + { + "id": "vanar-chain", + "symbol": "vanry", + "name": "Vanar Chain" + }, + { + "id": "vaneck-treasury-fund", + "symbol": "vbill", + "name": "VanEck Treasury Fund" + }, + { + "id": "vanguard-xstock", + "symbol": "vtix", + "name": "Vanguard xStock" + }, + { + "id": "vanilla-2", + "symbol": "bum", + "name": "Vanilla" + }, + { + "id": "vanity", + "symbol": "vny", + "name": "Vanity" + }, + { + "id": "vanity-2", + "symbol": "vnty", + "name": "Vanity" + }, + { + "id": "vankedisi", + "symbol": "vankedisi", + "name": "vankedisi" + }, + { + "id": "vanta", + "symbol": "vanta", + "name": "VANTA" + }, + { + "id": "vantum", + "symbol": "vantum", + "name": "Vantum" + }, + { + "id": "vape", + "symbol": "vape", + "name": "VAPE" + }, + { + "id": "vapor", + "symbol": "vapor", + "name": "Vapor" + }, + { + "id": "vaporfi", + "symbol": "vape", + "name": "VAPE" + }, + { + "id": "vapornodes", + "symbol": "vpnd", + "name": "VaporNodes" + }, + { + "id": "vapor-wallet", + "symbol": "vpr", + "name": "VaporFund" + }, + { + "id": "vaporwave", + "symbol": "vwave", + "name": "Vaporwave" + }, + { + "id": "vara-network", + "symbol": "vara", + "name": "Vara Network" + }, + { + "id": "vasco-da-gama-fan-token", + "symbol": "vasco", + "name": "Vasco da Gama Fan Token" + }, + { + "id": "vatan", + "symbol": "vatan", + "name": "Vatan" + }, + { + "id": "vatican-mascot", + "symbol": "luce", + "name": "Vatican Mascot" + }, + { + "id": "vault-2", + "symbol": "v", + "name": "Vault" + }, + { + "id": "vaulta", + "symbol": "a", + "name": "Vaulta" + }, + { + "id": "vaultbridge-bridged-eth-katana", + "symbol": "vbeth", + "name": "VaultBridge Bridged ETH (Katana)" + }, + { + "id": "vaultbridge-bridged-usdc-katana", + "symbol": "vbusdc", + "name": "VaultBridge Bridged USDC (Katana)" + }, + { + "id": "vaultbridge-bridged-usdt-katana", + "symbol": "vbusdt", + "name": "VaultBridge Bridged USDT (Katana)" + }, + { + "id": "vaultbridge-bridged-wbtc-katana", + "symbol": "vbwbtc", + "name": "VaultBridge Bridged WBTC (Katana)" + }, + { + "id": "vaultec", + "symbol": "vlt", + "name": "Vaultec" + }, + { + "id": "vault-finance", + "symbol": "vfi", + "name": "Vault Finance" + }, + { + "id": "vaultka", + "symbol": "vka", + "name": "Vaultka" + }, + { + "id": "vaultram", + "symbol": "v", + "name": "VaultRAM" + }, + { + "id": "vaulttech", + "symbol": "$vault", + "name": "Vault AI" + }, + { + "id": "vault-terminal", + "symbol": "vault", + "name": "Vault Terminal" + }, + { + "id": "vaultx", + "symbol": "vax", + "name": "VaultX" + }, + { + "id": "vault-zero", + "symbol": "vz", + "name": "Vault Zero" + }, + { + "id": "vbswap", + "symbol": "vbswap", + "name": "vBSWAP" + }, + { + "id": "vcash", + "symbol": "xvc", + "name": "Vcash" + }, + { + "id": "vcgamers", + "symbol": "vcg", + "name": "VCGamers" + }, + { + "id": "vchat-token", + "symbol": "vct", + "name": "VCHAT Token" + }, + { + "id": "vcred", + "symbol": "vcred", + "name": "VCRED" + }, + { + "id": "vcw", + "symbol": "vcw", + "name": "VCW" + }, + { + "id": "veax", + "symbol": "veax", + "name": "Veax" + }, + { + "id": "vebetterdao", + "symbol": "b3tr", + "name": "VeBetterDAO" + }, + { + "id": "vechain", + "symbol": "vet", + "name": "VeChain" + }, + { + "id": "vector-ai", + "symbol": "vector", + "name": "Vector AI" + }, + { + "id": "vectorchat-ai", + "symbol": "chat", + "name": "VectorChat.ai" + }, + { + "id": "vector-eth", + "symbol": "veth", + "name": "Vector ETH" + }, + { + "id": "vector-finance", + "symbol": "vtx", + "name": "Vector Finance" + }, + { + "id": "vectorspace", + "symbol": "vaix", + "name": "Vectorspace AI X" + }, + { + "id": "vector-space-biosciences-inc", + "symbol": "sbio", + "name": "Vector Space Biosciences, Inc." + }, + { + "id": "vedao", + "symbol": "weve", + "name": "veDAO" + }, + { + "id": "vee", + "symbol": "vee", + "name": "VEE" + }, + { + "id": "vee-finance", + "symbol": "vee", + "name": "Vee Finance" + }, + { + "id": "vega-protocol", + "symbol": "vega", + "name": "Vega Protocol" + }, + { + "id": "vegas", + "symbol": "vegas", + "name": "Vegas" + }, + { + "id": "vegasino", + "symbol": "vegas", + "name": "Vegasino" + }, + { + "id": "veil-exchange", + "symbol": "veil", + "name": "Veil Exchange" + }, + { + "id": "veil-token", + "symbol": "veil", + "name": "Veil Token" + }, + { + "id": "vela-ai", + "symbol": "velaai", + "name": "Vela AI" + }, + { + "id": "velar", + "symbol": "velar", + "name": "Velar" + }, + { + "id": "velas", + "symbol": "vlx", + "name": "Velas" + }, + { + "id": "velaspad", + "symbol": "vlxpad", + "name": "VelasPad" + }, + { + "id": "vela-token", + "symbol": "vela", + "name": "Vela Token" + }, + { + "id": "velhalla", + "symbol": "scar", + "name": "ScarQuest" + }, + { + "id": "velo", + "symbol": "velo", + "name": "Velo" + }, + { + "id": "veloce-vext", + "symbol": "vext", + "name": "Veloce" + }, + { + "id": "velocis-ai", + "symbol": "vecai", + "name": "Velocis AI" + }, + { + "id": "velodrome-finance", + "symbol": "velo", + "name": "Velodrome Finance" + }, + { + "id": "velora", + "symbol": "vlr", + "name": "Velora" + }, + { + "id": "velorex", + "symbol": "vex", + "name": "Velorex" + }, + { + "id": "velta-token", + "symbol": "vta", + "name": "VELTA Token" + }, + { + "id": "veltrixa", + "symbol": "velt", + "name": "Veltrixa" + }, + { + "id": "velvet", + "symbol": "velvet", + "name": "Velvet" + }, + { + "id": "velvet-ai", + "symbol": "velai", + "name": "Velvet AI" + }, + { + "id": "velvet-unicorn-by-virtuals", + "symbol": "vu", + "name": "Velvet Unicorn by Virtuals" + }, + { + "id": "vemate", + "symbol": "vmt", + "name": "Vemate" + }, + { + "id": "vempire-ddao", + "symbol": "vemp", + "name": "VEMP Horizon" + }, + { + "id": "venator-universe", + "symbol": "vnt", + "name": "Venator Universe" + }, + { + "id": "vendetta", + "symbol": "vdt", + "name": "Vendetta" + }, + { + "id": "venice-token", + "symbol": "vvv", + "name": "Venice Token" + }, + { + "id": "venko", + "symbol": "$venko", + "name": "VENKO" + }, + { + "id": "veno-bridged-ybusd", + "symbol": "ybusd", + "name": "Veno Yield Bearing USD" + }, + { + "id": "veno-eth", + "symbol": "veth", + "name": "Veno ETH" + }, + { + "id": "veno-finance", + "symbol": "vno", + "name": "Veno Finance" + }, + { + "id": "veno-finance-staked-eth", + "symbol": "leth", + "name": "Veno Finance Staked ETH" + }, + { + "id": "venom", + "symbol": "venom", + "name": "Venom" + }, + { + "id": "veno-staked-tia", + "symbol": "ltia", + "name": "Veno Staked TIA" + }, + { + "id": "veno-usd", + "symbol": "vusd", + "name": "Veno USD" + }, + { + "id": "veno-yield-bearing-eth", + "symbol": "ybeth", + "name": "Veno Yield Bearing ETH" + }, + { + "id": "vent-finance", + "symbol": "vent", + "name": "Vent Finance" + }, + { + "id": "venti", + "symbol": "$venti", + "name": "Venti" + }, + { + "id": "vention", + "symbol": "vention", + "name": "Vention" + }, + { + "id": "ventuals-vhype", + "symbol": "vhype", + "name": "Ventuals vHYPE" + }, + { + "id": "venture-mind-ai", + "symbol": "vntr", + "name": "VentureMind AI" + }, + { + "id": "venus", + "symbol": "xvs", + "name": "Venus" + }, + { + "id": "venus-bch", + "symbol": "vbch", + "name": "Venus BCH" + }, + { + "id": "venus-beth", + "symbol": "vbeth", + "name": "Venus BETH" + }, + { + "id": "venus-btc", + "symbol": "vbtc", + "name": "Venus BTC" + }, + { + "id": "venus-busd", + "symbol": "vbusd", + "name": "Venus BUSD" + }, + { + "id": "venus-dai", + "symbol": "vdai", + "name": "Venus DAI" + }, + { + "id": "venus-doge", + "symbol": "vdoge", + "name": "Venus DOGE" + }, + { + "id": "venus-dot", + "symbol": "vdot", + "name": "Venus DOT" + }, + { + "id": "venus-eth", + "symbol": "veth", + "name": "Venus ETH" + }, + { + "id": "venus-fil", + "symbol": "vfil", + "name": "Venus FIL" + }, + { + "id": "venus-link", + "symbol": "vlink", + "name": "Venus LINK" + }, + { + "id": "venus-ltc", + "symbol": "vltc", + "name": "Venus LTC" + }, + { + "id": "venus-reward-token", + "symbol": "vrt", + "name": "Venus Reward" + }, + { + "id": "venus-sxp", + "symbol": "vsxp", + "name": "Venus SXP" + }, + { + "id": "venus-usdc", + "symbol": "vusdc", + "name": "Venus USDC" + }, + { + "id": "venus-usdt", + "symbol": "vusdt", + "name": "Venus USDT" + }, + { + "id": "venus-xrp", + "symbol": "vxrp", + "name": "Venus XRP" + }, + { + "id": "venus-xvs", + "symbol": "vxvs", + "name": "Venus XVS" + }, + { + "id": "vera", + "symbol": "vera", + "name": "Vera" + }, + { + "id": "vera-ai", + "symbol": "vera", + "name": "Vera AI" + }, + { + "id": "veraone", + "symbol": "vro", + "name": "VeraOne" + }, + { + "id": "verasity", + "symbol": "vra", + "name": "Verasity" + }, + { + "id": "verge", + "symbol": "xvg", + "name": "Verge" + }, + { + "id": "verge-eth", + "symbol": "xvg", + "name": "Verge (ETH)" + }, + { + "id": "vericore", + "symbol": "sn70", + "name": "Vericore" + }, + { + "id": "verida", + "symbol": "vda", + "name": "Verida Token" + }, + { + "id": "verified-usd-foundation-usdv", + "symbol": "usdv", + "name": "Verified USD" + }, + { + "id": "veritas", + "symbol": "vpt", + "name": "Veritas" + }, + { + "id": "veritaseum", + "symbol": "veri", + "name": "Veritaseum" + }, + { + "id": "veronica", + "symbol": "veronica", + "name": "VERONICA by Virtuals" + }, + { + "id": "verox", + "symbol": "vrx", + "name": "Verox" + }, + { + "id": "verra-dna", + "symbol": "vdna", + "name": "VERRA DNA" + }, + { + "id": "versagames", + "symbol": "versa", + "name": "VersaGames" + }, + { + "id": "verse-bitcoin", + "symbol": "verse", + "name": "Verse" + }, + { + "id": "verse-world", + "symbol": "verse", + "name": "Verse World" + }, + { + "id": "versus-x", + "symbol": "vsx", + "name": "Versus-X" + }, + { + "id": "vertcoin", + "symbol": "vtc", + "name": "Vertcoin" + }, + { + "id": "vertek", + "symbol": "vrtk", + "name": "Vertek" + }, + { + "id": "vertex-protocol", + "symbol": "vrtx", + "name": "Vertex" + }, + { + "id": "vertical-ai", + "symbol": "vertai", + "name": "Vertical AI" + }, + { + "id": "vertus", + "symbol": "vert", + "name": "Vertus" + }, + { + "id": "verum-coin", + "symbol": "verum", + "name": "Verum Coin" + }, + { + "id": "verus-coin", + "symbol": "vrsc", + "name": "Verus" + }, + { + "id": "vesper-finance", + "symbol": "vsp", + "name": "Vesper Finance" + }, + { + "id": "vesper-vdollar", + "symbol": "vusd", + "name": "Vesper V-Dollar" + }, + { + "id": "vesta-finance", + "symbol": "vsta", + "name": "Vesta Finance" + }, + { + "id": "vestate", + "symbol": "ves", + "name": "Vestate" + }, + { + "id": "vestige", + "symbol": "vest", + "name": "Vestige" + }, + { + "id": "vestra-dao", + "symbol": "vstr", + "name": "Vestra DAO" + }, + { + "id": "vesync", + "symbol": "vs", + "name": "veSync" + }, + { + "id": "veterans-for-the-cause", + "symbol": "vets", + "name": "Veterans for the Cause" + }, + { + "id": "vethor-token", + "symbol": "vtho", + "name": "VeThor" + }, + { + "id": "vetme", + "symbol": "vetme", + "name": "VetMe" + }, + { + "id": "vetter-skylabs", + "symbol": "vsl", + "name": "Vetter Skylabs" + }, + { + "id": "vetter-token", + "symbol": "vetter", + "name": "Vetter" + }, + { + "id": "veve", + "symbol": "veve", + "name": "VEVE" + }, + { + "id": "vexanium", + "symbol": "vex", + "name": "Vexanium" + }, + { + "id": "vfox", + "symbol": "vfox", + "name": "VFOX" + }, + { + "id": "vibe", + "symbol": "vibe", + "name": "VIBE" + }, + { + "id": "vibe-2", + "symbol": "$vibe", + "name": "VIBE" + }, + { + "id": "vibe-3", + "symbol": "vibe", + "name": "VIBE" + }, + { + "id": "vibe-4", + "symbol": "vibe", + "name": "Vibe" + }, + { + "id": "vibe-ai", + "symbol": "vai", + "name": "Vibe AI" + }, + { + "id": "vibe-ai-2", + "symbol": "vibe", + "name": "VIBE AI" + }, + { + "id": "vibe-cat", + "symbol": "minette", + "name": "Vibe Cat" + }, + { + "id": "vibe-cat-2", + "symbol": "vibe", + "name": "Vibe Cat" + }, + { + "id": "vibe-cat-3", + "symbol": "vibe", + "name": "Vibe Cat" + }, + { + "id": "vibecoding", + "symbol": "vico", + "name": "VibeCoding" + }, + { + "id": "vibe-coding-meta", + "symbol": "vibecoder", + "name": "Vibe Coding Meta" + }, + { + "id": "vibecoin", + "symbol": "vibecoin", + "name": "Vibecoin" + }, + { + "id": "viberate", + "symbol": "vib", + "name": "Viberate" + }, + { + "id": "vibe-shift", + "symbol": "vibes", + "name": "vibe shift" + }, + { + "id": "vibestrategy", + "symbol": "vibestr", + "name": "VibeStrategy" + }, + { + "id": "vibey-turtle", + "symbol": "vibey", + "name": "Vibey Turtle" + }, + { + "id": "vibing", + "symbol": "vbg", + "name": "Vibing" + }, + { + "id": "vibing-cat", + "symbol": "vcat", + "name": "Vibing Cat" + }, + { + "id": "vibing-cat-coin", + "symbol": "vibecoin", + "name": "Vibing Cat Coin" + }, + { + "id": "vibingcattoken", + "symbol": "vct", + "name": "VibingCatToken" + }, + { + "id": "vibrantx", + "symbol": "vibe", + "name": "VibrantX" + }, + { + "id": "vica-token", + "symbol": "vica", + "name": "ViCA" + }, + { + "id": "vice-2", + "symbol": "vice", + "name": "VICE" + }, + { + "id": "vicicoin", + "symbol": "vcnt", + "name": "ViciCoin" + }, + { + "id": "vicky", + "symbol": "vicky", + "name": "Vicky" + }, + { + "id": "vicpool-staked-vic", + "symbol": "svic", + "name": "Vicpool Staked VIC" + }, + { + "id": "viction-bridged-usdt", + "symbol": "usdt", + "name": "Viction Bridged USDT" + }, + { + "id": "victor", + "symbol": "victor", + "name": "Victor" + }, + { + "id": "victorai-by-virtuals", + "symbol": "vctrai", + "name": "Victorai by Virtuals" + }, + { + "id": "victoria-vr", + "symbol": "vr", + "name": "Victoria VR" + }, + { + "id": "victorious", + "symbol": "w", + "name": "Victorious" + }, + { + "id": "victorum", + "symbol": "vcc", + "name": "Victorum" + }, + { + "id": "victory-gem", + "symbol": "vtg", + "name": "Victory Gem" + }, + { + "id": "vidaio", + "symbol": "sn85", + "name": "Vidaio" + }, + { + "id": "vidt-dao", + "symbol": "vidt", + "name": "VIDT DAO" + }, + { + "id": "vidulum", + "symbol": "vdl", + "name": "Vidulum" + }, + { + "id": "vidya", + "symbol": "vidya", + "name": "Vidya" + }, + { + "id": "vies-token", + "symbol": "vies", + "name": "Vies Token" + }, + { + "id": "viewercoin", + "symbol": "viewer", + "name": "ViewerCoin" + }, + { + "id": "viking-elon", + "symbol": "velon", + "name": "Viking Elon" + }, + { + "id": "viking-token-viki", + "symbol": "viki", + "name": "Viking Token" + }, + { + "id": "vikita", + "symbol": "vikita", + "name": "VIKITA" + }, + { + "id": "vikto", + "symbol": "vikto", + "name": "Vikto" + }, + { + "id": "village", + "symbol": "bundle", + "name": "庄" + }, + { + "id": "vimworld-ojee", + "symbol": "ojee", + "name": "VIMworld OJEE" + }, + { + "id": "vindax-coin", + "symbol": "vd", + "name": "VinDax Coin" + }, + { + "id": "vine", + "symbol": "vine", + "name": "Vine" + }, + { + "id": "vinuchain", + "symbol": "vc", + "name": "VinuChain" + }, + { + "id": "violet", + "symbol": "violet", + "name": "Violet" + }, + { + "id": "viora-is-online", + "symbol": "viora", + "name": "VIORA IS ONLINE" + }, + { + "id": "viper-2", + "symbol": "viper", + "name": "VIPER" + }, + { + "id": "viper-cash", + "symbol": "vip", + "name": "Viper Cash" + }, + { + "id": "viper-fan", + "symbol": "viper", + "name": "Viper" + }, + { + "id": "viralmind", + "symbol": "viral", + "name": "ViralMind" + }, + { + "id": "virgen", + "symbol": "virgen", + "name": "Virgen" + }, + { + "id": "virgin-galactic-xstock", + "symbol": "spcex", + "name": "Virgin Galactic xStock" + }, + { + "id": "virgo", + "symbol": "vgo", + "name": "Virgo" + }, + { + "id": "virgo-2", + "symbol": "virgo", + "name": "Virgo" + }, + { + "id": "virtu", + "symbol": "virtu", + "name": "Virtu by Virtuals" + }, + { + "id": "virtualdaos", + "symbol": "daox", + "name": "VirtualDaos" + }, + { + "id": "virtual-money", + "symbol": "vm", + "name": "Virtual Money" + }, + { + "id": "virtual-network-service-coin", + "symbol": "vns", + "name": "Virtual Network Service Coin" + }, + { + "id": "virtual-protocol", + "symbol": "virtual", + "name": "Virtuals Protocol" + }, + { + "id": "virtuals-index", + "symbol": "vtf", + "name": "Virtuals Index" + }, + { + "id": "virtuals-ventures", + "symbol": "vvc", + "name": "Virtuals Ventures by Virtuals" + }, + { + "id": "virtual-tourist", + "symbol": "vt", + "name": "Virtual Tourist" + }, + { + "id": "virtual-trade-agent", + "symbol": "vta", + "name": "Virtual Trade Agent" + }, + { + "id": "virtubeauty-by-virtuals", + "symbol": "vbea", + "name": "VirtuBeauty by Virtuals" + }, + { + "id": "virtue-2", + "symbol": "virtue", + "name": "VIRTUE" + }, + { + "id": "virtue-poker", + "symbol": "vpp", + "name": "Virtue Poker Points" + }, + { + "id": "virtue-usd", + "symbol": "vusd", + "name": "Virtue USD" + }, + { + "id": "virtu-network", + "symbol": "virtu", + "name": "Virtu Network" + }, + { + "id": "virus", + "symbol": "virus", + "name": "VIRUS" + }, + { + "id": "virus-2", + "symbol": "virus", + "name": "VIRUS" + }, + { + "id": "virusonsol", + "symbol": "virus", + "name": "VirusOnSol" + }, + { + "id": "virus-protocol", + "symbol": "virus", + "name": "Virus Protocol" + }, + { + "id": "visa-ondo-tokenized-stock", + "symbol": "von", + "name": "Visa (Ondo Tokenized Stock)" + }, + { + "id": "visa-xstock", + "symbol": "vx", + "name": "Visa xStock" + }, + { + "id": "vision-3", + "symbol": "vsn", + "name": "Vision" + }, + { + "id": "vision-4", + "symbol": "vsn", + "name": "Vision" + }, + { + "id": "vision-ai-by-virtuals", + "symbol": "vision", + "name": "VISION ai by Virtuals" + }, + { + "id": "visionaire", + "symbol": "visionaire", + "name": "Visionaire" + }, + { + "id": "visiongame", + "symbol": "vision", + "name": "VisionGame" + }, + { + "id": "vistra-xstock", + "symbol": "vstx", + "name": "Vistra xStock" + }, + { + "id": "visual-workflow-ai", + "symbol": "flowai", + "name": "Visual Workflow AI" + }, + { + "id": "vitadao", + "symbol": "vita", + "name": "VitaDAO" + }, + { + "id": "vitai", + "symbol": "vitai", + "name": "VitAI" + }, + { + "id": "vita-inu", + "symbol": "vinu", + "name": "Vita Inu" + }, + { + "id": "vitalek-buteren", + "symbol": "vitalek", + "name": "vitalek buteren" + }, + { + "id": "vitalik-smart-gas", + "symbol": "vsg", + "name": "Vector Smart Gas" + }, + { + "id": "vitality", + "symbol": "vita", + "name": "Vitality" + }, + { + "id": "vitalxp", + "symbol": "vital", + "name": "VitalXP" + }, + { + "id": "vitanova", + "symbol": "show", + "name": "VitaNova" + }, + { + "id": "vitarna", + "symbol": "vitarna", + "name": "VitaRNA" + }, + { + "id": "vitastem", + "symbol": "vitastem", + "name": "VitaStem" + }, + { + "id": "vitra-studios", + "symbol": "vitra", + "name": "Vitra Studios" + }, + { + "id": "vitreus", + "symbol": "wvtrs", + "name": "Vitreus" + }, + { + "id": "viva-2", + "symbol": "viva", + "name": "VIVA" + }, + { + "id": "vivex", + "symbol": "$vivx", + "name": "Vivex" + }, + { + "id": "vivi", + "symbol": "vivi", + "name": "VIVI" + }, + { + "id": "vivi-coin", + "symbol": "vivi", + "name": "VIVI COIN" + }, + { + "id": "vix777", + "symbol": "vix", + "name": "VIX777" + }, + { + "id": "vizion-protocol", + "symbol": "vizion", + "name": "Vizion Protocol" + }, + { + "id": "vizits-coin", + "symbol": "vizits", + "name": "Vizits Coin" + }, + { + "id": "vizslaswap", + "symbol": "vizslaswap", + "name": "VizslaSwap" + }, + { + "id": "vlaunch-2", + "symbol": "vpad", + "name": "VLaunch" + }, + { + "id": "vmpx", + "symbol": "vmpx", + "name": "VMPX" + }, + { + "id": "vmpx-erc20", + "symbol": "vmpx", + "name": "VMPX" + }, + { + "id": "vms-classic-2", + "symbol": "vmc", + "name": "VMS Classic" + }, + { + "id": "vndc", + "symbol": "vndc", + "name": "VNDC" + }, + { + "id": "vnst-stablecoin", + "symbol": "vnst", + "name": "VNST Stablecoin" + }, + { + "id": "vnx", + "symbol": "vnx", + "name": "VNX" + }, + { + "id": "vnx-british-pound", + "symbol": "vgbp", + "name": "VNX British Pound" + }, + { + "id": "vnx-euro", + "symbol": "veur", + "name": "VNX EURO" + }, + { + "id": "vnx-gold", + "symbol": "vnxau", + "name": "VNX Gold" + }, + { + "id": "vnx-swiss-franc", + "symbol": "vchf", + "name": "VNX Swiss Franc" + }, + { + "id": "vocalad", + "symbol": "vocl", + "name": "Vocalad" + }, + { + "id": "vodra", + "symbol": "vdr", + "name": "Vodra" + }, + { + "id": "voice-artificial", + "symbol": "var", + "name": "Voice Artificial" + }, + { + "id": "voice-of-the-gods-by-virtuals", + "symbol": "adm", + "name": "Voice of the Gods by Virtuals" + }, + { + "id": "voice-street", + "symbol": "vst", + "name": "Voice Street" + }, + { + "id": "voidai-bridged-wtao-solana", + "symbol": "wtao", + "name": "VoidAI Bridged wTAO (Solana)" + }, + { + "id": "voidz", + "symbol": "vdz", + "name": "Voidz" + }, + { + "id": "voi-network", + "symbol": "voi", + "name": "VOI Network" + }, + { + "id": "volaris-games", + "symbol": "vols", + "name": "Volaris Games" + }, + { + "id": "volatilityx", + "symbol": "voltx", + "name": "VolatilityX" + }, + { + "id": "voldemorttrumprobotnik-10neko", + "symbol": "ethereum", + "name": "VoldemortTrumpRobotnik-10Neko" + }, + { + "id": "volo-staked-sui", + "symbol": "vsui", + "name": "Volo Staked SUI" + }, + { + "id": "volt-2", + "symbol": "xvm", + "name": "VOLT" + }, + { + "id": "voltgo-token", + "symbol": "vtgo", + "name": "VoltGo Token" + }, + { + "id": "volt-inu-2", + "symbol": "volt", + "name": "Volt Inu" + }, + { + "id": "voltswap", + "symbol": "volt", + "name": "VoltSwap" + }, + { + "id": "volt-win", + "symbol": "volt", + "name": "VOLT.WIN" + }, + { + "id": "volumint", + "symbol": "vmint", + "name": "VoluMint" + }, + { + "id": "von", + "symbol": "von", + "name": "VON" + }, + { + "id": "voodoo", + "symbol": "ldz", + "name": "Voodoo" + }, + { + "id": "vooi", + "symbol": "vooi", + "name": "VOOI" + }, + { + "id": "voovo-app", + "symbol": "voovo", + "name": "Voovo App" + }, + { + "id": "vooz-coin", + "symbol": "vooz", + "name": "Vooz Coin" + }, + { + "id": "vopo", + "symbol": "vopo", + "name": "VOPO" + }, + { + "id": "vorilla", + "symbol": "vorilla", + "name": "Vorilla" + }, + { + "id": "vortex-2", + "symbol": "vortex", + "name": "Vortex" + }, + { + "id": "vortex-protocol", + "symbol": "vp", + "name": "Vortex Protocol" + }, + { + "id": "vouch", + "symbol": "vouch", + "name": "Vouch" + }, + { + "id": "voucher-bnc", + "symbol": "vbnc", + "name": "Voucher BNC" + }, + { + "id": "voucher-dot", + "symbol": "vdot", + "name": "Voucher DOT" + }, + { + "id": "voucher-glmr", + "symbol": "vglmr", + "name": "Voucher GLMR" + }, + { + "id": "voucher-ksm", + "symbol": "vksm", + "name": "Voucher KSM" + }, + { + "id": "vouch-staked-pls", + "symbol": "vpls", + "name": "Vouch Staked PLS" + }, + { + "id": "vow", + "symbol": "vow", + "name": "Vow" + }, + { + "id": "vow-usd", + "symbol": "vusd", + "name": "Vow USD" + }, + { + "id": "voxel-x-network", + "symbol": "vxl", + "name": "Voxel X Network" + }, + { + "id": "voxies", + "symbol": "voxel", + "name": "Voxies" + }, + { + "id": "vox-royale", + "symbol": "vxr", + "name": "Vox Royale" + }, + { + "id": "voxto", + "symbol": "vxt", + "name": "VOXTO" + }, + { + "id": "voyager-ai", + "symbol": "voyage", + "name": "Voyager AI" + }, + { + "id": "voy-finance", + "symbol": "voy", + "name": "Voy Finance" + }, + { + "id": "vpay", + "symbol": "vpay", + "name": "VPay" + }, + { + "id": "vps-ai", + "symbol": "vps", + "name": "VPS Ai" + }, + { + "id": "vr1", + "symbol": "vr1", + "name": "VR1" + }, + { + "id": "v-systems", + "symbol": "vsys", + "name": "V.SYSTEMS" + }, + { + "id": "vtrading", + "symbol": "vtrading", + "name": "Vtrading" + }, + { + "id": "vu", + "symbol": "vu", + "name": "Vu" + }, + { + "id": "vulcan-forged", + "symbol": "pyr", + "name": "Vulcan Forged" + }, + { + "id": "vulpe-finance", + "symbol": "vulpefi", + "name": "Vulpe Finance" + }, + { + "id": "vultisig", + "symbol": "vult", + "name": "Vultisig" + }, + { + "id": "vulture-peak", + "symbol": "vpk", + "name": "Vulture Peak" + }, + { + "id": "vusd", + "symbol": "vusd", + "name": "VUSD" + }, + { + "id": "vuzzmind", + "symbol": "vuzz", + "name": "VuzzMind" + }, + { + "id": "vvs-finance", + "symbol": "vvs", + "name": "VVS Finance" + }, + { + "id": "vxdefi", + "symbol": "vxdefi", + "name": "vXDEFI" + }, + { + "id": "vyfinance", + "symbol": "vyfi", + "name": "VyFinance" + }, + { + "id": "vyper-win", + "symbol": "vyper", + "name": "VYPER.WIN" + }, + { + "id": "vyvo-smart-chain", + "symbol": "vsc", + "name": "Vyvo Smart Chain" + }, + { + "id": "vyvo-us-dollar", + "symbol": "usdv", + "name": "Vyvo US Dollar" + }, + { + "id": "w", + "symbol": "w", + "name": "W" + }, + { + "id": "w3gg", + "symbol": "w3gg", + "name": "W3GG" + }, + { + "id": "waa", + "symbol": "waa", + "name": "WAA" + }, + { + "id": "waba", + "symbol": "waba", + "name": "WABA" + }, + { + "id": "wabbit", + "symbol": "wabbit", + "name": "WABBIT" + }, + { + "id": "wachxbt", + "symbol": "wach", + "name": "WachAI" + }, + { + "id": "wadzcoin", + "symbol": "wco", + "name": "W Coin" + }, + { + "id": "waffles", + "symbol": "waffles", + "name": "Waffles" + }, + { + "id": "wagerfi", + "symbol": "wager", + "name": "WagerFi" + }, + { + "id": "wagerr", + "symbol": "wgr", + "name": "Wagerr" + }, + { + "id": "waggle-network", + "symbol": "wag", + "name": "Waggle Network" + }, + { + "id": "wagie-2", + "symbol": "wagie", + "name": "WAGIE" + }, + { + "id": "wagie-bot", + "symbol": "wagiebot", + "name": "Wagie Bot" + }, + { + "id": "wagmi-2", + "symbol": "wagmi", + "name": "Wagmi" + }, + { + "id": "wagmi-4", + "symbol": "wagmi", + "name": "WAGMI" + }, + { + "id": "wagmi-5", + "symbol": "wagmi", + "name": "WAGMI" + }, + { + "id": "wagmi-6", + "symbol": "wagmi", + "name": "WAGMI" + }, + { + "id": "wagmicoin", + "symbol": "wagmi", + "name": "WAGMICOIN" + }, + { + "id": "wagmi-coin", + "symbol": "wagmi", + "name": "Wagmi Coin" + }, + { + "id": "wagmi-game-2", + "symbol": "wagmigames", + "name": "WAGMI Games" + }, + { + "id": "wagmi-hub", + "symbol": "infofi", + "name": "WAGMI HUB" + }, + { + "id": "wagyuswap", + "symbol": "wag", + "name": "WagyuSwap" + }, + { + "id": "wai-combinator-by-virtuals", + "symbol": "wai", + "name": "WAI Combinator by Virtuals" + }, + { + "id": "waifu-3", + "symbol": "waifu", + "name": "WaiFU" + }, + { + "id": "waifuai", + "symbol": "wfai", + "name": "WaifuAI" + }, + { + "id": "waifu-sol", + "symbol": "$waifu", + "name": "Waifu" + }, + { + "id": "wain", + "symbol": "wain", + "name": "wain" + }, + { + "id": "w-ai-parked", + "symbol": "sn39", + "name": "basilica" + }, + { + "id": "waka-flocka", + "symbol": "flocka", + "name": "Waka Flocka" + }, + { + "id": "wakehacker-by-virtuals", + "symbol": "wakeai", + "name": "Wakehacker by Virtuals" + }, + { + "id": "wale", + "symbol": "wale", + "name": "Wale" + }, + { + "id": "walk", + "symbol": "walk", + "name": "Walk" + }, + { + "id": "walken", + "symbol": "wlkn", + "name": "Walken" + }, + { + "id": "walkmining-governance", + "symbol": "wkg", + "name": "WalkMining Governance" + }, + { + "id": "walletika", + "symbol": "wltk", + "name": "Walletika" + }, + { + "id": "wall-street-baby", + "symbol": "wsb", + "name": "Wall Street Baby" + }, + { + "id": "wall-street-baby-on-solana", + "symbol": "wsb", + "name": "Wall Street Baby On Solana" + }, + { + "id": "wall-street-bets-dapp", + "symbol": "wsb", + "name": "WallStreetBets DApp" + }, + { + "id": "wall-street-games", + "symbol": "wsg", + "name": "Wall Street Games [OLD]" + }, + { + "id": "wall-street-memes", + "symbol": "wsm", + "name": "Wall Street Memes" + }, + { + "id": "wall-street-pepe", + "symbol": "wepe", + "name": "Wall Street Pepe" + }, + { + "id": "wall-street-shiba", + "symbol": "stiba", + "name": "Wall Street Shiba" + }, + { + "id": "wally", + "symbol": "wally", + "name": "Wally" + }, + { + "id": "wally-the-whale", + "symbol": "wally", + "name": "Wally The Whale" + }, + { + "id": "walmart-ondo-tokenized-stock", + "symbol": "wmton", + "name": "Walmart (Ondo Tokenized Stock)" + }, + { + "id": "walmart-xstock", + "symbol": "wmtx", + "name": "Walmart xStock" + }, + { + "id": "walrus-2", + "symbol": "wal", + "name": "Walrus" + }, + { + "id": "walrus-the-tusk", + "symbol": "$tusk", + "name": "Walrus the tusk" + }, + { + "id": "walter-dog-solana", + "symbol": "walter", + "name": "Walter" + }, + { + "id": "wam", + "symbol": "wam", + "name": "Wam" + }, + { + "id": "wanaka-farm", + "symbol": "wana", + "name": "Wanaka Farm" + }, + { + "id": "wanbtc", + "symbol": "wanbtc", + "name": "wanBTC" + }, + { + "id": "wanchain", + "symbol": "wan", + "name": "Wanchain" + }, + { + "id": "wanchain-bridged-usdc-cardano", + "symbol": "usdc", + "name": "Wanchain Bridged USDC (Cardano)" + }, + { + "id": "wanchain-bridged-usdt-xdc-network", + "symbol": "xusdt", + "name": "Wanchain Bridged USDT (XDC Network)" + }, + { + "id": "wand-2", + "symbol": "wand", + "name": "Wand" + }, + { + "id": "wander", + "symbol": "wander", + "name": "WANDER" + }, + { + "id": "waneth", + "symbol": "waneth", + "name": "wanETH" + }, + { + "id": "wanko-manko-rune", + "symbol": "🐶", + "name": "WANKO•MANKO•RUNES" + }, + { + "id": "wannaswap", + "symbol": "wanna", + "name": "WannaSwap" + }, + { + "id": "wanswap", + "symbol": "wasp", + "name": "WanSwap [OLD]" + }, + { + "id": "wanswap-2", + "symbol": "wasp", + "name": "WanSwap" + }, + { + "id": "wanusdc", + "symbol": "wanusdc", + "name": "Bridged USD Coin (Wanchain)" + }, + { + "id": "wanusdt", + "symbol": "wanusdt", + "name": "Bridged Tether (Wanchain)" + }, + { + "id": "wanxrp", + "symbol": "wanxrp", + "name": "wanXRP" + }, + { + "id": "wap", + "symbol": "wap", + "name": "WAP" + }, + { + "id": "war-coin", + "symbol": "war", + "name": "War Coin" + }, + { + "id": "warden-2", + "symbol": "ward", + "name": "Warden" + }, + { + "id": "warena", + "symbol": "rena", + "name": "Warena" + }, + { + "id": "warioxrpdumbledoreyugioh69inu", + "symbol": "xrp", + "name": "WarioXRPDumbledoreYugioh69Inu" + }, + { + "id": "warlegends", + "symbol": "war", + "name": "War Legends" + }, + { + "id": "warlords-of-solana", + "symbol": "wlos", + "name": "Warlords of Solana" + }, + { + "id": "warner-bros-discovery-xstock", + "symbol": "wbdx", + "name": "Warner Bros. Discovery xStock" + }, + { + "id": "war-of-meme", + "symbol": "wome", + "name": "War Of Meme" + }, + { + "id": "war-of-meme-2", + "symbol": "wome", + "name": "War of Meme" + }, + { + "id": "warpbeam", + "symbol": "wplay", + "name": "WarpBeam" + }, + { + "id": "warpcore", + "symbol": "core", + "name": "Warpcore" + }, + { + "id": "warped-games", + "symbol": "warped", + "name": "Warped Games" + }, + { + "id": "warp-green-bridged-usdc-chia", + "symbol": "wusdc.b", + "name": "Warp.Green Bridged USDC (Chia)" + }, + { + "id": "warpie", + "symbol": "$warpie", + "name": "Warpie" + }, + { + "id": "warplet", + "symbol": "warplet", + "name": "Warplet" + }, + { + "id": "warplet-2", + "symbol": "warp", + "name": "Warplet" + }, + { + "id": "warrior-coin", + "symbol": "war", + "name": "Warrior Coin" + }, + { + "id": "wars-by-wow-ai", + "symbol": "wars", + "name": "WARS by wow.ai" + }, + { + "id": "warthog", + "symbol": "wart", + "name": "Warthog" + }, + { + "id": "wasder", + "symbol": "was", + "name": "Wasder" + }, + { + "id": "wasd-studios", + "symbol": "wasd", + "name": "WASD Studios" + }, + { + "id": "wassie", + "symbol": "wassie", + "name": "WASSIE" + }, + { + "id": "waste-coin", + "symbol": "waco", + "name": "Waste Digital Coin" + }, + { + "id": "wat", + "symbol": "wat", + "name": "Wat" + }, + { + "id": "watchdogs", + "symbol": "watch", + "name": "WATCHDOGS" + }, + { + "id": "watcoin", + "symbol": "wat", + "name": "WATCoin" + }, + { + "id": "watcoin-2", + "symbol": "watc", + "name": "WATCoin" + }, + { + "id": "water-3", + "symbol": "water", + "name": "Waterfall" + }, + { + "id": "wateract", + "symbol": "wtr", + "name": "Wateract" + }, + { + "id": "waterbear", + "symbol": "waterbear", + "name": "waterbear" + }, + { + "id": "watercoin", + "symbol": "water", + "name": "Watercoin" + }, + { + "id": "water-coin", + "symbol": "water", + "name": "WATER Coin" + }, + { + "id": "waterfall-governance-token", + "symbol": "wtf", + "name": "Waterfall Governance" + }, + { + "id": "watermelon", + "symbol": "wat", + "name": "Watermelon" + }, + { + "id": "waterminder", + "symbol": "wmdr", + "name": "WaterMinder" + }, + { + "id": "waterneuron", + "symbol": "wtn", + "name": "WaterNeuron" + }, + { + "id": "water-rabbit", + "symbol": "war", + "name": "Water Rabbit" + }, + { + "id": "wat-if", + "symbol": "if", + "name": "wat if" + }, + { + "id": "waultswap", + "symbol": "wex", + "name": "WaultSwap" + }, + { + "id": "wav3-agentic-music-discovery-by-virtuals", + "symbol": "wav3", + "name": "WAV3 Agentic Music Discovery by Virtuals" + }, + { + "id": "wave", + "symbol": "wav", + "name": "WAVE" + }, + { + "id": "wavefi", + "symbol": "wave", + "name": "WaveFi" + }, + { + "id": "waveform", + "symbol": "wave", + "name": "Waveform" + }, + { + "id": "waveform-by-virtuals", + "symbol": "wave", + "name": "Waveform by Virtuals" + }, + { + "id": "waves", + "symbol": "waves", + "name": "Waves" + }, + { + "id": "waves-ducks", + "symbol": "egg", + "name": "Waves Ducks" + }, + { + "id": "waves-enterprise", + "symbol": "west", + "name": "Waves Enterprise" + }, + { + "id": "waves-exchange", + "symbol": "wx", + "name": "WX Network Token" + }, + { + "id": "wave-swap", + "symbol": "wave", + "name": "Wave Swap" + }, + { + "id": "wawacat", + "symbol": "wawa", + "name": "wawacat" + }, + { + "id": "wawa-cat", + "symbol": "wawa", + "name": "WAWA CAT" + }, + { + "id": "wax", + "symbol": "waxp", + "name": "WAX" + }, + { + "id": "wax-bridged-usdc-wax", + "symbol": "waxusdc", + "name": "Wax Bridged USDC (Wax)" + }, + { + "id": "waxe", + "symbol": "waxe", + "name": "WAXE" + }, + { + "id": "waxfusion-staked-wax", + "symbol": "lswax", + "name": "WaxFusion Staked WAX" + }, + { + "id": "wayfinder", + "symbol": "prompt", + "name": "Wayfinder" + }, + { + "id": "waygu-cash", + "symbol": "waygu", + "name": "WAYGU CASH" + }, + { + "id": "way-of-the-future", + "symbol": "wotf", + "name": "Way of The Future" + }, + { + "id": "wazirx", + "symbol": "wrx", + "name": "WazirX" + }, + { + "id": "wbnb", + "symbol": "wbnb", + "name": "Wrapped BNB" + }, + { + "id": "wbtc-yvault", + "symbol": "yvwbtc", + "name": "WBTC yVault" + }, + { + "id": "wcdonalds", + "symbol": "wcd", + "name": "WcDonalds" + }, + { + "id": "w-coin", + "symbol": "w", + "name": "W coin" + }, + { + "id": "w-coin-2", + "symbol": "w coin", + "name": "W Coin" + }, + { + "id": "wdot", + "symbol": "wdot", + "name": "WDOT" + }, + { + "id": "wealthy", + "symbol": "wangcai", + "name": "旺财 (Wealthy)" + }, + { + "id": "weatherxm-network", + "symbol": "wxm", + "name": "WeatherXM" + }, + { + "id": "weave6", + "symbol": "wx", + "name": "Weave6" + }, + { + "id": "web", + "symbol": "web", + "name": "Web" + }, + { + "id": "web3-decision", + "symbol": "web3d", + "name": "WEB3 DECISION" + }, + { + "id": "web-3-dollar", + "symbol": "usd3", + "name": "Web 3 Dollar" + }, + { + "id": "web3frontier", + "symbol": "w3f", + "name": "Web3Frontier" + }, + { + "id": "web3-no-value", + "symbol": "w3n", + "name": "Web3 No Value" + }, + { + "id": "web3shot", + "symbol": "w3s", + "name": "Web3Shot" + }, + { + "id": "web3-ton-token", + "symbol": "web3", + "name": "Web3 TON Token" + }, + { + "id": "web3war", + "symbol": "fps", + "name": "web3war" + }, + { + "id": "web3-world", + "symbol": "w3w", + "name": "Web3.World" + }, + { + "id": "web4-ai", + "symbol": "web4", + "name": "WEB4 AI" + }, + { + "id": "web-agents-autoppia", + "symbol": "sn36", + "name": "Web Agents - Autoppia" + }, + { + "id": "webcash", + "symbol": "web", + "name": "Webcash" + }, + { + "id": "webchain", + "symbol": "mintme", + "name": "MintMe.com Coin" + }, + { + "id": "webgenieai", + "symbol": "sn54", + "name": "WebGenieAI" + }, + { + "id": "weble-ecosystem-token", + "symbol": "wet", + "name": "Weble Ecosystem" + }, + { + "id": "weblume-ai", + "symbol": "wlai", + "name": "Weblume AI" + }, + { + "id": "webmind-network", + "symbol": "wmn", + "name": "WebMind Network" + }, + { + "id": "websea", + "symbol": "wbs", + "name": "Websea" + }, + { + "id": "websync", + "symbol": "webs", + "name": "Websync" + }, + { + "id": "webuy", + "symbol": "we", + "name": "WeBuy" + }, + { + "id": "wecan", + "symbol": "wecan", + "name": "Wecan" + }, + { + "id": "weco", + "symbol": "weco", + "name": "WECO" + }, + { + "id": "wecoown", + "symbol": "wcx", + "name": "WeCoOwn" + }, + { + "id": "weecoins", + "symbol": "wcs", + "name": "WeeCoins" + }, + { + "id": "weedcoin", + "symbol": "weedcoin", + "name": "Weedcoin" + }, + { + "id": "weede", + "symbol": "$weede", + "name": "WeeDE" + }, + { + "id": "weed-token", + "symbol": "weed", + "name": "WEED Token" + }, + { + "id": "weepi", + "symbol": "weepi", + "name": "Weepi" + }, + { + "id": "weex-token", + "symbol": "wxt", + "name": "WEEX Token" + }, + { + "id": "wefi", + "symbol": "wfi", + "name": "WeFi" + }, + { + "id": "wefi-finance", + "symbol": "wefi", + "name": "Wefi" + }, + { + "id": "weft-finance", + "symbol": "weft", + "name": "Weft Finance" + }, + { + "id": "weird-medieval-memes", + "symbol": "wmm", + "name": "Weird Medieval Memes" + }, + { + "id": "weirdo", + "symbol": "weirdo", + "name": "Weirdo [OLD]" + }, + { + "id": "weirdo-2", + "symbol": "weirdo", + "name": "Weirdo" + }, + { + "id": "weld", + "symbol": "weld", + "name": "WELD" + }, + { + "id": "weldr", + "symbol": "wldr", + "name": "weldr" + }, + { + "id": "welf", + "symbol": "welf", + "name": "WELF" + }, + { + "id": "welfy", + "symbol": "welf", + "name": "WELFY" + }, + { + "id": "well3", + "symbol": "$well", + "name": "WELL3" + }, + { + "id": "wells-fargo-ondo-tokenized-stock", + "symbol": "wfcon", + "name": "Wells Fargo (Ondo Tokenized Stock)" + }, + { + "id": "we-love-boobs", + "symbol": "boobs", + "name": "We love Boobs" + }, + { + "id": "we-love-dogs", + "symbol": "dogs", + "name": "We Love Dogs" + }, + { + "id": "we-love-legs", + "symbol": "legs", + "name": "We Love Legs" + }, + { + "id": "we-love-pussy", + "symbol": "pussy", + "name": "We Love Pussy" + }, + { + "id": "we-love-t", + "symbol": "tits", + "name": "We Love Tits" + }, + { + "id": "welshare-health-token", + "symbol": "wel", + "name": "Welshare Health Token" + }, + { + "id": "welsh-corgi", + "symbol": "corgi", + "name": "Welsh Corgi" + }, + { + "id": "welsh-corgi-coin", + "symbol": "welsh", + "name": "Welshcorgicoin" + }, + { + "id": "wemix-dollar", + "symbol": "wemix$", + "name": "WEMIX Dollar" + }, + { + "id": "wemix-token", + "symbol": "wemix", + "name": "WEMIX" + }, + { + "id": "wen-2", + "symbol": "$wen", + "name": "WEN" + }, + { + "id": "wen-4", + "symbol": "wen", + "name": "Wen" + }, + { + "id": "wen-5", + "symbol": "wen", + "name": "$WEN (Stacks)" + }, + { + "id": "wendy-s-xstock", + "symbol": "wenx", + "name": "Wendy's xStock" + }, + { + "id": "weniscoin", + "symbol": "wenis", + "name": "WenisCoin" + }, + { + "id": "wenlambo-3", + "symbol": "wenlambo", + "name": "wenlambo" + }, + { + "id": "wenlive-fun", + "symbol": "wenlive", + "name": "wenlive.fun" + }, + { + "id": "wenpad-labs", + "symbol": "labs", + "name": "Wenpad Labs [OLD]" + }, + { + "id": "wenpad-labs-2", + "symbol": "labs", + "name": "Wenpad Labs" + }, + { + "id": "wen-soon", + "symbol": "$soon", + "name": "Wen? Soon!" + }, + { + "id": "wen-token", + "symbol": "wen", + "name": "WEN Token" + }, + { + "id": "wenwifhat", + "symbol": "why", + "name": "WenWifHat" + }, + { + "id": "wepower", + "symbol": "wpr", + "name": "WePower" + }, + { + "id": "we-re-so-back", + "symbol": "back", + "name": "We're so back" + }, + { + "id": "wesendit", + "symbol": "wsi", + "name": "WeSendit" + }, + { + "id": "westie", + "symbol": "westie", + "name": "Westie" + }, + { + "id": "westtech-security-token", + "symbol": "wst", + "name": "WestTech Security Token" + }, + { + "id": "wet", + "symbol": "wet", + "name": "WET" + }, + { + "id": "wetc-hebeswap", + "symbol": "wetc", + "name": "Wrapped ETC" + }, + { + "id": "weth", + "symbol": "weth", + "name": "WETH" + }, + { + "id": "weth-hedz", + "symbol": "hedz", + "name": "Weth Hedz" + }, + { + "id": "weth-yvault", + "symbol": "yvweth", + "name": "WETH yVault" + }, + { + "id": "weusd", + "symbol": "weusd", + "name": "WEUSD" + }, + { + "id": "weway", + "symbol": "wwy", + "name": "WeWay" + }, + { + "id": "wewe-2", + "symbol": "wewe", + "name": "WEWE" + }, + { + "id": "we-will-huddle", + "symbol": "huddle", + "name": "We Will Huddle" + }, + { + "id": "wexo", + "symbol": "wexo", + "name": "Wexo" + }, + { + "id": "wfca", + "symbol": "wfca", + "name": "World Friendship Cash" + }, + { + "id": "wfdp", + "symbol": "wfdp", + "name": "WFDP" + }, + { + "id": "whackt", + "symbol": "whackt", + "name": "WHACKT" + }, + { + "id": "whale", + "symbol": "whale", + "name": "WHALE" + }, + { + "id": "whale-2", + "symbol": "whale", + "name": "Whale" + }, + { + "id": "whale-3", + "symbol": "whale", + "name": "Whale" + }, + { + "id": "whaleai", + "symbol": "whai", + "name": "WhaleAI" + }, + { + "id": "whalebit", + "symbol": "ces", + "name": "Whalebit" + }, + { + "id": "whale-ecosystem", + "symbol": "whale", + "name": "Whale Ecosystem" + }, + { + "id": "whale-intel", + "symbol": "wint", + "name": "Whale Intel" + }, + { + "id": "whaleroom", + "symbol": "whl", + "name": "WhaleRoom" + }, + { + "id": "whales-market", + "symbol": "whales", + "name": "Whales Market" + }, + { + "id": "whallah", + "symbol": "$wallah", + "name": "whallah" + }, + { + "id": "what-do-you-meme", + "symbol": "w3w", + "name": "Web3 Whales" + }, + { + "id": "whatever", + "symbol": "whatever", + "name": "whatever" + }, + { + "id": "whatever-ape", + "symbol": "wape", + "name": "Whatever Ape" + }, + { + "id": "what-if", + "symbol": "if", + "name": "what if" + }, + { + "id": "what-in-tarnation", + "symbol": "wit", + "name": "What in Tarnation?" + }, + { + "id": "whatrr", + "symbol": "whatrr", + "name": "WHATRR [OLD]" + }, + { + "id": "whatrr-2", + "symbol": "whatrr", + "name": "WHATRR" + }, + { + "id": "what-s-updog", + "symbol": "updog", + "name": "What’s Updog?" + }, + { + "id": "what-s-your-lore", + "symbol": "lore", + "name": "What’s your lore" + }, + { + "id": "what-the-firkin", + "symbol": "wtf?", + "name": "What The Firkin?" + }, + { + "id": "whatthefreg", + "symbol": "wtf", + "name": "WhatTheFreg" + }, + { + "id": "wheester", + "symbol": "wheee", + "name": "Wheester" + }, + { + "id": "whenhe", + "symbol": "whenhe", + "name": "When he still" + }, + { + "id": "where-did-the-eth-go-pulsechain", + "symbol": "wheth", + "name": "Where Did The ETH Go? (Pulsechain)" + }, + { + "id": "whim-bet-by-virtuals", + "symbol": "whim", + "name": "whim.bet by Virtuals" + }, + { + "id": "whinecoin", + "symbol": "whinecoin", + "name": "whinecoin" + }, + { + "id": "whine-coin", + "symbol": "whine", + "name": "Whine Coin" + }, + { + "id": "whirl-privacy", + "symbol": "whirl", + "name": "Whirl" + }, + { + "id": "whiskers", + "symbol": "whisk", + "name": "Whiskers" + }, + { + "id": "whiskey", + "symbol": "whiskey", + "name": "WHISKEY" + }, + { + "id": "whisp", + "symbol": "whisp", + "name": "WHISP" + }, + { + "id": "whispers-of-decay", + "symbol": "$dcay", + "name": "Whispers Of Decay" + }, + { + "id": "whispy", + "symbol": "whispy", + "name": "Whispy" + }, + { + "id": "whistle-privacy-focused-utility-and-cult", + "symbol": "whistle", + "name": "WHISTLE - Privacy Focused Utility and Cult" + }, + { + "id": "whitebit", + "symbol": "wbt", + "name": "WhiteBIT Coin" + }, + { + "id": "white-boy-summer", + "symbol": "wbs", + "name": "White Boy Summer" + }, + { + "id": "whitebridge", + "symbol": "wbai", + "name": "WhiteBridge Network" + }, + { + "id": "white-coffee-cat", + "symbol": "wcc", + "name": "White Coffee Cat" + }, + { + "id": "whitecoin", + "symbol": "xwc", + "name": "Whitecoin" + }, + { + "id": "whiteheart", + "symbol": "white", + "name": "Whiteheart" + }, + { + "id": "white-lotus", + "symbol": "lotus", + "name": "White Lotus" + }, + { + "id": "white-monster", + "symbol": "wmster", + "name": "White Monster" + }, + { + "id": "white-mountain-ermine", + "symbol": "ermine", + "name": "White Mountain Ermine" + }, + { + "id": "whiterock", + "symbol": "white", + "name": "WhiteRock" + }, + { + "id": "white-whale", + "symbol": "whale", + "name": "White Whale" + }, + { + "id": "who-is-the-a-hole", + "symbol": "wita", + "name": "Who is the a-hole" + }, + { + "id": "whole-earth-coin", + "symbol": "wec", + "name": "Whole Earth Coin" + }, + { + "id": "why", + "symbol": "why", + "name": "WHY" + }, + { + "id": "whyyoutouzhele", + "symbol": "li", + "name": "Whyyoutouzhele" + }, + { + "id": "wibwob", + "symbol": "wibwob", + "name": "WibWob" + }, + { + "id": "wibx", + "symbol": "wbx", + "name": "Wibx" + }, + { + "id": "wicked", + "symbol": "wicked", + "name": "Wicked" + }, + { + "id": "wickedbet-casino", + "symbol": "wik", + "name": "WickedBet Casino" + }, + { + "id": "wicked-moai", + "symbol": "moai", + "name": "Wicked Moai" + }, + { + "id": "wicrypt", + "symbol": "wnt", + "name": "Wicrypt" + }, + { + "id": "widi", + "symbol": "widi", + "name": "WIDI" + }, + { + "id": "wienerai", + "symbol": "wai", + "name": "WienerAI" + }, + { + "id": "wiener-doge-on-solana", + "symbol": "wiener", + "name": "Wiener Doge on Solana" + }, + { + "id": "wife-changing-money", + "symbol": "wife", + "name": "Wife Changing Money" + }, + { + "id": "wife-changing-money-2", + "symbol": "wife", + "name": "Wife Changing Money" + }, + { + "id": "wifedoge", + "symbol": "wifedoge", + "name": "Wifedoge" + }, + { + "id": "wifejak", + "symbol": "wife", + "name": "Wifejak" + }, + { + "id": "wifi", + "symbol": "wifi", + "name": "WiFi Map" + }, + { + "id": "wiflama-coin", + "symbol": "wflm", + "name": "WIFLAMA COIN" + }, + { + "id": "wifmas", + "symbol": "wifmas", + "name": "Wifmas" + }, + { + "id": "wif-on-eth", + "symbol": "wif", + "name": "WIF on ETH" + }, + { + "id": "wifpepemoginu", + "symbol": "wifpepemog", + "name": "WIFPEPEMOGINU" + }, + { + "id": "wif-secondchance", + "symbol": "wif", + "name": "Wif - SecondChance" + }, + { + "id": "wigger", + "symbol": "wigger", + "name": "Wigger" + }, + { + "id": "wigl", + "symbol": "wigl", + "name": "Wigl" + }, + { + "id": "wigoswap", + "symbol": "wigo", + "name": "WigoSwap" + }, + { + "id": "wiki-agent", + "symbol": "wiki", + "name": "Wiki Agent" + }, + { + "id": "wiki-cat", + "symbol": "wkc", + "name": "Wiki Cat" + }, + { + "id": "wilder-world", + "symbol": "wild", + "name": "Wilder World" + }, + { + "id": "wild-forest-token", + "symbol": "wf", + "name": "Wild Forest Token" + }, + { + "id": "wild-goat-coin-2", + "symbol": "wgc", + "name": "Wild Goat Coin" + }, + { + "id": "wildwest", + "symbol": "wildw", + "name": "WILDWEST" + }, + { + "id": "will", + "symbol": "will", + "name": "Will" + }, + { + "id": "will-be-rich", + "symbol": "wbr", + "name": "Will Be Rich" + }, + { + "id": "will-go-to-1", + "symbol": "dollarcoin", + "name": "will go to $1" + }, + { + "id": "willy-3", + "symbol": "willy", + "name": "willy" + }, + { + "id": "win-2", + "symbol": "win", + "name": "WIN" + }, + { + "id": "win-3", + "symbol": "win", + "name": "Win" + }, + { + "id": "windoge98", + "symbol": "exe", + "name": "Windoge98" + }, + { + "id": "winee3", + "symbol": "wne", + "name": "Winee3" + }, + { + "id": "wing-finance", + "symbol": "wing", + "name": "Wing Finance" + }, + { + "id": "wingriders", + "symbol": "wrt", + "name": "WingRiders" + }, + { + "id": "wink", + "symbol": "win", + "name": "WINkLink" + }, + { + "id": "wink-2", + "symbol": "wink", + "name": "WINK" + }, + { + "id": "wink-3", + "symbol": "wink", + "name": "Wink" + }, + { + "id": "winklink-bsc", + "symbol": "win", + "name": "WINkLink BSC" + }, + { + "id": "winnerz", + "symbol": "wnz", + "name": "Winnerz" + }, + { + "id": "winnie-the-poodle", + "symbol": "winnie", + "name": "Winnie the Poodle" + }, + { + "id": "winr-protocol", + "symbol": "winr", + "name": "WINR Protocol" + }, + { + "id": "winston-spider-monkey", + "symbol": "winston", + "name": "winston spider monkey" + }, + { + "id": "winter", + "symbol": "winter", + "name": "Winter" + }, + { + "id": "winter-arc", + "symbol": "winter", + "name": "Winter Arc" + }, + { + "id": "winternomics-tv", + "symbol": "wntv", + "name": "Winternomics TV" + }, + { + "id": "winter-walrus-staked-wal", + "symbol": "wwal", + "name": "Winter Walrus Staked WAL" + }, + { + "id": "wipemyass", + "symbol": "wipe", + "name": "WipeMyAss" + }, + { + "id": "wireshape", + "symbol": "wire", + "name": "Wireshape" + }, + { + "id": "wirex", + "symbol": "wxt", + "name": "WXT Token" + }, + { + "id": "wisdomise", + "symbol": "wsdm", + "name": "Wisdomise AI" + }, + { + "id": "wise-monkey", + "symbol": "monky", + "name": "Wise Monkey" + }, + { + "id": "wise-token11", + "symbol": "wise", + "name": "Wise" + }, + { + "id": "wishdog", + "symbol": "wishdog", + "name": "WISHDOG" + }, + { + "id": "wispswap", + "symbol": "wisp", + "name": "WispSwap" + }, + { + "id": "wistaverse", + "symbol": "wista", + "name": "Wistaverse" + }, + { + "id": "witch-token", + "symbol": "witch", + "name": "Witch Token" + }, + { + "id": "witnet", + "symbol": "wit", + "name": "Witnet" + }, + { + "id": "wiz", + "symbol": "wiz", + "name": "Wiz" + }, + { + "id": "wizard-cat", + "symbol": "wizard", + "name": "Wizard Cat" + }, + { + "id": "wizard-gang", + "symbol": "wizard", + "name": "Wizard Gang" + }, + { + "id": "wizardia", + "symbol": "wzrd", + "name": "Wizardia" + }, + { + "id": "wizards-trolls-farts", + "symbol": "wtf", + "name": "wizards, trolls, farts" + }, + { + "id": "wizard-token-8fc587d7-4b79-4f5a-89c9-475f528c6d47", + "symbol": "wizt", + "name": "Wizard Token" + }, + { + "id": "wizard-vault-nftx", + "symbol": "wizard", + "name": "WIZARD Vault (NFTX)" + }, + { + "id": "wizarre-scroll", + "symbol": "scrl", + "name": "Wizarre Scroll" + }, + { + "id": "wizolayer", + "symbol": "wizo", + "name": "WizoLayer" + }, + { + "id": "wizzie", + "symbol": "wizzie", + "name": "WIZZIE" + }, + { + "id": "wizzwoods-token", + "symbol": "wizz", + "name": "Wizzwoods Token" + }, + { + "id": "wjewel", + "symbol": "wjewel", + "name": "WJEWEL" + }, + { + "id": "wlf-token", + "symbol": "wlf", + "name": "WLF TOKEN" + }, + { + "id": "wlitidao", + "symbol": "wwd", + "name": "WolfWorksDAO" + }, + { + "id": "wmatic", + "symbol": "wpol", + "name": "Wrapped POL" + }, + { + "id": "wmetis", + "symbol": "wmetis", + "name": "Wrapped Metis" + }, + { + "id": "wodo", + "symbol": "wodo", + "name": "Wodo" + }, + { + "id": "woffle", + "symbol": "wof", + "name": "Woffle" + }, + { + "id": "wojak", + "symbol": "wojak", + "name": "Wojak" + }, + { + "id": "wojak-2", + "symbol": "wojak", + "name": "Wojak" + }, + { + "id": "wojak-3", + "symbol": "wojak", + "name": "Wojak" + }, + { + "id": "wojak-finance", + "symbol": "woj", + "name": "Wojak Finance" + }, + { + "id": "wojakpepe", + "symbol": "wope", + "name": "WojakPepe" + }, + { + "id": "woke-chain", + "symbol": "gowoke", + "name": "Woke Chain" + }, + { + "id": "woke-frens", + "symbol": "woke", + "name": "Woke Frens" + }, + { + "id": "wokie-plumpkin-by-virtuals", + "symbol": "wokie", + "name": "Wokie Plumpkin by Virtuals" + }, + { + "id": "wolf", + "symbol": "wolf", + "name": "WOLF" + }, + { + "id": "wolf-2", + "symbol": "wolf", + "name": "WOLF" + }, + { + "id": "wolfi-2", + "symbol": "wolfi", + "name": "WOLFI" + }, + { + "id": "wolf-of-dumb-street", + "symbol": "wods", + "name": "Wolf of Dumb Street" + }, + { + "id": "wolf-of-solana", + "symbol": "wos", + "name": "Wolf Of Solana" + }, + { + "id": "wolf-of-wall-street", + "symbol": "$wolf", + "name": "Wolf of Wall Street" + }, + { + "id": "wolf-on-solana", + "symbol": "wolf", + "name": "Wolf On Solana" + }, + { + "id": "wolfsafepoorpeople", + "symbol": "wspp", + "name": "WolfSafePoorPeople" + }, + { + "id": "wolf-skull", + "symbol": "skull", + "name": "WOLF SKULL" + }, + { + "id": "wolf-skull-2", + "symbol": "skull", + "name": "Wolf Skull" + }, + { + "id": "wolf-solana", + "symbol": "wolf", + "name": "WOLF SOLANA" + }, + { + "id": "wolfwifballz", + "symbol": "ballz", + "name": "WolfWifBallz" + }, + { + "id": "wolt", + "symbol": "wolt", + "name": "Wolt" + }, + { + "id": "wolverinu-2", + "symbol": "wolverinu", + "name": "Wolverinu" + }, + { + "id": "woman-yelling-at-cat", + "symbol": "wyac", + "name": "Woman Yelling At Cat" + }, + { + "id": "wombat", + "symbol": "wombat", + "name": "Wombat" + }, + { + "id": "wombat-exchange", + "symbol": "wom", + "name": "Wombat Exchange" + }, + { + "id": "womo", + "symbol": "wm", + "name": "Womo" + }, + { + "id": "wom-token", + "symbol": "wom", + "name": "WOM Protocol" + }, + { + "id": "won-chang", + "symbol": "usdwon", + "name": "Won Chang" + }, + { + "id": "wonderland", + "symbol": "time", + "name": "Wonderland TIME" + }, + { + "id": "wonderman-nation", + "symbol": "wndr", + "name": "Wonderman Nation" + }, + { + "id": "wonder-sites", + "symbol": "wonder", + "name": "Wonder Sites" + }, + { + "id": "woney", + "symbol": "woney", + "name": "WONEY" + }, + { + "id": "wong", + "symbol": "wong", + "name": "WONG" + }, + { + "id": "woof", + "symbol": "fine", + "name": "This is Fine (SOL)" + }, + { + "id": "woof-2", + "symbol": "woof", + "name": "Woof" + }, + { + "id": "woof-3", + "symbol": "woof", + "name": "WOOF" + }, + { + "id": "woof-4", + "symbol": "woof", + "name": "Woof" + }, + { + "id": "woofer", + "symbol": "woofer", + "name": "woofer" + }, + { + "id": "woofi-the-genius-dog", + "symbol": "woofi", + "name": "Woofi the genius dog" + }, + { + "id": "wooforacle", + "symbol": "wfo", + "name": "WoofOracle" + }, + { + "id": "woof-token", + "symbol": "woof", + "name": "WOOF" + }, + { + "id": "woofwork-io", + "symbol": "woof", + "name": "WoofWork.io" + }, + { + "id": "woohoo", + "symbol": "woohoo", + "name": "WOOHOO" + }, + { + "id": "woolfun", + "symbol": "woolfun", + "name": "WOOLFUN" + }, + { + "id": "woolly-mouse", + "symbol": "woolly", + "name": "Woolly Mouse" + }, + { + "id": "woo-network", + "symbol": "woo", + "name": "WOO" + }, + { + "id": "woonkly-power", + "symbol": "woop", + "name": "Woonkly" + }, + { + "id": "woop", + "symbol": "woop", + "name": "WOOP" + }, + { + "id": "woosh", + "symbol": "woosh", + "name": "woosh" + }, + { + "id": "wopen", + "symbol": "wopen", + "name": "WOPEN" + }, + { + "id": "work", + "symbol": "work", + "name": "WORK" + }, + { + "id": "workie", + "symbol": "workie", + "name": "Workie" + }, + { + "id": "workloop-ai", + "symbol": "loop", + "name": "Workloop AI" + }, + { + "id": "work-quest-2", + "symbol": "wqt", + "name": "Work Quest" + }, + { + "id": "work-x", + "symbol": "work", + "name": "Work X" + }, + { + "id": "world3", + "symbol": "wai", + "name": "World3" + }, + { + "id": "world-assets", + "symbol": "inc", + "name": "WorldAssets" + }, + { + "id": "worldbrain-coin", + "symbol": "wbc", + "name": "WorldBrain Coin" + }, + { + "id": "world-cat", + "symbol": "world cat", + "name": "World Cat" + }, + { + "id": "worldcoin-wld", + "symbol": "wld", + "name": "Worldcoin" + }, + { + "id": "world-computer-money", + "symbol": "wcm", + "name": "World Computer Money" + }, + { + "id": "world-liberty-financial", + "symbol": "wlfi", + "name": "World Liberty Financial" + }, + { + "id": "world-mobile-token", + "symbol": "wmtx", + "name": "World Mobile Token" + }, + { + "id": "world-of-defish", + "symbol": "wod", + "name": "World of Defish" + }, + { + "id": "world-of-dypians", + "symbol": "wod", + "name": "World of Dypians" + }, + { + "id": "world-peace", + "symbol": "世界和平", + "name": "世界和平 (World Peace)" + }, + { + "id": "world-record-banana", + "symbol": "banana", + "name": "World Record Banana" + }, + { + "id": "world-series-of-degens", + "symbol": "wsod", + "name": "World Series of Degens" + }, + { + "id": "worlds-first-memecoin", + "symbol": "lolcoin", + "name": "Worlds First Memecoin" + }, + { + "id": "worldshards", + "symbol": "shards", + "name": "WorldShards" + }, + { + "id": "worldwide-usd", + "symbol": "wusd", + "name": "Worldwide USD" + }, + { + "id": "wormhole", + "symbol": "w", + "name": "Wormhole" + }, + { + "id": "wormhole-bridged-hype", + "symbol": "hype", + "name": "Wormhole Bridged HYPE" + }, + { + "id": "wormhole-bridged-sol", + "symbol": "sol", + "name": "Wormhole Bridged SOL" + }, + { + "id": "wormhole-bridged-usdc-fantom", + "symbol": "usdc", + "name": "Wormhole Bridged USDC (Fantom)" + }, + { + "id": "wormhole-bridged-weth-celo", + "symbol": "weth", + "name": "Wormhole Bridged WETH (Celo)" + }, + { + "id": "wormhole-bridged-weth-moonbeam", + "symbol": "weth", + "name": "Wormhole Bridged WETH (Moonbeam)" + }, + { + "id": "wormhole-bridged-wrapped-sol-base", + "symbol": "wsol", + "name": "Wormhole Bridged Wrapped SOL (Base)" + }, + { + "id": "wormhole-bridged-wrapped-sol-sui", + "symbol": "sol", + "name": "Wormhole Bridged Wrapped SOL (Sui)" + }, + { + "id": "wormhole-bridged-wsteth-bsc", + "symbol": "wsteth", + "name": "Wormhole Bridged wstETH (BSC)" + }, + { + "id": "worms-among-us", + "symbol": "worms", + "name": "Worms Among Us" + }, + { + "id": "wort", + "symbol": "wort", + "name": "WORT" + }, + { + "id": "wortheum", + "symbol": "worth", + "name": "Wortheum" + }, + { + "id": "worthless", + "symbol": "worthless", + "name": "Worthless" + }, + { + "id": "worthless-coin", + "symbol": "worthless", + "name": "worthless coin" + }, + { + "id": "worthless-coin-2", + "symbol": "worthless", + "name": "Worthless Coin" + }, + { + "id": "worthless-two", + "symbol": "worthless", + "name": "Worthless Two" + }, + { + "id": "would", + "symbol": "would", + "name": "would" + }, + { + "id": "wow", + "symbol": "!", + "name": "WOW" + }, + { + "id": "wow-2", + "symbol": "wow", + "name": "Wow" + }, + { + "id": "wowo", + "symbol": "wowo", + "name": "WOWO" + }, + { + "id": "wowswap", + "symbol": "wow", + "name": "WOWswap" + }, + { + "id": "wozx", + "symbol": "wozx", + "name": "Efforce" + }, + { + "id": "wpay", + "symbol": "wpay", + "name": "WPAY" + }, + { + "id": "wpphmrmbdtrsj2p0eb69i", + "symbol": "meta", + "name": "Wpphmrmbdtrsj2p0eb69i" + }, + { + "id": "wrapped-0g", + "symbol": "w0g", + "name": "Wrapped 0G" + }, + { + "id": "wrapped-1inch-universal", + "symbol": "u1inch", + "name": "Wrapped 1inch (Universal)" + }, + { + "id": "wrapped-a7a5", + "symbol": "wa7a5", + "name": "Wrapped A7A5 [OLD]" + }, + { + "id": "wrapped-a7a5-2", + "symbol": "wa7a5", + "name": "Wrapped A7A5" + }, + { + "id": "wrapped-aave-arbitrum-ezeth", + "symbol": "waarbezeth", + "name": "Wrapped Aave Arbitrum ezETH" + }, + { + "id": "wrapped-aave-arbitrum-gho", + "symbol": "waarbgho", + "name": "Wrapped Aave Arbitrum GHO" + }, + { + "id": "wrapped-aave-arbitrum-usdcn", + "symbol": "waarbusdcn", + "name": "Wrapped Aave Arbitrum USDCn" + }, + { + "id": "wrapped-aave-arbitrum-usdt", + "symbol": "waarbusdt", + "name": "Wrapped Aave Arbitrum USDT" + }, + { + "id": "wrapped-aave-arbitrum-weth", + "symbol": "waarbweth", + "name": "Wrapped Aave Arbitrum WETH" + }, + { + "id": "wrapped-aave-arbitrum-wsteth", + "symbol": "waarbwsteth", + "name": "Wrapped Aave Arbitrum wstETH" + }, + { + "id": "wrapped-aave-avalanche-ausd", + "symbol": "waavaausd", + "name": "Wrapped Aave Avalanche AUSD" + }, + { + "id": "wrapped-aave-avalanche-btcb", + "symbol": "waavabtc.b", + "name": "Wrapped Aave Avalanche BTC.b" + }, + { + "id": "wrapped-aave-avalanche-savax", + "symbol": "waavasavax", + "name": "Wrapped Aave Avalanche SAVAX" + }, + { + "id": "wrapped-aave-avalanche-usdc", + "symbol": "waavausdc", + "name": "Wrapped Aave Avalanche USDC" + }, + { + "id": "wrapped-aave-avalanche-usdt", + "symbol": "waavausdt", + "name": "Wrapped Aave Avalanche USDT" + }, + { + "id": "wrapped-aave-avalanche-wavax", + "symbol": "waavawavax", + "name": "Wrapped Aave Avalanche WAVAX" + }, + { + "id": "wrapped-aave-base-eurc", + "symbol": "wabaseurc", + "name": "Wrapped Aave Base EURC" + }, + { + "id": "wrapped-aave-base-ezeth", + "symbol": "wabasezeth", + "name": "Wrapped Aave Base ezETH" + }, + { + "id": "wrapped-aave-base-gho", + "symbol": "wabasgho", + "name": "Wrapped Aave Base GHO" + }, + { + "id": "wrapped-aave-base-usdc", + "symbol": "wabasusdc", + "name": "Wrapped Aave Base USDC" + }, + { + "id": "wrapped-aave-base-weth", + "symbol": "wabasweth", + "name": "Wrapped Aave Base WETH" + }, + { + "id": "wrapped-aave-base-wsteth", + "symbol": "wabaswsteth", + "name": "Wrapped Aave Base wstETH" + }, + { + "id": "wrapped-aave-ethereum-lido-gho", + "symbol": "waethlidogho", + "name": "Wrapped Aave Ethereum Lido GHO" + }, + { + "id": "wrapped-aave-ethereum-lido-weth", + "symbol": "waethlidoweth", + "name": "Wrapped Aave Ethereum Lido WETH" + }, + { + "id": "wrapped-aave-ethereum-lido-wsteth", + "symbol": "waethlidowsteth", + "name": "Wrapped Aave Ethereum Lido wstETH" + }, + { + "id": "wrapped-aave-ethereum-usdc", + "symbol": "waethusdc", + "name": "Wrapped Aave Ethereum USDC" + }, + { + "id": "wrapped-aave-ethereum-usdt", + "symbol": "waethusdt", + "name": "Wrapped Aave Ethereum USDT" + }, + { + "id": "wrapped-aave-ethereum-weth", + "symbol": "waethweth", + "name": "Wrapped Aave Ethereum WETH" + }, + { + "id": "wrapped-aave-gnosis-gno", + "symbol": "wagnogno", + "name": "Wrapped Aave Gnosis GNO" + }, + { + "id": "wrapped-aave-gnosis-weth", + "symbol": "wagnoweth", + "name": "Wrapped Aave Gnosis WETH" + }, + { + "id": "wrapped-aave-gnosis-wsteth", + "symbol": "wagnowsteth", + "name": "Wrapped Aave Gnosis wstETH" + }, + { + "id": "wrapped-aave-optimism-weth", + "symbol": "waoptweth", + "name": "Wrapped Aave Optimism WETH" + }, + { + "id": "wrapped-aave-plasma-usde", + "symbol": "waplausde", + "name": "Wrapped Aave Plasma USDe" + }, + { + "id": "wrapped-aave-plasma-usdt0", + "symbol": "waplausdt0", + "name": "Wrapped Aave Plasma USDT0" + }, + { + "id": "wrapped-aave-sonic-usdc", + "symbol": "wasonusdc", + "name": "Wrapped Aave Sonic USDC" + }, + { + "id": "wrapped-aave-universal", + "symbol": "uaave", + "name": "Wrapped Aave (Universal)" + }, + { + "id": "wrapped-abbott-xstock", + "symbol": "wabtx", + "name": "Wrapped Abbott xStock" + }, + { + "id": "wrapped-abbvie-xstock", + "symbol": "wabbvx", + "name": "Wrapped AbbVie xStock" + }, + { + "id": "wrapped-accenture-xstock", + "symbol": "wacnx", + "name": "Wrapped Accenture xStock" + }, + { + "id": "wrapped-accumulate", + "symbol": "wacme", + "name": "Wrapped Accumulate" + }, + { + "id": "wrapped-ace", + "symbol": "wace", + "name": "Wrapped ACE" + }, + { + "id": "wrapped-ac-milan-kayen", + "symbol": "wacm", + "name": "Wrapped AC Milan (Kayen)" + }, + { + "id": "wrapped-ada", + "symbol": "wada", + "name": "Wrapped ADA" + }, + { + "id": "wrapped-ada-universal", + "symbol": "uada", + "name": "Wrapped ADA (Universal)" + }, + { + "id": "wrapped-alfa-romeo-racing-orlen-kayen", + "symbol": "wsauber", + "name": "Wrapped Alfa Romeo Racing Orlen (Kayen)" + }, + { + "id": "wrapped-algo", + "symbol": "xalgo", + "name": "Wrapped ALGO" + }, + { + "id": "wrapped-alliance-kayen", + "symbol": "wall", + "name": "Wrapped Alliance (Kayen)" + }, + { + "id": "wrapped-alphabet-xstock", + "symbol": "wgooglx", + "name": "Wrapped Alphabet xStock" + }, + { + "id": "wrapped-amazon-xstock", + "symbol": "wamznx", + "name": "Wrapped Amazon xStock" + }, + { + "id": "wrapped-ampleforth", + "symbol": "wampl", + "name": "Wrapped Ampleforth" + }, + { + "id": "wrapped-apecoin", + "symbol": "wape", + "name": "Wrapped ApeCoin" + }, + { + "id": "wrapped-apecoin-universal", + "symbol": "uape", + "name": "Wrapped ApeCoin (Universal)" + }, + { + "id": "wrapped-apollon-limassol-kayen", + "symbol": "wapl", + "name": "Wrapped Apollon Limassol (Kayen)" + }, + { + "id": "wrapped-apple-xstock", + "symbol": "waaplx", + "name": "Wrapped Apple xStock" + }, + { + "id": "wrapped-applovin-xstock", + "symbol": "wappx", + "name": "Wrapped AppLovin xStock" + }, + { + "id": "wrapped-aptos-universal", + "symbol": "uapt", + "name": "Wrapped Aptos (Universal)" + }, + { + "id": "wrapped-arbitrum-universal", + "symbol": "uarb", + "name": "Wrapped Arbitrum (Universal)" + }, + { + "id": "wrapped-area", + "symbol": "warea", + "name": "Wrapped AREA" + }, + { + "id": "wrapped-argentine-football-association-kayen", + "symbol": "warg", + "name": "Wrapped Argentine Football Association (Kayen)" + }, + { + "id": "wrapped-arsenal-fc-kayen", + "symbol": "wafc", + "name": "Wrapped Arsenal FC (Kayen)" + }, + { + "id": "wrapped-as-monaco-kayen", + "symbol": "wasm", + "name": "Wrapped AS Monaco (Kayen)" + }, + { + "id": "wrapped-as-roma-kayen", + "symbol": "wasr", + "name": "Wrapped AS Roma (Kayen)" + }, + { + "id": "wrapped-astar", + "symbol": "wastr", + "name": "Wrapped ASTR" + }, + { + "id": "wrapped-aston-martin-cognizant-kayen", + "symbol": "wam", + "name": "Wrapped Aston Martin Cognizant (Kayen)" + }, + { + "id": "wrapped-aston-villa-kayen", + "symbol": "wavl", + "name": "Wrapped Aston Villa (Kayen)" + }, + { + "id": "wrapped-astrazeneca-xstock", + "symbol": "waznx", + "name": "Wrapped AstraZeneca xStock" + }, + { + "id": "wrapped-atlas-fc-kayen", + "symbol": "watlas", + "name": "Wrapped Atlas FC (Kayen)" + }, + { + "id": "wrapped-atletico-madrid-kayen", + "symbol": "watm", + "name": "Wrapped Atlético Madrid (Kayen)" + }, + { + "id": "wrapped-atletico-mineiro-kayen", + "symbol": "wgalo", + "name": "Wrapped Atlético Mineiro (Kayen)" + }, + { + "id": "wrapped-avalanche-universal", + "symbol": "uavax", + "name": "Wrapped Avalanche (Universal)" + }, + { + "id": "wrapped-avax", + "symbol": "wavax", + "name": "Wrapped AVAX" + }, + { + "id": "wrapped-avax-21-co", + "symbol": "21avax", + "name": "21.co Wrapped AVAX" + }, + { + "id": "wrapped-axelar", + "symbol": "waxl", + "name": "Wrapped Axelar" + }, + { + "id": "wrapped-axie-infinity-shards-universal", + "symbol": "uaxs", + "name": "Wrapped Axie Infinity Shards (Universal)" + }, + { + "id": "wrapped-ayeayecoin", + "symbol": "waac", + "name": "Wrapped AyeAyeCoin" + }, + { + "id": "wrapped-aytemiz-alanyaspor-kayen", + "symbol": "wala", + "name": "Wrapped Aytemiz Alanyaspor (Kayen)" + }, + { + "id": "wrapped-bali-united-fc-kayen", + "symbol": "wbufc", + "name": "Wrapped Bali United FC (Kayen)" + }, + { + "id": "wrapped-banano", + "symbol": "wban", + "name": "Wrapped Banano" + }, + { + "id": "wrapped-bank-of-america-xstock", + "symbol": "wbacx", + "name": "Wrapped Bank of America xStock" + }, + { + "id": "wrapped-basedoge", + "symbol": "wbasedoge", + "name": "Wrapped BaseDOGE" + }, + { + "id": "wrapped-bch", + "symbol": "wbch", + "name": "Wrapped BCH" + }, + { + "id": "wrapped-bch-21-co", + "symbol": "21bch", + "name": "21.co Wrapped BCH" + }, + { + "id": "wrapped-bcoin", + "symbol": "wbcoin", + "name": "Wrapped Backed Coinbase Global" + }, + { + "id": "wrapped-beacon-eth", + "symbol": "wbeth", + "name": "Wrapped Beacon ETH" + }, + { + "id": "wrapped-bera", + "symbol": "wbera", + "name": "Wrapped Bera" + }, + { + "id": "wrapped-berachain-universal", + "symbol": "ubera", + "name": "Wrapped Berachain (Universal)" + }, + { + "id": "wrapped-berkshire-hathaway-xstock", + "symbol": "wbrk.bx", + "name": "Wrapped Berkshire Hathaway xStock" + }, + { + "id": "wrapped-besc-2", + "symbol": "wbesc", + "name": "Wrapped BESC" + }, + { + "id": "wrapped-bifrost", + "symbol": "wbfc", + "name": "Wrapped Bifrost" + }, + { + "id": "wrapped-bigbug-ai-coin-by-virtuals", + "symbol": "wbug", + "name": "Wrapped Bigbug AI Coin by Virtuals" + }, + { + "id": "wrapped-bitcoin", + "symbol": "wbtc", + "name": "Wrapped Bitcoin" + }, + { + "id": "wrapped-bitcoin-pulsechain", + "symbol": "wbtc", + "name": "Wrapped Bitcoin (PulseChain)" + }, + { + "id": "wrapped-bitcoin-sollet", + "symbol": "sobtc", + "name": "Wrapped Bitcoin (Sollet)" + }, + { + "id": "wrapped-bitcoin-universal", + "symbol": "ubtc", + "name": "Wrapped Bitcoin (Universal)" + }, + { + "id": "wrapped-bitcorn", + "symbol": "wbtcn", + "name": "Wrapped Bitcorn" + }, + { + "id": "wrapped-bitrock", + "symbol": "wbrock", + "name": "Wrapped Bitrock" + }, + { + "id": "wrapped-bittensor-universal", + "symbol": "utao", + "name": "Wrapped Bittensor (Universal)" + }, + { + "id": "wrapped-blur-universal", + "symbol": "ublur", + "name": "Wrapped Blur (Universal)" + }, + { + "id": "wrapped-bmstr", + "symbol": "wbmstr", + "name": "Wrapped bMSTR" + }, + { + "id": "wrapped-bmx-liquidity-token", + "symbol": "wblt", + "name": "Wrapped BMX Liquidity Token" + }, + { + "id": "wrapped-bnb-21-co", + "symbol": "21bnb", + "name": "21.co Wrapped BNB" + }, + { + "id": "wrapped-bnvda", + "symbol": "wbnvda", + "name": "Wrapped bNVDA" + }, + { + "id": "wrapped-bologna-fc-kayen", + "symbol": "wbfc", + "name": "Wrapped Bologna FC (Kayen)" + }, + { + "id": "wrapped-bone", + "symbol": "wbone", + "name": "Wrapped BONE" + }, + { + "id": "wrapped-bonk-universal", + "symbol": "ubonk", + "name": "Wrapped Bonk (Universal)" + }, + { + "id": "wrapped-bouncebit", + "symbol": "wbb", + "name": "Wrapped BounceBit" + }, + { + "id": "wrapped-broadcom-xstock", + "symbol": "wavgox", + "name": "Wrapped Broadcom xStock" + }, + { + "id": "wrapped-bsc-young-boys-kayen", + "symbol": "wybo", + "name": "Wrapped BSC Young Boys (Kayen)" + }, + { + "id": "wrapped-btc-21-co", + "symbol": "21btc", + "name": "21.co Wrapped BTC" + }, + { + "id": "wrapped-btc-caviarnine", + "symbol": "xwbtc", + "name": "Instabridge Wrapped BTC (Radix)" + }, + { + "id": "wrapped-btc-wormhole", + "symbol": "wbtc", + "name": "Wrapped BTC (Wormhole)" + }, + { + "id": "wrapped-btsla", + "symbol": "wbtsla", + "name": "Wrapped bTSLA" + }, + { + "id": "wrapped-btt", + "symbol": "wbtt", + "name": "Wrapped BTT" + }, + { + "id": "wrapped-btt-tron", + "symbol": "wbtt", + "name": "Wrapped BTT (Tron)" + }, + { + "id": "wrapped-busd", + "symbol": "wbusd", + "name": "Wrapped BUSD" + }, + { + "id": "wrapped-centrifuge", + "symbol": "wcfg", + "name": "Wrapped Centrifuge" + }, + { + "id": "wrapped-ceth", + "symbol": "ceth", + "name": "Wrapped cETH" + }, + { + "id": "wrapped-chainlink-universal", + "symbol": "ulink", + "name": "Wrapped Chainlink (Universal)" + }, + { + "id": "wrapped-chevron-xstock", + "symbol": "wcvxx", + "name": "Wrapped Chevron xStock" + }, + { + "id": "wrapped-chiliz-kayen", + "symbol": "wchz", + "name": "Wrapped Chiliz (Kayen)" + }, + { + "id": "wrapped-chiliz-universal", + "symbol": "uchz", + "name": "Wrapped Chiliz (Universal)" + }, + { + "id": "wrapped-cisco-xstock", + "symbol": "wcscox", + "name": "Wrapped Cisco xStock" + }, + { + "id": "wrapped-ckb", + "symbol": "wckb", + "name": "Wrapped CKB" + }, + { + "id": "wrapped-club-atletico-independiente-kayen", + "symbol": "wcai", + "name": "Wrapped Club Atlético Independiente (Kayen)" + }, + { + "id": "wrapped-club-santos-laguna-kayen", + "symbol": "wsan", + "name": "Wrapped Club Santos Laguna (Kayen)" + }, + { + "id": "wrapped-club-tigres-uanl-kayen", + "symbol": "wtigres", + "name": "Wrapped Club Tigres UANL (Kayen)" + }, + { + "id": "wrapped-coca-cola-xstock", + "symbol": "wkox", + "name": "Wrapped Coca-Cola xStock" + }, + { + "id": "wrapped-coinbase-xstock", + "symbol": "wcoinx", + "name": "Wrapped Coinbase xStock" + }, + { + "id": "wrapped-comcast-xstock", + "symbol": "wcmcsax", + "name": "Wrapped Comcast xStock" + }, + { + "id": "wrapped-conflux", + "symbol": "wcfx", + "name": "Wrapped Conflux" + }, + { + "id": "wrapped-core", + "symbol": "wcore", + "name": "Wrapped CORE" + }, + { + "id": "wrapped-corinthians-kayen", + "symbol": "wsccp", + "name": "Wrapped Corinthians (Kayen)" + }, + { + "id": "wrapped-cosmos-universal", + "symbol": "uatom", + "name": "Wrapped Cosmos (Universal)" + }, + { + "id": "wrapped-cro", + "symbol": "wcro", + "name": "Wrapped CRO" + }, + { + "id": "wrapped-crowdstrike-xstock", + "symbol": "wcrwdx", + "name": "Wrapped CrowdStrike xStock" + }, + { + "id": "wrapped-crystal-palace-fc-kayen", + "symbol": "wcpfc", + "name": "Wrapped Crystal Palace FC (Kayen)" + }, + { + "id": "wrapped-ctc", + "symbol": "wctc", + "name": "Wrapped CTC" + }, + { + "id": "wrapped-curve-universal", + "symbol": "ucrv", + "name": "Wrapped Curve (Universal)" + }, + { + "id": "wrapped-cybria", + "symbol": "wcyba", + "name": "Wrapped Cybria" + }, + { + "id": "wrapped-cygnus-usd", + "symbol": "wcgusd", + "name": "Wrapped Cygnus USD" + }, + { + "id": "wrapped-dag", + "symbol": "wdag", + "name": "Wrapped DAG" + }, + { + "id": "wrapped-danaher-xstock", + "symbol": "wdhrx", + "name": "Wrapped Danaher xStock" + }, + { + "id": "wrapped-davis-cup-kayen", + "symbol": "wdavis", + "name": "Wrapped Davis Cup (Kayen)" + }, + { + "id": "wrapped-degen", + "symbol": "wdegen", + "name": "Wrapped DEGEN" + }, + { + "id": "wrapped-dinamo-zagreb-kayen", + "symbol": "wdzg", + "name": "Wrapped Dinamo Zagreb (Kayen)" + }, + { + "id": "wrapped-dione", + "symbol": "dione", + "name": "Wrapped Dione" + }, + { + "id": "wrapped-dmt", + "symbol": "wdmt", + "name": "Wrapped DMT" + }, + { + "id": "wrapped-dog", + "symbol": "wdog", + "name": "Wrapped DOG" + }, + { + "id": "wrapped-doge-universal", + "symbol": "udoge", + "name": "Wrapped DOGE (Universal)" + }, + { + "id": "wrapped-dor", + "symbol": "wdor", + "name": "Wrapped DOR" + }, + { + "id": "wrapped-edu", + "symbol": "wedu", + "name": "Wrapped EDU" + }, + { + "id": "wrapped-eeth", + "symbol": "weeth", + "name": "Wrapped eETH" + }, + { + "id": "wrapped-ehmnd", + "symbol": "wehmnd", + "name": "Wrapped eHMND (eHMND)" + }, + { + "id": "wrapped-elastos", + "symbol": "wela", + "name": "Wrapped Elastos" + }, + { + "id": "wrapped-electroneum", + "symbol": "wetn", + "name": "Wrapped Electroneum" + }, + { + "id": "wrapped-elephant", + "symbol": "welephant", + "name": "Wrapped Elephant" + }, + { + "id": "wrapped-eli-lilly-xstock", + "symbol": "wllyx", + "name": "Wrapped Eli Lilly xStock" + }, + { + "id": "wrapped-elrond", + "symbol": "wegld", + "name": "Wrapped EGLD" + }, + { + "id": "wrapped-endpoint-kayen", + "symbol": "wendcex", + "name": "Wrapped Endpoint (Kayen)" + }, + { + "id": "wrapped-energi", + "symbol": "wnrg", + "name": "Wrapped Energi" + }, + { + "id": "wrapped-eos", + "symbol": "weos", + "name": "Wrapped EOS" + }, + { + "id": "wrapped-eos-universal", + "symbol": "ueos", + "name": "Wrapped EOS (Universal)" + }, + { + "id": "wrapped-esporte-clube-bahia-kayen", + "symbol": "wbahia", + "name": "Wrapped Esporte Clube Bahia (Kayen)" + }, + { + "id": "wrapped-ether", + "symbol": "wetc", + "name": "Wrapped ETC" + }, + { + "id": "wrapped-ethereum-classic-universal", + "symbol": "uetc", + "name": "Wrapped Ethereum Classic (Universal)" + }, + { + "id": "wrapped-ethereum-name-service-universal", + "symbol": "uens", + "name": "Wrapped Ethereum Name Service (Universal)" + }, + { + "id": "wrapped-ethereum-sollet", + "symbol": "soeth", + "name": "Wrapped Ethereum (Sollet)" + }, + { + "id": "wrapped-ether-linea", + "symbol": "weth", + "name": "Bridged Wrapped Ether (Linea)" + }, + { + "id": "wrapped-ether-mantle-bridge", + "symbol": "weth", + "name": "Mantle Bridged WETH (Mantle)" + }, + { + "id": "wrapped-ether-massa", + "symbol": "weth", + "name": "Massa Bridged WETH (Massa)" + }, + { + "id": "wrapped-eth-skale", + "symbol": "ethc", + "name": "Wrapped ETH (SKALE)" + }, + { + "id": "wrapped-eth-taiko", + "symbol": "weth", + "name": "Wrapped ETH (Taiko)" + }, + { + "id": "wrapped-ethw", + "symbol": "wethw", + "name": "Wrapped ETHW" + }, + { + "id": "wrapped-eth-world-chain", + "symbol": "weth", + "name": "Wrapped ETH (World Chain)" + }, + { + "id": "wrapped-ever", + "symbol": "wever", + "name": "Wrapped Ever" + }, + { + "id": "wrapped-everton-kayen", + "symbol": "wefc", + "name": "Wrapped Everton (Kayen)" + }, + { + "id": "wrapped-extrafi-x-base-usdc", + "symbol": "wexbaseusdc", + "name": "Wrapped ExtraFi X Base USDC" + }, + { + "id": "wrapped-extrax-base-usr", + "symbol": "wexbaseusr", + "name": "Wrapped ExtraX Base USR" + }, + { + "id": "wrapped-exxon-mobil-xstock", + "symbol": "wxomx", + "name": "Wrapped Exxon Mobil xStock" + }, + { + "id": "wrapped-fantom", + "symbol": "wftm", + "name": "Wrapped Fantom" + }, + { + "id": "wrapped-fc-barcelona-kayen", + "symbol": "wbar", + "name": "Wrapped FC Barcelona (Kayen)" + }, + { + "id": "wrapped-fil", + "symbol": "wfil", + "name": "Wrapped FIL" + }, + { + "id": "wrapped-fio", + "symbol": "wfio", + "name": "Wrapped FIO" + }, + { + "id": "wrapped-flamengo-kayen", + "symbol": "wmengo", + "name": "Wrapped Flamengo (Kayen)" + }, + { + "id": "wrapped-flare", + "symbol": "wflr", + "name": "Wrapped Flare" + }, + { + "id": "wrapped-floki-universal", + "symbol": "ufloki", + "name": "Wrapped Floki (Universal)" + }, + { + "id": "wrapped-flow", + "symbol": "wflow", + "name": "Wrapped Flow" + }, + { + "id": "wrapped-fluminense-fc-kayen", + "symbol": "wflu", + "name": "Wrapped Fluminense FC (Kayen)" + }, + { + "id": "wrapped-fortuna-sittard-kayen", + "symbol": "wfor", + "name": "Wrapped Fortuna Sittard (Kayen)" + }, + { + "id": "wrapped-fragjto", + "symbol": "wfragjto", + "name": "Wrapped fragJTO" + }, + { + "id": "wrapped-fragsol", + "symbol": "wfragsol", + "name": "Wrapped fragSOL" + }, + { + "id": "wrapped-frax", + "symbol": "wfrax", + "name": "Wrapped FRAX" + }, + { + "id": "wrapped-frxeth", + "symbol": "wfrxeth", + "name": "Wrapped frxETH" + }, + { + "id": "wrapped-ftn", + "symbol": "wftn", + "name": "Wrapped FTN" + }, + { + "id": "wrapped-fuse", + "symbol": "wfuse", + "name": "Wrapped FUSE" + }, + { + "id": "wrapped-g", + "symbol": "wg", + "name": "Wrapped G" + }, + { + "id": "wrapped-galatasaray-s-k-kayen", + "symbol": "wgal", + "name": "Wrapped Galatasaray S.K. (Kayen)" + }, + { + "id": "wrapped-gamestop-xstock", + "symbol": "wgmex", + "name": "Wrapped Gamestop xStock" + }, + { + "id": "wrapped-gaziantep-f-k-kayen", + "symbol": "wgfk", + "name": "Wrapped Gaziantep F.K (Kayen)" + }, + { + "id": "wrapped-gbera", + "symbol": "wgbera", + "name": "Wrapped gBera" + }, + { + "id": "wrapped-gho-lens", + "symbol": "wgho", + "name": "Wrapped GHO (Lens)" + }, + { + "id": "wrapped-glq", + "symbol": "wglq", + "name": "Wrapped GLQ" + }, + { + "id": "wrapped-goat-bitcoin", + "symbol": "wgbtc", + "name": "Wrapped Goat Bitcoin" + }, + { + "id": "wrapped-goldman-sachs-xstock", + "symbol": "wgsx", + "name": "Wrapped Goldman Sachs xStock" + }, + { + "id": "wrapped-goztepe-kayen", + "symbol": "wgoz", + "name": "Wrapped Goztepe (Kayen)" + }, + { + "id": "wrapped-gsys-bluelotusdao", + "symbol": "wgsys", + "name": "Wrapped GSYS (BlueLotusDAO)" + }, + { + "id": "wrapped-h1", + "symbol": "wh1", + "name": "Wrapped H1" + }, + { + "id": "wrapped-harlequins-kayen", + "symbol": "wquins", + "name": "Wrapped Harlequins (Kayen)" + }, + { + "id": "wrapped-hashtag-united-kayen", + "symbol": "whashtag", + "name": "Wrapped Hashtag United (Kayen)" + }, + { + "id": "wrapped-hbar", + "symbol": "whbar", + "name": "Wrapped HBAR (SaucerSwap)" + }, + { + "id": "wrapped-hlp", + "symbol": "whlp", + "name": "Wrapped HLP" + }, + { + "id": "wrapped-hlusd", + "symbol": "whlusd", + "name": "Wrapped HLUSD" + }, + { + "id": "wrapped-hns", + "symbol": "whns", + "name": "Wrapped HNS" + }, + { + "id": "wrapped-home-depot-xstock", + "symbol": "whdx", + "name": "Wrapped Home Depot xStock" + }, + { + "id": "wrapped-honeywell-xstock", + "symbol": "whonx", + "name": "Wrapped Honeywell xStock" + }, + { + "id": "wrapped-hsk", + "symbol": "whsk", + "name": "Wrapped HSK" + }, + { + "id": "wrapped-hydra", + "symbol": "whydra", + "name": "Wrapped Hydra" + }, + { + "id": "wrapped-hype", + "symbol": "whype", + "name": "Wrapped HYPE" + }, + { + "id": "wrapped-hypertensor", + "symbol": "tensor", + "name": "Wrapped Hypertensor" + }, + { + "id": "wrapped-immutable", + "symbol": "wimx", + "name": "Wrapped IMX" + }, + { + "id": "wrapped-intel-xstock", + "symbol": "wintcx", + "name": "Wrapped Intel xStock" + }, + { + "id": "wrapped-inter-milan-kayen", + "symbol": "winter", + "name": "Wrapped Inter Milan (Kayen)" + }, + { + "id": "wrapped-international-business-machines-xstock", + "symbol": "wibmx", + "name": "Wrapped International Business Machines xStock" + }, + { + "id": "wrapped-iota", + "symbol": "wiota", + "name": "Wrapped IOTA" + }, + { + "id": "wrapped-iotex", + "symbol": "wiotx", + "name": "Wrapped IoTex" + }, + { + "id": "wrapped-ip", + "symbol": "wip", + "name": "Wrapped IP" + }, + { + "id": "wrapped-istanbul-basaksehir-kayen", + "symbol": "wibfk", + "name": "Wrapped İstanbul Başakşehir (Kayen)" + }, + { + "id": "wrapped-italian-national-football-team-kayen", + "symbol": "wita", + "name": "Wrapped Italian National Football Team (Kayen)" + }, + { + "id": "wrapped-jbc", + "symbol": "wjbc", + "name": "JibSwap Wrapped JBC (Jibchain)" + }, + { + "id": "wrapped-johnson-johnson-xstock", + "symbol": "wjnjx", + "name": "Wrapped Johnson & Johnson xStock" + }, + { + "id": "wrapped-johor-southern-tigers-kayen", + "symbol": "wjdt", + "name": "Wrapped JOHOR Southern Tigers (Kayen)" + }, + { + "id": "wrapped-jpmorgan-chase-xstock", + "symbol": "wjpmx", + "name": "Wrapped JPMorgan Chase xStock" + }, + { + "id": "wrapped-juventus-kayen", + "symbol": "wjuv", + "name": "Wrapped Juventus (Kayen)" + }, + { + "id": "wrapped-kaspa", + "symbol": "kas", + "name": "Wrapped Kaspa" + }, + { + "id": "wrapped-kava", + "symbol": "wkava", + "name": "Wrapped Kava" + }, + { + "id": "wrapped-kcs", + "symbol": "wkcs", + "name": "Wrapped KCS" + }, + { + "id": "wrapped-klay", + "symbol": "wklay", + "name": "Wrapped KLAY" + }, + { + "id": "wrapped-leeds-united-kayen", + "symbol": "wlufc", + "name": "Wrapped Leeds United (Kayen)" + }, + { + "id": "wrapped-legia-warsaw-kayen", + "symbol": "wleg", + "name": "Wrapped Legia Warsaw (Kayen)" + }, + { + "id": "wrapped-leicester-tigers-kayen", + "symbol": "wtigers", + "name": "Wrapped Leicester Tigers (Kayen)" + }, + { + "id": "wrapped-levante-kayen", + "symbol": "wlev", + "name": "Wrapped Levante (Kayen)" + }, + { + "id": "wrapped-libertas-omnibus", + "symbol": "libertas", + "name": "Wrapped LIBERTAS OMNIBUS" + }, + { + "id": "wrapped-linde-xstock", + "symbol": "wlinx", + "name": "Wrapped Linde xStock" + }, + { + "id": "wrapped-lrs", + "symbol": "wlrs", + "name": "Wrapped LRS" + }, + { + "id": "wrapped-lunagens", + "symbol": "wlung", + "name": "Wrapped LunaGens" + }, + { + "id": "wrapped-lyx-sigmaswap", + "symbol": "wlyx", + "name": "Wrapped LYX (SigmaSwap)" + }, + { + "id": "wrapped-lyx-universalswaps", + "symbol": "wlyx", + "name": "Wrapped Lyx (UniversalSwaps)" + }, + { + "id": "wrapped-m", + "symbol": "wm", + "name": "Wrapped M" + }, + { + "id": "wrapped-made-in-brasil-kayen", + "symbol": "wmibr", + "name": "Wrapped Made In Brasil (Kayen)" + }, + { + "id": "wrapped-manchester-city-kayen", + "symbol": "wcity", + "name": "Wrapped Manchester City (Kayen)" + }, + { + "id": "wrapped-mantle", + "symbol": "wmnt", + "name": "Wrapped Mantle" + }, + { + "id": "wrapped-mapo", + "symbol": "wmapo", + "name": "Wrapped MAPO" + }, + { + "id": "wrapped-marvell-xstock", + "symbol": "wmrvlx", + "name": "Wrapped Marvell xStock" + }, + { + "id": "wrapped-massa", + "symbol": "wmas", + "name": "Wrapped Massa" + }, + { + "id": "wrapped-mastercard-xstock", + "symbol": "wmax", + "name": "Wrapped Mastercard xStock" + }, + { + "id": "wrappedm-by-m0", + "symbol": "wm", + "name": "WrappedM by M^0" + }, + { + "id": "wrapped-mcdonald-s-xstock", + "symbol": "wmcdx", + "name": "Wrapped McDonald's xStock" + }, + { + "id": "wrapped-medtronic-xstock", + "symbol": "wmdtx", + "name": "Wrapped Medtronic xStock" + }, + { + "id": "wrapped-memory", + "symbol": "wmemo", + "name": "Wonderful Memories" + }, + { + "id": "wrapped-merck-xstock", + "symbol": "wmrkx", + "name": "Wrapped Merck xStock" + }, + { + "id": "wrapped-merit-circle", + "symbol": "wbeam", + "name": "Wrapped BEAM" + }, + { + "id": "wrapped-meta-xstock", + "symbol": "wmetax", + "name": "Wrapped Meta xStock" + }, + { + "id": "wrapped-microsoft-xstock", + "symbol": "wmsftx", + "name": "Wrapped Microsoft xStock" + }, + { + "id": "wrapped-microstrategy-xstock", + "symbol": "wmstrx", + "name": "Wrapped MicroStrategy xStock" + }, + { + "id": "wrapped-millonarios-fc-kayen", + "symbol": "wmfc", + "name": "Wrapped Millonarios FC (Kayen)" + }, + { + "id": "wrapped-minima", + "symbol": "wminima", + "name": "Wrapped Minima" + }, + { + "id": "wrapped-minotari", + "symbol": "wxtm", + "name": "Wrapped MinoTari" + }, + { + "id": "wrapped-mistcoin", + "symbol": "wmc", + "name": "Wrapped MistCoin" + }, + { + "id": "wrapped-moonbeam", + "symbol": "wglmr", + "name": "Wrapped Moonbeam" + }, + { + "id": "wrapped-mpc", + "symbol": "wmpc", + "name": "Wrapped MPC" + }, + { + "id": "wrapped-multiversx-universal", + "symbol": "uegld", + "name": "Wrapped MultiversX (Universal)" + }, + { + "id": "wrapped-napoli-fc-kayen", + "symbol": "wnap", + "name": "Wrapped Napoli FC (Kayen)" + }, + { + "id": "wrapped-natus-vincere-kayen", + "symbol": "wnavi", + "name": "Wrapped Natus Vincere (Kayen)" + }, + { + "id": "wrapped-ncg", + "symbol": "wncg", + "name": "Wrapped NCG" + }, + { + "id": "wrapped-near", + "symbol": "wnear", + "name": "Wrapped Near" + }, + { + "id": "wrapped-near-universal", + "symbol": "unear", + "name": "Wrapped NEAR (Universal)" + }, + { + "id": "wrapped-neon", + "symbol": "wneon", + "name": "Wrapped Neon" + }, + { + "id": "wrapped-netflix-xstock", + "symbol": "wnflxx", + "name": "Wrapped Netflix xStock" + }, + { + "id": "wrapped-newyorkcoin", + "symbol": "wnyc", + "name": "Wrapped NewYorkCoin" + }, + { + "id": "wrapped-nibiru", + "symbol": "wnibi", + "name": "Wrapped Nibiru" + }, + { + "id": "wrapped-novo-nordisk-xstock", + "symbol": "wnvox", + "name": "Wrapped Novo Nordisk xStock" + }, + { + "id": "wrapped-nvidia-xstock", + "symbol": "wnvdax", + "name": "Wrapped NVIDIA xStock" + }, + { + "id": "wrapped-nxm", + "symbol": "wnxm", + "name": "Wrapped NXM" + }, + { + "id": "wrapped-oas", + "symbol": "woas", + "name": "Wrapped OAS" + }, + { + "id": "wrapped-oasys", + "symbol": "woasys", + "name": "Wrapped Oasys" + }, + { + "id": "wrapped-oeth", + "symbol": "woeth", + "name": "Wrapped OETH" + }, + { + "id": "wrapped-og-kayen", + "symbol": "wog", + "name": "Wrapped OG (Kayen)" + }, + { + "id": "wrapped-oil", + "symbol": "woil", + "name": "Wrapped Oil" + }, + { + "id": "wrapped-okb", + "symbol": "wokb", + "name": "Wrapped OKB" + }, + { + "id": "wrapped-one", + "symbol": "wone", + "name": "Wrapped One" + }, + { + "id": "wrapped-optidoge", + "symbol": "woptidoge", + "name": "Wrapped OptiDoge" + }, + { + "id": "wrapped-oracle-xstock", + "symbol": "worclx", + "name": "Wrapped Oracle xStock" + }, + { + "id": "wrapped-ousd", + "symbol": "wousd", + "name": "Wrapped OUSD" + }, + { + "id": "wrapped-palantir-xstock", + "symbol": "wpltrx", + "name": "Wrapped Palantir xStock" + }, + { + "id": "wrapped-palmeiras-kayen", + "symbol": "wverdao", + "name": "Wrapped Palmeiras (Kayen)" + }, + { + "id": "wrapped-parasail-staked-peaq", + "symbol": "wstpeaq", + "name": "Wrapped Parasail Staked PEAQ" + }, + { + "id": "wrapped-paris-saint-germain-kayen", + "symbol": "wpsg", + "name": "Wrapped Paris Saint-Germain (Kayen)" + }, + { + "id": "wrapped-peaq", + "symbol": "wpeaq", + "name": "Wrapped Peaq" + }, + { + "id": "wrapped-pepsico-xstock", + "symbol": "wpepx", + "name": "Wrapped PepsiCo xStock" + }, + { + "id": "wrapped-persatuan-sepakbola-indonesia-bandung-kayen", + "symbol": "wpersib", + "name": "Wrapped Persatuan Sepakbola Indonesia Bandung (Kayen)" + }, + { + "id": "wrapped-pfizer-xstock", + "symbol": "wpfex", + "name": "Wrapped Pfizer xStock" + }, + { + "id": "wrapped-philip-morris-xstock", + "symbol": "wpmx", + "name": "Wrapped Philip Morris xStock" + }, + { + "id": "wrapped-plume", + "symbol": "wplume", + "name": "Wrapped Plume" + }, + { + "id": "wrapped-pokt", + "symbol": "wpokt", + "name": "Wrapped POKT" + }, + { + "id": "wrapped-portugal-national-team-kayen", + "symbol": "wpor", + "name": "Wrapped Portugal National Team (Kayen)" + }, + { + "id": "wrapped-procter-gamble-xstock", + "symbol": "wpgx", + "name": "Wrapped Procter & Gamble xStock" + }, + { + "id": "wrapped-professional-fighters-league-kayen", + "symbol": "wpfl", + "name": "Wrapped Professional Fighters League (Kayen)" + }, + { + "id": "wrapped-pulse-wpls", + "symbol": "wpls", + "name": "Wrapped Pulse" + }, + { + "id": "wrapped-pump-universal", + "symbol": "upump", + "name": "Wrapped PUMP (Universal)" + }, + { + "id": "wrapped-pundi-aifx", + "symbol": "wpundiai", + "name": "Wrapped Pundi AIFX" + }, + { + "id": "wrapped-q", + "symbol": "wq", + "name": "Wrapped Q" + }, + { + "id": "wrapped-qom", + "symbol": "wqom", + "name": "Wrapped QOM" + }, + { + "id": "wrapped-quil", + "symbol": "quil", + "name": "Wrapped QUIL" + }, + { + "id": "wrapped-racing-club-kayen", + "symbol": "wracing", + "name": "Wrapped Racing Club (Kayen)" + }, + { + "id": "wrapped-rbnt", + "symbol": "wrbnt", + "name": "Wrapped RBNT" + }, + { + "id": "wrapped-real-sociedad-kayen", + "symbol": "wrso", + "name": "Wrapped Real Sociedad (Kayen)" + }, + { + "id": "wrapped-robinhood-xstock", + "symbol": "whoodx", + "name": "Wrapped Robinhood xStock" + }, + { + "id": "wrapped-roush-fenway-keselowski-kayen", + "symbol": "wroush", + "name": "Wrapped Roush Fenway Keselowski (Kayen)" + }, + { + "id": "wrapped-rseth", + "symbol": "wrseth", + "name": "Wrapped rsETH" + }, + { + "id": "wrapped-rss3", + "symbol": "wrss3", + "name": "Wrapped RSS3" + }, + { + "id": "wrapped-safu", + "symbol": "wsafu", + "name": "Wrapped SAFU" + }, + { + "id": "wrapped-saga", + "symbol": "saga", + "name": "Wrapped SAGA" + }, + { + "id": "wrapped-salesforce-xstock", + "symbol": "wcrmx", + "name": "Wrapped Salesforce xStock" + }, + { + "id": "wrapped-samsunspor-kayen", + "symbol": "wsam", + "name": "Wrapped Samsunspor (Kayen)" + }, + { + "id": "wrapped-sao-paulo-fc-kayen", + "symbol": "wspfc", + "name": "Wrapped Sao Paulo FC (Kayen)" + }, + { + "id": "wrapped-saracens-kayen", + "symbol": "wsarries", + "name": "Wrapped Saracens (Kayen)" + }, + { + "id": "wrapped-savings-rusd", + "symbol": "wsrusd", + "name": "Wrapped Savings rUSD" + }, + { + "id": "wrapped-sei", + "symbol": "wsei", + "name": "Wrapped SEI" + }, + { + "id": "wrapped-sei-universal", + "symbol": "usei", + "name": "Wrapped SEI (Universal)" + }, + { + "id": "wrapped-sevilla-fc-kayen", + "symbol": "wsevilla", + "name": "Wrapped Sevilla FC (Kayen)" + }, + { + "id": "wrapped-shiden-network", + "symbol": "wsdn", + "name": "Wrapped Shiden Network" + }, + { + "id": "wrapped-shido", + "symbol": "wshido", + "name": "Wrapped Shido" + }, + { + "id": "wrapped-sint-truidense-voetbalvereniging-kayen", + "symbol": "wstv", + "name": "Wrapped Sint-Truidense Voetbalvereniging (Kayen)" + }, + { + "id": "wrapped-sl-benfica-kayen", + "symbol": "wbenfica", + "name": "Wrapped SL Benfica (Kayen)" + }, + { + "id": "wrapped-sol-21-co", + "symbol": "21sol", + "name": "21.co Wrapped SOL" + }, + { + "id": "wrapped-solana", + "symbol": "sol", + "name": "Wrapped SOL" + }, + { + "id": "wrapped-solana-universal", + "symbol": "usol", + "name": "Wrapped Solana (Universal)" + }, + { + "id": "wrapped-somi", + "symbol": "wsomi", + "name": "Wrapped SOMI" + }, + { + "id": "wrapped-songbird", + "symbol": "wsgb", + "name": "Wrapped Songbird" + }, + { + "id": "wrapped-sonic", + "symbol": "ws", + "name": "Wrapped Sonic" + }, + { + "id": "wrapped-sonic-origin", + "symbol": "wos", + "name": "Wrapped Origin Sonic" + }, + { + "id": "wrapped-soph", + "symbol": "wsoph", + "name": "Wrapped SOPH" + }, + { + "id": "wrapped-sport-club-internacional-kayen", + "symbol": "wsaci", + "name": "Wrapped Sport Club Internacional (Kayen)" + }, + { + "id": "wrapped-stade-francais-paris-kayen", + "symbol": "wsfp", + "name": "Wrapped Stade Francais Paris (Kayen)" + }, + { + "id": "wrapped-staked-link", + "symbol": "wstlink", + "name": "Wrapped Staked LINK" + }, + { + "id": "wrapped-staked-usdt", + "symbol": "wstusdt", + "name": "Wrapped Staked USDT" + }, + { + "id": "wrapped-stastr", + "symbol": "wstastr", + "name": "Wrapped stASTR" + }, + { + "id": "wrapped-steth", + "symbol": "wsteth", + "name": "Wrapped stETH" + }, + { + "id": "wrapped-stkscusd", + "symbol": "wstkscusd", + "name": "Wrapped stkscUSD" + }, + { + "id": "wrapped-stx-velar", + "symbol": "wstx", + "name": "Wrapped STX (Velar)" + }, + { + "id": "wrapped-sui-universal", + "symbol": "usui", + "name": "Wrapped SUI (Universal)" + }, + { + "id": "wrapped-super-oeth", + "symbol": "wsuperoeth", + "name": "Wrapped Super OETH" + }, + { + "id": "wrapped-tac", + "symbol": "wtac", + "name": "Wrapped TAC" + }, + { + "id": "wrapped-tao", + "symbol": "wtao", + "name": "Wrapped TAO" + }, + { + "id": "wrapped-tara", + "symbol": "wtara", + "name": "Wrapped Tara" + }, + { + "id": "wrapped-team-heretics-kayen", + "symbol": "wth", + "name": "Wrapped Team Heretics (Kayen)" + }, + { + "id": "wrapped-telos", + "symbol": "wtlos", + "name": "Wrapped Telos" + }, + { + "id": "wrapped-terra", + "symbol": "lunc", + "name": "Wrapped LUNC" + }, + { + "id": "wrapped-tesla-xstock", + "symbol": "wtslax", + "name": "Wrapped Tesla xStock" + }, + { + "id": "wrapped-thermo-fisher-xstock", + "symbol": "wtmox", + "name": "Wrapped Thermo Fisher xStock" + }, + { + "id": "wrapped-the-sharks-kayen", + "symbol": "wsharks", + "name": "Wrapped The Sharks (Kayen)" + }, + { + "id": "wrapped-thunderpokt", + "symbol": "wtpokt", + "name": "Wrapped ThunderPOKT" + }, + { + "id": "wrapped-thunder-token", + "symbol": "wtt", + "name": "Wrapped Thunder Token" + }, + { + "id": "wrapped-ton", + "symbol": "wton", + "name": "Wrapped TON" + }, + { + "id": "wrapped-tottenham-hotspur-kayen", + "symbol": "wspurs", + "name": "Wrapped Tottenham Hotspur (Kayen)" + }, + { + "id": "wrapped-trabzonspor-kayen", + "symbol": "wtra", + "name": "Wrapped Trabzonspor (Kayen)" + }, + { + "id": "wrapped-tron", + "symbol": "wtrx", + "name": "Wrapped Tron" + }, + { + "id": "wrapped-udinese-calcio-kayen", + "symbol": "wudi", + "name": "Wrapped Udinese Calcio (Kayen)" + }, + { + "id": "wrapped-ultimate-fighting-championship-kayen", + "symbol": "wufc", + "name": "Wrapped Ultimate Fighting Championship (Kayen)" + }, + { + "id": "wrapped-unit0", + "symbol": "wunit0", + "name": "Wrapped Unit0" + }, + { + "id": "wrapped-unitedhealth-xstock", + "symbol": "wunhx", + "name": "Wrapped UnitedHealth xStock" + }, + { + "id": "wrapped-universidad-de-chile-kayen", + "symbol": "wuch", + "name": "Wrapped Universidad de Chile (Kayen)" + }, + { + "id": "wrapped-usdc-caviarnine", + "symbol": "xusdc", + "name": "Instabridge Bridged USDC (Radix)" + }, + { + "id": "wrapped-usdm", + "symbol": "wusdm", + "name": "Wrapped USDM" + }, + { + "id": "wrapped-ust", + "symbol": "ustc", + "name": "Wrapped USTC" + }, + { + "id": "wrapped-valencia-kayen", + "symbol": "wvcf", + "name": "Wrapped Valencia (Kayen)" + }, + { + "id": "wrapped-vana", + "symbol": "wvana", + "name": "Wrapped Vana" + }, + { + "id": "wrapped-vasco-da-gama-kayen", + "symbol": "wvasco", + "name": "Wrapped Vasco da Gama (Kayen)" + }, + { + "id": "wrapped-velas", + "symbol": "wvlx", + "name": "Wrapped Velas" + }, + { + "id": "wrapped-venom", + "symbol": "wvenom", + "name": "Wrapped VENOM" + }, + { + "id": "wrapped-viction", + "symbol": "wvic", + "name": "Wrapped Viction" + }, + { + "id": "wrapped-virgin-gen-0-cryptokitties", + "symbol": "wvg0", + "name": "Wrapped Virgin Gen-0 CryptoKittties" + }, + { + "id": "wrapped-vitality-kayen", + "symbol": "wvit", + "name": "Wrapped Vitality (Kayen)" + }, + { + "id": "wrapped-vtru", + "symbol": "vtru", + "name": "Vitruveo Bridged VTRU" + }, + { + "id": "wrapped-vtru-2", + "symbol": "wvtru", + "name": "Wrapped VTRU" + }, + { + "id": "wrapped-walmart-xstock", + "symbol": "wwmtx", + "name": "Wrapped Walmart xStock" + }, + { + "id": "wrapped-wan", + "symbol": "wwan", + "name": "Wrapped Wan" + }, + { + "id": "wrapped-wdoge", + "symbol": "wwdoge", + "name": "Wrapped WDOGE" + }, + { + "id": "wrapped-xdc", + "symbol": "wxdc", + "name": "Wrapped XDC" + }, + { + "id": "wrapped-xhopr", + "symbol": "wxhopr", + "name": "Wrapped xHOPR" + }, + { + "id": "wrapped-xoc", + "symbol": "wxoc", + "name": "Wrapped XOC" + }, + { + "id": "wrapped-xpl", + "symbol": "wxpl", + "name": "Wrapped XPL" + }, + { + "id": "wrapped-xrp", + "symbol": "wxrp", + "name": "Wrapped XRP" + }, + { + "id": "wrapped-xrp-universal", + "symbol": "uxrp", + "name": "Wrapped XRP (Universal)" + }, + { + "id": "wrapped-xtz", + "symbol": "wxtz", + "name": "Wrapped XTZ" + }, + { + "id": "wrapped-zec-universal", + "symbol": "uzec", + "name": "Wrapped ZEC (Universal)" + }, + { + "id": "wrapped-zedxion", + "symbol": "wzedx", + "name": "Wrapped Zedxion" + }, + { + "id": "wrapped-zenbtc", + "symbol": "zenbtc", + "name": "Zenrock BTC" + }, + { + "id": "wrapped-zetachain", + "symbol": "wzeta", + "name": "Wrapped ZETA" + }, + { + "id": "wrapped-zil", + "symbol": "wzil", + "name": "Wrapped ZIL" + }, + { + "id": "wrapped-zkcro", + "symbol": "wzkcro", + "name": "Wrapped zkCRO" + }, + { + "id": "wreath", + "symbol": "wreath", + "name": "Wreath" + }, + { + "id": "wrongcoin", + "symbol": "wrong", + "name": "WrongCoin" + }, + { + "id": "wsb-classic", + "symbol": "wsbc", + "name": "WSB Classic" + }, + { + "id": "wsb-coin", + "symbol": "wsb", + "name": "WSB Coin" + }, + { + "id": "wtf-opossum", + "symbol": "wtfo", + "name": "WTF Opossum" + }, + { + "id": "wuai", + "symbol": "wuai", + "name": "WuAI" + }, + { + "id": "wuff", + "symbol": "wuff", + "name": "WUFF" + }, + { + "id": "wuffi", + "symbol": "wuf", + "name": "WUFFI" + }, + { + "id": "wukong", + "symbol": "wukong", + "name": "Wukong" + }, + { + "id": "wukong-musk", + "symbol": "wukong", + "name": "Wukong Musk" + }, + { + "id": "wurk", + "symbol": "wurk", + "name": "WURK" + }, + { + "id": "wut", + "symbol": "wut", + "name": "WUT" + }, + { + "id": "wu-wei", + "symbol": "wuwei", + "name": "無為 (Wu Wei)" + }, + { + "id": "wwemix", + "symbol": "wwemix", + "name": "WWEMIX" + }, + { + "id": "x1000", + "symbol": "x1000", + "name": "X1000" + }, + { + "id": "x-2", + "symbol": "x", + "name": "X" + }, + { + "id": "x20-usd", + "symbol": "usdx", + "name": "X20 USD" + }, + { + "id": "x2y2", + "symbol": "x2y2", + "name": "X2Y2" + }, + { + "id": "x314", + "symbol": "x314", + "name": "X314 [OLD]" + }, + { + "id": "x314-2", + "symbol": "x314", + "name": "X314" + }, + { + "id": "x420", + "symbol": "x420", + "name": "x420" + }, + { + "id": "x444", + "symbol": "x444", + "name": "x444" + }, + { + "id": "x4pay", + "symbol": "x4pay", + "name": "x4Pay" + }, + { + "id": "x7r", + "symbol": "x7r", + "name": "X7R" + }, + { + "id": "x8-project", + "symbol": "x8x", + "name": "X8X" + }, + { + "id": "xahau", + "symbol": "xah", + "name": "Xahau" + }, + { + "id": "xai-2", + "symbol": "x", + "name": "XAI" + }, + { + "id": "xai-blockchain", + "symbol": "xai", + "name": "Xai" + }, + { + "id": "xai-corp", + "symbol": "xai", + "name": "XAI Corp" + }, + { + "id": "xai-prestocks-2", + "symbol": "xai", + "name": "xAI PreStocks" + }, + { + "id": "xakt_astrovault", + "symbol": "xakt", + "name": "xAKT_Astrovault" + }, + { + "id": "xalgo", + "symbol": "xalgo", + "name": "Folks Finance Staked xALGO" + }, + { + "id": "xalpha-ai", + "symbol": "xalpha", + "name": "XALPHA.AI" + }, + { + "id": "xana", + "symbol": "xeta", + "name": "XANA" + }, + { + "id": "xandeum", + "symbol": "xand", + "name": "Xandeum" + }, + { + "id": "xandeum-sol", + "symbol": "xandsol", + "name": "Xandeum SOL" + }, + { + "id": "xau9999", + "symbol": "xau", + "name": "XAU9999" + }, + { + "id": "xavi-by-virtuals", + "symbol": "xavi", + "name": "XAVI by Virtuals" + }, + { + "id": "xavier-renegade-angel", + "symbol": "xavier", + "name": "Xavier: Renegade Angel" + }, + { + "id": "xbanana", + "symbol": "xbanana", + "name": "XBANANA" + }, + { + "id": "xbanking", + "symbol": "xb", + "name": "XBANKING" + }, + { + "id": "xbear-network", + "symbol": "xbear", + "name": "xBear Network" + }, + { + "id": "xbid", + "symbol": "xbid", + "name": "xBid" + }, + { + "id": "xbld_astrovault", + "symbol": "xbld", + "name": "xBLD_Astrovault" + }, + { + "id": "xboos", + "symbol": "xboos", + "name": "XBOOS" + }, + { + "id": "xborg", + "symbol": "xbg", + "name": "XBorg" + }, + { + "id": "xbo-xom", + "symbol": "xbo", + "name": "$XBO Token" + }, + { + "id": "xbt", + "symbol": "xbt", + "name": "XBT" + }, + { + "id": "xbtsg_astrovault", + "symbol": "xbtsg", + "name": "xBTSG_Astrovault" + }, + { + "id": "xcad-network", + "symbol": "xcad", + "name": "XCAD Network" + }, + { + "id": "xcarnival", + "symbol": "xcv", + "name": "XCarnival" + }, + { + "id": "x-cash", + "symbol": "xcash", + "name": "X-CASH" + }, + { + "id": "xcdot", + "symbol": "dot", + "name": "xcDOT" + }, + { + "id": "xcellar", + "symbol": "xcl", + "name": "Xcellar" + }, + { + "id": "xcel-swap", + "symbol": "xld", + "name": "Xcel Defi" + }, + { + "id": "xception", + "symbol": "xcept", + "name": "XCeption" + }, + { + "id": "xchange-2", + "symbol": "xchange", + "name": "XChange" + }, + { + "id": "xcksm", + "symbol": "xcksm", + "name": "xcKSM" + }, + { + "id": "xcoinmeme", + "symbol": "x", + "name": "Xcoinmeme" + }, + { + "id": "x-com", + "symbol": "x", + "name": "CruxDecussata" + }, + { + "id": "x-community", + "symbol": "x", + "name": "X Community" + }, + { + "id": "xcredi", + "symbol": "xcredi", + "name": "xCREDI" + }, + { + "id": "xcrx", + "symbol": "xcrx", + "name": "xCRX" + }, + { + "id": "xcusdt", + "symbol": "xcusdt", + "name": "xcUSDT" + }, + { + "id": "xd-2", + "symbol": "xd", + "name": "XD" + }, + { + "id": "xdai", + "symbol": "xdai", + "name": "XDAI" + }, + { + "id": "xdai-stake", + "symbol": "stake", + "name": "STAKE" + }, + { + "id": "xdce-crowd-sale", + "symbol": "xdc", + "name": "XDC Network" + }, + { + "id": "xdec-astrovault", + "symbol": "xdec", + "name": "xDEC_Astrovault" + }, + { + "id": "xdefi", + "symbol": "xdefi", + "name": "XDEFI" + }, + { + "id": "xdog", + "symbol": "xdog", + "name": "XDOG" + }, + { + "id": "xdoge", + "symbol": "xdoge", + "name": "Xdoge" + }, + { + "id": "xdoge-2", + "symbol": "xdoge", + "name": "XDOGE" + }, + { + "id": "xdoge-4", + "symbol": "xd", + "name": "XDoge" + }, + { + "id": "xdoge-5", + "symbol": "xdoge", + "name": "XDOGE" + }, + { + "id": "xdollar-stablecoin", + "symbol": "xusd", + "name": "xDollar Stablecoin" + }, + { + "id": "xeleb-protocol", + "symbol": "xcx", + "name": "Xeleb Protocol" + }, + { + "id": "xelis", + "symbol": "xel", + "name": "Xelis" + }, + { + "id": "xels", + "symbol": "xels", + "name": "XELS" + }, + { + "id": "x-empire", + "symbol": "x", + "name": "X Empire" + }, + { + "id": "xena-finance", + "symbol": "xen", + "name": "Xena Finance" + }, + { + "id": "xen-crypto", + "symbol": "xen", + "name": "XEN Crypto" + }, + { + "id": "xen-crypto-bsc", + "symbol": "bxen", + "name": "XEN Crypto (BSC)" + }, + { + "id": "xen-crypto-matic", + "symbol": "mxen", + "name": "Xen Crypto (MATIC)" + }, + { + "id": "xen-crypto-pulsechain", + "symbol": "pxen", + "name": "XEN Crypto (PulseChain)" + }, + { + "id": "xend-finance", + "symbol": "rwa", + "name": "Xend Finance" + }, + { + "id": "xend-it", + "symbol": "xend", + "name": "XEND IT" + }, + { + "id": "xeno", + "symbol": "xeno", + "name": "Xeno" + }, + { + "id": "xenomorph", + "symbol": "xeno", + "name": "XENOMORPH" + }, + { + "id": "xenopus-laevis", + "symbol": "xeno", + "name": "Xenopus laevis" + }, + { + "id": "xensei", + "symbol": "xsei", + "name": "Xensei" + }, + { + "id": "xerberus", + "symbol": "xer", + "name": "Xerberus" + }, + { + "id": "xerc20-pro", + "symbol": "x", + "name": "X" + }, + { + "id": "xero-ai-2", + "symbol": "xerai", + "name": "XERO AI" + }, + { + "id": "xerox-player-agent", + "symbol": "xerai", + "name": "Xerox Player Agent" + }, + { + "id": "xetra-ai", + "symbol": "xetra", + "name": "Xetra AI" + }, + { + "id": "xexamai", + "symbol": "xexai", + "name": "XEXAMAI" + }, + { + "id": "xfai", + "symbol": "xfit", + "name": "Xfai" + }, + { + "id": "xfinance", + "symbol": "xfi", + "name": "Xfinance" + }, + { + "id": "xfinite-entertainment-token", + "symbol": "xet", + "name": "Xfinite Entertainment" + }, + { + "id": "xfit", + "symbol": "xfit", + "name": "XFai" + }, + { + "id": "xflix_astrovault", + "symbol": "xflix", + "name": "xFLIX_Astrovault" + }, + { + "id": "xfractal", + "symbol": "fractal", + "name": "xFractal" + }, + { + "id": "xfrog", + "symbol": "xfrog", + "name": "XFROG" + }, + { + "id": "xfund", + "symbol": "xfund", + "name": "xFUND" + }, + { + "id": "xgame", + "symbol": "xgame", + "name": "XGame" + }, + { + "id": "x-game", + "symbol": "xg", + "name": "X-GAME" + }, + { + "id": "xgrav_astrovault", + "symbol": "xgrav", + "name": "xGRAV_Astrovault" + }, + { + "id": "xgrok", + "symbol": "xgrok", + "name": "XGrok" + }, + { + "id": "xgrow", + "symbol": "xgr", + "name": "Xgrow" + }, + { + "id": "xhashtag", + "symbol": "xtag", + "name": "xHashtag" + }, + { + "id": "xhaven", + "symbol": "xvn", + "name": "xHaven" + }, + { + "id": "xian", + "symbol": "xian", + "name": "Xian" + }, + { + "id": "xiaobai", + "symbol": "xiaobai", + "name": "XiaoBai" + }, + { + "id": "xiaobai-2", + "symbol": "小白", + "name": "小白" + }, + { + "id": "xiaojie", + "symbol": "xiao", + "name": "Xiaojie" + }, + { + "id": "xiao-lang-gou", + "symbol": "xlg", + "name": "xiao lang gou" + }, + { + "id": "xidar", + "symbol": "ida", + "name": "Xidar" + }, + { + "id": "xiiicoin", + "symbol": "xiii", + "name": "XIIICOIN" + }, + { + "id": "xing-xing", + "symbol": "xing", + "name": "Xing Xing" + }, + { + "id": "xing-xing-2", + "symbol": "xing", + "name": "Xing Xing" + }, + { + "id": "xio", + "symbol": "xio", + "name": "Blockzero Labs" + }, + { + "id": "xion-2", + "symbol": "xion", + "name": "XION" + }, + { + "id": "xitcoin", + "symbol": "$xtc", + "name": "Xitcoin" + }, + { + "id": "xi-token", + "symbol": "xi", + "name": "Xi" + }, + { + "id": "xiuxian", + "symbol": "修仙", + "name": "修仙 (XiuXian)" + }, + { + "id": "xiv-the-awakening", + "symbol": "golem", + "name": "XIV: THE AWAKENING" + }, + { + "id": "xjewel", + "symbol": "xjewel", + "name": "xJEWEL" + }, + { + "id": "xl1", + "symbol": "xl1", + "name": "XL1" + }, + { + "id": "xlink-bridged-btc-stacks", + "symbol": "abtc", + "name": "XLink Bridged BTC" + }, + { + "id": "xllm2", + "symbol": "xllm2", + "name": "xLLM2" + }, + { + "id": "xmaquina", + "symbol": "deus", + "name": "XMAQUINA" + }, + { + "id": "xmax", + "symbol": "xmx", + "name": "XMax" + }, + { + "id": "xmeme", + "symbol": "xmeme", + "name": "XMEME" + }, + { + "id": "xmon", + "symbol": "xmon", + "name": "XMON" + }, + { + "id": "xmoney", + "symbol": "xmoney", + "name": "XMONEY" + }, + { + "id": "x-money", + "symbol": "xmoney", + "name": "X Money" + }, + { + "id": "xmoney-2", + "symbol": "xmn", + "name": "xMoney" + }, + { + "id": "xmoney-3", + "symbol": "xmoney", + "name": "XMONEY" + }, + { + "id": "xmpwr_astrovault", + "symbol": "xmpwr", + "name": "xMPWR_Astrovault" + }, + { + "id": "xnet-mobile-2", + "symbol": "xnet", + "name": "XNET Mobile" + }, + { + "id": "xnf", + "symbol": "xnf", + "name": "XNF" + }, + { + "id": "xoc", + "symbol": "xoc", + "name": "XOC" + }, + { + "id": "xociety", + "symbol": "xo", + "name": "Xociety" + }, + { + "id": "xoe", + "symbol": "xoe", + "name": "XOE" + }, + { + "id": "xone-bridged-usdt-xone", + "symbol": "usdt", + "name": "Xone Bridged USDT (Xone)" + }, + { + "id": "xonxrp", + "symbol": "x", + "name": "XonXRP" + }, + { + "id": "xo-protocol", + "symbol": "xoxo", + "name": "XO Protocol" + }, + { + "id": "xosmo_astrovault", + "symbol": "xosmo", + "name": "xOSMO_Astrovault" + }, + { + "id": "xox-labs", + "symbol": "xox", + "name": "XOX Labs" + }, + { + "id": "xoxno", + "symbol": "xoxno", + "name": "XOXNO" + }, + { + "id": "xoxno-staked-egld", + "symbol": "xegld", + "name": "XOXNO Staked EGLD" + }, + { + "id": "xoxo-monkey", + "symbol": "xoxo", + "name": "XOXO Monkey" + }, + { + "id": "xp", + "symbol": "xp", + "name": "XP" + }, + { + "id": "xp-2", + "symbol": "t3xp", + "name": "XP" + }, + { + "id": "xp-3", + "symbol": "xp", + "name": "XP" + }, + { + "id": "xpack", + "symbol": "xpack", + "name": "xPACK" + }, + { + "id": "xpad-pro", + "symbol": "xpp", + "name": "Xpad.pro" + }, + { + "id": "xpansion-game", + "symbol": "xps", + "name": "Xpansion Game" + }, + { + "id": "xpasg_astrovault", + "symbol": "xpasg", + "name": "xPASG_Astrovault" + }, + { + "id": "x-pass", + "symbol": "xpass", + "name": "X-PASS" + }, + { + "id": "xpedition", + "symbol": "xped", + "name": "Xpedition" + }, + { + "id": "xpendium", + "symbol": "xpnd", + "name": "Xpendium" + }, + { + "id": "x-pepe-2", + "symbol": "xpe", + "name": "X Pepe" + }, + { + "id": "xphere", + "symbol": "xp", + "name": "Xphere" + }, + { + "id": "xpi", + "symbol": "xpi", + "name": "XPi" + }, + { + "id": "xpin-network", + "symbol": "xpin", + "name": "XPIN Network" + }, + { + "id": "xpla", + "symbol": "xpla", + "name": "XPLA" + }, + { + "id": "xplq_astrovault", + "symbol": "xplq", + "name": "xPLQ_Astrovault" + }, + { + "id": "xplus-ai", + "symbol": "xpai", + "name": "XPlus AI" + }, + { + "id": "xpmarket", + "symbol": "xpm", + "name": "XPmarket" + }, + { + "id": "xp-network", + "symbol": "xpnet", + "name": "XP Network" + }, + { + "id": "xpowermine-com-apow", + "symbol": "apow", + "name": "XPowermine.com APOW [OLD]" + }, + { + "id": "xpowermine-com-apow-2", + "symbol": "apow", + "name": "XPowermine.com APOW" + }, + { + "id": "xpowermine-com-xpow-2", + "symbol": "xpow", + "name": "XPowermine.com XPOW" + }, + { + "id": "x-project-erc", + "symbol": "xers", + "name": "X Project ERC" + }, + { + "id": "x-protocol-2", + "symbol": "x", + "name": "X Protocol" + }, + { + "id": "xpunk-labs", + "symbol": "xpunk", + "name": "Xpunk Labs" + }, + { + "id": "xpx", + "symbol": "xpx", + "name": "XPX" + }, + { + "id": "xraders", + "symbol": "xr", + "name": "Xraders" + }, + { + "id": "xraid", + "symbol": "xraid", + "name": "XRAID" + }, + { + "id": "xreators", + "symbol": "ort", + "name": "XREATORS" + }, + { + "id": "xrgb", + "symbol": "xrgb", + "name": "XRGB" + }, + { + "id": "xrocket", + "symbol": "xrock", + "name": "xRocket" + }, + { + "id": "xrow", + "symbol": "xrow", + "name": "XROW" + }, + { + "id": "xrp20", + "symbol": "xrp20", + "name": "XRP20" + }, + { + "id": "xrpatriot", + "symbol": "xrpatriot", + "name": "Xrpatriot" + }, + { + "id": "xrpaynet", + "symbol": "xrpaynet", + "name": "XRPayNet" + }, + { + "id": "xrp-classic-new", + "symbol": "xrpc", + "name": "XRP Classic" + }, + { + "id": "xrp-god-candle", + "symbol": "xgc", + "name": "XRP GOD CANDLE" + }, + { + "id": "xrp-healthcare", + "symbol": "xrph", + "name": "XRP Healthcare" + }, + { + "id": "xrps", + "symbol": "xrps", + "name": "XRPS" + }, + { + "id": "xrpturbo", + "symbol": "xrt", + "name": "Xrpturbo" + }, + { + "id": "xrun", + "symbol": "xrun", + "name": "XRun" + }, + { + "id": "xsauce", + "symbol": "xsauce", + "name": "xSAUCE" + }, + { + "id": "xsgd", + "symbol": "xsgd", + "name": "XSGD" + }, + { + "id": "xshib", + "symbol": "xshib", + "name": "XSHIB" + }, + { + "id": "xsilo", + "symbol": "xsilo", + "name": "XSilo" + }, + { + "id": "xsl-labs", + "symbol": "syl", + "name": "myDid" + }, + { + "id": "xspace", + "symbol": "xsp", + "name": "XSPACE" + }, + { + "id": "xspectar", + "symbol": "xspectar", + "name": "xSPECTAR" + }, + { + "id": "xsui", + "symbol": "xsui", + "name": "xSUI" + }, + { + "id": "xsushi", + "symbol": "xsushi", + "name": "xSUSHI" + }, + { + "id": "xswap-2", + "symbol": "xswap", + "name": "XSwap" + }, + { + "id": "xswap-bridged-usdc-0g", + "symbol": "usdc.e", + "name": "XSwap Bridged USDC (0G)" + }, + { + "id": "xswap-protocol", + "symbol": "xsp", + "name": "XSwap Protocol" + }, + { + "id": "xswap-treasure", + "symbol": "xtt", + "name": "XSwap Treasure" + }, + { + "id": "xtblock-token", + "symbol": "xtt-b20", + "name": "XTblock" + }, + { + "id": "xtcom-token", + "symbol": "xt", + "name": "XT.com" + }, + { + "id": "xterio", + "symbol": "xter", + "name": "Xterio" + }, + { + "id": "xtoken", + "symbol": "xtk", + "name": "xToken" + }, + { + "id": "x-trade-ai", + "symbol": "xtrade", + "name": "X Trade AI" + }, + { + "id": "xtreme-gains-only", + "symbol": "xgo", + "name": "Xtreme Gains Only" + }, + { + "id": "xtremeverse", + "symbol": "xtreme", + "name": "Xtremeverse" + }, + { + "id": "xtta", + "symbol": "xtta", + "name": "XTTA" + }, + { + "id": "xtusd", + "symbol": "xtusd", + "name": "XT Stablecoin XTUSD" + }, + { + "id": "xusd-babelfish", + "symbol": "xusd", + "name": "XUSD (BabelFish)" + }, + { + "id": "xv", + "symbol": "xv", + "name": "XV" + }, + { + "id": "xvgarb", + "symbol": "xvgarb", + "name": "XVGARB" + }, + { + "id": "xvgava", + "symbol": "xvgava", + "name": "XVGAVA" + }, + { + "id": "xvgbase", + "symbol": "xvgbase", + "name": "XVGBASE" + }, + { + "id": "xvgopt", + "symbol": "xvgopt", + "name": "XVGOPT" + }, + { + "id": "xvgson", + "symbol": "xvgson", + "name": "XVGSON" + }, + { + "id": "xvgzke", + "symbol": "xvgzke", + "name": "XVGZKE" + }, + { + "id": "xwawa", + "symbol": "xwawa", + "name": "Xwawa" + }, + { + "id": "xwin-finance", + "symbol": "xwin", + "name": "xWIN Finance" + }, + { + "id": "x-world-games", + "symbol": "xwg", + "name": "X World Games" + }, + { + "id": "xxcoin", + "symbol": "xx", + "name": "XX Network" + }, + { + "id": "xxcoin-2", + "symbol": "xx", + "name": "XX" + }, + { + "id": "x-xrc-20", + "symbol": "x", + "name": "x (XRC-20)" + }, + { + "id": "xybertic", + "symbol": "xyb", + "name": "Xybertic" + }, + { + "id": "xyo-network", + "symbol": "xyo", + "name": "XYO Network" + }, + { + "id": "xyradao-by-virtuals", + "symbol": "xyra", + "name": "XyraDAO by VIRTUALS" + }, + { + "id": "xyro", + "symbol": "xyro", + "name": "XYRO" + }, + { + "id": "xzk", + "symbol": "xzk", + "name": "Expand" + }, + { + "id": "y", + "symbol": "yai", + "name": "Ÿ" + }, + { + "id": "y2k", + "symbol": "y2k", + "name": "Y2K" + }, + { + "id": "y2k-2", + "symbol": "y2k", + "name": "Y2K" + }, + { + "id": "y8u", + "symbol": "y8u", + "name": "Y8U" + }, + { + "id": "y8u-ai", + "symbol": "y8u", + "name": "Y8U AI" + }, + { + "id": "yachtcoin", + "symbol": "yacht", + "name": "Yachtcoin" + }, + { + "id": "yachts-coin", + "symbol": "ytc", + "name": "Yachts Coin" + }, + { + "id": "yadacoin", + "symbol": "yda", + "name": "YadaCoin" + }, + { + "id": "yadom-hongthai", + "symbol": "yadom", + "name": "Yadom Hongthai" + }, + { + "id": "yagi-the-unbothered", + "symbol": "yagi", + "name": "Yagi The Unbothered" + }, + { + "id": "yait-siu", + "symbol": "yait", + "name": "Yait Siu" + }, + { + "id": "yak", + "symbol": "yak", + "name": "YAK" + }, + { + "id": "yaka", + "symbol": "yaka", + "name": "YAKA" + }, + { + "id": "yaku", + "symbol": "yaku", + "name": "Yaku" + }, + { + "id": "yakushima-inu", + "symbol": "yaku", + "name": "Yakushima Inu" + }, + { + "id": "yakuzai", + "symbol": "vybe", + "name": "YAKUZAI" + }, + { + "id": "yala", + "symbol": "yala", + "name": "Yala" + }, + { + "id": "yala-btc", + "symbol": "ybtc", + "name": "Yala BTC" + }, + { + "id": "yalla-sun", + "symbol": "ysu", + "name": "Yalla Sun" + }, + { + "id": "yam-2", + "symbol": "yam", + "name": "YAM" + }, + { + "id": "yamfore", + "symbol": "cblp", + "name": "Yamfore" + }, + { + "id": "yann-lecoin", + "symbol": "yann", + "name": "Yann LeCoin" + }, + { + "id": "yap", + "symbol": "yap", + "name": "yap" + }, + { + "id": "yape", + "symbol": "yape", + "name": "YAPE" + }, + { + "id": "yapp-ai", + "symbol": "yapp", + "name": "Yapp Ai" + }, + { + "id": "yapper", + "symbol": "yapper", + "name": "Yapper" + }, + { + "id": "yapster", + "symbol": "yapster", + "name": "YAPSTER" + }, + { + "id": "yaptrade", + "symbol": "yt", + "name": "YapTrade" + }, + { + "id": "yara-ai", + "symbol": "yara", + "name": "Yara AI" + }, + { + "id": "yawn-s-world", + "symbol": "yawn", + "name": "Yawn's World" + }, + { + "id": "yay-games", + "symbol": "yay", + "name": "YAY Network" + }, + { + "id": "yay-kelp-dao-s-airdrop-gain-eth", + "symbol": "yayageth", + "name": "Yay Kelp DAO’s Airdrop Gain ETH" + }, + { + "id": "yay-stakestone-ether", + "symbol": "yaystone", + "name": "Yay StakeStone Ether" + }, + { + "id": "ycash", + "symbol": "yec", + "name": "Ycash" + }, + { + "id": "ydragon", + "symbol": "ydr", + "name": "YDragon" + }, + { + "id": "ye16z", + "symbol": "ye16z", + "name": "YE16Z" + }, + { + "id": "yearn-crv", + "symbol": "ycrv", + "name": "Yearn CRV" + }, + { + "id": "yearn-ether", + "symbol": "yeth", + "name": "Yearn Ether" + }, + { + "id": "yearn-finance", + "symbol": "yfi", + "name": "yearn.finance" + }, + { + "id": "yearntogether", + "symbol": "yearn", + "name": "YearnTogether [OLD]" + }, + { + "id": "yearntogether-2", + "symbol": "yearn", + "name": "YearnTogether" + }, + { + "id": "yee-2", + "symbol": "yee", + "name": "Yee" + }, + { + "id": "yeet", + "symbol": "yeet", + "name": "Yeet" + }, + { + "id": "yeeti", + "symbol": "yeeti", + "name": "YEETI 液体" + }, + { + "id": "yee-token", + "symbol": "yee", + "name": "Yee Token" + }, + { + "id": "yei-finance", + "symbol": "clo", + "name": "Yei Finance" + }, + { + "id": "yelay", + "symbol": "ylay", + "name": "Yelay" + }, + { + "id": "yel-finance", + "symbol": "yel", + "name": "Yel.Finance" + }, + { + "id": "yellow-bnb-4", + "symbol": "ybnb", + "name": "Yellow BNB 4" + }, + { + "id": "yellowfangusd1", + "symbol": "yfusd1", + "name": "YellowFangUSD1" + }, + { + "id": "yellow-pepe", + "symbol": "yelpe", + "name": "Yellow Pepe" + }, + { + "id": "yellow-pepe-2", + "symbol": "yepe", + "name": "Yellow Pepe" + }, + { + "id": "yellow-road", + "symbol": "road", + "name": "Yellow Road" + }, + { + "id": "yellow-shib", + "symbol": "shiby", + "name": "Yellow Shib" + }, + { + "id": "yellow-umbrella", + "symbol": "yu", + "name": "Yellow Umbrella" + }, + { + "id": "yelo-cat", + "symbol": "yelo", + "name": "Yelo Cat" + }, + { + "id": "yes-3", + "symbol": "yes", + "name": "YES" + }, + { + "id": "yes-but", + "symbol": "yesbut", + "name": "Yes, But" + }, + { + "id": "yes-chad", + "symbol": "yes", + "name": "Yes Chad" + }, + { + "id": "yes-chad-2", + "symbol": "yes", + "name": "Yes Chad" + }, + { + "id": "yes-money", + "symbol": "yes", + "name": "YES Money" + }, + { + "id": "yesorno-2", + "symbol": "yon", + "name": "YESorNO" + }, + { + "id": "yes-token", + "symbol": "yes", + "name": "YES Token" + }, + { + "id": "yeth", + "symbol": "yeth", + "name": "yETH" + }, + { + "id": "yeti", + "symbol": "yeti", + "name": "Yeti" + }, + { + "id": "yeti-2", + "symbol": "yeti", + "name": "YETI" + }, + { + "id": "yeti-3", + "symbol": "yeti", + "name": "YETI" + }, + { + "id": "yeti-the-abominable", + "symbol": "yeti", + "name": "Yeti the Abominable" + }, + { + "id": "yfdai-finance", + "symbol": "yf-dai", + "name": "YfDAI.finance" + }, + { + "id": "yfii-finance", + "symbol": "yfii", + "name": "DFI.money" + }, + { + "id": "yfione-2", + "symbol": "yfo", + "name": "YFIONE" + }, + { + "id": "yfi-yvault", + "symbol": "yvyfi", + "name": "YFI yVault" + }, + { + "id": "yfx", + "symbol": "yfx", + "name": "Your Futures Exchange" + }, + { + "id": "yield-24", + "symbol": "y24", + "name": "Yield 24" + }, + { + "id": "yield-app", + "symbol": "yld", + "name": "Yield App" + }, + { + "id": "yield-basis", + "symbol": "yb", + "name": "Yield Basis" + }, + { + "id": "yield-basis-btc", + "symbol": "ybbtc", + "name": "Yield Basis BTC" + }, + { + "id": "yieldblox", + "symbol": "ybx", + "name": "YieldBlox" + }, + { + "id": "yieldbricks", + "symbol": "ybr", + "name": "YieldBricks" + }, + { + "id": "yield-btc-b", + "symbol": "ybtc.b", + "name": "Yield BTC.B" + }, + { + "id": "yieldfarming-index", + "symbol": "yfx", + "name": "YieldFarming Index" + }, + { + "id": "yieldfi-vybtc", + "symbol": "vybtc", + "name": "YieldFi vyBTC" + }, + { + "id": "yieldfi-vyeth", + "symbol": "vyeth", + "name": "YieldFi vyETH" + }, + { + "id": "yieldfi-vyusd", + "symbol": "vyusd", + "name": "YieldFi vyUSD" + }, + { + "id": "yieldfi-ybtc", + "symbol": "ybtc", + "name": "YieldFi yBTC" + }, + { + "id": "yieldfi-yeth", + "symbol": "yeth", + "name": "YieldFi yETH" + }, + { + "id": "yieldfi-ytoken", + "symbol": "yusd", + "name": "YieldFi yToken" + }, + { + "id": "yieldflow", + "symbol": "yflow", + "name": "Yieldflow" + }, + { + "id": "yield-gata", + "symbol": "ygata", + "name": "Yield GATA" + }, + { + "id": "yield-guild-games", + "symbol": "ygg", + "name": "Yield Guild Games" + }, + { + "id": "yieldification", + "symbol": "ydf", + "name": "Yieldification" + }, + { + "id": "yieldly", + "symbol": "yldy", + "name": "Yieldly" + }, + { + "id": "yieldmachine", + "symbol": "ymach", + "name": "YieldMachine by Virtuals" + }, + { + "id": "yieldnest", + "symbol": "ynd", + "name": "YieldNest" + }, + { + "id": "yieldnest-restaked-bitfi-btc-kernel", + "symbol": "ynbfbtck", + "name": "YieldNest Restaked BitFi BTC - Kernel" + }, + { + "id": "yieldnest-restaked-coffer-btc-kernel", + "symbol": "yncobtck", + "name": "YieldNest Restaked Coffer BTC - Kernel" + }, + { + "id": "yieldnest-restaked-eth", + "symbol": "yneth", + "name": "YieldNest Restaked ETH" + }, + { + "id": "yieldnest-rwa-max", + "symbol": "ynrwax", + "name": "YieldNest RWA MAX" + }, + { + "id": "yield-optimizer-btc", + "symbol": "yobtc", + "name": "Yield Optimizer BTC" + }, + { + "id": "yield-optimizer-eth", + "symbol": "yoeth", + "name": "Yield Optimizer ETH" + }, + { + "id": "yield-optimizer-eur", + "symbol": "yoeur", + "name": "Yield Optimizer EUR" + }, + { + "id": "yield-optimizer-gold", + "symbol": "yogold", + "name": "Yield Optimizer Gold" + }, + { + "id": "yield-optimizer-usd", + "symbol": "yousd", + "name": "Yield Optimizer USD" + }, + { + "id": "yield-protocol", + "symbol": "yield", + "name": "Yield Protocol" + }, + { + "id": "yieldstone", + "symbol": "$yield", + "name": "YieldStone" + }, + { + "id": "yield-tryb", + "symbol": "ytryb", + "name": "Yield TRYB" + }, + { + "id": "yieldwatch", + "symbol": "watch", + "name": "Yieldwatch" + }, + { + "id": "yield-yak", + "symbol": "yak", + "name": "Yield Yak" + }, + { + "id": "yield-yak-avax", + "symbol": "yyavax", + "name": "Yield Yak AVAX" + }, + { + "id": "yieltra", + "symbol": "ylt", + "name": "Yieltra" + }, + { + "id": "yikes-dog", + "symbol": "yikes", + "name": "Yikes Dog" + }, + { + "id": "yinyang-2", + "symbol": "阴阳", + "name": "YinYang" + }, + { + "id": "yisayacoin", + "symbol": "isa", + "name": "Yisayacoin" + }, + { + "id": "yld", + "symbol": "yld", + "name": "YLD" + }, + { + "id": "ylds", + "symbol": "ylds", + "name": "YLDS" + }, + { + "id": "ynbnb-max", + "symbol": "ynbnbx", + "name": "ynBNB MAX" + }, + { + "id": "yne", + "symbol": "yne", + "name": "yesnoerror" + }, + { + "id": "yneth-max", + "symbol": "ynethx", + "name": "ynETH MAX" + }, + { + "id": "ynusd-max", + "symbol": "ynusdx", + "name": "ynUSD Max" + }, + { + "id": "yobi", + "symbol": "yobi", + "name": "Yobi" + }, + { + "id": "yo-chat", + "symbol": "chat", + "name": "yo chat" + }, + { + "id": "yocoinyoco", + "symbol": "yoco", + "name": "YocoinYOCO" + }, + { + "id": "yod-agent", + "symbol": "yod", + "name": "Yod Agent" + }, + { + "id": "yodeswap", + "symbol": "yode", + "name": "YodeSwap" + }, + { + "id": "yo-exchange", + "symbol": "yoex", + "name": "YO EXCHANGE" + }, + { + "id": "yokaiswap", + "symbol": "yok", + "name": "YokaiSwap" + }, + { + "id": "yoko", + "symbol": "yoko", + "name": "Yoko" + }, + { + "id": "yolo-games", + "symbol": "yolo", + "name": "YOLO Games" + }, + { + "id": "yooldo", + "symbol": "yool", + "name": "Yooldo" + }, + { + "id": "yooldo-games", + "symbol": "esports", + "name": "Yooldo Games" + }, + { + "id": "yoomi", + "symbol": "yoomi", + "name": "Yoomi" + }, + { + "id": "yooppi", + "symbol": "ypp", + "name": "Yooppi" + }, + { + "id": "yooshi", + "symbol": "yooshi", + "name": "YooShi" + }, + { + "id": "yoshi-exchange", + "symbol": "yoshi", + "name": "Yoshi.exchange" + }, + { + "id": "yotoshi", + "symbol": "yoto", + "name": "Yotoshi" + }, + { + "id": "you-can-now-buy", + "symbol": "happiness", + "name": "you can now buy" + }, + { + "id": "youclout", + "symbol": "yct", + "name": "Youclout" + }, + { + "id": "youcoin-2", + "symbol": "you", + "name": "Youcoin" + }, + { + "id": "you-dont-want-this-life", + "symbol": "ydwtl", + "name": "You Dont Want This Life" + }, + { + "id": "you-held", + "symbol": "pov", + "name": "You Held" + }, + { + "id": "you-looked", + "symbol": "circle", + "name": "You Looked" + }, + { + "id": "younes", + "symbol": "younes", + "name": "YOUNES" + }, + { + "id": "young", + "symbol": "yng", + "name": "Young" + }, + { + "id": "young-boys-fan-token", + "symbol": "ybo", + "name": "Young Boys Fan Token" + }, + { + "id": "young-peezy", + "symbol": "peezy", + "name": "Young Peezy" + }, + { + "id": "young-peezy-2", + "symbol": "peezy", + "name": "Young Peezy" + }, + { + "id": "young-peezy-aka-pepe", + "symbol": "peezy", + "name": "Young Peezy AKA Pepe" + }, + { + "id": "your-ai", + "symbol": "yourai", + "name": "YOUR AI" + }, + { + "id": "yourkiss", + "symbol": "yks", + "name": "YourKiss" + }, + { + "id": "yourmom", + "symbol": "yourmom", + "name": "YourMom" + }, + { + "id": "your-new-savings", + "symbol": "savings", + "name": "your new savings" + }, + { + "id": "your-outie", + "symbol": "outie", + "name": "your outie" + }, + { + "id": "yourself", + "symbol": "yourself", + "name": "Yourself" + }, + { + "id": "yourtime", + "symbol": "ytime", + "name": "YourTime" + }, + { + "id": "yousim", + "symbol": "yousim", + "name": "YouSim" + }, + { + "id": "youves-uusd", + "symbol": "uusd", + "name": "Youves uUSD" + }, + { + "id": "youwho", + "symbol": "you", + "name": "Youwho" + }, + { + "id": "yowie", + "symbol": "yowie", + "name": "YOWIE" + }, + { + "id": "yoyo", + "symbol": "yoyo", + "name": "Yoyo" + }, + { + "id": "yoyo-2", + "symbol": "yoyo", + "name": "YoYo" + }, + { + "id": "yskaela", + "symbol": "yska", + "name": "yskaela" + }, + { + "id": "yu", + "symbol": "yu", + "name": "Yala Stablecoin" + }, + { + "id": "yucky", + "symbol": "yucky", + "name": "Yucky" + }, + { + "id": "yuge-on-eth", + "symbol": "yuge", + "name": "Yuge" + }, + { + "id": "yukie", + "symbol": "yukie", + "name": "Yukie" + }, + { + "id": "yuku-ai", + "symbol": "yuku", + "name": "Yuku AI" + }, + { + "id": "yuli", + "symbol": "yuli", + "name": "YULI" + }, + { + "id": "yum", + "symbol": "yum", + "name": "Yum" + }, + { + "id": "yumi", + "symbol": "$yumi", + "name": "Yumi" + }, + { + "id": "yumiko-ai", + "symbol": "alive", + "name": "Yumiko AI" + }, + { + "id": "yummy", + "symbol": "yummy", + "name": "Yummy" + }, + { + "id": "yuna-ai", + "symbol": "yuna", + "name": "Yuna AI" + }, + { + "id": "yuna-bite", + "symbol": "yuna", + "name": "Yuna Bite" + }, + { + "id": "yunai", + "symbol": "yunai", + "name": "Yunai by Virtuals" + }, + { + "id": "yunki", + "symbol": "yunki", + "name": "Yunki" + }, + { + "id": "y-u-no", + "symbol": "yuno", + "name": "Y U NO" + }, + { + "id": "yup", + "symbol": "yup", + "name": "Yup" + }, + { + "id": "yup-2", + "symbol": "yup", + "name": "Yup" + }, + { + "id": "yupfun-token", + "symbol": "yupfun", + "name": "YUPFUN Token" + }, + { + "id": "yuro-2024", + "symbol": "yuro", + "name": "Yuro 2024" + }, + { + "id": "yuru-coin", + "symbol": "yuru", + "name": "YURU COIN" + }, + { + "id": "yusd-stablecoin", + "symbol": "yusd", + "name": "YUSD Stablecoin" + }, + { + "id": "yuuki", + "symbol": "yuuki", + "name": "YUUKI" + }, + { + "id": "yvboost", + "symbol": "yvboost", + "name": "Yearn Compounding veCRV yVault" + }, + { + "id": "yvdai", + "symbol": "yvdai", + "name": "yvDAI" + }, + { + "id": "yyolo", + "symbol": "yyolo", + "name": "yYOLO" + }, + { + "id": "yzy", + "symbol": "yzy", + "name": "YZY" + }, + { + "id": "z", + "symbol": "z", + "name": "Z" + }, + { + "id": "z-2", + "symbol": "z", + "name": "Z" + }, + { + "id": "zack-morris", + "symbol": "zack", + "name": "Zack Morris" + }, + { + "id": "zaddy-coin", + "symbol": "zaddy", + "name": "Zaddy Coin" + }, + { + "id": "zaia-by-virtuals", + "symbol": "zaia", + "name": "Zaia by Virtuals" + }, + { + "id": "zaibot", + "symbol": "zai", + "name": "Zaibot" + }, + { + "id": "zaif-token", + "symbol": "zaif", + "name": "Zaif" + }, + { + "id": "zaiho", + "symbol": "zai", + "name": "ZAIHO" + }, + { + "id": "zailgo", + "symbol": "zailgo", + "name": "Zailgo" + }, + { + "id": "zalpha", + "symbol": "zalpha", + "name": "ZALPHA" + }, + { + "id": "zambesigold", + "symbol": "zgd", + "name": "ZambesiGold" + }, + { + "id": "zam-io", + "symbol": "zam", + "name": "Zam.io" + }, + { + "id": "zanix", + "symbol": "nix", + "name": "Zanix" + }, + { + "id": "zano", + "symbol": "zano", + "name": "Zano" + }, + { + "id": "zap", + "symbol": "zap", + "name": "Zap" + }, + { + "id": "zap-2", + "symbol": "zap", + "name": "ZAP" + }, + { + "id": "zapcat", + "symbol": "zapcat", + "name": "ZAPCAT" + }, + { + "id": "zapicorn", + "symbol": "zapi", + "name": "Zapicorn" + }, + { + "id": "zapo", + "symbol": "zapo", + "name": "ZAPO AI" + }, + { + "id": "zapper-protocol", + "symbol": "zap", + "name": "Zapper Protocol" + }, + { + "id": "zara-ai", + "symbol": "zara", + "name": "ZARA AI" + }, + { + "id": "zaro-coin", + "symbol": "zaro", + "name": "ZARO Coin" + }, + { + "id": "zaros", + "symbol": "zrs", + "name": "Zaros" + }, + { + "id": "zarp-stablecoin", + "symbol": "zarp", + "name": "ZARP Stablecoin" + }, + { + "id": "zasset-zusd", + "symbol": "zusd", + "name": "Zasset zUSD" + }, + { + "id": "zaya-ai", + "symbol": "zai", + "name": "ZAYA AI" + }, + { + "id": "zaza-sol", + "symbol": "zaza", + "name": "Zaza (SOL)" + }, + { + "id": "zazu", + "symbol": "zazu", + "name": "ZAZU" + }, + { + "id": "zazu-2", + "symbol": "zazu", + "name": "Zazu" + }, + { + "id": "zazzles", + "symbol": "zazzles", + "name": "Zazzles" + }, + { + "id": "zbit-ordinals", + "symbol": "zbit", + "name": "ZBIT•BLUE•BITCOIN" + }, + { + "id": "zcash", + "symbol": "zec", + "name": "Zcash" + }, + { + "id": "zclassic", + "symbol": "zcl", + "name": "Zclassic" + }, + { + "id": "zcoin", + "symbol": "firo", + "name": "Firo" + }, + { + "id": "z-combinator", + "symbol": "zc", + "name": "Z Combinator" + }, + { + "id": "zcore-finance", + "symbol": "zefi", + "name": "ZCore Finance" + }, + { + "id": "zeal", + "symbol": "zeal", + "name": "ZEAL" + }, + { + "id": "zebecian", + "symbol": "$zbec", + "name": "ZEBECIAN" + }, + { + "id": "zebec-network", + "symbol": "zbcn", + "name": "Zebec Network" + }, + { + "id": "zebec-protocol", + "symbol": "zbc", + "name": "Zebec Protocol" + }, + { + "id": "zebi", + "symbol": "zco", + "name": "Zebi" + }, + { + "id": "zebu", + "symbol": "zebu", + "name": "ZEBU" + }, + { + "id": "zeck-murris", + "symbol": "zeck", + "name": "Zeck Murris" + }, + { + "id": "zeddex", + "symbol": "zed", + "name": "ZedDex" + }, + { + "id": "zed-run", + "symbol": "zed", + "name": "ZED Token" + }, + { + "id": "zedxion", + "symbol": "zedxion", + "name": "Zedxion" + }, + { + "id": "zedxion-2", + "symbol": "zedx", + "name": "Zedxion" + }, + { + "id": "zedxion-bridged-eth-zedxion", + "symbol": "eth.z", + "name": "Zedxion Bridged ETH (Zedxion)" + }, + { + "id": "zedxion-bridged-usdt-zedxion", + "symbol": "usdt.z", + "name": "Zedxion Bridged USDT (Zedxion)" + }, + { + "id": "zedxion-usdz", + "symbol": "usdz", + "name": "Zedxion USDZ" + }, + { + "id": "zeebu", + "symbol": "zbu", + "name": "Zeebu" + }, + { + "id": "zeek-coin", + "symbol": "meow", + "name": "Zeek Coin" + }, + { + "id": "zeekwifhat", + "symbol": "zwif", + "name": "Zeekwifhat" + }, + { + "id": "zekta", + "symbol": "zekta", + "name": "ZEKTA" + }, + { + "id": "zelcash", + "symbol": "flux", + "name": "Flux" + }, + { + "id": "zelix", + "symbol": "zelix", + "name": "ZELIX" + }, + { + "id": "zeloop-eco-reward", + "symbol": "erw", + "name": "ZeLoop Eco Reward" + }, + { + "id": "zelwin", + "symbol": "zlw", + "name": "Zelwin" + }, + { + "id": "zenai", + "symbol": "zen", + "name": "ZenAI" + }, + { + "id": "zen-ai", + "symbol": "zai", + "name": "Zen AI" + }, + { + "id": "zen-ai-2", + "symbol": "zenai", + "name": "Zen AI" + }, + { + "id": "zenbase-zentoken", + "symbol": "zent", + "name": "Zenbase ZenToken" + }, + { + "id": "zencash", + "symbol": "zen", + "name": "Horizen" + }, + { + "id": "zenc-coin", + "symbol": "zenc", + "name": "Zenc Coin" + }, + { + "id": "zenchain-2", + "symbol": "ztc", + "name": "ZenChain" + }, + { + "id": "zencore-ai", + "symbol": "zcore", + "name": "Zencore AI" + }, + { + "id": "zendawg", + "symbol": "zen", + "name": "ZENDAWG" + }, + { + "id": "zenex", + "symbol": "znx", + "name": "ZENEX" + }, + { + "id": "zenfrogs", + "symbol": "zen", + "name": "ZenFrogs" + }, + { + "id": "zeniq", + "symbol": "zeniq", + "name": "ZENIQ" + }, + { + "id": "zenith-2", + "symbol": "zen", + "name": "Zenith" + }, + { + "id": "zenith-3", + "symbol": "zen", + "name": "Zenith" + }, + { + "id": "zenith-by-virtuals", + "symbol": "zenith", + "name": "Zenith by Virtuals" + }, + { + "id": "zenith-chain", + "symbol": "zenith", + "name": "Zenith Chain" + }, + { + "id": "zenix", + "symbol": "zenix", + "name": "ZENIX" + }, + { + "id": "zenk-ai", + "symbol": "znk", + "name": "Zenk AI" + }, + { + "id": "zenkoku", + "symbol": "cdb", + "name": "ZENKOKU" + }, + { + "id": "zenko-protocol", + "symbol": "zenko", + "name": "Zenko Protocol" + }, + { + "id": "zenlink-network-token", + "symbol": "zlk", + "name": "Zenlink Network" + }, + { + "id": "zenmemory-ai", + "symbol": "zmen", + "name": "ZenMemory AI" + }, + { + "id": "zenon-2", + "symbol": "znn", + "name": "Zenon" + }, + { + "id": "zenpandacoin", + "symbol": "$zpc", + "name": "ZenPandaCoin" + }, + { + "id": "zenqira", + "symbol": "zenq", + "name": "ZENQIRA" + }, + { + "id": "zenrock", + "symbol": "rock", + "name": "Zenrock" + }, + { + "id": "zentium-tech", + "symbol": "zent", + "name": "Zentium Tech" + }, + { + "id": "zentra", + "symbol": "zntr", + "name": "Zentra" + }, + { + "id": "zentry", + "symbol": "zent", + "name": "Zentry" + }, + { + "id": "zentu", + "symbol": "zent", + "name": "ZENTU" + }, + { + "id": "zeny", + "symbol": "zeny", + "name": "ZENY" + }, + { + "id": "zenzo", + "symbol": "znz", + "name": "ZENZO" + }, + { + "id": "zeon", + "symbol": "zeon", + "name": "ZEON Network" + }, + { + "id": "zephyr-protocol", + "symbol": "zeph", + "name": "Zephyr Protocol" + }, + { + "id": "zephyr-protocol-reserve-share", + "symbol": "zrs", + "name": "Zephyr Protocol Reserve Share" + }, + { + "id": "zephyr-protocol-stable-dollar", + "symbol": "zsd", + "name": "Zephyr Protocol Stable Dollar" + }, + { + "id": "zer0zer0", + "symbol": "00", + "name": "00 Token" + }, + { + "id": "zera", + "symbol": "zera", + "name": "ZERA" + }, + { + "id": "zerebro", + "symbol": "zerebro", + "name": "Zerebro" + }, + { + "id": "zerebro-coin", + "symbol": "zcoin", + "name": "Zerebro Coin" + }, + { + "id": "zerebro-token-of-transformation", + "symbol": "gaycoin", + "name": "Zerebro Token Of Transformation" + }, + { + "id": "zerepy", + "symbol": "zerepy", + "name": "ZerePy" + }, + { + "id": "zerescan", + "symbol": "zerescan", + "name": "zerescan" + }, + { + "id": "zeresys-protocol", + "symbol": "zeresys", + "name": "Zeresys Protocol" + }, + { + "id": "zereus-ai", + "symbol": "zereus", + "name": "Zereus AI" + }, + { + "id": "zero", + "symbol": "zer", + "name": "Zero" + }, + { + "id": "zero1-labs", + "symbol": "deai", + "name": "Zero1 Labs" + }, + { + "id": "zero-2", + "symbol": "zero", + "name": "Zero" + }, + { + "id": "zero-3", + "symbol": "zero", + "name": "ZERO" + }, + { + "id": "zerobase", + "symbol": "zbt", + "name": "ZEROBASE" + }, + { + "id": "zerobyte", + "symbol": "zb", + "name": "ZeroByte" + }, + { + "id": "zero-exchange", + "symbol": "zero", + "name": "0.exchange" + }, + { + "id": "zero-gravity", + "symbol": "0g", + "name": "0G" + }, + { + "id": "zerolend", + "symbol": "zero", + "name": "ZeroLend" + }, + { + "id": "zeroliquid-eth", + "symbol": "zeth", + "name": "ZeroLiquid ETH" + }, + { + "id": "zero-network-bridged-usdc-zero-network", + "symbol": "usdc", + "name": "Zero Network Bridged USDC (Zero Network)" + }, + { + "id": "zero-network-bridged-weth-zero-network", + "symbol": "weth", + "name": "Zero Network Bridged WETH (Zero Network)" + }, + { + "id": "zero-ontology-system", + "symbol": "solfunmeme", + "name": "Zero Ontology System" + }, + { + "id": "zeropai", + "symbol": "zeropai", + "name": "ZeropAI" + }, + { + "id": "zeros", + "symbol": "zeros", + "name": "Zeros" + }, + { + "id": "zerosum", + "symbol": "zsum", + "name": "ZeroSum" + }, + { + "id": "zeroswap", + "symbol": "zee", + "name": "ZeroSwap" + }, + { + "id": "zeroswapnft", + "symbol": "zero", + "name": "ZeroSwapNFT" + }, + { + "id": "zero-tech", + "symbol": "meow", + "name": "MEOW" + }, + { + "id": "zerotrust", + "symbol": "zerø", + "name": "ZeroTrust" + }, + { + "id": "zerox-king", + "symbol": "0xk", + "name": "ZeroX King" + }, + { + "id": "zesh", + "symbol": "zai", + "name": "Zesh AI Layer" + }, + { + "id": "zeta", + "symbol": "zex", + "name": "Zeta" + }, + { + "id": "zetachain", + "symbol": "zeta", + "name": "ZetaChain" + }, + { + "id": "zetachain-bridged-bnb-bsc-zetachain", + "symbol": "bnb.bsc", + "name": "ZetaChain Bridged BNB.BSC (ZetaChain)" + }, + { + "id": "zetachain-bridged-btc-btc-zetachain", + "symbol": "btc.btc", + "name": "ZetaChain Bridged BTC.BTC (ZetaChain)" + }, + { + "id": "zetachain-bridged-eth-base-zetachain", + "symbol": "eth.base", + "name": "ZetaChain Bridged ETH.BASE (ZetaChain)" + }, + { + "id": "zetachain-bridged-pol-pol-zetachain", + "symbol": "pol.pol", + "name": "ZetaChain Bridged POL.POL (ZetaChain)" + }, + { + "id": "zetachain-bridged-sol-sol-zetachain", + "symbol": "sol.sol", + "name": "ZetaChain Bridged SOL.SOL (ZetaChain)" + }, + { + "id": "zetachain-bridged-sui-sui-zetachain", + "symbol": "sui.sui", + "name": "ZetaChain Bridged SUI.SUI (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-arb-zetachain", + "symbol": "usdc.arb", + "name": "ZetaChain Bridged USDC.ARB (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-avax-zetachain", + "symbol": "usdc.avax", + "name": "ZetaChain Bridged USDC.AVAX (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-base-zetachain", + "symbol": "usdc.base", + "name": "ZetaChain Bridged USDC.BASE (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-bsc-zetachain", + "symbol": "usdc.bsc", + "name": "ZetaChain Bridged USDC.BSC (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-eth-zetachain", + "symbol": "usdc.eth", + "name": "ZetaChain Bridged USDC.ETH (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-pol-zetachain", + "symbol": "usdc.pol", + "name": "ZetaChain Bridged USDC.POL (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-sol-zetachain", + "symbol": "usdc.sol", + "name": "ZetaChain Bridged USDC.SOL (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdc-sui-zetachain", + "symbol": "usdc.sui", + "name": "ZetaChain Bridged USDC.SUI (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdt-arb-zetachain", + "symbol": "usdt.arb", + "name": "ZetaChain Bridged USDT.ARB (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdt-bsc-zetachain", + "symbol": "usdt.bsc", + "name": "ZetaChain Bridged USDT.BSC (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdt-eth-zetachain", + "symbol": "usdt.eth", + "name": "ZetaChain Bridged USDT.ETH (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdt-pol-zetachain", + "symbol": "usdt.pol", + "name": "ZetaChain Bridged USDT.POL (ZetaChain)" + }, + { + "id": "zetachain-bridged-usdt-sol-zetachain", + "symbol": "usdt.sol", + "name": "ZetaChain Bridged USDT.SOL (ZetaChain)" + }, + { + "id": "zetachain-eth-eth", + "symbol": "eth.eth", + "name": "ZetaChain Bridged ETH.ETH (ZetaChain)" + }, + { + "id": "zetacoin", + "symbol": "zet", + "name": "Zetacoin" + }, + { + "id": "zetaearn-staked-zeta", + "symbol": "stzeta", + "name": "ZetaEarn Staked ZETA" + }, + { + "id": "zeta-markets", + "symbol": "z", + "name": "Zeta Markets" + }, + { + "id": "zetrix", + "symbol": "zetrix", + "name": "Zetrix" + }, + { + "id": "zeus-2", + "symbol": "zeus", + "name": "Zeus" + }, + { + "id": "zeus-3", + "symbol": "zeus", + "name": "ZEUS" + }, + { + "id": "zeus-4", + "symbol": "zeus", + "name": "Zeus" + }, + { + "id": "zeus-5", + "symbol": "sn18", + "name": "Zeus" + }, + { + "id": "zeus-ai", + "symbol": "zeus", + "name": "Zeus AI" + }, + { + "id": "zeusd", + "symbol": "zeusd", + "name": "ZeUSD" + }, + { + "id": "zeus-netwok-zbtc", + "symbol": "zbtc", + "name": "Zeus Network zBTC" + }, + { + "id": "zeus-network", + "symbol": "zeus", + "name": "Zeus Network" + }, + { + "id": "zeuspepesdog", + "symbol": "zeus", + "name": "Zeus" + }, + { + "id": "zeusshield", + "symbol": "zsc", + "name": "Zeusshield" + }, + { + "id": "zeuz", + "symbol": "zeuz", + "name": "Zeuz" + }, + { + "id": "zhc-zero-hour-cash", + "symbol": "zhc", + "name": "ZHC : Zero Hour Cash" + }, + { + "id": "ziba", + "symbol": "zib", + "name": "ZIBA" + }, + { + "id": "ziesha", + "symbol": "zsh", + "name": "Ziesha" + }, + { + "id": "ziggy", + "symbol": "ziggy", + "name": "Ziggy" + }, + { + "id": "zignaly", + "symbol": "zig", + "name": "ZIGChain" + }, + { + "id": "zik-coin", + "symbol": "zik", + "name": "ZIK coin" + }, + { + "id": "zillion-aakar-xo", + "symbol": "zillionxo", + "name": "Zillion Aakar XO" + }, + { + "id": "zilliqa", + "symbol": "zil", + "name": "Zilliqa" + }, + { + "id": "zilliqa-evm-bridged-usdc-zilliqa-evm", + "symbol": "usdc", + "name": "deBridge Bridged USDC (Zilliqa EVM)" + }, + { + "id": "zilpepe", + "symbol": "zilpepe", + "name": "ZilPepe" + }, + { + "id": "zino-pet", + "symbol": "zpet", + "name": "Zino Pet" + }, + { + "id": "zintech", + "symbol": "zintech", + "name": "Zintech" + }, + { + "id": "ziox", + "symbol": "ziox", + "name": "ZIOX" + }, + { + "id": "zippy", + "symbol": "$zippy", + "name": "ZIPPY" + }, + { + "id": "zippy-staked-sol", + "symbol": "zippysol", + "name": "Zippy Staked SOL" + }, + { + "id": "zircuit", + "symbol": "zrc", + "name": "Zircuit" + }, + { + "id": "zircuit-bridged-usdt-zircuit", + "symbol": "usdt", + "name": "Zircuit Bridged USDT (Zircuit)" + }, + { + "id": "zircuit-bridged-weth-zircuit", + "symbol": "weth", + "name": "Zircuit Bridged WETH (Zircuit)" + }, + { + "id": "zirodelta", + "symbol": "zdlt", + "name": "Zirodelta" + }, + { + "id": "zivoe-vault", + "symbol": "zvlt", + "name": "Zivoe Vault" + }, + { + "id": "zizle", + "symbol": "zizle", + "name": "Zizle" + }, + { + "id": "zjoe", + "symbol": "zjoe", + "name": "zJOE" + }, + { + "id": "zkapes-token", + "symbol": "zat", + "name": "zkApes Token" + }, + { + "id": "zkcandy", + "symbol": "candy", + "name": "ZKcandy" + }, + { + "id": "zkcloud", + "symbol": "proof", + "name": "ZkCloud" + }, + { + "id": "zkcross-network", + "symbol": "crossai", + "name": "zkCross Network" + }, + { + "id": "zkcrypt-ai", + "symbol": "zkai", + "name": "ZKCrypt AI" + }, + { + "id": "zkdoge", + "symbol": "zkdoge", + "name": "zkDoge" + }, + { + "id": "zkexchange", + "symbol": "zkex", + "name": "zkExchange" + }, + { + "id": "zkfair", + "symbol": "zkf", + "name": "ZKFair" + }, + { + "id": "zkgpt", + "symbol": "zkgpt", + "name": "ZKGPT" + }, + { + "id": "zkhive", + "symbol": "zkhive", + "name": "zkHive" + }, + { + "id": "zkitty-bot", + "symbol": "$zkitty", + "name": "ZKitty Bot" + }, + { + "id": "zklink", + "symbol": "zkl", + "name": "zkLink" + }, + { + "id": "zklsol", + "symbol": "zkfg", + "name": "ZKLSOL" + }, + { + "id": "zkml", + "symbol": "zkml", + "name": "zKML" + }, + { + "id": "zkpass", + "symbol": "zkp", + "name": "zkPass" + }, + { + "id": "zk-shine", + "symbol": "shine", + "name": "ZK Shine" + }, + { + "id": "zksl", + "symbol": "zksl", + "name": "zkSealevel" + }, + { + "id": "zkspace", + "symbol": "zkb", + "name": "ZKBase" + }, + { + "id": "zkswap-finance", + "symbol": "zf", + "name": "zkSwap Finance" + }, + { + "id": "zksync", + "symbol": "zk", + "name": "ZKsync" + }, + { + "id": "zksync-bridged-usdc-zksync", + "symbol": "usdc", + "name": "zkSync Bridged USDC (zkSync)" + }, + { + "id": "zksync-bridged-wbtc-zksync", + "symbol": "wbtc", + "name": "zkSync Bridged WBTC (zkSync)" + }, + { + "id": "zksync-erc20-bridged-dai-zksync", + "symbol": "dai", + "name": "ZKsync ERC20 Bridged DAI (zkSync)" + }, + { + "id": "zksync-staked-eth", + "symbol": "zketh", + "name": "ZKsync Staked ETH" + }, + { + "id": "zkverify", + "symbol": "vfy", + "name": "zkVerify" + }, + { + "id": "z-l-i", + "symbol": "zala", + "name": "Z△L△ △I" + }, + { + "id": "zmine", + "symbol": "zmn", + "name": "ZMINE" + }, + { + "id": "znd-token", + "symbol": "znd", + "name": "ZND Token" + }, + { + "id": "zoa-ai", + "symbol": "zoa", + "name": "ZOA AI" + }, + { + "id": "zodia", + "symbol": "zodia", + "name": "ZODIA" + }, + { + "id": "zodium", + "symbol": "zodi", + "name": "Zodium" + }, + { + "id": "zodor", + "symbol": "zod", + "name": "Zodor" + }, + { + "id": "zodplay", + "symbol": "zod", + "name": "Zodplay" + }, + { + "id": "zods", + "symbol": "zods", + "name": "ZODs" + }, + { + "id": "zoey-your-longevity-coach-by-netmind-xyz", + "symbol": "nml", + "name": "zoey - your longevity coach by NetMind XYZ" + }, + { + "id": "zofinity", + "symbol": "zo", + "name": "Zofinity" + }, + { + "id": "zoid-pay", + "symbol": "zpay", + "name": "ZoidPay" + }, + { + "id": "zoink", + "symbol": "zoink", + "name": "Zoink" + }, + { + "id": "zolana", + "symbol": "zol", + "name": "ZOLANA" + }, + { + "id": "zombie-power", + "symbol": "zp", + "name": "Zombie Power" + }, + { + "id": "zonko-usdz", + "symbol": "usdz", + "name": "ZONKO USDZ" + }, + { + "id": "zon-token", + "symbol": "zon", + "name": "Zon Token" + }, + { + "id": "zoo", + "symbol": "zoo", + "name": "Zoo" + }, + { + "id": "zoocoin", + "symbol": "zoo", + "name": "ZooCoin" + }, + { + "id": "zoo-crypto-world", + "symbol": "zoo", + "name": "ZOO Crypto World" + }, + { + "id": "zoof-wallet", + "symbol": "zoof", + "name": "Zoof Wallet" + }, + { + "id": "zookeeper", + "symbol": "zoo", + "name": "ZooKeeper" + }, + { + "id": "zoomer", + "symbol": "zoomer", + "name": "Zoomer" + }, + { + "id": "zoomer-2", + "symbol": "zoomer", + "name": "Zoomer" + }, + { + "id": "zoomer-sol", + "symbol": "zoomer", + "name": "Zoomer" + }, + { + "id": "zoomie", + "symbol": "zoomie", + "name": "Zoomie" + }, + { + "id": "zoomswap", + "symbol": "zm", + "name": "ZoomSwap" + }, + { + "id": "zoo-token", + "symbol": "zoot", + "name": "Zoo" + }, + { + "id": "zoo-world", + "symbol": "zoo", + "name": "Zoo World" + }, + { + "id": "zopa", + "symbol": "zopa", + "name": "ZOPA" + }, + { + "id": "zo-perpetuals-lp-token", + "symbol": "zlp", + "name": "ZO Perpetuals LP Token" + }, + { + "id": "zora", + "symbol": "zora", + "name": "Zora" + }, + { + "id": "zora-bridged-usdc-zora", + "symbol": "usdzc", + "name": "Zora Bridged USDC (Zora)" + }, + { + "id": "zora-bridged-weth-zora-network", + "symbol": "weth", + "name": "Zora Bridged WETH (Zora Network)" + }, + { + "id": "zorby", + "symbol": "zorby", + "name": "ZORBY" + }, + { + "id": "zorbyai", + "symbol": "$zorbyai", + "name": "ZorbyAI" + }, + { + "id": "zorobotics", + "symbol": "zoro", + "name": "ZoRobotics" + }, + { + "id": "zorro", + "symbol": "zorro", + "name": "Zorro" + }, + { + "id": "z-protocol", + "symbol": "zp", + "name": "Z Protocol" + }, + { + "id": "ztx", + "symbol": "ztx", + "name": "ZTX" + }, + { + "id": "zulu-network", + "symbol": "zulu", + "name": "Zulu Network" + }, + { + "id": "zum-token", + "symbol": "zum", + "name": "ZUM" + }, + { + "id": "zuzalu", + "symbol": "zuzalu", + "name": "zuzalu" + }, + { + "id": "zuzalu-inu", + "symbol": "zuzalu", + "name": "Zuzalu Inu" + }, + { + "id": "zyberswap", + "symbol": "zyb", + "name": "Zyberswap" + }, + { + "id": "zyfi", + "symbol": "zfi", + "name": "ZyfAI" + }, + { + "id": "zygo-the-frog", + "symbol": "zygo", + "name": "Zygo The Frog" + }, + { + "id": "zygo-the-frog-2", + "symbol": "zygo", + "name": "Zygo The Frog" + }, + { + "id": "zyncoin-2", + "symbol": "zyn", + "name": "ZynCoin" + }, + { + "id": "zynecoin", + "symbol": "zyn", + "name": "Zynecoin" + }, + { + "id": "zyro-2", + "symbol": "zyro", + "name": "ZYRO" + }, + { + "id": "z-z-z-z-z-fehu-z-z-z-z-z", + "symbol": "ᚠ", + "name": "Z•Z•Z•Z•Z•FEHU•Z•Z•Z•Z•Z" + } +] \ No newline at end of file diff --git a/public_apis/crypto_coins_list.metadata.json b/public_apis/crypto_coins_list.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..efa37fb4e307e1d29ab67f3273a01b89037bd83e --- /dev/null +++ b/public_apis/crypto_coins_list.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_crypto_coins_list", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:26.476472", + "size_bytes": 1617013, + "description": "Cryptocurrency list", + "url": "https://api.coingecko.com/api/v3/coins/list" +} \ No newline at end of file diff --git a/public_apis/crypto_ethereum.json b/public_apis/crypto_ethereum.json new file mode 100644 index 0000000000000000000000000000000000000000..62462228156e4d93beb859fe5880b0cdf30b06ef --- /dev/null +++ b/public_apis/crypto_ethereum.json @@ -0,0 +1,5019 @@ +{ + "id": "ethereum", + "symbol": "eth", + "name": "Ethereum", + "web_slug": "ethereum", + "asset_platform_id": null, + "platforms": { + "": "" + }, + "detail_platforms": { + "": { + "decimal_place": null, + "contract_address": "" + } + }, + "block_time_in_minutes": 0, + "hashing_algorithm": "Ethash", + "categories": [ + "Smart Contract Platform", + "Layer 1 (L1)", + "Ethereum Ecosystem", + "FTX Holdings", + "Multicoin Capital Portfolio", + "Proof of Stake (PoS)", + "Alameda Research Portfolio", + "Andreessen Horowitz (a16z) Portfolio", + "GMCI Layer 1 Index", + "GMCI 30 Index", + "Delphi Ventures Portfolio", + "Galaxy Digital Portfolio", + "GMCI Index", + "World Liberty Financial Portfolio", + "Coinbase 50 Index" + ], + "preview_listing": false, + "public_notice": null, + "additional_notices": [], + "localization": { + "en": "Ethereum", + "zh": "以太坊", + "zh-tw": "以太幣", + "de": "Ethereum", + "fr": "Ethereum", + "es": "Ethereum", + "ja": "イーサリアム", + "id": "Ethereum", + "ru": "Эфириум", + "ko": "이더리움", + "ar": "يثريوم", + "th": "Ethereum", + "vi": "Ethereum", + "it": "Ethereum", + "pl": "Ethereum", + "tr": "Ethereum", + "hu": "Ethereum", + "nl": "Ethereum", + "ro": "Ethereum", + "sv": "", + "cs": "", + "da": "", + "el": "", + "hi": "", + "no": "", + "sk": "", + "uk": "Ethereum", + "he": "", + "fi": "", + "bg": "", + "hr": "", + "lt": "", + "sl": "", + "pt": "Ethereum" + }, + "description": { + "en": "Ethereum is a global, open-source platform for decentralized applications. In other words, the vision is to create a world computer that anyone can build applications in a decentralized manner; while all states and data are distributed and publicly accessible. Ethereum supports smart contracts in which developers can write code in order to program digital value. Examples of decentralized apps (dapps) that are built on Ethereum includes tokens, non-fungible tokens, decentralized finance apps, lending protocol, decentralized exchanges, and much more.\r\n\r\nOn Ethereum, all transactions and smart contract executions require a small fee to be paid. This fee is called Gas. In technical terms, Gas refers to the unit of measure on the amount of computational effort required to execute an operation or a smart contract. The more complex the execution operation is, the more gas is required to fulfill that operation. Gas fees are paid entirely in Ether (ETH), which is the native coin of the blockchain. The price of gas can fluctuate from time to time depending on the network demand.", + "zh": "Ethereum(以太坊)是一个平台和一种编程语言,使开发人员能够建立和发布下一代分布式应用。Ethereum 是使用甲醚作为燃料,以激励其网络的第一个图灵完备cryptocurrency。\r\nEthereum(以太坊) 是由Vitalik Buterin的创建。该项目于2014年8月获得了美国1800万$比特币的价值及其crowdsale期间。\r\n在2016年,Ethereum(以太坊)的价格上涨超过50倍。", + "zh-tw": "", + "de": "", + "fr": "", + "es": "", + "ja": "イーサリアム (Ethereum, ETH)・プロジェクトにより開発が進められている、分散型アプリケーション(DApps)やスマート・コントラクトを構築するためのプラットフォームの名称、及び関連するオープンソース・ソフトウェア・プロジェクトの総称である。\r\n\r\nイーサリアムでは、イーサリアム・ネットワークと呼ばれるP2Pのネットワーク上でスマート・コントラクトの履行履歴をブロックチェーンに記録していく。またイーサリアムは、スマート・コントラクトを記述するチューリング完全なプログラミング言語を持ち、ネットワーク参加者はこのネットワーク上のブロックチェーンに任意のDAppsやスマート・コントラクトを記述しそれを実行することが可能になる。ネットワーク参加者が「Ether」と呼ばれるイーサリアム内部通貨の報酬を目当てに、採掘と呼ばれるブロックチェーンへのスマート・コントラクトの履行結果の記録を行うことで、その正統性を保証していく。このような仕組みにより特定の中央管理組織に依拠せず、P2P全体を実行環境としてプログラムの実行とその結果を共有することが可能になった。", + "id": "", + "ru": "", + "ko": "이더리움(Ethereum/ETH)은 블록체인 기술에 기반한 클라우드 컴퓨팅 플랫폼 또는 프로그래밍 언어이다. 비탈릭 부테린이 개발하였다.\r\n\r\n비탈릭 부테린은 가상화폐인 비트코인에 사용된 핵심 기술인 블록체인(blockchain)에 화폐 거래 기록뿐 아니라 계약서 등의 추가 정보를 기록할 수 있다는 점에 착안하여, 전 세계 수많은 사용자들이 보유하고 있는 컴퓨팅 자원을 활용해 분산 네트워크를 구성하고, 이 플랫폼을 이용하여 SNS, 이메일, 전자투표 등 다양한 정보를 기록하는 시스템을 창안했다. 이더리움은 C++, 자바, 파이썬, GO 등 주요 프로그래밍 언어를 지원한다.\r\n\r\n이더리움을 사물 인터넷(IoT)에 적용하면 기계 간 금융 거래도 가능해진다. 예를 들어 고장난 청소로봇이 정비로봇에 돈을 내고 정비를 받고, 청소로봇은 돈을 벌기 위해 정비로봇의 집을 청소하는 것도 가능해진다.", + "ar": "", + "th": "", + "vi": "", + "it": "", + "pl": "", + "tr": "", + "hu": "", + "nl": "", + "ro": "", + "sv": "", + "cs": "", + "da": "", + "el": "", + "hi": "", + "no": "", + "sk": "", + "uk": "", + "he": "", + "fi": "", + "bg": "", + "hr": "", + "lt": "", + "sl": "", + "pt": "" + }, + "links": { + "homepage": [ + "https://www.ethereum.org/" + ], + "whitepaper": "", + "blockchain_site": [ + "https://etherscan.io/", + "https://platform.arkhamintelligence.com/explorer/token/ethereum", + "https://ethplorer.io/", + "https://blockchair.com/ethereum", + "https://eth.tokenview.io/", + "https://www.oklink.com/eth", + "https://3xpl.com/ethereum" + ], + "official_forum_url": [], + "chat_url": [], + "announcement_url": [], + "snapshot_url": null, + "twitter_screen_name": "ethereum", + "facebook_username": "", + "bitcointalk_thread_identifier": null, + "telegram_channel_identifier": "", + "subreddit_url": "https://www.reddit.com/r/ethereum", + "repos_url": { + "github": [ + "https://github.com/ethereum/go-ethereum", + "https://github.com/ethereum/py-evm", + "https://github.com/ethereum/aleth", + "https://github.com/ethereum/web3.py", + "https://github.com/ethereum/solidity", + "https://github.com/ethereum/sharding", + "https://github.com/ethereum/casper", + "https://github.com/paritytech/parity" + ], + "bitbucket": [] + } + }, + "image": { + "thumb": "https://coin-images.coingecko.com/coins/images/279/thumb/ethereum.png?1696501628", + "small": "https://coin-images.coingecko.com/coins/images/279/small/ethereum.png?1696501628", + "large": "https://coin-images.coingecko.com/coins/images/279/large/ethereum.png?1696501628" + }, + "country_origin": "", + "genesis_date": "2015-07-30", + "sentiment_votes_up_percentage": 71.07, + "sentiment_votes_down_percentage": 28.93, + "ico_data": { + "ico_start_date": "2014-07-20T00:00:00.000Z", + "ico_end_date": "2014-09-01T00:00:00.000Z", + "short_desc": "A decentralized platform for applications", + "description": null, + "links": {}, + "softcap_currency": "", + "hardcap_currency": "", + "total_raised_currency": "", + "softcap_amount": null, + "hardcap_amount": null, + "total_raised": null, + "quote_pre_sale_currency": "", + "base_pre_sale_amount": null, + "quote_pre_sale_amount": null, + "quote_public_sale_currency": "BTC", + "base_public_sale_amount": 1.0, + "quote_public_sale_amount": 0.00074794, + "accepting_currencies": "", + "country_origin": "", + "pre_sale_start_date": null, + "pre_sale_end_date": null, + "whitelist_url": "", + "whitelist_start_date": null, + "whitelist_end_date": null, + "bounty_detail_url": "", + "amount_for_sale": null, + "kyc_required": true, + "whitelist_available": null, + "pre_sale_available": null, + "pre_sale_ended": false + }, + "watchlist_portfolio_users": 1866276, + "market_cap_rank": 2, + "market_data": { + "current_price": { + "aed": 12627.17, + "ars": 4987643, + "aud": 5279.17, + "bch": 7.062538, + "bdt": 418994, + "bhd": 1296.13, + "bmd": 3438.3, + "bnb": 3.571729, + "brl": 18433.43, + "btc": 0.0331705, + "cad": 4849.0, + "chf": 2782.64, + "clp": 3247478, + "cny": 24496, + "czk": 72836, + "dkk": 22305, + "dot": 1290, + "eos": 13520, + "eth": 1.0, + "eur": 2987.91, + "gbp": 2631.69, + "gel": 9334.99, + "hkd": 26734, + "huf": 1155954, + "idr": 57419674, + "ils": 11201.99, + "inr": 304630, + "jpy": 529114, + "krw": 4972343, + "kwd": 1056.03, + "lkr": 1047307, + "ltc": 38.797421, + "mmk": 7219407, + "mxn": 63917, + "myr": 14380.71, + "ngn": 4958481, + "nok": 35093, + "nzd": 6070.79, + "php": 202377, + "pkr": 971784, + "pln": 12716.44, + "rub": 279706, + "sar": 12895.53, + "sek": 32851, + "sgd": 4488.97, + "sol": 21.188497, + "thb": 111605, + "try": 144773, + "twd": 106342, + "uah": 144631, + "usd": 3438.3, + "vef": 344.28, + "vnd": 90513349, + "xag": 71.39, + "xau": 0.862361, + "xdr": 2436.9, + "xlm": 12303, + "xrp": 1456, + "yfi": 0.77180864, + "zar": 59779, + "bits": 33170, + "link": 227.052, + "sats": 3317050 + }, + "total_value_locked": null, + "mcap_to_tvl_ratio": null, + "fdv_to_tvl_ratio": null, + "roi": { + "times": 43.34914013317544, + "currency": "btc", + "percentage": 4334.914013317544 + }, + "ath": { + "aed": 18164.35, + "ars": 6915671, + "aud": 7645.36, + "bch": 18.939856, + "bdt": 594858, + "bhd": 1844.35, + "bmd": 4946.05, + "bnb": 7747, + "brl": 26931, + "btc": 0.1474984, + "cad": 6843.16, + "chf": 4452.99, + "clp": 4748322, + "cny": 35442, + "czk": 107973, + "dkk": 31499, + "dot": 1703, + "eos": 14729, + "eth": 1.003981, + "eur": 4229.76, + "gbp": 3685.5, + "gel": 13329.59, + "hkd": 38657, + "huf": 1670834, + "idr": 80291629, + "ils": 16639.25, + "inr": 431946, + "jpy": 729909, + "krw": 6846316, + "kwd": 1496.74, + "lkr": 1476326, + "ltc": 49.937578, + "mmk": 11560014, + "mxn": 102241, + "myr": 20909, + "ngn": 7512816, + "nok": 49821, + "nzd": 8503.17, + "php": 279450, + "pkr": 1387799, + "pln": 19645.56, + "rub": 422871, + "sar": 18558.55, + "sek": 46991, + "sgd": 6489.66, + "sol": 24.838596, + "thb": 161550, + "try": 203653, + "twd": 150272, + "uah": 202181, + "usd": 4946.05, + "vef": 283483138, + "vnd": 130329660, + "xag": 211.07, + "xau": 2.69, + "xdr": 3455.91, + "xlm": 38633, + "xrp": 7663, + "yfi": 0.87336126, + "zar": 86315, + "bits": 147498, + "link": 2891, + "sats": 14749840 + }, + "ath_change_percentage": { + "aed": -30.47772, + "ars": -27.86626, + "aud": -30.92138, + "bch": -62.71577, + "bdt": -29.55787, + "bhd": -29.71836, + "bmd": -30.47772, + "bnb": -99.9539, + "brl": -31.55098, + "btc": -77.53078, + "cad": -29.13528, + "chf": -37.51081, + "clp": -31.60192, + "cny": -30.87939, + "czk": -32.53216, + "dkk": -29.17878, + "dot": -24.29421, + "eos": -8.34855, + "eth": -0.39652, + "eur": -29.3504, + "gbp": -28.58193, + "gel": -29.96179, + "hkd": -30.83638, + "huf": -30.80262, + "idr": -28.47388, + "ils": -32.67142, + "inr": -29.45642, + "jpy": -27.51545, + "krw": -27.37889, + "kwd": -29.43861, + "lkr": -29.05369, + "ltc": -22.40633, + "mmk": -37.54302, + "mxn": -37.47843, + "myr": -31.21776, + "ngn": -34.01089, + "nok": -29.55138, + "nzd": -28.58283, + "php": -27.57409, + "pkr": -29.97049, + "pln": -35.26768, + "rub": -33.84777, + "sar": -30.50828, + "sek": -30.08257, + "sgd": -30.82125, + "sol": -14.68239, + "thb": -30.90555, + "try": -28.90611, + "twd": -29.21689, + "uah": -28.45815, + "usd": -30.47772, + "vef": -99.99988, + "vnd": -30.55044, + "xag": -66.21655, + "xau": -67.93937, + "xdr": -29.47991, + "xlm": -68.16078, + "xrp": -80.99775, + "yfi": -11.61872, + "zar": -30.73755, + "bits": -77.53078, + "link": -92.14119, + "sats": -77.53078 + }, + "ath_date": { + "aed": "2025-08-24T19:21:03.333Z", + "ars": "2025-09-13T03:56:53.029Z", + "aud": "2025-08-24T18:41:03.538Z", + "bch": "2023-06-10T04:31:49.826Z", + "bdt": "2025-08-24T19:21:03.333Z", + "bhd": "2025-08-24T19:21:03.333Z", + "bmd": "2025-08-24T19:21:03.333Z", + "bnb": "2017-10-19T00:00:00.000Z", + "brl": "2021-11-09T04:03:16.303Z", + "btc": "2017-06-12T00:00:00.000Z", + "cad": "2025-08-24T18:41:03.538Z", + "chf": "2021-11-10T16:19:02.090Z", + "clp": "2025-08-24T19:21:03.333Z", + "cny": "2025-08-24T19:21:03.333Z", + "czk": "2021-12-01T08:38:24.623Z", + "dkk": "2025-08-24T19:10:57.580Z", + "dot": "2025-10-10T21:25:24.988Z", + "eos": "2025-11-03T16:12:21.794Z", + "eth": "2019-10-15T16:26:30.106Z", + "eur": "2025-08-24T18:41:03.538Z", + "gbp": "2025-08-24T18:41:03.538Z", + "gel": "2025-08-24T19:21:03.333Z", + "hkd": "2025-08-24T19:21:03.333Z", + "huf": "2025-08-24T18:41:03.538Z", + "idr": "2025-08-24T19:21:03.333Z", + "ils": "2025-08-24T19:21:03.333Z", + "inr": "2025-08-24T19:21:03.333Z", + "jpy": "2025-08-24T18:41:03.538Z", + "krw": "2025-08-24T19:21:03.333Z", + "kwd": "2025-08-24T19:21:03.333Z", + "lkr": "2025-08-24T19:21:03.333Z", + "ltc": "2024-07-05T03:16:26.359Z", + "mmk": "2024-07-22T00:50:33.278Z", + "mxn": "2021-12-01T08:38:24.623Z", + "myr": "2025-08-24T19:21:03.333Z", + "ngn": "2025-08-24T19:21:03.333Z", + "nok": "2025-08-24T19:21:03.333Z", + "nzd": "2025-08-24T18:41:03.538Z", + "php": "2025-08-24T19:21:03.333Z", + "pkr": "2025-08-24T19:21:03.333Z", + "pln": "2021-12-01T08:38:24.623Z", + "rub": "2024-12-16T18:55:22.127Z", + "sar": "2025-08-24T19:21:03.333Z", + "sek": "2025-08-24T19:10:57.580Z", + "sgd": "2021-11-09T00:00:00.000Z", + "sol": "2025-08-12T13:31:36.020Z", + "thb": "2021-12-01T08:38:24.623Z", + "try": "2025-08-24T19:21:03.333Z", + "twd": "2025-08-24T19:21:03.333Z", + "uah": "2025-08-24T19:21:03.333Z", + "usd": "2025-08-24T19:21:03.333Z", + "vef": "2021-01-04T06:47:56.457Z", + "vnd": "2025-08-24T19:21:03.333Z", + "xag": "2021-12-01T16:19:01.053Z", + "xau": "2021-12-01T08:38:24.623Z", + "xdr": "2021-11-10T14:24:19.604Z", + "xlm": "2024-06-23T17:15:56.334Z", + "xrp": "2024-06-07T18:19:57.009Z", + "yfi": "2025-10-27T19:21:53.627Z", + "zar": "2025-08-24T19:21:03.333Z", + "bits": "2017-06-12T00:00:00.000Z", + "link": "2017-11-29T00:00:00.000Z", + "sats": "2017-06-12T00:00:00.000Z" + }, + "atl": { + "aed": 1.59, + "ars": 4.1, + "aud": 0.596152, + "bch": 0.20411961, + "bdt": 33.7, + "bhd": 0.163288, + "bmd": 0.432979, + "bnb": 2.601333, + "brl": 1.69, + "btc": 0.00160204, + "cad": 0.561954, + "chf": 0.413801, + "clp": 297.03, + "cny": 2.81, + "czk": 10.33, + "dkk": 2.84, + "dot": 40.15685, + "eos": 30.013555, + "eth": 0.99987722, + "eur": 0.381455, + "gbp": 0.280314, + "gel": 3847.6, + "hkd": 3.35, + "huf": 118.42, + "idr": 5876.48, + "ils": 1.67, + "inr": 28.13, + "jpy": 51.85, + "krw": 489.4, + "kwd": 0.130639, + "lkr": 61.02, + "ltc": 0.13982924, + "mmk": 468.1, + "mxn": 7.16, + "myr": 1.85, + "ngn": 86.13, + "nok": 3.52, + "nzd": 0.641302, + "php": 20.05, + "pkr": 45.2, + "pln": 1.62, + "rub": 26.88, + "sar": 1.62, + "sek": 3.59, + "sgd": 0.601615, + "sol": 15.62389, + "thb": 15.33, + "try": 1.26, + "twd": 14.02, + "uah": 9.54, + "usd": 0.432979, + "vef": 2.74, + "vnd": 9662.0, + "xag": 0.02721328, + "xau": 0.00036799, + "xdr": 0.306291, + "xlm": 664.668, + "xrp": 286.238, + "yfi": 0.00878891, + "zar": 5.74, + "bits": 7718.95, + "link": 21.519699, + "sats": 771895 + }, + "atl_change_percentage": { + "aed": 793955.05303, + "ars": 121540506.73532, + "aud": 885799.43641, + "bch": 3359.53029, + "bdt": 1243292.58808, + "bhd": 793737.03564, + "bmd": 794073.9721, + "bnb": 37.29414, + "brl": 1089708.27144, + "btc": 1968.71592, + "cad": 862851.04013, + "chf": 672357.51578, + "clp": 1093323.10174, + "cny": 870869.37823, + "czk": 704997.09417, + "dkk": 784053.69504, + "dot": 3110.57804, + "eos": 44877.96791, + "eth": 0.01228, + "eur": 783297.25151, + "gbp": 938885.42292, + "gel": 142.63947, + "hkd": 796939.44638, + "huf": 976269.90415, + "idr": 977177.44989, + "ils": 671585.57252, + "inr": 1083072.74544, + "jpy": 1020382.65662, + "krw": 1015802.37934, + "kwd": 808329.6793, + "lkr": 1716339.68635, + "ltc": 27611.22966, + "mmk": 1542324.00849, + "mxn": 893073.00891, + "myr": 777273.5737, + "ngn": 5755619.314, + "nok": 998196.72189, + "nzd": 946836.34569, + "php": 1009505.96748, + "pkr": 2150286.04999, + "pln": 782962.23554, + "rub": 1040549.02416, + "sar": 794153.59756, + "sek": 914074.06426, + "sgd": 746135.44183, + "sol": 35.6365, + "thb": 728050.21866, + "try": 11531331.31453, + "twd": 758611.01374, + "uah": 1515377.20039, + "usd": 794073.9721, + "vef": 12480.87479, + "vnd": 936697.87481, + "xag": 261929.07131, + "xau": 234077.46893, + "xdr": 795585.6232, + "xlm": 1750.59763, + "xrp": 408.73426, + "yfi": 8682.51995, + "zar": 1040982.37811, + "bits": 329.35564, + "link": 955.64441, + "sats": 329.35564 + }, + "atl_date": { + "aed": "2015-10-20T00:00:00.000Z", + "ars": "2015-10-20T00:00:00.000Z", + "aud": "2015-10-20T00:00:00.000Z", + "bch": "2017-11-12T00:00:00.000Z", + "bdt": "2015-10-20T00:00:00.000Z", + "bhd": "2015-10-20T00:00:00.000Z", + "bmd": "2015-10-20T00:00:00.000Z", + "bnb": "2025-04-09T01:30:43.656Z", + "brl": "2015-10-20T00:00:00.000Z", + "btc": "2015-10-20T00:00:00.000Z", + "cad": "2015-10-20T00:00:00.000Z", + "chf": "2015-10-20T00:00:00.000Z", + "clp": "2015-10-20T00:00:00.000Z", + "cny": "2015-10-20T00:00:00.000Z", + "czk": "2015-10-20T00:00:00.000Z", + "dkk": "2015-10-20T00:00:00.000Z", + "dot": "2021-03-03T00:43:22.672Z", + "eos": "2019-04-16T00:00:00.000Z", + "eth": "2019-10-22T00:00:00.000Z", + "eur": "2015-10-20T00:00:00.000Z", + "gbp": "2015-10-20T00:00:00.000Z", + "gel": "2025-04-09T01:30:43.656Z", + "hkd": "2015-10-20T00:00:00.000Z", + "huf": "2015-10-20T00:00:00.000Z", + "idr": "2015-10-20T00:00:00.000Z", + "ils": "2015-10-20T00:00:00.000Z", + "inr": "2015-10-20T00:00:00.000Z", + "jpy": "2015-10-20T00:00:00.000Z", + "krw": "2015-10-20T00:00:00.000Z", + "kwd": "2015-10-20T00:00:00.000Z", + "lkr": "2015-10-20T00:00:00.000Z", + "ltc": "2015-10-20T00:00:00.000Z", + "mmk": "2015-10-20T00:00:00.000Z", + "mxn": "2015-10-20T00:00:00.000Z", + "myr": "2015-10-20T00:00:00.000Z", + "ngn": "2015-10-20T00:00:00.000Z", + "nok": "2015-10-20T00:00:00.000Z", + "nzd": "2015-10-20T00:00:00.000Z", + "php": "2015-10-20T00:00:00.000Z", + "pkr": "2015-10-20T00:00:00.000Z", + "pln": "2015-10-20T00:00:00.000Z", + "rub": "2015-10-20T00:00:00.000Z", + "sar": "2015-10-20T00:00:00.000Z", + "sek": "2015-10-20T00:00:00.000Z", + "sgd": "2015-10-20T00:00:00.000Z", + "sol": "2025-06-30T15:56:31.016Z", + "thb": "2015-10-20T00:00:00.000Z", + "try": "2015-10-20T00:00:00.000Z", + "twd": "2015-10-20T00:00:00.000Z", + "uah": "2015-10-20T00:00:00.000Z", + "usd": "2015-10-20T00:00:00.000Z", + "vef": "2015-10-20T00:00:00.000Z", + "vnd": "2015-10-20T00:00:00.000Z", + "xag": "2015-10-20T00:00:00.000Z", + "xau": "2015-10-20T00:00:00.000Z", + "xdr": "2015-10-20T00:00:00.000Z", + "xlm": "2018-11-20T00:00:00.000Z", + "xrp": "2018-12-20T00:00:00.000Z", + "yfi": "2020-09-14T08:23:43.987Z", + "zar": "2015-10-20T00:00:00.000Z", + "bits": "2016-12-27T00:00:00.000Z", + "link": "2020-08-16T08:12:39.777Z", + "sats": "2016-12-27T00:00:00.000Z" + }, + "market_cap": { + "aed": 1524063571062, + "ars": 601994279239693, + "aud": 637180995782, + "bch": 852327050, + "bdt": 50571439650584, + "bhd": 156438848793, + "bmd": 414993484292, + "bnb": 431135955, + "brl": 2224863067986, + "btc": 4003072, + "cad": 585259915982, + "chf": 335856301805, + "clp": 391961345913792, + "cny": 2956538080141, + "czk": 8791138972545, + "dkk": 2692141581364, + "dot": 155693779070, + "eos": 1631579245644, + "eth": 120697167, + "eur": 360631827811, + "gbp": 317637672851, + "gel": 1126707309853, + "hkd": 3226719588090, + "huf": 139520406875290, + "idr": 6930391187676366, + "ils": 1352048771823, + "inr": 36768014354682, + "jpy": 63862517310727, + "krw": 600147593509040, + "kwd": 127459853785, + "lkr": 126407019050284, + "ltc": 4681848327, + "mmk": 871361818967908, + "mxn": 7714542125920, + "myr": 1735710248051, + "ngn": 598474553502019, + "nok": 4235649672133, + "nzd": 732727020638, + "php": 24426306498724, + "pkr": 117291580929478, + "pln": 1534838461889, + "rub": 33759724097089, + "sar": 1556454227505, + "sek": 3965019971222, + "sgd": 541805948241, + "sol": 2557194393, + "thb": 13470445728930, + "try": 17473631820915, + "twd": 12835195697830, + "uah": 17456602563287, + "usd": 414993484292, + "vef": 41553297582, + "vnd": 10924703473986850, + "xag": 8616966207, + "xau": 104084516, + "xdr": 294126631992, + "xlm": 1484710136295, + "xrp": 175735817072, + "yfi": 93140305, + "zar": 7215130667054, + "bits": 4003072268662, + "link": 27401640648, + "sats": 400307226866155 + }, + "market_cap_rank": 2, + "fully_diluted_valuation": { + "aed": 1524063571062, + "ars": 601994279239693, + "aud": 637180995782, + "bch": 852327050, + "bdt": 50571439650584, + "bhd": 156438848793, + "bmd": 414993484292, + "bnb": 431135955, + "brl": 2224863067986, + "btc": 4003072, + "cad": 585259915982, + "chf": 335856301805, + "clp": 391961345913792, + "cny": 2956538080141, + "czk": 8791138972545, + "dkk": 2692141581364, + "dot": 155693779070, + "eos": 1631579245644, + "eth": 120697167, + "eur": 360631827811, + "gbp": 317637672851, + "gel": 1126707309853, + "hkd": 3226719588090, + "huf": 139520406875290, + "idr": 6930391187676366, + "ils": 1352048771823, + "inr": 36768014354682, + "jpy": 63862517310727, + "krw": 600147593509040, + "kwd": 127459853785, + "lkr": 126407019050284, + "ltc": 4681848327, + "mmk": 871361818967908, + "mxn": 7714542125920, + "myr": 1735710248051, + "ngn": 598474553502019, + "nok": 4235649672133, + "nzd": 732727020638, + "php": 24426306498724, + "pkr": 117291580929478, + "pln": 1534838461889, + "rub": 33759724097089, + "sar": 1556454227505, + "sek": 3965019971222, + "sgd": 541805948241, + "sol": 2557194393, + "thb": 13470445728930, + "try": 17473631820915, + "twd": 12835195697830, + "uah": 17456602563287, + "usd": 414993484292, + "vef": 41553297582, + "vnd": 10924703473986850, + "xag": 8616966207, + "xau": 104084516, + "xdr": 294126631992, + "xlm": 1484710136295, + "xrp": 175735817072, + "yfi": 93140305, + "zar": 7215130667054, + "bits": 4003072268662, + "link": 27401640648, + "sats": 400307226866155 + }, + "market_cap_fdv_ratio": 1.0, + "total_volume": { + "aed": 131428217673, + "ars": 51913211936834, + "aud": 54947552189, + "bch": 73509479, + "bdt": 4361047862195, + "bhd": 13490565264, + "bmd": 35787125302, + "bnb": 37175867, + "brl": 191861936171, + "btc": 345251, + "cad": 50470117581, + "chf": 28962699443, + "clp": 33800939848081, + "cny": 254958216792, + "czk": 758107304980, + "dkk": 232157881390, + "dot": 13429247074, + "eos": 140725509877, + "eth": 10409695, + "eur": 31099226611, + "gbp": 27391608855, + "gel": 97162045196, + "hkd": 278257424720, + "huf": 12031596813142, + "idr": 597644992549440, + "ils": 116594454235, + "inr": 3170704087258, + "jpy": 5507209138530, + "krw": 51753962271144, + "kwd": 10991550304, + "lkr": 10900758689184, + "ltc": 403817766, + "mmk": 75142226997369, + "mxn": 665266555165, + "myr": 149679651577, + "ngn": 51609687012295, + "nok": 365262904819, + "nzd": 63187000983, + "php": 2106412087012, + "pkr": 10114685320413, + "pln": 132357394594, + "rub": 2911283001218, + "sar": 134221438590, + "sek": 341925046796, + "sgd": 46722847691, + "sol": 220537637, + "thb": 1161629151846, + "try": 1506845468982, + "twd": 1106848117151, + "uah": 1505376944295, + "usd": 35787125302, + "vef": 3583364857, + "vnd": 942096073584672, + "xag": 743087448, + "xau": 8975769, + "xdr": 25364125058, + "xlm": 128058519201, + "xrp": 15156153236, + "yfi": 8033267, + "zar": 622199612833, + "bits": 345250666000, + "link": 2363239951, + "sats": 34525066600020 + }, + "high_24h": { + "aed": 12766.41, + "ars": 5042454, + "aud": 5339.63, + "bch": 7.083789, + "bdt": 423557, + "bhd": 1310.36, + "bmd": 3475.74, + "bnb": 3.618688, + "brl": 18633.81, + "btc": 0.0333258, + "cad": 4903.33, + "chf": 2815.87, + "clp": 3284031, + "cny": 24771, + "czk": 73664, + "dkk": 22583, + "dot": 1316, + "eos": 13738, + "eth": 1.0, + "eur": 3025.33, + "gbp": 2663.53, + "gel": 9471.4, + "hkd": 27024, + "huf": 1169905, + "idr": 57942820, + "ils": 11323.97, + "inr": 307827, + "jpy": 535614, + "krw": 5008809, + "kwd": 1067.86, + "lkr": 1058712, + "ltc": 39.045468, + "mmk": 7298020, + "mxn": 64614, + "myr": 14568.58, + "ngn": 5014074, + "nok": 35488, + "nzd": 6135.96, + "php": 204051, + "pkr": 982366, + "pln": 12872.49, + "rub": 282762, + "sar": 13035.78, + "sek": 33233, + "sgd": 4541.9, + "sol": 21.318938, + "thb": 112833, + "try": 146294, + "twd": 107344, + "uah": 146206, + "usd": 3475.74, + "vef": 348.03, + "vnd": 91491024, + "xag": 72.1, + "xau": 0.872287, + "xdr": 2463.43, + "xlm": 12393, + "xrp": 1514, + "yfi": 0.77861451, + "zar": 60469, + "bits": 33326, + "link": 227.77, + "sats": 3332580 + }, + "low_24h": { + "aed": 12037.26, + "ars": 4778044, + "aud": 5058.84, + "bch": 6.808819, + "bdt": 399587, + "bhd": 1235.66, + "bmd": 3277.67, + "bnb": 3.482566, + "brl": 17692.88, + "btc": 0.03232702, + "cad": 4632.2, + "chf": 2657.26, + "clp": 3103597, + "cny": 23365, + "czk": 69499, + "dkk": 21309, + "dot": 1273, + "eos": 13213, + "eth": 1.0, + "eur": 2854.26, + "gbp": 2516.23, + "gel": 8915.27, + "hkd": 25484, + "huf": 1106316, + "idr": 54771301, + "ils": 10732.9, + "inr": 290527, + "jpy": 503533, + "krw": 4736512, + "kwd": 1007.33, + "lkr": 998881, + "ltc": 38.07544, + "mmk": 6882132, + "mxn": 61207, + "myr": 13751.48, + "ngn": 4726635, + "nok": 33500, + "nzd": 5807.37, + "php": 192957, + "pkr": 926717, + "pln": 12155.86, + "rub": 266316, + "sar": 12292.58, + "sek": 31421, + "sgd": 4284.31, + "sol": 21.040314, + "thb": 106672, + "try": 138007, + "twd": 101323, + "uah": 137951, + "usd": 3277.67, + "vef": 328.19, + "vnd": 86277279, + "xag": 68.73, + "xau": 0.826427, + "xdr": 2323.05, + "xlm": 11989, + "xrp": 1436, + "yfi": 0.74791303, + "zar": 57293, + "bits": 32327, + "link": 223.003, + "sats": 3232702 + }, + "price_change_24h": 103.144, + "price_change_percentage_24h": 3.09261, + "price_change_percentage_7d": -12.52946, + "price_change_percentage_14d": -10.02657, + "price_change_percentage_30d": -26.47178, + "price_change_percentage_60d": -20.00176, + "price_change_percentage_200d": 112.63097, + "price_change_percentage_1y": 38.49336, + "market_cap_change_24h": 11882560406, + "market_cap_change_percentage_24h": 2.94771, + "price_change_24h_in_currency": { + "aed": 378.79, + "ars": 125813, + "aud": 141.38, + "bch": 0.21930288, + "bdt": 12399.59, + "bhd": 38.89, + "bmd": 103.14, + "bnb": 0.05883621, + "brl": 432.57, + "btc": 0.00052573, + "cad": 142.81, + "chf": 81.96, + "clp": 89448, + "cny": 721.49, + "czk": 1992.03, + "dkk": 632.88, + "dot": -8.300257894648894, + "eos": 217.803, + "eth": 0.0, + "eur": 84.85, + "gbp": 69.72, + "gel": 263.36, + "hkd": 804.43, + "huf": 28347, + "idr": 1655893, + "ils": 299.69, + "inr": 8671.22, + "jpy": 17017.24, + "krw": 155075, + "kwd": 31.4, + "lkr": 30908, + "ltc": 0.47678452, + "mmk": 216571, + "mxn": 1614.01, + "myr": 389.71, + "ngn": 146712, + "nok": 1045.17, + "nzd": 172.55, + "php": 6471.17, + "pkr": 28813, + "pln": 347.5, + "rub": 9565.11, + "sar": 387.68, + "sek": 920.2, + "sgd": 130.13, + "sol": -0.10409449427416817, + "thb": 3045.87, + "try": 4403.63, + "twd": 3190.66, + "uah": 4261.3, + "usd": 103.14, + "vef": 10.33, + "vnd": 2722872, + "xag": 1.49, + "xau": 0.02120023, + "xdr": 73.1, + "xlm": 162.178, + "xrp": -27.201661923360916, + "yfi": 0.01106716, + "zar": 1452.52, + "bits": 525.73, + "link": 2.220801, + "sats": 52573 + }, + "price_change_percentage_1h_in_currency": { + "aed": 0.32614, + "ars": 0.31569, + "aud": 0.27618, + "bch": 0.59435, + "bdt": 0.32614, + "bhd": 0.31842, + "bmd": 0.32614, + "bnb": -0.19813, + "brl": 0.35796, + "btc": 0.18187, + "cad": 0.31846, + "chf": 0.32453, + "clp": 0.38779, + "cny": 0.31206, + "czk": 0.29442, + "dkk": 0.29283, + "dot": 0.45439, + "eos": -0.31458, + "eth": 0.0, + "eur": 0.29694, + "gbp": 0.27361, + "gel": 0.32614, + "hkd": 0.33743, + "huf": 0.28946, + "idr": 0.30091, + "ils": 0.32614, + "inr": 0.29318, + "jpy": 0.27434, + "krw": 0.33392, + "kwd": 0.31765, + "lkr": 0.32614, + "ltc": 0.53745, + "mmk": 0.32614, + "mxn": 0.27732, + "myr": 0.29017, + "ngn": 0.3171, + "nok": 0.3143, + "nzd": 0.3503, + "php": 0.3611, + "pkr": 0.32614, + "pln": 0.30266, + "rub": 0.32833, + "sar": 0.33229, + "sek": 0.29932, + "sgd": 0.29787, + "sol": 0.14924, + "thb": 0.32433, + "try": 0.32399, + "twd": 0.25538, + "uah": 0.32614, + "usd": 0.32614, + "vef": 0.32614, + "vnd": 0.33484, + "xag": -0.03426, + "xau": 0.20628, + "xdr": 0.32614, + "xlm": 0.73516, + "xrp": 1.1344, + "yfi": 0.48299, + "zar": 0.27931, + "bits": 0.18187, + "link": 0.25963, + "sats": 0.18187 + }, + "price_change_percentage_24h_in_currency": { + "aed": 3.09261, + "ars": 2.58776, + "aud": 2.75178, + "bch": 3.20467, + "bdt": 3.04962, + "bhd": 3.09289, + "bmd": 3.09261, + "bnb": 1.67486, + "brl": 2.40306, + "btc": 1.61045, + "cad": 3.0346, + "chf": 3.03481, + "clp": 2.8324, + "cny": 3.03476, + "czk": 2.81185, + "dkk": 2.92024, + "dot": -0.6392, + "eos": 1.63729, + "eth": 0.0, + "eur": 2.92289, + "gbp": 2.72154, + "gel": 2.90311, + "hkd": 3.10236, + "huf": 2.51392, + "idr": 2.96948, + "ils": 2.74886, + "inr": 2.92987, + "jpy": 3.32305, + "krw": 3.21914, + "kwd": 3.06409, + "lkr": 3.04089, + "ltc": 1.2442, + "mmk": 3.09261, + "mxn": 2.5906, + "myr": 2.78542, + "ngn": 3.04903, + "nok": 3.06968, + "nzd": 2.92549, + "php": 3.30321, + "pkr": 3.05557, + "pln": 2.80944, + "rub": 3.54079, + "sar": 3.09951, + "sek": 2.88187, + "sgd": 2.98549, + "sol": -0.48888, + "thb": 2.80571, + "try": 3.13718, + "twd": 3.09318, + "uah": 3.03576, + "usd": 3.09261, + "vef": 3.09261, + "vnd": 3.10156, + "xag": 2.12634, + "xau": 2.52035, + "xdr": 3.09261, + "xlm": 1.33576, + "xrp": -1.8338, + "yfi": 1.45479, + "zar": 2.49033, + "bits": 1.61045, + "link": 0.98776, + "sats": 1.61045 + }, + "price_change_percentage_7d_in_currency": { + "aed": -12.52946, + "ars": -11.73196, + "aud": -11.55661, + "bch": 0.97822, + "bdt": -12.80168, + "bhd": -12.529, + "bmd": -12.52946, + "bnb": 1.53938, + "brl": -12.51151, + "btc": -6.61418, + "cad": -11.496, + "chf": -11.43868, + "clp": -12.14904, + "cny": -12.19918, + "czk": -11.69241, + "dkk": -11.75798, + "dot": 1.94406, + "eos": -2.67323, + "eth": 0.0, + "eur": -11.72319, + "gbp": -11.5856, + "gel": -12.85046, + "hkd": -12.46745, + "huf": -12.17475, + "idr": -11.82964, + "ils": -12.34773, + "inr": -12.29965, + "jpy": -11.748, + "krw": -11.13441, + "kwd": -12.45022, + "lkr": -12.48571, + "ltc": -2.16788, + "mmk": -12.49196, + "mxn": -11.95493, + "myr": -12.84204, + "ngn": -13.18384, + "nok": -10.81379, + "nzd": -10.82808, + "php": -12.15711, + "pkr": -12.43292, + "pln": -11.42757, + "rub": -11.05339, + "sar": -12.52314, + "sek": -11.08725, + "sgd": -11.93846, + "sol": 5.1833, + "thb": -12.3736, + "try": -12.31914, + "twd": -11.78571, + "uah": -12.50174, + "usd": -12.52946, + "vef": -12.52946, + "vnd": -12.56793, + "xag": -13.41813, + "xau": -13.35854, + "xdr": -11.4926, + "xlm": -0.68934, + "xrp": -4.48553, + "yfi": -7.05917, + "zar": -11.45266, + "bits": -6.61418, + "link": 4.73128, + "sats": -6.61418 + }, + "price_change_percentage_14d_in_currency": { + "aed": -10.02657, + "ars": -10.43832, + "aud": -10.39936, + "bch": -11.93888, + "bdt": -10.19566, + "bhd": -10.02801, + "bmd": -10.02657, + "bnb": 1.29583, + "brl": -10.69786, + "btc": -6.10344, + "cad": -9.35335, + "chf": -8.64377, + "clp": -10.57101, + "cny": -10.02784, + "czk": -9.02882, + "dkk": -9.36594, + "dot": -1.02873, + "eos": -1.3412, + "eth": 0.0, + "eur": -9.31897, + "gbp": -8.13699, + "gel": -9.69395, + "hkd": -9.97174, + "huf": -9.92931, + "idr": -9.62055, + "ils": -11.07738, + "inr": -9.27565, + "jpy": -9.15829, + "krw": -9.33442, + "kwd": -9.87487, + "lkr": -9.51014, + "ltc": -6.21008, + "mmk": -9.98799, + "mxn": -9.33313, + "myr": -11.05794, + "ngn": -11.31128, + "nok": -8.44861, + "nzd": -8.90358, + "php": -9.64357, + "pkr": -10.09032, + "pln": -8.87175, + "rub": -10.19601, + "sar": -10.02434, + "sek": -8.75842, + "sgd": -9.59031, + "sol": 0.80411, + "thb": -11.06658, + "try": -9.76998, + "twd": -9.63692, + "uah": -9.2577, + "usd": -10.02657, + "vef": -10.02657, + "vnd": -10.0744, + "xag": -9.91347, + "xau": -8.08425, + "xdr": -9.28408, + "xlm": -0.00064, + "xrp": -9.65529, + "yfi": -4.95978, + "zar": -10.28708, + "bits": -6.10344, + "link": 2.58435, + "sats": -6.10344 + }, + "price_change_percentage_30d_in_currency": { + "aed": -26.47178, + "ars": -25.39734, + "aud": -25.33152, + "bch": -10.01537, + "bdt": -26.13916, + "bhd": -26.48055, + "bmd": -26.47178, + "bnb": -7.44839, + "brl": -25.79355, + "btc": -11.56656, + "cad": -25.67796, + "chf": -25.21326, + "clp": -27.8041, + "cny": -26.4222, + "czk": -25.05956, + "dkk": -25.25875, + "dot": 21.47575, + "eos": 18.54197, + "eth": 0.0, + "eur": -25.2561, + "gbp": -24.16902, + "gel": -26.87578, + "hkd": -26.54321, + "huf": -25.6056, + "idr": -25.93916, + "ils": -26.8606, + "inr": -26.57399, + "jpy": -24.82328, + "krw": -24.73069, + "kwd": -26.24461, + "lkr": -25.64926, + "ltc": -1.85316, + "mmk": -26.46477, + "mxn": -25.47477, + "myr": -27.03872, + "ngn": -27.71386, + "nok": -24.40862, + "nzd": -24.29377, + "php": -25.70306, + "pkr": -26.10976, + "pln": -25.2221, + "rub": -27.93134, + "sar": -26.4726, + "sek": -25.16729, + "sgd": -25.69381, + "sol": 5.37187, + "thb": -26.68481, + "try": -25.76888, + "twd": -25.31176, + "uah": -24.83772, + "usd": -26.47178, + "vef": -26.47178, + "vnd": -26.57915, + "xag": -26.17358, + "xau": -26.99571, + "xdr": -25.20541, + "xlm": 7.22029, + "xrp": -6.95155, + "yfi": -8.27424, + "zar": -25.65541, + "bits": -11.56656, + "link": 14.38697, + "sats": -11.56656 + }, + "price_change_percentage_60d_in_currency": { + "aed": -20.00176, + "ars": -14.90842, + "aud": -19.47309, + "bch": -2.26386, + "bdt": -19.68617, + "bhd": -19.92933, + "bmd": -20.00176, + "bnb": -28.2752, + "brl": -20.78267, + "btc": -14.64911, + "cad": -18.46758, + "chf": -18.88065, + "clp": -21.6801, + "cny": -20.09765, + "czk": -18.56283, + "dkk": -18.54408, + "dot": 15.66572, + "eos": 46.67539, + "eth": 0.0, + "eur": -18.5481, + "gbp": -17.28919, + "gel": -19.55732, + "hkd": -20.21468, + "huf": -19.70023, + "idr": -18.43244, + "ils": -22.10839, + "inr": -19.62754, + "jpy": -16.48165, + "krw": -16.55941, + "kwd": -19.50749, + "lkr": -19.34412, + "ltc": 1.85115, + "mmk": -19.97508, + "mxn": -20.53885, + "myr": -20.7971, + "ngn": -24.59617, + "nok": -18.72937, + "nzd": -16.76275, + "php": -16.95492, + "pkr": -20.10999, + "pln": -18.42017, + "rub": -19.8346, + "sar": -19.99499, + "sek": -18.64694, + "sgd": -18.73338, + "sol": 0.0736, + "thb": -18.98283, + "try": -18.24793, + "twd": -18.86411, + "uah": -18.4057, + "usd": -20.00176, + "vef": -20.00176, + "vnd": -20.23707, + "xag": -31.88113, + "xau": -28.03314, + "xdr": -18.52773, + "xlm": 2.67136, + "xrp": -4.3628, + "yfi": -6.59693, + "zar": -20.92301, + "bits": -14.64911, + "link": 18.09681, + "sats": -14.64911 + }, + "price_change_percentage_200d_in_currency": { + "aed": 112.6029, + "ars": 171.04834, + "aud": 108.57228, + "bch": 48.55668, + "bdt": 113.38874, + "bhd": 112.67328, + "bmd": 112.63097, + "bnb": 30.89598, + "brl": 96.27362, + "btc": 74.95325, + "cad": 116.64829, + "chf": 110.24691, + "clp": 107.54186, + "cny": 107.63272, + "czk": 104.37986, + "dkk": 110.0953, + "dot": 210.37736, + "eos": 440.96717, + "eth": 0.0, + "eur": 110.13667, + "gbp": 115.8919, + "gel": 109.84845, + "hkd": 112.95443, + "huf": 99.07273, + "idr": 110.55798, + "ils": 87.9375, + "inr": 120.63843, + "jpy": 129.79625, + "krw": 116.7942, + "kwd": 113.00339, + "lkr": 117.13739, + "ltc": 83.1924, + "mmk": 112.80327, + "mxn": 100.44844, + "myr": 101.7763, + "ngn": 91.27079, + "nok": 107.23105, + "nzd": 124.26801, + "php": 120.75072, + "pkr": 114.33116, + "pln": 109.02698, + "rub": 110.49806, + "sar": 112.5484, + "sek": 111.17083, + "sgd": 111.79116, + "sol": 82.78715, + "thb": 106.90986, + "try": 135.48037, + "twd": 102.20745, + "uah": 116.6172, + "usd": 112.63097, + "vef": 112.63097, + "vnd": 116.23177, + "xag": 43.55292, + "xau": 77.02308, + "xdr": 109.86183, + "xlm": 87.89521, + "xrp": 88.15003, + "yfi": 119.2929, + "zar": 96.41929, + "bits": 74.95325, + "link": 81.97554, + "sats": 74.95325 + }, + "price_change_percentage_1y_in_currency": { + "aed": 38.47447, + "ars": 102.3495, + "aud": 40.18241, + "bch": -0.6919, + "bdt": 41.19464, + "bhd": 38.55217, + "bmd": 38.49336, + "bnb": -17.61218, + "brl": 27.99576, + "btc": -4.93923, + "cad": 40.65461, + "chf": 28.96502, + "clp": 36.74442, + "cny": 38.91062, + "czk": 25.45363, + "dkk": 30.55293, + "dot": 104.20022, + "eos": 135.84856, + "eth": 0.0, + "eur": 30.41928, + "gbp": 37.45179, + "gel": 38.49336, + "hkd": 38.51554, + "huf": 23.38982, + "idr": 46.16029, + "ils": 20.43158, + "inr": 45.76493, + "jpy": 39.36107, + "krw": 44.39527, + "kwd": 38.83555, + "lkr": 43.91867, + "ltc": 4.73339, + "mmk": 38.60558, + "mxn": 25.9939, + "myr": 32.83992, + "ngn": 20.19199, + "nok": 28.02639, + "nzd": 46.03978, + "php": 39.20879, + "pkr": 40.84116, + "pln": 27.29301, + "rub": 14.94158, + "sar": 38.2677, + "sek": 22.70161, + "sgd": 36.88087, + "sol": 42.34349, + "thb": 33.09096, + "try": 70.03086, + "twd": 33.7063, + "uah": 40.42911, + "usd": 38.49336, + "vef": 38.49336, + "vnd": 43.84647, + "xag": -6.37214, + "xau": -4.58323, + "xdr": 30.98433, + "xlm": -53.08031, + "xrp": -69.4882, + "yfi": 44.9395, + "zar": 37.10192, + "bits": -4.93923, + "link": 1.69135, + "sats": -4.93923 + }, + "market_cap_change_24h_in_currency": { + "aed": 43638703090, + "ars": 14374607848343, + "aud": 16064862481, + "bch": 25829324, + "bdt": 1427522189683, + "bhd": 4479736259, + "bmd": 11882560406, + "bnb": 6799219, + "brl": 49233100679, + "btc": 59952, + "cad": 16427269509, + "chf": 9492457385, + "clp": 10259643195021, + "cny": 82881237033, + "czk": 228946047030, + "dkk": 72848537450, + "dot": -1126892857.4221191, + "eos": 24815269103, + "eth": -108.17777448892593, + "eur": 9768513880, + "gbp": 8027924649, + "gel": 30245596882, + "hkd": 92661150369, + "huf": 3230317940065, + "idr": 188091525776531, + "ils": 34319472731, + "inr": 987344550780, + "jpy": 2002263797257, + "krw": 17659906327919, + "kwd": 3615309527, + "lkr": 3557787105791, + "ltc": 53838931, + "mmk": 24949812083683, + "mxn": 181688913440, + "myr": 44659922348, + "ngn": 16890299174188, + "nok": 120595002036, + "nzd": 19799149535, + "php": 752707672141, + "pkr": 3317475308269, + "pln": 39914500205, + "rub": 1107740471625, + "sar": 44667329654, + "sek": 104650379725, + "sgd": 14916590288, + "sol": -14730999.769878864, + "thb": 346323068869, + "try": 507701214958, + "twd": 363125112702, + "uah": 490480479641, + "usd": 11882560406, + "vef": 1189800773, + "vnd": 313413069063812, + "xag": 158808149, + "xau": 2278852, + "xdr": 8421764687, + "xlm": 18334608869, + "xrp": -3408446435.5627136, + "yfi": 1253436, + "zar": 165419602623, + "bits": 59952418281, + "link": 251467181, + "sats": 5995241828148 + }, + "market_cap_change_percentage_24h_in_currency": { + "aed": 2.94771, + "ars": 2.44624, + "aud": 2.58645, + "bch": 3.12515, + "bdt": 2.90478, + "bhd": 2.94799, + "bmd": 2.94771, + "bnb": 1.60232, + "brl": 2.26294, + "btc": 1.52043, + "cad": 2.88789, + "chf": 2.90855, + "clp": 2.68787, + "cny": 2.88417, + "czk": 2.67392, + "dkk": 2.78123, + "dot": -0.71859, + "eos": 1.54443, + "eth": -9e-05, + "eur": 2.78414, + "gbp": 2.59292, + "gel": 2.75847, + "hkd": 2.95659, + "huf": 2.37018, + "idr": 2.78972, + "ils": 2.60444, + "inr": 2.75944, + "jpy": 3.23675, + "krw": 3.03181, + "kwd": 2.91923, + "lkr": 2.89606, + "ltc": 1.16333, + "mmk": 2.94771, + "mxn": 2.41195, + "myr": 2.64096, + "ngn": 2.90419, + "nok": 2.93058, + "nzd": 2.77716, + "php": 3.17952, + "pkr": 2.91073, + "pln": 2.67, + "rub": 3.39257, + "sar": 2.9546, + "sek": 2.71089, + "sgd": 2.83107, + "sol": -0.57276, + "thb": 2.63883, + "try": 2.99247, + "twd": 2.91151, + "uah": 2.89094, + "usd": 2.94771, + "vef": 2.94771, + "vnd": 2.95358, + "xag": 1.87757, + "xau": 2.23843, + "xdr": 2.94771, + "xlm": 1.25034, + "xrp": -1.90263, + "yfi": 1.36411, + "zar": 2.34647, + "bits": 1.52043, + "link": 0.92621, + "sats": 1.52043 + }, + "total_supply": 120697167.1614941, + "max_supply": null, + "max_supply_infinite": true, + "circulating_supply": 120697167.1614941, + "last_updated": "2025-11-06T03:51:00.899Z" + }, + "community_data": { + "facebook_likes": null, + "reddit_average_posts_48h": 0.0, + "reddit_average_comments_48h": 0.0, + "reddit_subscribers": 0, + "reddit_accounts_active_48h": 0, + "telegram_channel_user_count": null + }, + "developer_data": { + "forks": 19618, + "stars": 44422, + "subscribers": 2195, + "total_issues": 7683, + "closed_issues": 7427, + "pull_requests_merged": 5779, + "pull_request_contributors": 906, + "code_additions_deletions_4_weeks": { + "additions": 23340, + "deletions": -2460 + }, + "commit_count_4_weeks": 41, + "last_4_weeks_commit_activity_series": [] + }, + "status_updates": [], + "last_updated": "2025-11-06T03:51:00.899Z", + "tickers": [ + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 3438.23, + "volume": 617917.6457, + "converted_last": { + "btc": 0.03316194, + "eth": 0.99982024, + "usd": 3437.67 + }, + "converted_volume": { + "btc": 20491, + "eth": 617807, + "usd": 2124196914 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:09+00:00", + "last_traded_at": "2025-11-06T03:48:09+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_USDT?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "KuCoin", + "identifier": "kucoin", + "has_trading_incentive": false + }, + "last": 3438.1, + "volume": 0.0, + "converted_last": { + "btc": 0.03316068, + "eth": 0.99978244, + "usd": 3437.54 + }, + "converted_volume": { + "btc": 19570, + "eth": 590041, + "usd": 2028731685 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:37+00:00", + "last_traded_at": "2025-11-06T03:49:37+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kucoin.com/trade/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Toobit", + "identifier": "toobit", + "has_trading_incentive": false + }, + "last": 3438.12, + "volume": 545371.2451, + "converted_last": { + "btc": 0.03316095, + "eth": 0.99978766, + "usd": 3437.56 + }, + "converted_volume": { + "btc": 17764, + "eth": 535571, + "usd": 1841447750 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.toobit.com/en-US/spot/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Pionex", + "identifier": "pionex", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 435312.31621, + "converted_last": { + "btc": 0.03317147, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 14183, + "eth": 427617, + "usd": 1470271082 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.pionex.com/en/trade/ETH_USDT/Bot", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Coinstore", + "identifier": "coinstore", + "has_trading_incentive": false + }, + "last": 3438.17, + "volume": 407776.0699, + "converted_last": { + "btc": 0.03316144, + "eth": 0.9998022, + "usd": 3437.61 + }, + "converted_volume": { + "btc": 13268, + "eth": 400015, + "usd": 1375368492 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010758, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinstore.com/#/spot/ETHUSDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Tapbit", + "identifier": "tapbit", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 526780.1081, + "converted_last": { + "btc": 0.03317139, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 17161, + "eth": 517384, + "usd": 1778914370 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.014106, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.tapbit.com/spot/exchange/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "WEEX", + "identifier": "weex", + "has_trading_incentive": false + }, + "last": 3438.21, + "volume": 378331.47434, + "converted_last": { + "btc": 0.03316182, + "eth": 0.99981383, + "usd": 3437.65 + }, + "converted_volume": { + "btc": 12297, + "eth": 370753, + "usd": 1274757961 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.weex.com/spot/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BitMart", + "identifier": "bitmart", + "has_trading_incentive": false + }, + "last": 3437.77, + "volume": 362182.81968, + "converted_last": { + "btc": 0.03315758, + "eth": 0.99968588, + "usd": 3437.21 + }, + "converted_volume": { + "btc": 12009, + "eth": 362069, + "usd": 1244898414 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010582, + "timestamp": "2025-11-06T03:45:04+00:00", + "last_traded_at": "2025-11-06T03:45:04+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitmart.com/trade/en?symbol=ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "LBank", + "identifier": "lbank", + "has_trading_incentive": false + }, + "last": 3439.6, + "volume": 337720.6321, + "converted_last": { + "btc": 0.03317523, + "eth": 1.000218, + "usd": 3439.04 + }, + "converted_volume": { + "btc": 11204, + "eth": 337794, + "usd": 1161434666 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.lbank.com/trade/eth_usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "KCEX", + "identifier": "kcex", + "has_trading_incentive": false + }, + "last": 3439.31, + "volume": 269394.9358, + "converted_last": { + "btc": 0.03317243, + "eth": 1.000134, + "usd": 3438.75 + }, + "converted_volume": { + "btc": 8772, + "eth": 264484, + "usd": 909372593 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kcex.com/exchange/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "DigiFinex", + "identifier": "digifinex", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 256915.4883, + "converted_last": { + "btc": 0.03317147, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 8522, + "eth": 256942, + "usd": 883442387 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010582, + "timestamp": "2025-11-06T03:49:15+00:00", + "last_traded_at": "2025-11-06T03:49:15+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.digifinex.com/en-ww/trade/USDT/ETH", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "OKX", + "identifier": "okex", + "has_trading_incentive": false + }, + "last": 3438.95, + "volume": 244315.403221, + "converted_last": { + "btc": 0.0331826, + "eth": 1.00114, + "usd": 3438.95 + }, + "converted_volume": { + "btc": 8107, + "eth": 244594, + "usd": 840188456 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:43:10+00:00", + "last_traded_at": "2025-11-06T03:43:10+00:00", + "last_fetch_at": "2025-11-06T03:43:10+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.okx.com/trade-spot/eth-usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BVOX", + "identifier": "bitvenus_spot", + "has_trading_incentive": false + }, + "last": 3438.4, + "volume": 200645.7684, + "converted_last": { + "btc": 0.03316365, + "eth": 0.99986908, + "usd": 3437.84 + }, + "converted_volume": { + "btc": 6546, + "eth": 197371, + "usd": 678617429 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitvenus.me/exchange/ETH/USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "FDUSD", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 3448.6, + "volume": 329184.5128, + "converted_last": { + "btc": 0.03316994, + "eth": 1.000059, + "usd": 3438.49 + }, + "converted_volume": { + "btc": 10919, + "eth": 329204, + "usd": 1131898245 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01522, + "timestamp": "2025-11-06T03:48:36+00:00", + "last_traded_at": "2025-11-06T03:48:36+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_FDUSD?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "first-digital-usd", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Deepcoin", + "identifier": "deepcoin", + "has_trading_incentive": false + }, + "last": 3439.0, + "volume": 256006.15892341, + "converted_last": { + "btc": 0.03316944, + "eth": 1.000044, + "usd": 3438.44 + }, + "converted_volume": { + "btc": 6670, + "eth": 201095, + "usd": 691421249 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.deepcoin.com/en/Spot?currentId=ETH", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Crypto.com Exchange", + "identifier": "crypto_com", + "has_trading_incentive": false + }, + "last": 3439.16, + "volume": 199909.1525, + "converted_last": { + "btc": 0.03317639, + "eth": 1.000253, + "usd": 3439.16 + }, + "converted_volume": { + "btc": 6632, + "eth": 199960, + "usd": 687519561 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:04+00:00", + "last_traded_at": "2025-11-06T03:49:04+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://crypto.com/exchange/trade/spot/ETH_USD", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Gate", + "identifier": "gate", + "has_trading_incentive": false + }, + "last": 3439.56, + "volume": 186153.3516, + "converted_last": { + "btc": 0.03317484, + "eth": 1.000206, + "usd": 3439.0 + }, + "converted_volume": { + "btc": 6066, + "eth": 182898, + "usd": 628854819 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.gate.com/trade/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "XT.COM", + "identifier": "xt", + "has_trading_incentive": false + }, + "last": 3439.25, + "volume": 184962.4027, + "converted_last": { + "btc": 0.03317185, + "eth": 1.000116, + "usd": 3438.69 + }, + "converted_volume": { + "btc": 6024, + "eth": 181630, + "usd": 624496128 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:42+00:00", + "last_traded_at": "2025-11-06T03:49:42+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.xt.com/en/trade/eth_usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 3438.97, + "volume": 180532.449, + "converted_last": { + "btc": 0.033168, + "eth": 1.000003, + "usd": 3438.3 + }, + "converted_volume": { + "btc": 5988, + "eth": 180533, + "usd": 620724381 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:37+00:00", + "last_traded_at": "2025-11-06T03:49:37+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_USDC?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Bybit", + "identifier": "bybit_spot", + "has_trading_incentive": false + }, + "last": 3438.75, + "volume": 173585.08501, + "converted_last": { + "btc": 0.03316703, + "eth": 0.99997086, + "usd": 3438.19 + }, + "converted_volume": { + "btc": 5647, + "eth": 170247, + "usd": 585359987 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:07+00:00", + "last_traded_at": "2025-11-06T03:48:07+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.com/trade/spot/ETH/USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Biconomy.com", + "identifier": "biconomy", + "has_trading_incentive": false + }, + "last": 3438.23, + "volume": 160613.7521, + "converted_last": { + "btc": 0.03316201, + "eth": 0.99981964, + "usd": 3437.67 + }, + "converted_volume": { + "btc": 5232, + "eth": 157740, + "usd": 542355121 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:35+00:00", + "last_traded_at": "2025-11-06T03:48:35+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.biconomy.com/exchange/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "CoinW", + "identifier": "coinw", + "has_trading_incentive": false + }, + "last": 3439.32, + "volume": 221129.1431, + "converted_last": { + "btc": 0.03317253, + "eth": 1.000137, + "usd": 3438.76 + }, + "converted_volume": { + "btc": 7335, + "eth": 221159, + "usd": 760409999 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.014828, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinw.com/spot/ethusdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Ourbit", + "identifier": "ourbit", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 147233.43928, + "converted_last": { + "btc": 0.03317147, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 4795, + "eth": 144561, + "usd": 497042923 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:41+00:00", + "last_traded_at": "2025-11-06T03:49:41+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.ourbit.com/exchange/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Crypto.com Exchange", + "identifier": "crypto_com", + "has_trading_incentive": false + }, + "last": 3439.27, + "volume": 147984.4471, + "converted_last": { + "btc": 0.03317204, + "eth": 1.000122, + "usd": 3438.71 + }, + "converted_volume": { + "btc": 4909, + "eth": 148003, + "usd": 508875564 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:04+00:00", + "last_traded_at": "2025-11-06T03:49:04+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://crypto.com/exchange/trade/spot/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Hibt", + "identifier": "hibt", + "has_trading_incentive": false + }, + "last": 3439.15, + "volume": 148615.37991601514, + "converted_last": { + "btc": 0.03317089, + "eth": 1.000087, + "usd": 3438.59 + }, + "converted_volume": { + "btc": 4839, + "eth": 145895, + "usd": 501630347 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010872, + "timestamp": "2025-11-06T03:49:04+00:00", + "last_traded_at": "2025-11-06T03:49:04+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://hibt.com/trade/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "GroveX", + "identifier": "grovex", + "has_trading_incentive": false + }, + "last": 3435.69, + "volume": 129727.3493365, + "converted_last": { + "btc": 0.03313752, + "eth": 0.99908102, + "usd": 3435.13 + }, + "converted_volume": { + "btc": 4299, + "eth": 129608, + "usd": 445630355 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:45:08+00:00", + "last_traded_at": "2025-11-06T03:45:08+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.grovex.io/en_US/trade/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "P2B", + "identifier": "p2pb2b", + "has_trading_incentive": false + }, + "last": 3439.46, + "volume": 120991.09865, + "converted_last": { + "btc": 0.03317388, + "eth": 1.000177, + "usd": 3438.9 + }, + "converted_volume": { + "btc": 4014, + "eth": 121013, + "usd": 416076257 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:42+00:00", + "last_traded_at": "2025-11-06T03:49:42+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": null, + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Hotcoin", + "identifier": "hotcoin_global", + "has_trading_incentive": false + }, + "last": 3439.22, + "volume": 112340.85639422324, + "converted_last": { + "btc": 0.03317156, + "eth": 1.000108, + "usd": 3438.66 + }, + "converted_volume": { + "btc": 3727, + "eth": 112353, + "usd": 386301984 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010174, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.hotcoin.com/currencyExchange/eth_usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Bitget", + "identifier": "bitget", + "has_trading_incentive": false + }, + "last": 3439.37, + "volume": 109217.8642, + "converted_last": { + "btc": 0.03317301, + "eth": 1.000151, + "usd": 3438.81 + }, + "converted_volume": { + "btc": 3556, + "eth": 107219, + "usd": 368651645 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:26+00:00", + "last_traded_at": "2025-11-06T03:49:26+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitget.com/spot/ETHUSDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 3438.49, + "volume": 178502.64281125, + "converted_last": { + "btc": 0.03316992, + "eth": 1.000058, + "usd": 3438.49 + }, + "converted_volume": { + "btc": 5921, + "eth": 178513, + "usd": 613779552 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.017849, + "timestamp": "2025-11-06T03:49:04+00:00", + "last_traded_at": "2025-11-06T03:49:04+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/ETH-USD", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "MEXC", + "identifier": "mxc", + "has_trading_incentive": false + }, + "last": 3438.92, + "volume": 127921.15551, + "converted_last": { + "btc": 0.03316867, + "eth": 1.00002, + "usd": 3438.36 + }, + "converted_volume": { + "btc": 4166, + "eth": 125617, + "usd": 431906666 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.012616, + "timestamp": "2025-11-06T03:49:42+00:00", + "last_traded_at": "2025-11-06T03:49:42+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.mexc.com/exchange/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BingX", + "identifier": "bingx", + "has_trading_incentive": false + }, + "last": 3439.5, + "volume": 77459.0651, + "converted_last": { + "btc": 0.03317419, + "eth": 1.00019, + "usd": 3438.94 + }, + "converted_volume": { + "btc": 2522, + "eth": 76034, + "usd": 261427141 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010174, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:50:01+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bingx.com/en-us/spot/ETHUSDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Zoomex", + "identifier": "zoomex", + "has_trading_incentive": false + }, + "last": 3439.11, + "volume": 69393.9153, + "converted_last": { + "btc": 0.0331705, + "eth": 1.000076, + "usd": 3438.55 + }, + "converted_volume": { + "btc": 2257, + "eth": 68060, + "usd": 234011502 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:06+00:00", + "last_traded_at": "2025-11-06T03:49:06+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.zoomex.com/trade/spot/ETH/USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Bitunix", + "identifier": "bitunix", + "has_trading_incentive": false + }, + "last": 3439.48, + "volume": 53770.6881, + "converted_last": { + "btc": 0.03317407, + "eth": 1.000183, + "usd": 3438.92 + }, + "converted_volume": { + "btc": 1784, + "eth": 53781, + "usd": 184913080 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:16+00:00", + "last_traded_at": "2025-11-06T03:49:16+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitunix.com/spot-trade/ETHUSDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "AscendEX (BitMax)", + "identifier": "bitmax", + "has_trading_incentive": false + }, + "last": 3439.36, + "volume": 140679.757, + "converted_last": { + "btc": 0.03317291, + "eth": 1.000148, + "usd": 3438.8 + }, + "converted_volume": { + "btc": 4667, + "eth": 140701, + "usd": 483769514 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.025286, + "timestamp": "2025-11-06T03:49:41+00:00", + "last_traded_at": "2025-11-06T03:49:41+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://ascendex.com/en/cashtrade-spottrading/usdt/eth", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Toobit", + "identifier": "toobit", + "has_trading_incentive": false + }, + "last": 3438.38, + "volume": 89435.0845, + "converted_last": { + "btc": 0.03316231, + "eth": 0.99983138, + "usd": 3437.71 + }, + "converted_volume": { + "btc": 2914, + "eth": 87843, + "usd": 302028853 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.016396, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:50:04+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.toobit.com/en-US/spot/ETH_USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Azbit", + "identifier": "azbit", + "has_trading_incentive": false + }, + "last": 3438.81, + "volume": 44537.74004, + "converted_last": { + "btc": 0.03316653, + "eth": 0.99995582, + "usd": 3438.14 + }, + "converted_volume": { + "btc": 1454, + "eth": 43836, + "usd": 150720082 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:44+00:00", + "last_traded_at": "2025-11-06T03:49:44+00:00", + "last_fetch_at": "2025-11-06T03:49:44+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://azbit.com/exchange/ETH_USDC?referralCode=OH5QDS1", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "LBank", + "identifier": "lbank", + "has_trading_incentive": false + }, + "last": 3439.31, + "volume": 45643.1926, + "converted_last": { + "btc": 0.03317135, + "eth": 1.000101, + "usd": 3438.64 + }, + "converted_volume": { + "btc": 1514, + "eth": 45648, + "usd": 156950419 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010582, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.lbank.com/trade/eth_usdc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "WEEX", + "identifier": "weex", + "has_trading_incentive": false + }, + "last": 3438.72, + "volume": 43922.125574, + "converted_last": { + "btc": 0.03316566, + "eth": 0.99992965, + "usd": 3438.05 + }, + "converted_volume": { + "btc": 1457, + "eth": 43919, + "usd": 151006384 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:38+00:00", + "last_traded_at": "2025-11-06T03:49:38+00:00", + "last_fetch_at": "2025-11-06T03:49:38+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.weex.com/spot/ETH-USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Kraken", + "identifier": "kraken", + "has_trading_incentive": false + }, + "last": 3439.43, + "volume": 33253.83233239, + "converted_last": { + "btc": 0.03317899, + "eth": 1.000332, + "usd": 3439.43 + }, + "converted_volume": { + "btc": 1103, + "eth": 33265, + "usd": 114374229 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:44+00:00", + "last_traded_at": "2025-11-06T03:48:44+00:00", + "last_fetch_at": "2025-11-06T03:49:44+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.kraken.com/app/trade/ETH-USD", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "WhiteBIT", + "identifier": "whitebit", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 28816.59731, + "converted_last": { + "btc": 0.03317147, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 955.889, + "eth": 28820, + "usd": 99090186 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://whitebit.com/trade/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "HTX", + "identifier": "huobi", + "has_trading_incentive": false + }, + "last": 3439.01, + "volume": 48508.04370473648, + "converted_last": { + "btc": 0.03316954, + "eth": 1.000046, + "usd": 3438.45 + }, + "converted_volume": { + "btc": 1575, + "eth": 47498, + "usd": 163312482 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.018025, + "timestamp": "2025-11-06T03:49:30+00:00", + "last_traded_at": "2025-11-06T03:49:30+00:00", + "last_fetch_at": "2025-11-06T03:49:44+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.huobi.com/en-us/exchange/eth_usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Phemex", + "identifier": "phemex", + "has_trading_incentive": false + }, + "last": 3439.46, + "volume": 26884.11063, + "converted_last": { + "btc": 0.03317388, + "eth": 1.000177, + "usd": 3438.9 + }, + "converted_volume": { + "btc": 891.85, + "eth": 26889, + "usd": 92451761 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010873, + "timestamp": "2025-11-06T03:49:55+00:00", + "last_traded_at": "2025-11-06T03:49:55+00:00", + "last_fetch_at": "2025-11-06T03:49:55+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://phemex.com/spot/trade/ETHUSDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Biconomy.com", + "identifier": "biconomy", + "has_trading_incentive": false + }, + "last": 3439.02, + "volume": 26567.4434, + "converted_last": { + "btc": 0.03316856, + "eth": 1.000017, + "usd": 3438.35 + }, + "converted_volume": { + "btc": 866.181, + "eth": 26115, + "usd": 89790800 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:35+00:00", + "last_traded_at": "2025-11-06T03:48:35+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.biconomy.com/exchange/ETH_USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "LATOKEN", + "identifier": "latoken", + "has_trading_incentive": false + }, + "last": 3439.65, + "volume": 25508.169489865355, + "converted_last": { + "btc": 0.03317571, + "eth": 1.000233, + "usd": 3439.09 + }, + "converted_volume": { + "btc": 846.252, + "eth": 25514, + "usd": 87724883 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:30+00:00", + "last_traded_at": "2025-11-06T03:49:30+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://latoken.com/exchange/USDT-ETH", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BigONE", + "identifier": "bigone", + "has_trading_incentive": false + }, + "last": 3440.22, + "volume": 58562.79318, + "converted_last": { + "btc": 0.03318121, + "eth": 1.000398, + "usd": 3439.66 + }, + "converted_volume": { + "btc": 1943, + "eth": 58586, + "usd": 201436075 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.026452, + "timestamp": "2025-11-06T03:48:43+00:00", + "last_traded_at": "2025-11-06T03:48:43+00:00", + "last_fetch_at": "2025-11-06T03:49:44+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://big.one/trade/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BitDelta", + "identifier": "bitdelta", + "has_trading_incentive": false + }, + "last": 3439.63, + "volume": 21835.747, + "converted_last": { + "btc": 0.03317552, + "eth": 1.000227, + "usd": 3439.07 + }, + "converted_volume": { + "btc": 710.568, + "eth": 21423, + "usd": 73659572 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitdelta.com/en/trade/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BloFin", + "identifier": "blofin_spot", + "has_trading_incentive": false + }, + "last": 3438.17, + "volume": 31576.911, + "converted_last": { + "btc": 0.03316144, + "eth": 0.9998022, + "usd": 3437.61 + }, + "converted_volume": { + "btc": 1030, + "eth": 31068, + "usd": 106821048 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.015523, + "timestamp": "2025-11-06T03:49:44+00:00", + "last_traded_at": "2025-11-06T03:49:44+00:00", + "last_fetch_at": "2025-11-06T03:49:44+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://blofin.com/spot/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Bit2Me", + "identifier": "bit2me", + "has_trading_incentive": false + }, + "last": 3439.57, + "volume": 19858.654926, + "converted_last": { + "btc": 0.03317386, + "eth": 1.000177, + "usd": 3438.9 + }, + "converted_volume": { + "btc": 646.903, + "eth": 19504, + "usd": 67059835 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.bit2me.com/exchange/ETH-USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Bitstamp", + "identifier": "bitstamp", + "has_trading_incentive": false + }, + "last": 3437.98, + "volume": 18271.059906, + "converted_last": { + "btc": 0.03316501, + "eth": 0.99990982, + "usd": 3437.98 + }, + "converted_volume": { + "btc": 605.96, + "eth": 18269, + "usd": 62815539 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:11+00:00", + "last_traded_at": "2025-11-06T03:48:11+00:00", + "last_fetch_at": "2025-11-06T03:49:46+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitstamp.net/markets/eth/usd/", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "OKX", + "identifier": "okex", + "has_trading_incentive": false + }, + "last": 3439.75, + "volume": 17103.797306, + "converted_last": { + "btc": 0.03318208, + "eth": 1.000425, + "usd": 3439.75 + }, + "converted_volume": { + "btc": 567.54, + "eth": 17111, + "usd": 58832787 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:46+00:00", + "last_traded_at": "2025-11-06T03:48:46+00:00", + "last_fetch_at": "2025-11-06T03:49:46+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.okx.com/trade-spot/eth-usd", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 3439.4507358, + "volume": 22749.68138897, + "converted_last": { + "btc": 0.03317256, + "eth": 1.000138, + "usd": 3438.76 + }, + "converted_volume": { + "btc": 742.102, + "eth": 22374, + "usd": 76928396 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013489, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "CoinW", + "identifier": "coinw", + "has_trading_incentive": false + }, + "last": 3439.37, + "volume": 14361.6495, + "converted_last": { + "btc": 0.03317193, + "eth": 1.000119, + "usd": 3438.7 + }, + "converted_volume": { + "btc": 476.404, + "eth": 14363, + "usd": 49385376 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010755, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinw.com/spot/ethusdc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Hotcoin", + "identifier": "hotcoin_global", + "has_trading_incentive": false + }, + "last": 3439.33, + "volume": 49829.8095, + "converted_last": { + "btc": 0.03317155, + "eth": 1.000107, + "usd": 3438.66 + }, + "converted_volume": { + "btc": 1653, + "eth": 49835, + "usd": 171347676 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.038072, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.hotcoin.com/currencyExchange/eth_usdc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "EUR", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 2989.0, + "volume": 13274.5979, + "converted_last": { + "btc": 0.03317853, + "eth": 1.00032, + "usd": 3439.39 + }, + "converted_volume": { + "btc": 440.432, + "eth": 13279, + "usd": 45656515 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010334, + "timestamp": "2025-11-06T03:48:10+00:00", + "last_traded_at": "2025-11-06T03:48:10+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_EUR?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "DigiFinex", + "identifier": "digifinex", + "has_trading_incentive": false + }, + "last": 3439.32, + "volume": 10262.9271, + "converted_last": { + "btc": 0.03317145, + "eth": 1.000104, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 340.436, + "eth": 10264, + "usd": 35290594 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:16+00:00", + "last_traded_at": "2025-11-06T03:49:16+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.digifinex.com/en-ww/trade/USDC/ETH", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "HashKey Exchange", + "identifier": "hashkey_exchange", + "has_trading_incentive": false + }, + "last": 3438.87, + "volume": 12928.7149, + "converted_last": { + "btc": 0.03317359, + "eth": 1.000169, + "usd": 3438.87 + }, + "converted_volume": { + "btc": 420.263, + "eth": 12671, + "usd": 43565634 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:48+00:00", + "last_traded_at": "2025-11-06T03:49:48+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.hashkey.com/en-US/spot/ETH_USD", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BYDFi", + "identifier": "bydfi", + "has_trading_incentive": false + }, + "last": 3438.12, + "volume": 14190.6247, + "converted_last": { + "btc": 0.03316095, + "eth": 0.99978766, + "usd": 3437.56 + }, + "converted_volume": { + "btc": 470.575, + "eth": 14188, + "usd": 48781123 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.011164, + "timestamp": "2025-11-06T03:49:47+00:00", + "last_traded_at": "2025-11-06T03:49:47+00:00", + "last_fetch_at": "2025-11-06T03:49:47+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bydfi.com/en/spot/eth_usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 3438.82, + "volume": 12798.50960989, + "converted_last": { + "btc": 0.03317311, + "eth": 1.000154, + "usd": 3438.82 + }, + "converted_volume": { + "btc": 416.828, + "eth": 12567, + "usd": 43209616 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Bybit", + "identifier": "bybit_spot", + "has_trading_incentive": false + }, + "last": 3439.55, + "volume": 10630.09174, + "converted_last": { + "btc": 0.03317367, + "eth": 1.000171, + "usd": 3438.88 + }, + "converted_volume": { + "btc": 345.638, + "eth": 10421, + "usd": 35829813 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:48:06+00:00", + "last_traded_at": "2025-11-06T03:48:06+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.com/trade/spot/ETH/USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "CoinEx", + "identifier": "coinex", + "has_trading_incentive": false + }, + "last": 3438.65, + "volume": 9998.92290519, + "converted_last": { + "btc": 0.03316606, + "eth": 0.99994178, + "usd": 3438.09 + }, + "converted_volume": { + "btc": 325.147, + "eth": 9803, + "usd": 33705641 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:47:13+00:00", + "last_traded_at": "2025-11-06T03:47:13+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinex.com/en/exchange/eth-usdt?", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BTSE", + "identifier": "btse", + "has_trading_incentive": false + }, + "last": 3439.46, + "volume": 9512.439506626331, + "converted_last": { + "btc": 0.03317388, + "eth": 1.000177, + "usd": 3438.9 + }, + "converted_volume": { + "btc": 315.565, + "eth": 9514, + "usd": 32712326 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010872, + "timestamp": "2025-11-06T03:49:11+00:00", + "last_traded_at": "2025-11-06T03:49:11+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.btse.com/en/trading/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "EUR", + "market": { + "name": "Kraken", + "identifier": "kraken", + "has_trading_incentive": false + }, + "last": 2989.48, + "volume": 9699.10810954, + "converted_last": { + "btc": 0.03318401, + "eth": 1.000483, + "usd": 3439.95 + }, + "converted_volume": { + "btc": 321.855, + "eth": 9704, + "usd": 33364447 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013679, + "timestamp": "2025-11-06T03:49:45+00:00", + "last_traded_at": "2025-11-06T03:49:45+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.kraken.com/app/trade/ETH-EUR", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "EUR", + "market": { + "name": "Bit2Me", + "identifier": "bit2me", + "has_trading_incentive": false + }, + "last": 2989.29, + "volume": 9505.9352457552, + "converted_last": { + "btc": 0.0331819, + "eth": 1.000419, + "usd": 3439.73 + }, + "converted_volume": { + "btc": 310.811, + "eth": 9371, + "usd": 32219530 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013679, + "timestamp": "2025-11-06T03:48:44+00:00", + "last_traded_at": "2025-11-06T03:48:44+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.bit2me.com/exchange/ETH-EUR", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "KuCoin", + "identifier": "kucoin", + "has_trading_incentive": false + }, + "last": 3438.05, + "volume": 0.0, + "converted_last": { + "btc": 0.03315912, + "eth": 0.99973542, + "usd": 3437.38 + }, + "converted_volume": { + "btc": 446.475, + "eth": 13461, + "usd": 46283032 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.016396, + "timestamp": "2025-11-06T03:49:37+00:00", + "last_traded_at": "2025-11-06T03:49:37+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kucoin.com/trade/ETH-USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "KCEX", + "identifier": "kcex", + "has_trading_incentive": false + }, + "last": 3439.55, + "volume": 7846.6828, + "converted_last": { + "btc": 0.03317367, + "eth": 1.000171, + "usd": 3438.88 + }, + "converted_volume": { + "btc": 255.617, + "eth": 7707, + "usd": 26497955 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.kcex.com/exchange/ETH_USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 0.03317, + "volume": 22892.4575, + "converted_last": { + "btc": 0.03316987, + "eth": 1.000059, + "usd": 3438.49 + }, + "converted_volume": { + "btc": 759.34, + "eth": 22894, + "usd": 78715527 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.030139, + "timestamp": "2025-11-06T03:49:35+00:00", + "last_traded_at": "2025-11-06T03:49:35+00:00", + "last_fetch_at": "2025-11-06T03:50:00+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_BTC?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Gemini", + "identifier": "gemini", + "has_trading_incentive": false + }, + "last": 3438.75, + "volume": 9833.370109, + "converted_last": { + "btc": 0.03317243, + "eth": 1.000134, + "usd": 3438.75 + }, + "converted_volume": { + "btc": 326.197, + "eth": 9835, + "usd": 33814501 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013665, + "timestamp": "2025-11-06T03:49:50+00:00", + "last_traded_at": "2025-11-06T03:49:50+00:00", + "last_fetch_at": "2025-11-06T03:49:50+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://exchange.gemini.com/trade/ETHUSD", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 3437.49, + "volume": 12371.83104519, + "converted_last": { + "btc": 0.0331616, + "eth": 0.9998073, + "usd": 3437.63 + }, + "converted_volume": { + "btc": 410.27, + "eth": 12369, + "usd": 42529747 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.017267, + "timestamp": "2025-11-06T03:49:42+00:00", + "last_traded_at": "2025-11-06T03:49:42+00:00", + "last_fetch_at": "2025-11-06T03:50:00+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "CoinUp.io", + "identifier": "coinup", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 761633.04394775, + "converted_last": { + "btc": 0.03317139, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 24798, + "eth": 747652, + "usd": 2570643388 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010872, + "timestamp": "2025-11-06T03:49:09+00:00", + "last_traded_at": "2025-11-06T03:49:09+00:00", + "last_fetch_at": "2025-11-06T03:50:01+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinup.io/en_US/trade/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Backpack Exchange ", + "identifier": "backpack_exchange", + "has_trading_incentive": false + }, + "last": 3438.74, + "volume": 7039.703, + "converted_last": { + "btc": 0.03316586, + "eth": 0.99993547, + "usd": 3438.07 + }, + "converted_volume": { + "btc": 230.53, + "eth": 6950, + "usd": 23897396 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010582, + "timestamp": "2025-11-06T03:48:48+00:00", + "last_traded_at": "2025-11-06T03:48:48+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://backpack.exchange/trade/ETH_USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BitKan", + "identifier": "bitkan", + "has_trading_incentive": false + }, + "last": 3440.21, + "volume": 6474.9817, + "converted_last": { + "btc": 0.03318111, + "eth": 1.000395, + "usd": 3439.65 + }, + "converted_volume": { + "btc": 214.847, + "eth": 6478, + "usd": 22271668 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitkan.com/trade/ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "BingX", + "identifier": "bingx", + "has_trading_incentive": false + }, + "last": 3439.83, + "volume": 5399.5757, + "converted_last": { + "btc": 0.03317629, + "eth": 1.000253, + "usd": 3439.16 + }, + "converted_volume": { + "btc": 175.904, + "eth": 5303, + "usd": 18234753 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010581, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bingx.com/en-us/spot/ETHUSDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "Pionex", + "identifier": "pionex", + "has_trading_incentive": false + }, + "last": 0.033165, + "volume": 18250.2587, + "converted_last": { + "btc": 0.03315994, + "eth": 0.99975722, + "usd": 3437.46 + }, + "converted_volume": { + "btc": 598.169, + "eth": 18035, + "usd": 62007892 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.030148, + "timestamp": "2025-11-06T03:49:33+00:00", + "last_traded_at": "2025-11-06T03:49:33+00:00", + "last_fetch_at": "2025-11-06T03:50:00+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.pionex.com/en/trade/ETH_BTC/Bot", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD1", + "market": { + "name": "GroveX", + "identifier": "grovex", + "has_trading_incentive": false + }, + "last": 3436.76, + "volume": 4889.8468289, + "converted_last": { + "btc": 0.03316994, + "eth": 1.000059, + "usd": 3438.49 + }, + "converted_volume": { + "btc": 162.196, + "eth": 4890, + "usd": 16813698 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:46:05+00:00", + "last_traded_at": "2025-11-06T03:46:05+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.grovex.io/en_US/trade/ETH_USD1", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd1-wlfi", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "QMall", + "identifier": "qmall", + "has_trading_incentive": false + }, + "last": 3439.47, + "volume": 11810.80914231, + "converted_last": { + "btc": 0.03317397, + "eth": 1.00018, + "usd": 3438.91 + }, + "converted_volume": { + "btc": 384.634, + "eth": 11597, + "usd": 39872233 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020289, + "timestamp": "2025-11-06T03:49:41+00:00", + "last_traded_at": "2025-11-06T03:49:41+00:00", + "last_fetch_at": "2025-11-06T03:49:47+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://qmall.io/trade/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "Bitfinex", + "identifier": "bitfinex", + "has_trading_incentive": false + }, + "last": 3442.5, + "volume": 13986.0560471, + "converted_last": { + "btc": 0.03320861, + "eth": 1.001224, + "usd": 3442.5 + }, + "converted_volume": { + "btc": 464.457, + "eth": 14003, + "usd": 48146998 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.029036, + "timestamp": "2025-11-06T03:49:47+00:00", + "last_traded_at": "2025-11-06T03:49:47+00:00", + "last_fetch_at": "2025-11-06T03:49:47+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://trading.bitfinex.com/t/ETH:USD?type=exchange", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "CoinCatch", + "identifier": "coincatch", + "has_trading_incentive": false + }, + "last": 3439.31, + "volume": 4318.6556, + "converted_last": { + "btc": 0.03317243, + "eth": 1.000134, + "usd": 3438.75 + }, + "converted_volume": { + "btc": 140.653, + "eth": 4241, + "usd": 14580543 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010872, + "timestamp": "2025-11-06T03:49:49+00:00", + "last_traded_at": "2025-11-06T03:49:49+00:00", + "last_fetch_at": "2025-11-06T03:49:49+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coincatch.com/en/spot/ETHUSDT_SPBL", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "TRY", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 144810.0, + "volume": 4551.0796, + "converted_last": { + "btc": 0.03317445, + "eth": 1.000198, + "usd": 3438.97 + }, + "converted_volume": { + "btc": 150.98, + "eth": 4552, + "usd": 15651014 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01069, + "timestamp": "2025-11-06T03:50:03+00:00", + "last_traded_at": "2025-11-06T03:50:03+00:00", + "last_fetch_at": "2025-11-06T03:50:03+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_TRY?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Bitrue", + "identifier": "bitrue", + "has_trading_incentive": false + }, + "last": 3439.47, + "volume": 5045.8452, + "converted_last": { + "btc": 0.03317397, + "eth": 1.00018, + "usd": 3438.91 + }, + "converted_volume": { + "btc": 167.391, + "eth": 5047, + "usd": 17352206 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.012616, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:49+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitrue.com/trade/eth_usdt", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "Bybit", + "identifier": "bybit_spot", + "has_trading_incentive": false + }, + "last": 0.033174, + "volume": 4958.4987, + "converted_last": { + "btc": 0.03316994, + "eth": 1.000059, + "usd": 3438.49 + }, + "converted_volume": { + "btc": 162.611, + "eth": 4903, + "usd": 16856725 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013014, + "timestamp": "2025-11-06T03:48:07+00:00", + "last_traded_at": "2025-11-06T03:48:07+00:00", + "last_fetch_at": "2025-11-06T03:49:42+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.com/trade/spot/ETH/BTC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "EUR", + "market": { + "name": "Bitvavo", + "identifier": "bitvavo", + "has_trading_incentive": false + }, + "last": 2990.27, + "volume": 12580.11940176, + "converted_last": { + "btc": 0.03319278, + "eth": 1.000747, + "usd": 3440.86 + }, + "converted_volume": { + "btc": 417.569, + "eth": 12590, + "usd": 43286418 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.034109, + "timestamp": "2025-11-06T03:49:47+00:00", + "last_traded_at": "2025-11-06T03:49:47+00:00", + "last_fetch_at": "2025-11-06T03:49:47+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://account.bitvavo.com/markets/ETH-EUR", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "FMFW.io", + "identifier": "bitcoin_com", + "has_trading_incentive": false + }, + "last": 3440.243, + "volume": 18302.7386, + "converted_last": { + "btc": 0.03318143, + "eth": 1.000405, + "usd": 3439.68 + }, + "converted_volume": { + "btc": 607.311, + "eth": 18310, + "usd": 62955612 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.067973, + "timestamp": "2025-11-06T03:49:47+00:00", + "last_traded_at": "2025-11-06T03:49:47+00:00", + "last_fetch_at": "2025-11-06T03:49:47+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://fmfw.io/ETH-to-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Kraken", + "identifier": "kraken", + "has_trading_incentive": false + }, + "last": 3437.75, + "volume": 3670.87994579, + "converted_last": { + "btc": 0.03315631, + "eth": 0.99964759, + "usd": 3437.08 + }, + "converted_volume": { + "btc": 121.713, + "eth": 3670, + "usd": 12617102 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.015815, + "timestamp": "2025-11-06T03:47:42+00:00", + "last_traded_at": "2025-11-06T03:47:42+00:00", + "last_fetch_at": "2025-11-06T03:49:45+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://pro.kraken.com/app/trade/ETH-USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Gate", + "identifier": "gate", + "has_trading_incentive": false + }, + "last": 3439.1, + "volume": 7624.1606, + "converted_last": { + "btc": 0.03316933, + "eth": 1.00004, + "usd": 3438.43 + }, + "converted_volume": { + "btc": 247.819, + "eth": 7472, + "usd": 25689681 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.029065, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.gate.com/trade/ETH_USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD", + "market": { + "name": "itBit", + "identifier": "itbit", + "has_trading_incentive": false + }, + "last": 3439.15, + "volume": 2693.7042641, + "converted_last": { + "btc": 0.03317629, + "eth": 1.00025, + "usd": 3439.15 + }, + "converted_volume": { + "btc": 89.367, + "eth": 2694, + "usd": 9264053 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.011454, + "timestamp": "2025-11-06T03:49:19+00:00", + "last_traded_at": "2025-11-06T03:49:19+00:00", + "last_fetch_at": "2025-11-06T03:49:49+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": null, + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "BTC", + "market": { + "name": "OKX", + "identifier": "okex", + "has_trading_incentive": false + }, + "last": 0.03317, + "volume": 6441.844563, + "converted_last": { + "btc": 0.03318169, + "eth": 1.000413, + "usd": 3439.71 + }, + "converted_volume": { + "btc": 213.751, + "eth": 6445, + "usd": 22158071 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.030139, + "timestamp": "2025-11-06T03:49:39+00:00", + "last_traded_at": "2025-11-06T03:49:39+00:00", + "last_fetch_at": "2025-11-06T03:49:39+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.okx.com/trade-spot/eth-btc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "bitcoin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Dexalot", + "identifier": "dexalot", + "has_trading_incentive": false + }, + "last": 3439.0, + "volume": 2656.5144091542343, + "converted_last": { + "btc": 0.03316836, + "eth": 1.000011, + "usd": 3438.33 + }, + "converted_volume": { + "btc": 86.203, + "eth": 2599, + "usd": 8936026 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.011629, + "timestamp": "2025-11-06T03:49:50+00:00", + "last_traded_at": "2025-11-06T03:49:50+00:00", + "last_fetch_at": "2025-11-06T03:49:50+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://app.dexalot.com/trade?inputCurrency=eth&outputCurrency=usdc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "EUR", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 2989.54, + "volume": 3091.08660524, + "converted_last": { + "btc": 0.03318467, + "eth": 1.000503, + "usd": 3440.02 + }, + "converted_volume": { + "btc": 102.577, + "eth": 3093, + "usd": 10633397 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.01605, + "timestamp": "2025-11-06T03:48:40+00:00", + "last_traded_at": "2025-11-06T03:48:40+00:00", + "last_fetch_at": "2025-11-06T03:49:44+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/ETH-EUR", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "XT.COM", + "identifier": "xt", + "has_trading_incentive": false + }, + "last": 3439.46, + "volume": 4299.6199, + "converted_last": { + "btc": 0.0331728, + "eth": 1.000145, + "usd": 3438.79 + }, + "converted_volume": { + "btc": 140.066, + "eth": 4223, + "usd": 14519600 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.020636, + "timestamp": "2025-11-06T03:49:40+00:00", + "last_traded_at": "2025-11-06T03:49:40+00:00", + "last_fetch_at": "2025-11-06T03:49:40+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.xt.com/en/trade/eth_usdc", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "GBP", + "market": { + "name": "Coinbase Exchange", + "identifier": "gdax", + "has_trading_incentive": false + }, + "last": 2631.92, + "volume": 2757.95169564, + "converted_last": { + "btc": 0.03316878, + "eth": 1.000024, + "usd": 3438.37 + }, + "converted_volume": { + "btc": 91.478, + "eth": 2758, + "usd": 9482863 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.017849, + "timestamp": "2025-11-06T03:49:05+00:00", + "last_traded_at": "2025-11-06T03:49:05+00:00", + "last_fetch_at": "2025-11-06T03:49:41+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.coinbase.com/advanced-trade/spot/ETH-GBP", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "EUR", + "market": { + "name": "Bullish", + "identifier": "bullish_com", + "has_trading_incentive": false + }, + "last": 2989.31378006, + "volume": 2258.50618436, + "converted_last": { + "btc": 0.03318216, + "eth": 1.000427, + "usd": 3439.76 + }, + "converted_volume": { + "btc": 73.744, + "eth": 2223, + "usd": 7644538 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.014348, + "timestamp": "2025-11-06T03:49:43+00:00", + "last_traded_at": "2025-11-06T03:49:43+00:00", + "last_fetch_at": "2025-11-06T03:49:43+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bullish.com/trade/", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "HKD", + "market": { + "name": "HashKey Exchange", + "identifier": "hashkey_exchange", + "has_trading_incentive": false + }, + "last": 26769.42, + "volume": 2072.1151, + "converted_last": { + "btc": 0.03321157, + "eth": 1.001314, + "usd": 3442.81 + }, + "converted_volume": { + "btc": 67.403, + "eth": 2032, + "usd": 6987202 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.013325, + "timestamp": "2025-11-06T03:49:48+00:00", + "last_traded_at": "2025-11-06T03:49:48+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.hashkey.com/en-US/spot/ETH_HKD", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "BRL", + "market": { + "name": "Binance", + "identifier": "binance", + "has_trading_incentive": false + }, + "last": 18454.0, + "volume": 1619.5414, + "converted_last": { + "btc": 0.0331821, + "eth": 1.000466, + "usd": 3440.68 + }, + "converted_volume": { + "btc": 53.74, + "eth": 1620, + "usd": 5572319 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010596, + "timestamp": "2025-11-06T03:45:03+00:00", + "last_traded_at": "2025-11-06T03:45:03+00:00", + "last_fetch_at": "2025-11-06T03:47:00+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.binance.com/en/trade/ETH_BRL?ref=37754157", + "token_info_url": null, + "coin_id": "ethereum", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Bitfinex", + "identifier": "bitfinex", + "has_trading_incentive": false + }, + "last": 3439.0, + "volume": 3802.28331022, + "converted_last": { + "btc": 0.03321465, + "eth": 1.001407, + "usd": 3443.13 + }, + "converted_volume": { + "btc": 126.292, + "eth": 3808, + "usd": 13091744 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.029078, + "timestamp": "2025-11-06T03:49:47+00:00", + "last_traded_at": "2025-11-06T03:49:47+00:00", + "last_fetch_at": "2025-11-06T03:49:47+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://trading.bitfinex.com/t/ETH:UST?type=exchange", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USD1", + "market": { + "name": "Bitrue", + "identifier": "bitrue", + "has_trading_incentive": false + }, + "last": 3442.74, + "volume": 3038.45154, + "converted_last": { + "btc": 0.03316994, + "eth": 1.000059, + "usd": 3438.49 + }, + "converted_volume": { + "btc": 100.785, + "eth": 3039, + "usd": 10447691 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.022071, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bitrue.com/trade/eth_usd1", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd1-wlfi", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "BIT", + "identifier": "bit_com", + "has_trading_incentive": false + }, + "last": 3433.7, + "volume": 1511.1735236101, + "converted_last": { + "btc": 0.03312703, + "eth": 0.99876489, + "usd": 3434.04 + }, + "converted_volume": { + "btc": 50.061, + "eth": 1509, + "usd": 5189435 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.012912, + "timestamp": "2025-11-06T03:48:52+00:00", + "last_traded_at": "2025-11-06T03:48:52+00:00", + "last_fetch_at": "2025-11-06T03:49:51+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bit.com/spot?pair=ETH-USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "bitcastle", + "identifier": "bitcastle", + "has_trading_incentive": false + }, + "last": 3439.21, + "volume": 5146.4123, + "converted_last": { + "btc": 0.03317147, + "eth": 1.000105, + "usd": 3438.65 + }, + "converted_volume": { + "btc": 167.636, + "eth": 5054, + "usd": 17377581 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.041564, + "timestamp": "2025-11-06T03:49:12+00:00", + "last_traded_at": "2025-11-06T03:49:12+00:00", + "last_fetch_at": "2025-11-06T03:49:48+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://bitcastle.io/en/exchange/ETH_USDT", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDT", + "market": { + "name": "Dex-Trade", + "identifier": "dextrade", + "has_trading_incentive": false + }, + "last": 3439.8, + "volume": 9896.03447111, + "converted_last": { + "btc": 0.03317716, + "eth": 1.000276, + "usd": 3439.24 + }, + "converted_volume": { + "btc": 328.322, + "eth": 9899, + "usd": 34034834 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.077609, + "timestamp": "2025-11-06T03:49:49+00:00", + "last_traded_at": "2025-11-06T03:49:49+00:00", + "last_fetch_at": "2025-11-06T03:49:49+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://dex-trade.com/spot/trading/ETHUSDT?interface=classic", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "tether", + "coin_mcap_usd": 414856735492.6909 + }, + { + "base": "ETH", + "target": "USDC", + "market": { + "name": "Bybit EU", + "identifier": "bybit-eu", + "has_trading_incentive": false + }, + "last": 3438.31, + "volume": 1315.0354, + "converted_last": { + "btc": 0.03316163, + "eth": 0.99981103, + "usd": 3437.64 + }, + "converted_volume": { + "btc": 42.862992, + "eth": 1292, + "usd": 4443312 + }, + "trust_score": "green", + "bid_ask_spread_percentage": 0.010291, + "timestamp": "2025-11-06T03:49:51+00:00", + "last_traded_at": "2025-11-06T03:49:51+00:00", + "last_fetch_at": "2025-11-06T03:50:04+00:00", + "is_anomaly": false, + "is_stale": false, + "trade_url": "https://www.bybit.eu/en-EU/trade/spot/ETH/USDC", + "token_info_url": null, + "coin_id": "ethereum", + "target_coin_id": "usd-coin", + "coin_mcap_usd": 414856735492.6909 + } + ] +} \ No newline at end of file diff --git a/public_apis/crypto_ethereum.metadata.json b/public_apis/crypto_ethereum.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..3996f5b69f02f073df82a17acb5ee864d6ab102d --- /dev/null +++ b/public_apis/crypto_ethereum.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_crypto_ethereum", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:28.679386", + "size_bytes": 140100, + "description": "Ethereum data", + "url": "https://api.coingecko.com/api/v3/coins/ethereum" +} \ No newline at end of file diff --git a/public_apis/crypto_markets.json b/public_apis/crypto_markets.json new file mode 100644 index 0000000000000000000000000000000000000000..be7b50cf79322994e53c89ecc4847b1f540a6814 --- /dev/null +++ b/public_apis/crypto_markets.json @@ -0,0 +1,1410 @@ +[ + { + "id": "bitcoin", + "symbol": "btc", + "name": "Bitcoin", + "image": "https://coin-images.coingecko.com/coins/images/1/large/bitcoin.png?1696501400", + "current_price": 103650, + "market_cap": 2067584481754, + "market_cap_rank": 1, + "fully_diluted_valuation": 2067584481754, + "total_volume": 66759930964, + "high_24h": 104412, + "low_24h": 101244, + "price_change_24h": 1545.15, + "price_change_percentage_24h": 1.5133, + "market_cap_change_24h": 28990030638, + "market_cap_change_percentage_24h": 1.42206, + "circulating_supply": 19944128.0, + "total_supply": 19944128.0, + "max_supply": 21000000.0, + "ath": 126080, + "ath_change_percentage": -17.71395, + "ath_date": "2025-10-06T18:57:42.558Z", + "atl": 67.81, + "atl_change_percentage": 152897.62059, + "atl_date": "2013-07-06T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:21.783Z" + }, + { + "id": "ethereum", + "symbol": "eth", + "name": "Ethereum", + "image": "https://coin-images.coingecko.com/coins/images/279/large/ethereum.png?1696501628", + "current_price": 3438.3, + "market_cap": 414993484292, + "market_cap_rank": 2, + "fully_diluted_valuation": 414993484292, + "total_volume": 35806486600, + "high_24h": 3475.74, + "low_24h": 3277.67, + "price_change_24h": 103.14, + "price_change_percentage_24h": 3.09247, + "market_cap_change_24h": 11882560406, + "market_cap_change_percentage_24h": 2.94771, + "circulating_supply": 120697167.1614941, + "total_supply": 120697167.1614941, + "max_supply": null, + "ath": 4946.05, + "ath_change_percentage": -30.47772, + "ath_date": "2025-08-24T19:21:03.333Z", + "atl": 0.432979, + "atl_change_percentage": 794073.9721, + "atl_date": "2015-10-20T00:00:00.000Z", + "roi": { + "times": 43.349078817825905, + "currency": "btc", + "percentage": 4334.907881782591 + }, + "last_updated": "2025-11-06T03:51:21.573Z" + }, + { + "id": "tether", + "symbol": "usdt", + "name": "Tether", + "image": "https://coin-images.coingecko.com/coins/images/325/large/Tether.png?1696501661", + "current_price": 1.0, + "market_cap": 183462202329, + "market_cap_rank": 3, + "fully_diluted_valuation": 183462202329, + "total_volume": 115802750822, + "high_24h": 1.0, + "low_24h": 0.999827, + "price_change_24h": -7.5678462248652e-05, + "price_change_percentage_24h": -0.00757, + "market_cap_change_24h": 21435147, + "market_cap_change_percentage_24h": 0.01169, + "circulating_supply": 183459247850.0191, + "total_supply": 183459247850.0191, + "max_supply": null, + "ath": 1.32, + "ath_change_percentage": -24.41951, + "ath_date": "2018-07-24T00:00:00.000Z", + "atl": 0.572521, + "atl_change_percentage": 74.66642, + "atl_date": "2015-03-02T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.010Z" + }, + { + "id": "ripple", + "symbol": "xrp", + "name": "XRP", + "image": "https://coin-images.coingecko.com/coins/images/44/large/xrp-symbol-white-128.png?1696501442", + "current_price": 2.36, + "market_cap": 141837311339, + "market_cap_rank": 4, + "fully_diluted_valuation": 235940345820, + "total_volume": 5892447138, + "high_24h": 2.38, + "low_24h": 2.21, + "price_change_24h": 0.114529, + "price_change_percentage_24h": 5.09719, + "market_cap_change_24h": 6585244255, + "market_cap_change_percentage_24h": 4.86887, + "circulating_supply": 60107199237.0, + "total_supply": 99985774127.0, + "max_supply": 100000000000.0, + "ath": 3.65, + "ath_change_percentage": -35.25642, + "ath_date": "2025-07-18T03:40:53.808Z", + "atl": 0.00268621, + "atl_change_percentage": 87785.84708, + "atl_date": "2014-05-22T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.944Z" + }, + { + "id": "binancecoin", + "symbol": "bnb", + "name": "BNB", + "image": "https://coin-images.coingecko.com/coins/images/825/large/bnb-icon2_2x.png?1696501970", + "current_price": 962.97, + "market_cap": 132508194492, + "market_cap_rank": 5, + "fully_diluted_valuation": 132508187931, + "total_volume": 2380099086, + "high_24h": 966.61, + "low_24h": 937.38, + "price_change_24h": 12.87, + "price_change_percentage_24h": 1.35508, + "market_cap_change_24h": 1546186766, + "market_cap_change_percentage_24h": 1.18064, + "circulating_supply": 137737563.11, + "total_supply": 137737556.29, + "max_supply": 200000000.0, + "ath": 1369.99, + "ath_change_percentage": -29.74072, + "ath_date": "2025-10-13T08:41:24.131Z", + "atl": 0.0398177, + "atl_change_percentage": 2417282.93896, + "atl_date": "2017-10-19T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:21.482Z" + }, + { + "id": "solana", + "symbol": "sol", + "name": "Solana", + "image": "https://coin-images.coingecko.com/coins/images/4128/large/solana.png?1718769756", + "current_price": 162.3, + "market_cap": 89670654802, + "market_cap_rank": 6, + "fully_diluted_valuation": 99512334372, + "total_volume": 6325451625, + "high_24h": 163.63, + "low_24h": 154.38, + "price_change_24h": 5.57, + "price_change_percentage_24h": 3.55572, + "market_cap_change_24h": 3156154653, + "market_cap_change_percentage_24h": 3.64812, + "circulating_supply": 552739829.5941205, + "total_supply": 613405030.4943691, + "max_supply": null, + "ath": 293.31, + "ath_change_percentage": -44.68968, + "ath_date": "2025-01-19T11:15:27.957Z", + "atl": 0.500801, + "atl_change_percentage": 32294.44828, + "atl_date": "2020-05-11T19:35:23.449Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.802Z" + }, + { + "id": "usd-coin", + "symbol": "usdc", + "name": "USDC", + "image": "https://coin-images.coingecko.com/coins/images/6319/large/usdc.png?1696506694", + "current_price": 0.999805, + "market_cap": 75184063094, + "market_cap_rank": 7, + "fully_diluted_valuation": 75197612438, + "total_volume": 9633709900, + "high_24h": 0.99996, + "low_24h": 0.999691, + "price_change_24h": 9.691e-05, + "price_change_percentage_24h": 0.00969, + "market_cap_change_24h": 137586303, + "market_cap_change_percentage_24h": 0.18333, + "circulating_supply": 75202059362.57552, + "total_supply": 75215611950.22589, + "max_supply": null, + "ath": 1.17, + "ath_change_percentage": -14.74364, + "ath_date": "2019-05-08T00:40:28.300Z", + "atl": 0.877647, + "atl_change_percentage": 13.91904, + "atl_date": "2023-03-11T08:02:13.981Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.973Z" + }, + { + "id": "staked-ether", + "symbol": "steth", + "name": "Lido Staked Ether", + "image": "https://coin-images.coingecko.com/coins/images/13442/large/steth_logo.png?1696513206", + "current_price": 3434.45, + "market_cap": 29746260493, + "market_cap_rank": 8, + "fully_diluted_valuation": 29746399388, + "total_volume": 113184370, + "high_24h": 3472.6, + "low_24h": 3274.57, + "price_change_24h": 99.11, + "price_change_percentage_24h": 2.97139, + "market_cap_change_24h": 1081405344, + "market_cap_change_percentage_24h": 3.77258, + "circulating_supply": 8661508.164579654, + "total_supply": 8661548.608111342, + "max_supply": null, + "ath": 4932.89, + "ath_change_percentage": -30.38386, + "ath_date": "2025-08-24T19:21:31.902Z", + "atl": 482.9, + "atl_change_percentage": 611.14457, + "atl_date": "2020-12-22T04:08:21.854Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.340Z" + }, + { + "id": "tron", + "symbol": "trx", + "name": "TRON", + "image": "https://coin-images.coingecko.com/coins/images/1094/large/tron-logo.png?1696502193", + "current_price": 0.288809, + "market_cap": 27344587385, + "market_cap_rank": 9, + "fully_diluted_valuation": 27344770828, + "total_volume": 582360793, + "high_24h": 0.290064, + "low_24h": 0.285004, + "price_change_24h": 0.0027117, + "price_change_percentage_24h": 0.94783, + "market_cap_change_24h": 248355421, + "market_cap_change_percentage_24h": 0.91657, + "circulating_supply": 94665509543.7368, + "total_supply": 94666144613.91971, + "max_supply": null, + "ath": 0.431288, + "ath_change_percentage": -33.03097, + "ath_date": "2024-12-04T00:10:40.323Z", + "atl": 0.00180434, + "atl_change_percentage": 15907.48053, + "atl_date": "2017-11-12T00:00:00.000Z", + "roi": { + "times": 151.0046961906798, + "currency": "usd", + "percentage": 15100.469619067979 + }, + "last_updated": "2025-11-06T03:51:24.526Z" + }, + { + "id": "dogecoin", + "symbol": "doge", + "name": "Dogecoin", + "image": "https://coin-images.coingecko.com/coins/images/5/large/dogecoin.png?1696501409", + "current_price": 0.16723, + "market_cap": 25346818166, + "market_cap_rank": 10, + "fully_diluted_valuation": 25352675910, + "total_volume": 1923754310, + "high_24h": 0.168375, + "low_24h": 0.16149, + "price_change_24h": 0.00280675, + "price_change_percentage_24h": 1.70703, + "market_cap_change_24h": 405622932, + "market_cap_change_percentage_24h": 1.62632, + "circulating_supply": 151620246383.7052, + "total_supply": 151655286383.7052, + "max_supply": null, + "ath": 0.731578, + "ath_change_percentage": -77.15481, + "ath_date": "2021-05-08T05:08:23.458Z", + "atl": 8.69e-05, + "atl_change_percentage": 192216.63692, + "atl_date": "2015-05-06T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.632Z" + }, + { + "id": "cardano", + "symbol": "ada", + "name": "Cardano", + "image": "https://coin-images.coingecko.com/coins/images/975/large/cardano.png?1696502090", + "current_price": 0.543862, + "market_cap": 19873533651, + "market_cap_rank": 11, + "fully_diluted_valuation": 24442513021, + "total_volume": 1124996109, + "high_24h": 0.548659, + "low_24h": 0.524951, + "price_change_24h": 0.01178062, + "price_change_percentage_24h": 2.21406, + "market_cap_change_24h": 407102431, + "market_cap_change_percentage_24h": 2.0913, + "circulating_supply": 36588259707.15725, + "total_supply": 45000000000.0, + "max_supply": 45000000000.0, + "ath": 3.09, + "ath_change_percentage": -82.41536, + "ath_date": "2021-09-02T06:00:10.474Z", + "atl": 0.01925275, + "atl_change_percentage": 2719.45253, + "atl_date": "2020-03-13T02:22:55.044Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.782Z" + }, + { + "id": "wrapped-steth", + "symbol": "wsteth", + "name": "Wrapped stETH", + "image": "https://coin-images.coingecko.com/coins/images/18834/large/wstETH.png?1696518295", + "current_price": 4185.03, + "market_cap": 13921206699, + "market_cap_rank": 12, + "fully_diluted_valuation": 13921008334, + "total_volume": 24535374, + "high_24h": 4224.28, + "low_24h": 3995.75, + "price_change_24h": 128.78, + "price_change_percentage_24h": 3.17481, + "market_cap_change_24h": 405319921, + "market_cap_change_percentage_24h": 2.99884, + "circulating_supply": 3326356.264688256, + "total_supply": 3326308.867179267, + "max_supply": null, + "ath": 7256.02, + "ath_change_percentage": -42.41888, + "ath_date": "2022-05-13T15:09:54.509Z", + "atl": 558.54, + "atl_change_percentage": 648.03901, + "atl_date": "2022-05-13T01:36:45.053Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.264Z" + }, + { + "id": "figure-heloc", + "symbol": "figr_heloc", + "name": "Figure Heloc", + "image": "https://coin-images.coingecko.com/coins/images/68480/large/figure.png?1755863954", + "current_price": 1.031, + "market_cap": 13881193366, + "market_cap_rank": 13, + "fully_diluted_valuation": 13881193366, + "total_volume": 13173371, + "high_24h": 1.035, + "low_24h": 1.03, + "price_change_24h": -0.002098399999999945, + "price_change_percentage_24h": -0.20306, + "market_cap_change_24h": -9100306.334913254, + "market_cap_change_percentage_24h": -0.06552, + "circulating_supply": 13460186983.84, + "total_supply": 13460186983.84, + "max_supply": null, + "ath": 1.37, + "ath_change_percentage": -24.70243, + "ath_date": "2025-10-28T06:05:38.345Z", + "atl": 0.155357, + "atl_change_percentage": 563.81338, + "atl_date": "2025-10-31T14:27:24.456Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.235Z" + }, + { + "id": "wrapped-bitcoin", + "symbol": "wbtc", + "name": "Wrapped Bitcoin", + "image": "https://coin-images.coingecko.com/coins/images/7598/large/wrapped_bitcoin_wbtc.png?1696507857", + "current_price": 103726, + "market_cap": 13147126945, + "market_cap_rank": 14, + "fully_diluted_valuation": 13147126945, + "total_volume": 342695557, + "high_24h": 104437, + "low_24h": 101374, + "price_change_24h": 1608.87, + "price_change_percentage_24h": 1.57552, + "market_cap_change_24h": 181331129, + "market_cap_change_percentage_24h": 1.39853, + "circulating_supply": 126763.48484369, + "total_supply": 126763.48484369, + "max_supply": 126763.48484369, + "ath": 125932, + "ath_change_percentage": -17.60813, + "ath_date": "2025-10-06T18:55:19.650Z", + "atl": 3139.17, + "atl_change_percentage": 3205.25511, + "atl_date": "2019-04-02T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.732Z" + }, + { + "id": "wrapped-beacon-eth", + "symbol": "wbeth", + "name": "Wrapped Beacon ETH", + "image": "https://coin-images.coingecko.com/coins/images/30061/large/wbeth-icon.png?1696528983", + "current_price": 3719.26, + "market_cap": 12142002319, + "market_cap_rank": 15, + "fully_diluted_valuation": 12142002319, + "total_volume": 17856310, + "high_24h": 3760.05, + "low_24h": 3542.41, + "price_change_24h": 109.48, + "price_change_percentage_24h": 3.03299, + "market_cap_change_24h": 350655511, + "market_cap_change_percentage_24h": 2.97384, + "circulating_supply": 3264282.446482859, + "total_supply": 3264282.446482859, + "max_supply": null, + "ath": 5330.78, + "ath_change_percentage": -30.29694, + "ath_date": "2025-08-24T19:27:46.809Z", + "atl": 1501.6, + "atl_change_percentage": 147.45033, + "atl_date": "2025-04-09T03:57:40.245Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.293Z" + }, + { + "id": "whitebit", + "symbol": "wbt", + "name": "WhiteBIT Coin", + "image": "https://coin-images.coingecko.com/coins/images/27045/large/wbt_token.png?1696526096", + "current_price": 52.59, + "market_cap": 11288167190, + "market_cap_rank": 16, + "fully_diluted_valuation": 16885677189, + "total_volume": 108181349, + "high_24h": 53.03, + "low_24h": 51.88, + "price_change_24h": 0.371298, + "price_change_percentage_24h": 0.711, + "market_cap_change_24h": 71188558, + "market_cap_change_percentage_24h": 0.63465, + "circulating_supply": 214772248.0, + "total_supply": 321272248.0, + "max_supply": 400000000.0, + "ath": 55.41, + "ath_change_percentage": -5.11011, + "ath_date": "2025-11-03T00:23:20.146Z", + "atl": 3.06, + "atl_change_percentage": 1617.41324, + "atl_date": "2023-02-13T19:01:21.899Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.334Z" + }, + { + "id": "hyperliquid", + "symbol": "hype", + "name": "Hyperliquid", + "image": "https://coin-images.coingecko.com/coins/images/50882/large/hyperliquid.jpg?1729431300", + "current_price": 41.08, + "market_cap": 11106612432, + "market_cap_rank": 17, + "fully_diluted_valuation": 41011408825, + "total_volume": 576174229, + "high_24h": 42.06, + "low_24h": 39.6, + "price_change_24h": 0.983508, + "price_change_percentage_24h": 2.45273, + "market_cap_change_24h": 249007610, + "market_cap_change_percentage_24h": 2.29339, + "circulating_supply": 270772999.4341414, + "total_supply": 999835210.4341414, + "max_supply": 1000000000.0, + "ath": 59.3, + "ath_change_percentage": -30.83365, + "ath_date": "2025-09-18T03:30:30.650Z", + "atl": 3.81, + "atl_change_percentage": 976.94867, + "atl_date": "2024-11-29T09:30:30.871Z", + "roi": null, + "last_updated": "2025-11-06T03:51:26.052Z" + }, + { + "id": "chainlink", + "symbol": "link", + "name": "Chainlink", + "image": "https://coin-images.coingecko.com/coins/images/877/large/Chainlink_Logo_500.png?1760023405", + "current_price": 15.15, + "market_cap": 10546006163, + "market_cap_rank": 18, + "fully_diluted_valuation": 15133825946, + "total_volume": 816666854, + "high_24h": 15.38, + "low_24h": 14.57, + "price_change_24h": 0.302652, + "price_change_percentage_24h": 2.03905, + "market_cap_change_24h": 204590377, + "market_cap_change_percentage_24h": 1.97836, + "circulating_supply": 696849970.4525868, + "total_supply": 1000000000.0, + "max_supply": 1000000000.0, + "ath": 52.7, + "ath_change_percentage": -71.28304, + "ath_date": "2021-05-10T00:13:57.214Z", + "atl": 0.148183, + "atl_change_percentage": 10112.26722, + "atl_date": "2017-11-29T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.184Z" + }, + { + "id": "bitcoin-cash", + "symbol": "bch", + "name": "Bitcoin Cash", + "image": "https://coin-images.coingecko.com/coins/images/780/large/bitcoin-cash-circle.png?1696501932", + "current_price": 486.96, + "market_cap": 9708233177, + "market_cap_rank": 19, + "fully_diluted_valuation": 9708233177, + "total_volume": 176923546, + "high_24h": 493.67, + "low_24h": 479.67, + "price_change_24h": -0.8637128729535561, + "price_change_percentage_24h": -0.17705, + "market_cap_change_24h": -15627908.76432991, + "market_cap_change_percentage_24h": -0.16072, + "circulating_supply": 19949056.14665078, + "total_supply": 19949068.64665078, + "max_supply": 21000000.0, + "ath": 3785.82, + "ath_change_percentage": -87.1405, + "ath_date": "2017-12-20T00:00:00.000Z", + "atl": 76.93, + "atl_change_percentage": 532.79244, + "atl_date": "2018-12-16T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:26.393Z" + }, + { + "id": "usds", + "symbol": "usds", + "name": "USDS", + "image": "https://coin-images.coingecko.com/coins/images/39926/large/usds.webp?1726666683", + "current_price": 1.0, + "market_cap": 9271984877, + "market_cap_rank": 20, + "fully_diluted_valuation": 9271984877, + "total_volume": 9150289, + "high_24h": 1.001, + "low_24h": 0.997917, + "price_change_24h": 0.00010135, + "price_change_percentage_24h": 0.01014, + "market_cap_change_24h": -139503190.67384338, + "market_cap_change_percentage_24h": -1.48226, + "circulating_supply": 9274172220.349045, + "total_supply": 9274172220.349045, + "max_supply": null, + "ath": 1.057, + "ath_change_percentage": -5.43679, + "ath_date": "2024-10-29T05:40:51.197Z", + "atl": 0.948265, + "atl_change_percentage": 5.43864, + "atl_date": "2024-10-03T13:19:28.826Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.366Z" + }, + { + "id": "wrapped-eeth", + "symbol": "weeth", + "name": "Wrapped eETH", + "image": "https://coin-images.coingecko.com/coins/images/33033/large/weETH.png?1701438396", + "current_price": 3708.96, + "market_cap": 9062056514, + "market_cap_rank": 21, + "fully_diluted_valuation": 9062069033, + "total_volume": 29791447, + "high_24h": 3752.28, + "low_24h": 3534.73, + "price_change_24h": 105.96, + "price_change_percentage_24h": 2.94095, + "market_cap_change_24h": 250839919, + "market_cap_change_percentage_24h": 2.84683, + "circulating_supply": 2443227.763976495, + "total_supply": 2443231.139286019, + "max_supply": null, + "ath": 5296.78, + "ath_change_percentage": -30.03865, + "ath_date": "2025-08-24T19:25:19.771Z", + "atl": 1505.24, + "atl_change_percentage": 146.18739, + "atl_date": "2025-04-09T03:45:31.391Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.677Z" + }, + { + "id": "binance-bridged-usdt-bnb-smart-chain", + "symbol": "bsc-usd", + "name": "Binance Bridged USDT (BNB Smart Chain)", + "image": "https://coin-images.coingecko.com/coins/images/35021/large/USDT.png?1707233575", + "current_price": 0.999939, + "market_cap": 8983152718, + "market_cap_rank": 22, + "fully_diluted_valuation": 8983152718, + "total_volume": 2665977480, + "high_24h": 1.002, + "low_24h": 0.998071, + "price_change_24h": 0.00085591, + "price_change_percentage_24h": 0.08567, + "market_cap_change_24h": 201498, + "market_cap_change_percentage_24h": 0.00224, + "circulating_supply": 8984993193.453934, + "total_supply": 8984993193.453934, + "max_supply": null, + "ath": 1.05, + "ath_change_percentage": -4.77793, + "ath_date": "2024-08-05T14:21:42.527Z", + "atl": 0.942186, + "atl_change_percentage": 6.11437, + "atl_date": "2024-12-05T22:30:39.827Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.092Z" + }, + { + "id": "stellar", + "symbol": "xlm", + "name": "Stellar", + "image": "https://coin-images.coingecko.com/coins/images/100/large/fmpFRHHQ_400x400.jpg?1735231350", + "current_price": 0.279472, + "market_cap": 8971121569, + "market_cap_rank": 23, + "fully_diluted_valuation": 13973361491, + "total_volume": 197257471, + "high_24h": 0.281813, + "low_24h": 0.269882, + "price_change_24h": 0.00459688, + "price_change_percentage_24h": 1.67235, + "market_cap_change_24h": 152537704, + "market_cap_change_percentage_24h": 1.72973, + "circulating_supply": 32101946915.89826, + "total_supply": 50001786884.67245, + "max_supply": 50001786884.67245, + "ath": 0.875563, + "ath_change_percentage": -68.0793, + "ath_date": "2018-01-03T00:00:00.000Z", + "atl": 0.00047612, + "atl_change_percentage": 58600.28645, + "atl_date": "2015-03-05T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.732Z" + }, + { + "id": "ethena-usde", + "symbol": "usde", + "name": "Ethena USDe", + "image": "https://coin-images.coingecko.com/coins/images/33613/large/usde.png?1733810059", + "current_price": 0.99904, + "market_cap": 8942217204, + "market_cap_rank": 24, + "fully_diluted_valuation": 8935875680, + "total_volume": 300498686, + "high_24h": 1.002, + "low_24h": 0.998191, + "price_change_24h": -5.4649380234695e-05, + "price_change_percentage_24h": -0.00547, + "market_cap_change_24h": -99104565.62920761, + "market_cap_change_percentage_24h": -1.09613, + "circulating_supply": 8949729722.20745, + "total_supply": 8943382870.057667, + "max_supply": null, + "ath": 1.032, + "ath_change_percentage": -3.21862, + "ath_date": "2023-12-20T15:38:34.596Z", + "atl": 0.929486, + "atl_change_percentage": 7.46404, + "atl_date": "2024-10-04T07:57:15.809Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.579Z" + }, + { + "id": "leo-token", + "symbol": "leo", + "name": "LEO Token", + "image": "https://coin-images.coingecko.com/coins/images/8418/large/leo-token.png?1696508607", + "current_price": 9.53, + "market_cap": 8791070935, + "market_cap_rank": 25, + "fully_diluted_valuation": 9390908218, + "total_volume": 538839, + "high_24h": 9.57, + "low_24h": 9.46, + "price_change_24h": 0.00717472, + "price_change_percentage_24h": 0.07533, + "market_cap_change_24h": -15129685.678625107, + "market_cap_change_percentage_24h": -0.17181, + "circulating_supply": 922308062.9, + "total_supply": 985239504.0, + "max_supply": null, + "ath": 10.14, + "ath_change_percentage": -5.90841, + "ath_date": "2025-03-10T09:26:43.294Z", + "atl": 0.799859, + "atl_change_percentage": 1092.24555, + "atl_date": "2019-12-24T15:14:35.376Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.348Z" + }, + { + "id": "zcash", + "symbol": "zec", + "name": "Zcash", + "image": "https://coin-images.coingecko.com/coins/images/486/large/circle-zcash-color.png?1696501740", + "current_price": 490.76, + "market_cap": 8037401542, + "market_cap_rank": 26, + "fully_diluted_valuation": 8037706839, + "total_volume": 1558173595, + "high_24h": 500.2, + "low_24h": 414.91, + "price_change_24h": 69.97, + "price_change_percentage_24h": 16.62866, + "market_cap_change_24h": 1148541253, + "market_cap_change_percentage_24h": 16.67244, + "circulating_supply": 16371792.3530448, + "total_supply": 16372414.2280448, + "max_supply": 21000000.0, + "ath": 3191.93, + "ath_change_percentage": -84.59574, + "ath_date": "2016-10-29T00:00:00.000Z", + "atl": 16.08, + "atl_change_percentage": 2957.76882, + "atl_date": "2024-07-05T04:22:29.321Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.331Z" + }, + { + "id": "coinbase-wrapped-btc", + "symbol": "cbbtc", + "name": "Coinbase Wrapped BTC", + "image": "https://coin-images.coingecko.com/coins/images/40143/large/cbbtc.webp?1726136727", + "current_price": 103710, + "market_cap": 7603373295, + "market_cap_rank": 27, + "fully_diluted_valuation": 7603373295, + "total_volume": 438185491, + "high_24h": 104370, + "low_24h": 101373, + "price_change_24h": 1587.21, + "price_change_percentage_24h": 1.55421, + "market_cap_change_24h": 121475079, + "market_cap_change_percentage_24h": 1.62359, + "circulating_supply": 73301.34292051, + "total_supply": 73301.34292051, + "max_supply": null, + "ath": 125954, + "ath_change_percentage": -17.6582, + "ath_date": "2025-10-06T18:58:50.734Z", + "atl": 57439, + "atl_change_percentage": 80.5621, + "atl_date": "2024-09-12T14:07:41.775Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.734Z" + }, + { + "id": "sui", + "symbol": "sui", + "name": "Sui", + "image": "https://coin-images.coingecko.com/coins/images/26375/large/sui-ocean-square.png?1727791290", + "current_price": 2.04, + "market_cap": 7521979506, + "market_cap_rank": 28, + "fully_diluted_valuation": 20432802116, + "total_volume": 1028253429, + "high_24h": 2.06, + "low_24h": 1.99, + "price_change_24h": 0.01766018, + "price_change_percentage_24h": 0.87124, + "market_cap_change_24h": 64835797, + "market_cap_change_percentage_24h": 0.86945, + "circulating_supply": 3681325480.198332, + "total_supply": 10000000000.0, + "max_supply": 10000000000.0, + "ath": 5.35, + "ath_change_percentage": -61.78996, + "ath_date": "2025-01-04T22:56:18.063Z", + "atl": 0.364846, + "atl_change_percentage": 459.94142, + "atl_date": "2023-10-19T10:40:30.078Z", + "roi": null, + "last_updated": "2025-11-06T03:51:28.485Z" + }, + { + "id": "hedera-hashgraph", + "symbol": "hbar", + "name": "Hedera", + "image": "https://coin-images.coingecko.com/coins/images/3688/large/hbar.png?1696504364", + "current_price": 0.174023, + "market_cap": 7392177741, + "market_cap_rank": 29, + "fully_diluted_valuation": 8701751297, + "total_volume": 255684719, + "high_24h": 0.176566, + "low_24h": 0.168497, + "price_change_24h": 0.00208009, + "price_change_percentage_24h": 1.20975, + "market_cap_change_24h": 90602392, + "market_cap_change_percentage_24h": 1.24086, + "circulating_supply": 42475229924.37393, + "total_supply": 50000000000.0, + "max_supply": 50000000000.0, + "ath": 0.569229, + "ath_change_percentage": -69.4181, + "ath_date": "2021-09-15T10:40:28.318Z", + "atl": 0.00986111, + "atl_change_percentage": 1665.3287, + "atl_date": "2020-01-02T17:30:24.852Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.619Z" + }, + { + "id": "weth", + "symbol": "weth", + "name": "WETH", + "image": "https://coin-images.coingecko.com/coins/images/2518/large/weth.png?1696503332", + "current_price": 3438.52, + "market_cap": 7226114142, + "market_cap_rank": 30, + "fully_diluted_valuation": 7226114142, + "total_volume": 276018033, + "high_24h": 3473.87, + "low_24h": 3277.13, + "price_change_24h": 98.94, + "price_change_percentage_24h": 2.96252, + "market_cap_change_24h": -39470021.43153858, + "market_cap_change_percentage_24h": -0.54325, + "circulating_supply": 2102454.57406449, + "total_supply": 2100767.280958601, + "max_supply": null, + "ath": 4950.08, + "ath_change_percentage": -30.63367, + "ath_date": "2025-08-24T19:28:11.411Z", + "atl": 82.1, + "atl_change_percentage": 4082.14862, + "atl_date": "2018-12-15T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.646Z" + }, + { + "id": "avalanche-2", + "symbol": "avax", + "name": "Avalanche", + "image": "https://coin-images.coingecko.com/coins/images/12559/large/Avalanche_Circle_RedWhite_Trans.png?1696512369", + "current_price": 16.66, + "market_cap": 7108939542, + "market_cap_rank": 31, + "fully_diluted_valuation": 7663966805, + "total_volume": 492409557, + "high_24h": 16.96, + "low_24h": 16.25, + "price_change_24h": 0.223183, + "price_change_percentage_24h": 1.35799, + "market_cap_change_24h": 91536174, + "market_cap_change_percentage_24h": 1.30442, + "circulating_supply": 426975634.5478034, + "total_supply": 460311565.4827004, + "max_supply": 720000000.0, + "ath": 144.96, + "ath_change_percentage": -88.5223, + "ath_date": "2021-11-21T14:18:56.538Z", + "atl": 2.8, + "atl_change_percentage": 493.99639, + "atl_date": "2020-12-31T13:15:21.540Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.890Z" + }, + { + "id": "litecoin", + "symbol": "ltc", + "name": "Litecoin", + "image": "https://coin-images.coingecko.com/coins/images/2/large/litecoin.png?1696501400", + "current_price": 88.62, + "market_cap": 6784009233, + "market_cap_rank": 32, + "fully_diluted_valuation": 6784140612, + "total_volume": 561350092, + "high_24h": 89.82, + "low_24h": 85.45, + "price_change_24h": 1.59, + "price_change_percentage_24h": 1.83181, + "market_cap_change_24h": 123701858, + "market_cap_change_percentage_24h": 1.8573, + "circulating_supply": 76487620.73347135, + "total_supply": 76489101.98347135, + "max_supply": 84000000.0, + "ath": 410.26, + "ath_change_percentage": -78.3728, + "ath_date": "2021-05-10T03:13:07.904Z", + "atl": 1.15, + "atl_change_percentage": 7623.22659, + "atl_date": "2015-01-14T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.813Z" + }, + { + "id": "monero", + "symbol": "xmr", + "name": "Monero", + "image": "https://coin-images.coingecko.com/coins/images/69/large/monero_logo.png?1696501460", + "current_price": 342.41, + "market_cap": 6316319580, + "market_cap_rank": 33, + "fully_diluted_valuation": 6316319580, + "total_volume": 205958641, + "high_24h": 377.63, + "low_24h": 337.62, + "price_change_24h": 4.79, + "price_change_percentage_24h": 1.4192, + "market_cap_change_24h": 99680696, + "market_cap_change_percentage_24h": 1.60345, + "circulating_supply": 18446744.07370955, + "total_supply": 18446744.07370955, + "max_supply": null, + "ath": 542.33, + "ath_change_percentage": -36.6006, + "ath_date": "2018-01-09T00:00:00.000Z", + "atl": 0.216177, + "atl_change_percentage": 158950.9822, + "atl_date": "2015-01-14T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.390Z" + }, + { + "id": "shiba-inu", + "symbol": "shib", + "name": "Shiba Inu", + "image": "https://coin-images.coingecko.com/coins/images/11939/large/shiba.png?1696511800", + "current_price": 9.15e-06, + "market_cap": 5388403023, + "market_cap_rank": 34, + "fully_diluted_valuation": 5390738416, + "total_volume": 145426453, + "high_24h": 9.21e-06, + "low_24h": 8.84e-06, + "price_change_24h": 7.1586e-08, + "price_change_percentage_24h": 0.78873, + "market_cap_change_24h": 37133303, + "market_cap_change_percentage_24h": 0.69392, + "circulating_supply": 589245419696499.1, + "total_supply": 589500805164440.1, + "max_supply": null, + "ath": 8.616e-05, + "ath_change_percentage": -89.3843, + "ath_date": "2021-10-28T03:54:55.568Z", + "atl": 5.6366e-11, + "atl_change_percentage": 16226524.02179, + "atl_date": "2020-11-28T11:26:25.838Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.623Z" + }, + { + "id": "ethena-staked-usde", + "symbol": "susde", + "name": "Ethena Staked USDe", + "image": "https://coin-images.coingecko.com/coins/images/33669/large/sUSDe-Symbol-Color.png?1716307680", + "current_price": 1.2, + "market_cap": 4856643813, + "market_cap_rank": 35, + "fully_diluted_valuation": 4855753747, + "total_volume": 271041863, + "high_24h": 1.2, + "low_24h": 1.2, + "price_change_24h": -0.000873489315794673, + "price_change_percentage_24h": -0.07265, + "market_cap_change_24h": -111549450.89901257, + "market_cap_change_percentage_24h": -2.24527, + "circulating_supply": 4041940739.40834, + "total_supply": 4041199982.121279, + "max_supply": null, + "ath": 1.29, + "ath_change_percentage": -6.9148, + "ath_date": "2025-01-29T17:52:32.991Z", + "atl": 1.012, + "atl_change_percentage": 18.7089, + "atl_date": "2024-04-03T14:23:03.162Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.874Z" + }, + { + "id": "the-open-network", + "symbol": "ton", + "name": "Toncoin", + "image": "https://coin-images.coingecko.com/coins/images/17980/large/photo_2024-09-10_17.09.00.jpeg?1725963446", + "current_price": 1.95, + "market_cap": 4842683690, + "market_cap_rank": 36, + "fully_diluted_valuation": 10020524018, + "total_volume": 125104268, + "high_24h": 1.97, + "low_24h": 1.87, + "price_change_24h": 0.0113021, + "price_change_percentage_24h": 0.58339, + "market_cap_change_24h": 26901281, + "market_cap_change_percentage_24h": 0.55861, + "circulating_supply": 2486463616.435085, + "total_supply": 5145012555.994914, + "max_supply": null, + "ath": 8.25, + "ath_change_percentage": -76.40028, + "ath_date": "2024-06-15T00:36:51.509Z", + "atl": 0.519364, + "atl_change_percentage": 275.04125, + "atl_date": "2021-09-21T00:33:11.092Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.716Z" + }, + { + "id": "dai", + "symbol": "dai", + "name": "Dai", + "image": "https://coin-images.coingecko.com/coins/images/9956/large/Badge_Dai.png?1696509996", + "current_price": 0.999961, + "market_cap": 4591981570, + "market_cap_rank": 37, + "fully_diluted_valuation": 4591981570, + "total_volume": 126002544, + "high_24h": 1.002, + "low_24h": 0.997439, + "price_change_24h": 0.00135682, + "price_change_percentage_24h": 0.13587, + "market_cap_change_24h": -40282863.491039276, + "market_cap_change_percentage_24h": -0.86961, + "circulating_supply": 4591585978.621394, + "total_supply": 4580106284.23726, + "max_supply": null, + "ath": 1.22, + "ath_change_percentage": -17.97731, + "ath_date": "2020-03-13T03:02:50.373Z", + "atl": 0.88196, + "atl_change_percentage": 13.36112, + "atl_date": "2023-03-11T07:50:50.514Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.604Z" + }, + { + "id": "crypto-com-chain", + "symbol": "cro", + "name": "Cronos", + "image": "https://coin-images.coingecko.com/coins/images/7310/large/cro_token_logo.png?1696507599", + "current_price": 0.124856, + "market_cap": 4510427584, + "market_cap_rank": 38, + "fully_diluted_valuation": 12260832998, + "total_volume": 38050118, + "high_24h": 0.127204, + "low_24h": 0.118666, + "price_change_24h": 0.00327733, + "price_change_percentage_24h": 2.69564, + "market_cap_change_24h": 120569021, + "market_cap_change_percentage_24h": 2.74654, + "circulating_supply": 36100935030.17116, + "total_supply": 98134273804.11165, + "max_supply": 100000000000.0, + "ath": 0.965407, + "ath_change_percentage": -87.0608, + "ath_date": "2021-11-24T15:53:54.855Z", + "atl": 0.0121196, + "atl_change_percentage": 930.69411, + "atl_date": "2019-02-08T00:00:00.000Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.037Z" + }, + { + "id": "polkadot", + "symbol": "dot", + "name": "Polkadot", + "image": "https://coin-images.coingecko.com/coins/images/12171/large/polkadot.png?1696512008", + "current_price": 2.66, + "market_cap": 4356505186, + "market_cap_rank": 39, + "fully_diluted_valuation": 4356505186, + "total_volume": 261684809, + "high_24h": 2.67, + "low_24h": 2.54, + "price_change_24h": 0.095394, + "price_change_percentage_24h": 3.71252, + "market_cap_change_24h": 156551390, + "market_cap_change_percentage_24h": 3.72746, + "circulating_supply": 1633729950.830369, + "total_supply": 1633779002.546076, + "max_supply": null, + "ath": 54.98, + "ath_change_percentage": -95.14888, + "ath_date": "2021-11-04T14:10:09.301Z", + "atl": 2.13, + "atl_change_percentage": 25.27393, + "atl_date": "2025-10-10T21:27:58.296Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.748Z" + }, + { + "id": "memecore", + "symbol": "m", + "name": "MemeCore", + "image": "https://coin-images.coingecko.com/coins/images/53247/large/square-bg-transparent.png?1752637478", + "current_price": 2.43, + "market_cap": 4120998154, + "market_cap_rank": 40, + "fully_diluted_valuation": 12854918809, + "total_volume": 14349732, + "high_24h": 2.49, + "low_24h": 2.39, + "price_change_24h": 0.00897036, + "price_change_percentage_24h": 0.37051, + "market_cap_change_24h": 7792304, + "market_cap_change_percentage_24h": 0.18945, + "circulating_supply": 1698617830.034669, + "total_supply": 5298617829.593945, + "max_supply": 10000000000.0, + "ath": 2.96, + "ath_change_percentage": -18.0904, + "ath_date": "2025-09-18T07:27:06.144Z", + "atl": 0.04746135, + "atl_change_percentage": 5006.3006, + "atl_date": "2025-07-04T03:56:17.448Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.865Z" + }, + { + "id": "mantle", + "symbol": "mnt", + "name": "Mantle", + "image": "https://coin-images.coingecko.com/coins/images/30980/large/Mantle-Logo-mark.png?1739213200", + "current_price": 1.22, + "market_cap": 3958622880, + "market_cap_rank": 41, + "fully_diluted_valuation": 7568506970, + "total_volume": 141691396, + "high_24h": 1.29, + "low_24h": 1.2, + "price_change_24h": -0.04000568326243892, + "price_change_percentage_24h": -3.17535, + "market_cap_change_24h": -148848627.61178207, + "market_cap_change_percentage_24h": -3.62385, + "circulating_supply": 3252944055.73684, + "total_supply": 6219316794.89, + "max_supply": 6219316794.89, + "ath": 2.86, + "ath_change_percentage": -57.3918, + "ath_date": "2025-10-09T01:04:46.659Z", + "atl": 0.307978, + "atl_change_percentage": 294.9925, + "atl_date": "2023-10-18T02:50:46.942Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.490Z" + }, + { + "id": "susds", + "symbol": "susds", + "name": "sUSDS", + "image": "https://coin-images.coingecko.com/coins/images/52721/large/sUSDS_Coin.png?1734086971", + "current_price": 1.074, + "market_cap": 3746356008, + "market_cap_rank": 42, + "fully_diluted_valuation": 3746356008, + "total_volume": 7585213, + "high_24h": 1.075, + "low_24h": 1.074, + "price_change_24h": -3.141917129801e-06, + "price_change_percentage_24h": -0.00029, + "market_cap_change_24h": -77558529.85925722, + "market_cap_change_percentage_24h": -2.02825, + "circulating_supply": 3487783166.09328, + "total_supply": 3487783166.09328, + "max_supply": null, + "ath": 1.11, + "ath_change_percentage": -2.79936, + "ath_date": "2025-10-10T21:52:27.019Z", + "atl": 0.961716, + "atl_change_percentage": 11.68936, + "atl_date": "2025-01-04T01:21:08.460Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.915Z" + }, + { + "id": "bittensor", + "symbol": "tao", + "name": "Bittensor", + "image": "https://coin-images.coingecko.com/coins/images/28452/large/ARUsPeNQ_400x400.jpeg?1696527447", + "current_price": 387.89, + "market_cap": 3722765564, + "market_cap_rank": 43, + "fully_diluted_valuation": 8145678578, + "total_volume": 424253663, + "high_24h": 402.82, + "low_24h": 369.87, + "price_change_24h": -6.359920637305777, + "price_change_percentage_24h": -1.61316, + "market_cap_change_24h": -60092669.31150246, + "market_cap_change_percentage_24h": -1.58855, + "circulating_supply": 9597491.0, + "total_supply": 21000000.0, + "max_supply": 21000000.0, + "ath": 757.6, + "ath_change_percentage": -48.80201, + "ath_date": "2024-03-07T18:45:36.466Z", + "atl": 30.83, + "atl_change_percentage": 1158.12155, + "atl_date": "2023-05-14T08:57:53.732Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.045Z" + }, + { + "id": "usdt0", + "symbol": "usdt0", + "name": "USDT0", + "image": "https://coin-images.coingecko.com/coins/images/53705/large/usdt0.jpg?1737086183", + "current_price": 0.99994, + "market_cap": 3376471524, + "market_cap_rank": 44, + "fully_diluted_valuation": 3376471524, + "total_volume": 317116393, + "high_24h": 1.001, + "low_24h": 0.998597, + "price_change_24h": -7.841129716968e-06, + "price_change_percentage_24h": -0.00078, + "market_cap_change_24h": -942327740.2987409, + "market_cap_change_percentage_24h": -21.81921, + "circulating_supply": 3376791309.254982, + "total_supply": 3376791309.254982, + "max_supply": null, + "ath": 1.052, + "ath_change_percentage": -4.95745, + "ath_date": "2025-01-23T22:34:53.341Z", + "atl": 0.975737, + "atl_change_percentage": 2.4747, + "atl_date": "2025-02-28T01:35:58.101Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.171Z" + }, + { + "id": "uniswap", + "symbol": "uni", + "name": "Uniswap", + "image": "https://coin-images.coingecko.com/coins/images/12504/large/uniswap-logo.png?1720676669", + "current_price": 5.34, + "market_cap": 3364149355, + "market_cap_rank": 45, + "fully_diluted_valuation": 5340828821, + "total_volume": 224389839, + "high_24h": 5.49, + "low_24h": 5.14, + "price_change_24h": 0.169754, + "price_change_percentage_24h": 3.28066, + "market_cap_change_24h": 105326784, + "market_cap_change_percentage_24h": 3.23205, + "circulating_supply": 629892750.2713912, + "total_supply": 1000000000.0, + "max_supply": 1000000000.0, + "ath": 44.92, + "ath_change_percentage": -88.10795, + "ath_date": "2021-05-03T05:25:04.822Z", + "atl": 1.03, + "atl_change_percentage": 418.52367, + "atl_date": "2020-09-17T01:20:38.214Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.961Z" + }, + { + "id": "world-liberty-financial", + "symbol": "wlfi", + "name": "World Liberty Financial", + "image": "https://coin-images.coingecko.com/coins/images/50767/large/wlfi.png?1756438915", + "current_price": 0.122377, + "market_cap": 3338377500, + "market_cap_rank": 46, + "fully_diluted_valuation": 12250105064, + "total_volume": 142884872, + "high_24h": 0.12391, + "low_24h": 0.114938, + "price_change_24h": 0.0025027, + "price_change_percentage_24h": 2.08777, + "market_cap_change_24h": 85261815, + "market_cap_change_percentage_24h": 2.62093, + "circulating_supply": 27251827497.04516, + "total_supply": 100000000000.0, + "max_supply": 100000000000.0, + "ath": 0.331336, + "ath_change_percentage": -63.03115, + "ath_date": "2025-09-01T12:20:09.597Z", + "atl": 0.104606, + "atl_change_percentage": 17.09788, + "atl_date": "2025-10-10T21:22:29.880Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.393Z" + }, + { + "id": "internet-computer", + "symbol": "icp", + "name": "Internet Computer", + "image": "https://coin-images.coingecko.com/coins/images/14495/large/Internet_Computer_logo.png?1696514180", + "current_price": 5.93, + "market_cap": 3204885919, + "market_cap_rank": 47, + "fully_diluted_valuation": 3204886344, + "total_volume": 645284143, + "high_24h": 6.13, + "low_24h": 4.76, + "price_change_24h": 0.840708, + "price_change_percentage_24h": 16.5044, + "market_cap_change_24h": 464011233, + "market_cap_change_percentage_24h": 16.92931, + "circulating_supply": 539524859.7755737, + "total_supply": 539524931.2364954, + "max_supply": null, + "ath": 700.65, + "ath_change_percentage": -99.15219, + "ath_date": "2021-05-10T16:05:53.653Z", + "atl": 2.23, + "atl_change_percentage": 166.18706, + "atl_date": "2025-10-10T21:26:36.019Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.622Z" + }, + { + "id": "aave", + "symbol": "aave", + "name": "Aave", + "image": "https://coin-images.coingecko.com/coins/images/12645/large/aave-token-round.png?1720472354", + "current_price": 204.86, + "market_cap": 3127094565, + "market_cap_rank": 48, + "fully_diluted_valuation": 3278254583, + "total_volume": 341947757, + "high_24h": 204.9, + "low_24h": 194.64, + "price_change_24h": 7.34, + "price_change_percentage_24h": 3.71777, + "market_cap_change_24h": 112489467, + "market_cap_change_percentage_24h": 3.73148, + "circulating_supply": 15262241.46571046, + "total_supply": 16000000.0, + "max_supply": 16000000.0, + "ath": 661.69, + "ath_change_percentage": -69.05098, + "ath_date": "2021-05-18T21:19:59.514Z", + "atl": 26.02, + "atl_change_percentage": 686.9402, + "atl_date": "2020-11-05T09:20:11.928Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.064Z" + }, + { + "id": "usd1-wlfi", + "symbol": "usd1", + "name": "USD1", + "image": "https://coin-images.coingecko.com/coins/images/54977/large/USD1_1000x1000_transparent.png?1749297002", + "current_price": 0.999224, + "market_cap": 2963562808, + "market_cap_rank": 49, + "fully_diluted_valuation": 2962562736, + "total_volume": 375507707, + "high_24h": 1.0, + "low_24h": 0.998218, + "price_change_24h": -0.000459134486976209, + "price_change_percentage_24h": -0.04593, + "market_cap_change_24h": -8222989.23238039, + "market_cap_change_percentage_24h": -0.2767, + "circulating_supply": 2965826289.824736, + "total_supply": 2964825453.824736, + "max_supply": null, + "ath": 1.025, + "ath_change_percentage": -2.51731, + "ath_date": "2025-05-12T12:36:39.412Z", + "atl": 0.989633, + "atl_change_percentage": 0.94936, + "atl_date": "2025-10-01T08:51:32.103Z", + "roi": null, + "last_updated": "2025-11-06T03:51:25.122Z" + }, + { + "id": "bitget-token", + "symbol": "bgb", + "name": "Bitget Token", + "image": "https://coin-images.coingecko.com/coins/images/11610/large/Bitget_logo.png?1736925727", + "current_price": 4.09, + "market_cap": 2863918204, + "market_cap_rank": 50, + "fully_diluted_valuation": 3764017023, + "total_volume": 52624882, + "high_24h": 4.27, + "low_24h": 4.09, + "price_change_24h": -0.0651690829115088, + "price_change_percentage_24h": -1.56825, + "market_cap_change_24h": -33277736.835016727, + "market_cap_change_percentage_24h": -1.14862, + "circulating_supply": 699992035.9787906, + "total_supply": 919992035.9787906, + "max_supply": 2000000000.0, + "ath": 8.45, + "ath_change_percentage": -51.59528, + "ath_date": "2024-12-27T11:41:24.992Z", + "atl": 0.0142795, + "atl_change_percentage": 28544.94815, + "atl_date": "2020-06-25T04:17:05.895Z", + "roi": null, + "last_updated": "2025-11-06T03:51:24.468Z" + } +] \ No newline at end of file diff --git a/public_apis/crypto_markets.metadata.json b/public_apis/crypto_markets.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ce1812fd09e121a8822b2dfdf76627df5787ce6f --- /dev/null +++ b/public_apis/crypto_markets.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_crypto_markets", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:29.969164", + "size_bytes": 47280, + "description": "Top 50 crypto markets", + "url": "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&per_page=50" +} \ No newline at end of file diff --git a/public_apis/dog_breeds.json b/public_apis/dog_breeds.json new file mode 100644 index 0000000000000000000000000000000000000000..3dfabe1707cdfdf4d581f893bbb2ae7ac7b91e00 --- /dev/null +++ b/public_apis/dog_breeds.json @@ -0,0 +1,254 @@ +{ + "message": { + "affenpinscher": [], + "african": [ + "wild" + ], + "airedale": [], + "akita": [], + "appenzeller": [], + "australian": [ + "kelpie", + "shepherd" + ], + "bakharwal": [ + "indian" + ], + "basenji": [], + "beagle": [], + "bluetick": [], + "borzoi": [], + "bouvier": [], + "boxer": [], + "brabancon": [], + "briard": [], + "buhund": [ + "norwegian" + ], + "bulldog": [ + "boston", + "english", + "french" + ], + "bullterrier": [ + "staffordshire" + ], + "cattledog": [ + "australian" + ], + "cavapoo": [], + "chihuahua": [], + "chippiparai": [ + "indian" + ], + "chow": [], + "clumber": [], + "cockapoo": [], + "collie": [ + "border" + ], + "coonhound": [], + "corgi": [ + "cardigan" + ], + "cotondetulear": [], + "dachshund": [], + "dalmatian": [], + "dane": [ + "great" + ], + "danish": [ + "swedish" + ], + "deerhound": [ + "scottish" + ], + "dhole": [], + "dingo": [], + "doberman": [], + "elkhound": [ + "norwegian" + ], + "entlebucher": [], + "eskimo": [], + "finnish": [ + "lapphund" + ], + "frise": [ + "bichon" + ], + "gaddi": [ + "indian" + ], + "german": [ + "shepherd" + ], + "greyhound": [ + "indian", + "italian" + ], + "groenendael": [], + "havanese": [], + "hound": [ + "afghan", + "basset", + "blood", + "english", + "ibizan", + "plott", + "walker" + ], + "husky": [], + "keeshond": [], + "kelpie": [], + "kombai": [], + "komondor": [], + "kuvasz": [], + "labradoodle": [], + "labrador": [], + "leonberg": [], + "lhasa": [], + "malamute": [], + "malinois": [], + "maltese": [], + "mastiff": [ + "bull", + "english", + "indian", + "tibetan" + ], + "mexicanhairless": [], + "mix": [], + "mountain": [ + "bernese", + "swiss" + ], + "mudhol": [ + "indian" + ], + "newfoundland": [], + "otterhound": [], + "ovcharka": [ + "caucasian" + ], + "papillon": [], + "pariah": [ + "indian" + ], + "pekinese": [], + "pembroke": [], + "pinscher": [ + "miniature" + ], + "pitbull": [], + "pointer": [ + "german", + "germanlonghair" + ], + "pomeranian": [], + "poodle": [ + "medium", + "miniature", + "standard", + "toy" + ], + "pug": [], + "puggle": [], + "pyrenees": [], + "rajapalayam": [ + "indian" + ], + "redbone": [], + "retriever": [ + "chesapeake", + "curly", + "flatcoated", + "golden" + ], + "ridgeback": [ + "rhodesian" + ], + "rottweiler": [], + "rough": [ + "collie" + ], + "saluki": [], + "samoyed": [], + "schipperke": [], + "schnauzer": [ + "giant", + "miniature" + ], + "segugio": [ + "italian" + ], + "setter": [ + "english", + "gordon", + "irish" + ], + "sharpei": [], + "sheepdog": [ + "english", + "indian", + "shetland" + ], + "shiba": [], + "shihtzu": [], + "spaniel": [ + "blenheim", + "brittany", + "cocker", + "irish", + "japanese", + "sussex", + "welsh" + ], + "spitz": [ + "indian", + "japanese" + ], + "springer": [ + "english" + ], + "stbernard": [], + "terrier": [ + "american", + "andalusian", + "australian", + "bedlington", + "border", + "boston", + "cairn", + "dandie", + "fox", + "irish", + "kerryblue", + "lakeland", + "norfolk", + "norwich", + "patterdale", + "russell", + "scottish", + "sealyham", + "silky", + "tibetan", + "toy", + "welsh", + "westhighland", + "wheaten", + "yorkshire" + ], + "tervuren": [], + "vizsla": [], + "waterdog": [ + "spanish" + ], + "weimaraner": [], + "whippet": [], + "wolfhound": [ + "irish" + ] + }, + "status": "success" +} \ No newline at end of file diff --git a/public_apis/dog_breeds.metadata.json b/public_apis/dog_breeds.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8d37d420a2a76b1f5459447772804e8cafd14b29 --- /dev/null +++ b/public_apis/dog_breeds.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_dog_breeds", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:36.638924", + "size_bytes": 4008, + "description": "Dog breeds list", + "url": "https://dog.ceo/api/breeds/list/all" +} \ No newline at end of file diff --git a/public_apis/nested_posts_with_comments.json b/public_apis/nested_posts_with_comments.json new file mode 100644 index 0000000000000000000000000000000000000000..46087642b33054b91dbb02c8d1223bb55d70ea72 --- /dev/null +++ b/public_apis/nested_posts_with_comments.json @@ -0,0 +1,217 @@ +[ + { + "userId": 1, + "id": 1, + "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit", + "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto", + "comments": [ + { + "postId": 1, + "id": 1, + "name": "id labore ex et quam laborum", + "email": "Eliseo@gardner.biz", + "body": "laudantium enim quasi est quidem magnam voluptate ipsam eos\ntempora quo necessitatibus\ndolor quam autem quasi\nreiciendis et nam sapiente accusantium" + }, + { + "postId": 1, + "id": 2, + "name": "quo vero reiciendis velit similique earum", + "email": "Jayne_Kuhic@sydney.com", + "body": "est natus enim nihil est dolore omnis voluptatem numquam\net omnis occaecati quod ullam at\nvoluptatem error expedita pariatur\nnihil sint nostrum voluptatem reiciendis et" + }, + { + "postId": 1, + "id": 3, + "name": "odio adipisci rerum aut animi", + "email": "Nikita@garfield.biz", + "body": "quia molestiae reprehenderit quasi aspernatur\naut expedita occaecati aliquam eveniet laudantium\nomnis quibusdam delectus saepe quia accusamus maiores nam est\ncum et ducimus et vero voluptates excepturi deleniti ratione" + }, + { + "postId": 1, + "id": 4, + "name": "alias odio sit", + "email": "Lew@alysha.tv", + "body": "non et atque\noccaecati deserunt quas accusantium unde odit nobis qui voluptatem\nquia voluptas consequuntur itaque dolor\net qui rerum deleniti ut occaecati" + }, + { + "postId": 1, + "id": 5, + "name": "vero eaque aliquid doloribus et culpa", + "email": "Hayden@althea.biz", + "body": "harum non quasi et ratione\ntempore iure ex voluptates in ratione\nharum architecto fugit inventore cupiditate\nvoluptates magni quo et" + } + ] + }, + { + "userId": 1, + "id": 2, + "title": "qui est esse", + "body": "est rerum tempore vitae\nsequi sint nihil reprehenderit dolor beatae ea dolores neque\nfugiat blanditiis voluptate porro vel nihil molestiae ut reiciendis\nqui aperiam non debitis possimus qui neque nisi nulla", + "comments": [ + { + "postId": 2, + "id": 6, + "name": "et fugit eligendi deleniti quidem qui sint nihil autem", + "email": "Presley.Mueller@myrl.com", + "body": "doloribus at sed quis culpa deserunt consectetur qui praesentium\naccusamus fugiat dicta\nvoluptatem rerum ut voluptate autem\nvoluptatem repellendus aspernatur dolorem in" + }, + { + "postId": 2, + "id": 7, + "name": "repellat consequatur praesentium vel minus molestias voluptatum", + "email": "Dallas@ole.me", + "body": "maiores sed dolores similique labore et inventore et\nquasi temporibus esse sunt id et\neos voluptatem aliquam\naliquid ratione corporis molestiae mollitia quia et magnam dolor" + }, + { + "postId": 2, + "id": 8, + "name": "et omnis dolorem", + "email": "Mallory_Kunze@marie.org", + "body": "ut voluptatem corrupti velit\nad voluptatem maiores\net nisi velit vero accusamus maiores\nvoluptates quia aliquid ullam eaque" + }, + { + "postId": 2, + "id": 9, + "name": "provident id voluptas", + "email": "Meghan_Littel@rene.us", + "body": "sapiente assumenda molestiae atque\nadipisci laborum distinctio aperiam et ab ut omnis\net occaecati aspernatur odit sit rem expedita\nquas enim ipsam minus" + }, + { + "postId": 2, + "id": 10, + "name": "eaque et deleniti atque tenetur ut quo ut", + "email": "Carmen_Keeling@caroline.name", + "body": "voluptate iusto quis nobis reprehenderit ipsum amet nulla\nquia quas dolores velit et non\naut quia necessitatibus\nnostrum quaerat nulla et accusamus nisi facilis" + } + ] + }, + { + "userId": 1, + "id": 3, + "title": "ea molestias quasi exercitationem repellat qui ipsa sit aut", + "body": "et iusto sed quo iure\nvoluptatem occaecati omnis eligendi aut ad\nvoluptatem doloribus vel accusantium quis pariatur\nmolestiae porro eius odio et labore et velit aut", + "comments": [ + { + "postId": 3, + "id": 11, + "name": "fugit labore quia mollitia quas deserunt nostrum sunt", + "email": "Veronica_Goodwin@timmothy.net", + "body": "ut dolorum nostrum id quia aut est\nfuga est inventore vel eligendi explicabo quis consectetur\naut occaecati repellat id natus quo est\nut blanditiis quia ut vel ut maiores ea" + }, + { + "postId": 3, + "id": 12, + "name": "modi ut eos dolores illum nam dolor", + "email": "Oswald.Vandervort@leanne.org", + "body": "expedita maiores dignissimos facilis\nipsum est rem est fugit velit sequi\neum odio dolores dolor totam\noccaecati ratione eius rem velit" + }, + { + "postId": 3, + "id": 13, + "name": "aut inventore non pariatur sit vitae voluptatem sapiente", + "email": "Kariane@jadyn.tv", + "body": "fuga eos qui dolor rerum\ninventore corporis exercitationem\ncorporis cupiditate et deserunt recusandae est sed quis culpa\neum maiores corporis et" + }, + { + "postId": 3, + "id": 14, + "name": "et officiis id praesentium hic aut ipsa dolorem repudiandae", + "email": "Nathan@solon.io", + "body": "vel quae voluptas qui exercitationem\nvoluptatibus unde sed\nminima et qui ipsam aspernatur\nexpedita magnam laudantium et et quaerat ut qui dolorum" + }, + { + "postId": 3, + "id": 15, + "name": "debitis magnam hic odit aut ullam nostrum tenetur", + "email": "Maynard.Hodkiewicz@roberta.com", + "body": "nihil ut voluptates blanditiis autem odio dicta rerum\nquisquam saepe et est\nsunt quasi nemo laudantium deserunt\nmolestias tempora quo quia" + } + ] + }, + { + "userId": 1, + "id": 4, + "title": "eum et est occaecati", + "body": "ullam et saepe reiciendis voluptatem adipisci\nsit amet autem assumenda provident rerum culpa\nquis hic commodi nesciunt rem tenetur doloremque ipsam iure\nquis sunt voluptatem rerum illo velit", + "comments": [ + { + "postId": 4, + "id": 16, + "name": "perferendis temporibus delectus optio ea eum ratione dolorum", + "email": "Christine@ayana.info", + "body": "iste ut laborum aliquid velit facere itaque\nquo ut soluta dicta voluptate\nerror tempore aut et\nsequi reiciendis dignissimos expedita consequuntur libero sed fugiat facilis" + }, + { + "postId": 4, + "id": 17, + "name": "eos est animi quis", + "email": "Preston_Hudson@blaise.tv", + "body": "consequatur necessitatibus totam sed sit dolorum\nrecusandae quae odio excepturi voluptatum harum voluptas\nquisquam sit ad eveniet delectus\ndoloribus odio qui non labore" + }, + { + "postId": 4, + "id": 18, + "name": "aut et tenetur ducimus illum aut nulla ab", + "email": "Vincenza_Klocko@albertha.name", + "body": "veritatis voluptates necessitatibus maiores corrupti\nneque et exercitationem amet sit et\nullam velit sit magnam laborum\nmagni ut molestias" + }, + { + "postId": 4, + "id": 19, + "name": "sed impedit rerum quia et et inventore unde officiis", + "email": "Madelynn.Gorczany@darion.biz", + "body": "doloribus est illo sed minima aperiam\nut dignissimos accusantium tempore atque et aut molestiae\nmagni ut accusamus voluptatem quos ut voluptates\nquisquam porro sed architecto ut" + }, + { + "postId": 4, + "id": 20, + "name": "molestias expedita iste aliquid voluptates", + "email": "Mariana_Orn@preston.org", + "body": "qui harum consequatur fugiat\net eligendi perferendis at molestiae commodi ducimus\ndoloremque asperiores numquam qui\nut sit dignissimos reprehenderit tempore" + } + ] + }, + { + "userId": 1, + "id": 5, + "title": "nesciunt quas odio", + "body": "repudiandae veniam quaerat sunt sed\nalias aut fugiat sit autem sed est\nvoluptatem omnis possimus esse voluptatibus quis\nest aut tenetur dolor neque", + "comments": [ + { + "postId": 5, + "id": 21, + "name": "aliquid rerum mollitia qui a consectetur eum sed", + "email": "Noemie@marques.me", + "body": "deleniti aut sed molestias explicabo\ncommodi odio ratione nesciunt\nvoluptate doloremque est\nnam autem error delectus" + }, + { + "postId": 5, + "id": 22, + "name": "porro repellendus aut tempore quis hic", + "email": "Khalil@emile.co.uk", + "body": "qui ipsa animi nostrum praesentium voluptatibus odit\nqui non impedit cum qui nostrum aliquid fuga explicabo\nvoluptatem fugit earum voluptas exercitationem temporibus dignissimos distinctio\nesse inventore reprehenderit quidem ut incidunt nihil necessitatibus rerum" + }, + { + "postId": 5, + "id": 23, + "name": "quis tempora quidem nihil iste", + "email": "Sophia@arianna.co.uk", + "body": "voluptates provident repellendus iusto perspiciatis ex fugiat ut\nut dolor nam aliquid et expedita voluptate\nsunt vitae illo rerum in quos\nvel eligendi enim quae fugiat est" + }, + { + "postId": 5, + "id": 24, + "name": "in tempore eos beatae est", + "email": "Jeffery@juwan.us", + "body": "repudiandae repellat quia\nsequi est dolore explicabo nihil et\net sit et\net praesentium iste atque asperiores tenetur" + }, + { + "postId": 5, + "id": 25, + "name": "autem ab ea sit alias hic provident sit", + "email": "Isaias_Kuhic@jarrett.net", + "body": "sunt aut quae laboriosam sit ut impedit\nadipisci harum laborum totam deleniti voluptas odit rem ea\nnon iure distinctio ut velit doloribus\net non ex" + } + ] + } +] \ No newline at end of file diff --git a/public_apis/nested_posts_with_comments.metadata.json b/public_apis/nested_posts_with_comments.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..fd1e466581e50a68aec92e45bc79abf37d917a10 --- /dev/null +++ b/public_apis/nested_posts_with_comments.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "public_apis_nested_posts_with_comments", + "source": "public_apis", + "collected_date": "2025-11-05T22:51:35.451489", + "size_bytes": 9984, + "description": "Posts with nested comments", + "url": "https://jsonplaceholder.typicode.com/posts?_embed=comments&_limit=5" +} \ No newline at end of file diff --git a/synthetic/api_responses.json b/synthetic/api_responses.json new file mode 100644 index 0000000000000000000000000000000000000000..130c713da6803066d126363630cda9b9d4b5181f --- /dev/null +++ b/synthetic/api_responses.json @@ -0,0 +1,3196 @@ +[ + { + "request_id": "req-000001", + "status": "error", + "data": { + "items": [ + { + "id": 0, + "value": 305 + }, + { + "id": 1, + "value": 239 + }, + { + "id": 2, + "value": 68 + }, + { + "id": 3, + "value": 6 + }, + { + "id": 4, + "value": 718 + }, + { + "id": 5, + "value": 196 + }, + { + "id": 6, + "value": 590 + }, + { + "id": 7, + "value": 742 + }, + { + "id": 8, + "value": 584 + }, + { + "id": 9, + "value": 425 + } + ], + "total": 2946, + "page": 53 + }, + "meta": { + "timestamp": "2024-11-05T10:24:51Z", + "version": "v1", + "took_ms": 306 + } + }, + { + "request_id": "req-000002", + "status": "error", + "data": { + "items": [ + { + "id": 0, + "value": 651 + }, + { + "id": 1, + "value": 141 + }, + { + "id": 2, + "value": 510 + }, + { + "id": 3, + "value": 403 + }, + { + "id": 4, + "value": 821 + }, + { + "id": 5, + "value": 322 + }, + { + "id": 6, + "value": 808 + }, + { + "id": 7, + "value": 461 + }, + { + "id": 8, + "value": 386 + }, + { + "id": 9, + "value": 953 + }, + { + "id": 10, + "value": 284 + }, + { + "id": 11, + "value": 835 + }, + { + "id": 12, + "value": 864 + }, + { + "id": 13, + "value": 987 + }, + { + "id": 14, + "value": 130 + }, + { + "id": 15, + "value": 126 + } + ], + "total": 8530, + "page": 97 + }, + "meta": { + "timestamp": "2024-11-05T03:19:55Z", + "version": "v1", + "took_ms": 76 + } + }, + { + "request_id": "req-000003", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 284 + }, + { + "id": 1, + "value": 897 + }, + { + "id": 2, + "value": 117 + }, + { + "id": 3, + "value": 584 + }, + { + "id": 4, + "value": 724 + }, + { + "id": 5, + "value": 279 + }, + { + "id": 6, + "value": 323 + }, + { + "id": 7, + "value": 562 + }, + { + "id": 8, + "value": 471 + }, + { + "id": 9, + "value": 514 + } + ], + "total": 943, + "page": 22 + }, + "meta": { + "timestamp": "2024-11-05T01:53:53Z", + "version": "v1", + "took_ms": 340 + } + }, + { + "request_id": "req-000004", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 798 + }, + { + "id": 1, + "value": 4 + }, + { + "id": 2, + "value": 208 + }, + { + "id": 3, + "value": 230 + }, + { + "id": 4, + "value": 262 + }, + { + "id": 5, + "value": 593 + }, + { + "id": 6, + "value": 907 + }, + { + "id": 7, + "value": 541 + }, + { + "id": 8, + "value": 13 + }, + { + "id": 9, + "value": 787 + }, + { + "id": 10, + "value": 455 + }, + { + "id": 11, + "value": 724 + }, + { + "id": 12, + "value": 464 + }, + { + "id": 13, + "value": 156 + }, + { + "id": 14, + "value": 57 + }, + { + "id": 15, + "value": 32 + }, + { + "id": 16, + "value": 570 + } + ], + "total": 6027, + "page": 44 + }, + "meta": { + "timestamp": "2024-11-05T19:23:21Z", + "version": "v1", + "took_ms": 88 + } + }, + { + "request_id": "req-000005", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 228 + }, + { + "id": 1, + "value": 696 + }, + { + "id": 2, + "value": 38 + }, + { + "id": 3, + "value": 458 + }, + { + "id": 4, + "value": 412 + }, + { + "id": 5, + "value": 908 + }, + { + "id": 6, + "value": 841 + }, + { + "id": 7, + "value": 361 + }, + { + "id": 8, + "value": 67 + }, + { + "id": 9, + "value": 865 + }, + { + "id": 10, + "value": 614 + }, + { + "id": 11, + "value": 989 + }, + { + "id": 12, + "value": 939 + }, + { + "id": 13, + "value": 455 + }, + { + "id": 14, + "value": 396 + }, + { + "id": 15, + "value": 652 + }, + { + "id": 16, + "value": 393 + } + ], + "total": 2091, + "page": 6 + }, + "meta": { + "timestamp": "2024-11-05T00:41:45Z", + "version": "v1", + "took_ms": 450 + } + }, + { + "request_id": "req-000006", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 243 + }, + { + "id": 1, + "value": 713 + }, + { + "id": 2, + "value": 650 + }, + { + "id": 3, + "value": 342 + }, + { + "id": 4, + "value": 897 + }, + { + "id": 5, + "value": 404 + }, + { + "id": 6, + "value": 985 + }, + { + "id": 7, + "value": 146 + }, + { + "id": 8, + "value": 333 + }, + { + "id": 9, + "value": 155 + }, + { + "id": 10, + "value": 32 + }, + { + "id": 11, + "value": 897 + }, + { + "id": 12, + "value": 949 + }, + { + "id": 13, + "value": 645 + }, + { + "id": 14, + "value": 185 + } + ], + "total": 7876, + "page": 16 + }, + "meta": { + "timestamp": "2024-11-05T02:36:36Z", + "version": "v1", + "took_ms": 378 + } + }, + { + "request_id": "req-000007", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 622 + }, + { + "id": 1, + "value": 411 + }, + { + "id": 2, + "value": 750 + }, + { + "id": 3, + "value": 278 + }, + { + "id": 4, + "value": 931 + }, + { + "id": 5, + "value": 595 + }, + { + "id": 6, + "value": 146 + }, + { + "id": 7, + "value": 648 + }, + { + "id": 8, + "value": 806 + }, + { + "id": 9, + "value": 457 + }, + { + "id": 10, + "value": 300 + }, + { + "id": 11, + "value": 880 + }, + { + "id": 12, + "value": 198 + }, + { + "id": 13, + "value": 885 + } + ], + "total": 3968, + "page": 50 + }, + "meta": { + "timestamp": "2024-11-05T00:23:50Z", + "version": "v1", + "took_ms": 310 + } + }, + { + "request_id": "req-000008", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 212 + }, + { + "id": 1, + "value": 33 + }, + { + "id": 2, + "value": 688 + }, + { + "id": 3, + "value": 569 + }, + { + "id": 4, + "value": 762 + }, + { + "id": 5, + "value": 357 + }, + { + "id": 6, + "value": 272 + }, + { + "id": 7, + "value": 744 + }, + { + "id": 8, + "value": 71 + }, + { + "id": 9, + "value": 681 + }, + { + "id": 10, + "value": 145 + }, + { + "id": 11, + "value": 265 + }, + { + "id": 12, + "value": 732 + }, + { + "id": 13, + "value": 413 + }, + { + "id": 14, + "value": 316 + }, + { + "id": 15, + "value": 600 + }, + { + "id": 16, + "value": 556 + } + ], + "total": 3799, + "page": 44 + }, + "meta": { + "timestamp": "2024-11-05T02:55:55Z", + "version": "v1", + "took_ms": 222 + } + }, + { + "request_id": "req-000009", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 191 + }, + { + "id": 1, + "value": 441 + }, + { + "id": 2, + "value": 795 + }, + { + "id": 3, + "value": 756 + }, + { + "id": 4, + "value": 725 + }, + { + "id": 5, + "value": 928 + } + ], + "total": 7341, + "page": 59 + }, + "meta": { + "timestamp": "2024-11-05T10:32:42Z", + "version": "v1", + "took_ms": 220 + } + }, + { + "request_id": "req-000010", + "status": "error", + "data": { + "items": [ + { + "id": 0, + "value": 446 + }, + { + "id": 1, + "value": 871 + }, + { + "id": 2, + "value": 422 + }, + { + "id": 3, + "value": 589 + }, + { + "id": 4, + "value": 823 + }, + { + "id": 5, + "value": 947 + }, + { + "id": 6, + "value": 991 + }, + { + "id": 7, + "value": 552 + }, + { + "id": 8, + "value": 809 + }, + { + "id": 9, + "value": 937 + }, + { + "id": 10, + "value": 514 + }, + { + "id": 11, + "value": 649 + }, + { + "id": 12, + "value": 371 + }, + { + "id": 13, + "value": 813 + }, + { + "id": 14, + "value": 483 + }, + { + "id": 15, + "value": 852 + }, + { + "id": 16, + "value": 219 + }, + { + "id": 17, + "value": 597 + }, + { + "id": 18, + "value": 653 + } + ], + "total": 3928, + "page": 62 + }, + "meta": { + "timestamp": "2024-11-05T08:58:05Z", + "version": "v1", + "took_ms": 238 + } + }, + { + "request_id": "req-000011", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 823 + }, + { + "id": 1, + "value": 640 + }, + { + "id": 2, + "value": 885 + }, + { + "id": 3, + "value": 218 + }, + { + "id": 4, + "value": 749 + }, + { + "id": 5, + "value": 753 + } + ], + "total": 6911, + "page": 62 + }, + "meta": { + "timestamp": "2024-11-05T13:50:06Z", + "version": "v1", + "took_ms": 72 + } + }, + { + "request_id": "req-000012", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 609 + }, + { + "id": 1, + "value": 938 + }, + { + "id": 2, + "value": 559 + }, + { + "id": 3, + "value": 39 + }, + { + "id": 4, + "value": 927 + }, + { + "id": 5, + "value": 448 + } + ], + "total": 9726, + "page": 65 + }, + "meta": { + "timestamp": "2024-11-05T03:45:57Z", + "version": "v1", + "took_ms": 347 + } + }, + { + "request_id": "req-000013", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 376 + }, + { + "id": 1, + "value": 664 + }, + { + "id": 2, + "value": 184 + }, + { + "id": 3, + "value": 509 + }, + { + "id": 4, + "value": 753 + }, + { + "id": 5, + "value": 423 + }, + { + "id": 6, + "value": 421 + }, + { + "id": 7, + "value": 477 + }, + { + "id": 8, + "value": 499 + }, + { + "id": 9, + "value": 424 + }, + { + "id": 10, + "value": 44 + }, + { + "id": 11, + "value": 580 + }, + { + "id": 12, + "value": 68 + }, + { + "id": 13, + "value": 278 + }, + { + "id": 14, + "value": 210 + } + ], + "total": 6522, + "page": 67 + }, + "meta": { + "timestamp": "2024-11-05T03:12:22Z", + "version": "v1", + "took_ms": 126 + } + }, + { + "request_id": "req-000014", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 585 + }, + { + "id": 1, + "value": 953 + }, + { + "id": 2, + "value": 225 + }, + { + "id": 3, + "value": 417 + }, + { + "id": 4, + "value": 858 + }, + { + "id": 5, + "value": 485 + } + ], + "total": 3236, + "page": 30 + }, + "meta": { + "timestamp": "2024-11-05T04:46:41Z", + "version": "v1", + "took_ms": 354 + } + }, + { + "request_id": "req-000015", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 1 + }, + { + "id": 1, + "value": 147 + }, + { + "id": 2, + "value": 660 + }, + { + "id": 3, + "value": 751 + }, + { + "id": 4, + "value": 775 + }, + { + "id": 5, + "value": 212 + }, + { + "id": 6, + "value": 620 + }, + { + "id": 7, + "value": 27 + } + ], + "total": 6272, + "page": 8 + }, + "meta": { + "timestamp": "2024-11-05T14:12:11Z", + "version": "v1", + "took_ms": 198 + } + }, + { + "request_id": "req-000016", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 78 + }, + { + "id": 1, + "value": 322 + }, + { + "id": 2, + "value": 0 + }, + { + "id": 3, + "value": 766 + }, + { + "id": 4, + "value": 889 + }, + { + "id": 5, + "value": 360 + }, + { + "id": 6, + "value": 469 + }, + { + "id": 7, + "value": 362 + }, + { + "id": 8, + "value": 100 + }, + { + "id": 9, + "value": 160 + }, + { + "id": 10, + "value": 361 + }, + { + "id": 11, + "value": 564 + }, + { + "id": 12, + "value": 692 + }, + { + "id": 13, + "value": 315 + }, + { + "id": 14, + "value": 823 + }, + { + "id": 15, + "value": 962 + }, + { + "id": 16, + "value": 571 + }, + { + "id": 17, + "value": 601 + } + ], + "total": 5490, + "page": 91 + }, + "meta": { + "timestamp": "2024-11-05T21:40:21Z", + "version": "v1", + "took_ms": 375 + } + }, + { + "request_id": "req-000017", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 350 + }, + { + "id": 1, + "value": 342 + }, + { + "id": 2, + "value": 623 + }, + { + "id": 3, + "value": 92 + }, + { + "id": 4, + "value": 863 + }, + { + "id": 5, + "value": 778 + }, + { + "id": 6, + "value": 367 + }, + { + "id": 7, + "value": 98 + }, + { + "id": 8, + "value": 576 + }, + { + "id": 9, + "value": 749 + }, + { + "id": 10, + "value": 440 + }, + { + "id": 11, + "value": 536 + }, + { + "id": 12, + "value": 473 + }, + { + "id": 13, + "value": 850 + }, + { + "id": 14, + "value": 464 + } + ], + "total": 7582, + "page": 14 + }, + "meta": { + "timestamp": "2024-11-05T19:48:19Z", + "version": "v1", + "took_ms": 133 + } + }, + { + "request_id": "req-000018", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 228 + }, + { + "id": 1, + "value": 565 + }, + { + "id": 2, + "value": 898 + }, + { + "id": 3, + "value": 356 + }, + { + "id": 4, + "value": 384 + }, + { + "id": 5, + "value": 526 + }, + { + "id": 6, + "value": 104 + }, + { + "id": 7, + "value": 664 + }, + { + "id": 8, + "value": 57 + }, + { + "id": 9, + "value": 800 + }, + { + "id": 10, + "value": 234 + }, + { + "id": 11, + "value": 255 + }, + { + "id": 12, + "value": 840 + }, + { + "id": 13, + "value": 588 + }, + { + "id": 14, + "value": 822 + }, + { + "id": 15, + "value": 61 + }, + { + "id": 16, + "value": 68 + } + ], + "total": 7550, + "page": 14 + }, + "meta": { + "timestamp": "2024-11-05T17:45:44Z", + "version": "v1", + "took_ms": 42 + } + }, + { + "request_id": "req-000019", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 560 + }, + { + "id": 1, + "value": 797 + }, + { + "id": 2, + "value": 480 + }, + { + "id": 3, + "value": 533 + }, + { + "id": 4, + "value": 279 + }, + { + "id": 5, + "value": 101 + }, + { + "id": 6, + "value": 574 + }, + { + "id": 7, + "value": 300 + } + ], + "total": 396, + "page": 69 + }, + "meta": { + "timestamp": "2024-11-05T04:17:04Z", + "version": "v1", + "took_ms": 496 + } + }, + { + "request_id": "req-000020", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 325 + }, + { + "id": 1, + "value": 645 + }, + { + "id": 2, + "value": 94 + }, + { + "id": 3, + "value": 730 + }, + { + "id": 4, + "value": 220 + }, + { + "id": 5, + "value": 166 + }, + { + "id": 6, + "value": 683 + }, + { + "id": 7, + "value": 992 + }, + { + "id": 8, + "value": 537 + }, + { + "id": 9, + "value": 755 + }, + { + "id": 10, + "value": 791 + } + ], + "total": 3159, + "page": 81 + }, + "meta": { + "timestamp": "2024-11-05T05:43:12Z", + "version": "v1", + "took_ms": 323 + } + }, + { + "request_id": "req-000021", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 495 + }, + { + "id": 1, + "value": 975 + }, + { + "id": 2, + "value": 383 + }, + { + "id": 3, + "value": 415 + }, + { + "id": 4, + "value": 332 + }, + { + "id": 5, + "value": 156 + }, + { + "id": 6, + "value": 370 + } + ], + "total": 4951, + "page": 65 + }, + "meta": { + "timestamp": "2024-11-05T15:06:33Z", + "version": "v1", + "took_ms": 339 + } + }, + { + "request_id": "req-000022", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 464 + }, + { + "id": 1, + "value": 607 + }, + { + "id": 2, + "value": 587 + }, + { + "id": 3, + "value": 392 + }, + { + "id": 4, + "value": 369 + }, + { + "id": 5, + "value": 349 + }, + { + "id": 6, + "value": 28 + }, + { + "id": 7, + "value": 435 + }, + { + "id": 8, + "value": 94 + }, + { + "id": 9, + "value": 74 + }, + { + "id": 10, + "value": 555 + }, + { + "id": 11, + "value": 202 + }, + { + "id": 12, + "value": 467 + } + ], + "total": 8804, + "page": 62 + }, + "meta": { + "timestamp": "2024-11-05T03:30:27Z", + "version": "v1", + "took_ms": 308 + } + }, + { + "request_id": "req-000023", + "status": "error", + "data": { + "items": [ + { + "id": 0, + "value": 486 + }, + { + "id": 1, + "value": 419 + }, + { + "id": 2, + "value": 894 + }, + { + "id": 3, + "value": 190 + }, + { + "id": 4, + "value": 225 + }, + { + "id": 5, + "value": 735 + } + ], + "total": 8181, + "page": 17 + }, + "meta": { + "timestamp": "2024-11-05T14:17:32Z", + "version": "v1", + "took_ms": 68 + } + }, + { + "request_id": "req-000024", + "status": "error", + "data": { + "items": [ + { + "id": 0, + "value": 264 + }, + { + "id": 1, + "value": 200 + }, + { + "id": 2, + "value": 693 + }, + { + "id": 3, + "value": 766 + }, + { + "id": 4, + "value": 713 + }, + { + "id": 5, + "value": 583 + }, + { + "id": 6, + "value": 237 + }, + { + "id": 7, + "value": 763 + }, + { + "id": 8, + "value": 720 + }, + { + "id": 9, + "value": 560 + }, + { + "id": 10, + "value": 438 + }, + { + "id": 11, + "value": 903 + } + ], + "total": 9536, + "page": 59 + }, + "meta": { + "timestamp": "2024-11-05T08:36:21Z", + "version": "v1", + "took_ms": 467 + } + }, + { + "request_id": "req-000025", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 651 + }, + { + "id": 1, + "value": 6 + }, + { + "id": 2, + "value": 314 + }, + { + "id": 3, + "value": 404 + }, + { + "id": 4, + "value": 315 + }, + { + "id": 5, + "value": 846 + }, + { + "id": 6, + "value": 542 + }, + { + "id": 7, + "value": 406 + } + ], + "total": 6575, + "page": 75 + }, + "meta": { + "timestamp": "2024-11-05T22:21:38Z", + "version": "v1", + "took_ms": 159 + } + }, + { + "request_id": "req-000026", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 773 + }, + { + "id": 1, + "value": 463 + }, + { + "id": 2, + "value": 318 + }, + { + "id": 3, + "value": 852 + }, + { + "id": 4, + "value": 728 + }, + { + "id": 5, + "value": 225 + }, + { + "id": 6, + "value": 666 + }, + { + "id": 7, + "value": 555 + }, + { + "id": 8, + "value": 709 + }, + { + "id": 9, + "value": 66 + }, + { + "id": 10, + "value": 956 + }, + { + "id": 11, + "value": 236 + }, + { + "id": 12, + "value": 236 + }, + { + "id": 13, + "value": 669 + } + ], + "total": 1239, + "page": 44 + }, + "meta": { + "timestamp": "2024-11-05T13:27:41Z", + "version": "v1", + "took_ms": 480 + } + }, + { + "request_id": "req-000027", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 84 + }, + { + "id": 1, + "value": 386 + }, + { + "id": 2, + "value": 722 + }, + { + "id": 3, + "value": 250 + }, + { + "id": 4, + "value": 448 + }, + { + "id": 5, + "value": 651 + }, + { + "id": 6, + "value": 593 + }, + { + "id": 7, + "value": 237 + }, + { + "id": 8, + "value": 354 + }, + { + "id": 9, + "value": 401 + }, + { + "id": 10, + "value": 207 + }, + { + "id": 11, + "value": 385 + }, + { + "id": 12, + "value": 709 + }, + { + "id": 13, + "value": 898 + }, + { + "id": 14, + "value": 923 + }, + { + "id": 15, + "value": 777 + }, + { + "id": 16, + "value": 572 + }, + { + "id": 17, + "value": 716 + } + ], + "total": 4800, + "page": 59 + }, + "meta": { + "timestamp": "2024-11-05T01:29:25Z", + "version": "v1", + "took_ms": 219 + } + }, + { + "request_id": "req-000028", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 782 + }, + { + "id": 1, + "value": 395 + }, + { + "id": 2, + "value": 812 + }, + { + "id": 3, + "value": 12 + }, + { + "id": 4, + "value": 859 + }, + { + "id": 5, + "value": 914 + }, + { + "id": 6, + "value": 671 + } + ], + "total": 3028, + "page": 68 + }, + "meta": { + "timestamp": "2024-11-05T14:47:57Z", + "version": "v1", + "took_ms": 165 + } + }, + { + "request_id": "req-000029", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 638 + }, + { + "id": 1, + "value": 468 + }, + { + "id": 2, + "value": 90 + }, + { + "id": 3, + "value": 719 + }, + { + "id": 4, + "value": 335 + }, + { + "id": 5, + "value": 170 + }, + { + "id": 6, + "value": 556 + }, + { + "id": 7, + "value": 542 + } + ], + "total": 9671, + "page": 43 + }, + "meta": { + "timestamp": "2024-11-05T19:50:12Z", + "version": "v1", + "took_ms": 123 + } + }, + { + "request_id": "req-000030", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 532 + }, + { + "id": 1, + "value": 714 + }, + { + "id": 2, + "value": 112 + }, + { + "id": 3, + "value": 60 + }, + { + "id": 4, + "value": 972 + }, + { + "id": 5, + "value": 606 + }, + { + "id": 6, + "value": 57 + }, + { + "id": 7, + "value": 875 + }, + { + "id": 8, + "value": 360 + }, + { + "id": 9, + "value": 932 + }, + { + "id": 10, + "value": 744 + }, + { + "id": 11, + "value": 496 + }, + { + "id": 12, + "value": 444 + }, + { + "id": 13, + "value": 578 + }, + { + "id": 14, + "value": 186 + }, + { + "id": 15, + "value": 370 + }, + { + "id": 16, + "value": 782 + }, + { + "id": 17, + "value": 744 + }, + { + "id": 18, + "value": 962 + } + ], + "total": 7303, + "page": 67 + }, + "meta": { + "timestamp": "2024-11-05T23:28:10Z", + "version": "v1", + "took_ms": 242 + } + }, + { + "request_id": "req-000031", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 954 + }, + { + "id": 1, + "value": 560 + }, + { + "id": 2, + "value": 71 + }, + { + "id": 3, + "value": 584 + }, + { + "id": 4, + "value": 210 + }, + { + "id": 5, + "value": 147 + } + ], + "total": 3768, + "page": 30 + }, + "meta": { + "timestamp": "2024-11-05T03:56:15Z", + "version": "v1", + "took_ms": 229 + } + }, + { + "request_id": "req-000032", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 786 + }, + { + "id": 1, + "value": 327 + }, + { + "id": 2, + "value": 178 + }, + { + "id": 3, + "value": 444 + }, + { + "id": 4, + "value": 473 + }, + { + "id": 5, + "value": 973 + }, + { + "id": 6, + "value": 85 + }, + { + "id": 7, + "value": 710 + }, + { + "id": 8, + "value": 697 + }, + { + "id": 9, + "value": 75 + }, + { + "id": 10, + "value": 224 + }, + { + "id": 11, + "value": 284 + }, + { + "id": 12, + "value": 929 + }, + { + "id": 13, + "value": 461 + }, + { + "id": 14, + "value": 739 + }, + { + "id": 15, + "value": 210 + } + ], + "total": 4077, + "page": 53 + }, + "meta": { + "timestamp": "2024-11-05T06:23:39Z", + "version": "v1", + "took_ms": 266 + } + }, + { + "request_id": "req-000033", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 407 + }, + { + "id": 1, + "value": 39 + }, + { + "id": 2, + "value": 919 + }, + { + "id": 3, + "value": 754 + }, + { + "id": 4, + "value": 30 + }, + { + "id": 5, + "value": 838 + }, + { + "id": 6, + "value": 491 + }, + { + "id": 7, + "value": 252 + }, + { + "id": 8, + "value": 965 + } + ], + "total": 2861, + "page": 100 + }, + "meta": { + "timestamp": "2024-11-05T23:27:27Z", + "version": "v1", + "took_ms": 388 + } + }, + { + "request_id": "req-000034", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 678 + }, + { + "id": 1, + "value": 8 + }, + { + "id": 2, + "value": 765 + }, + { + "id": 3, + "value": 878 + }, + { + "id": 4, + "value": 157 + }, + { + "id": 5, + "value": 736 + }, + { + "id": 6, + "value": 193 + }, + { + "id": 7, + "value": 861 + }, + { + "id": 8, + "value": 317 + }, + { + "id": 9, + "value": 566 + }, + { + "id": 10, + "value": 864 + } + ], + "total": 9442, + "page": 17 + }, + "meta": { + "timestamp": "2024-11-05T10:52:07Z", + "version": "v1", + "took_ms": 16 + } + }, + { + "request_id": "req-000035", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 420 + }, + { + "id": 1, + "value": 93 + }, + { + "id": 2, + "value": 708 + }, + { + "id": 3, + "value": 520 + }, + { + "id": 4, + "value": 876 + }, + { + "id": 5, + "value": 524 + }, + { + "id": 6, + "value": 731 + }, + { + "id": 7, + "value": 681 + }, + { + "id": 8, + "value": 684 + }, + { + "id": 9, + "value": 75 + }, + { + "id": 10, + "value": 191 + }, + { + "id": 11, + "value": 482 + } + ], + "total": 9447, + "page": 43 + }, + "meta": { + "timestamp": "2024-11-05T19:26:52Z", + "version": "v1", + "took_ms": 370 + } + }, + { + "request_id": "req-000036", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 805 + }, + { + "id": 1, + "value": 284 + }, + { + "id": 2, + "value": 227 + }, + { + "id": 3, + "value": 317 + }, + { + "id": 4, + "value": 348 + }, + { + "id": 5, + "value": 905 + }, + { + "id": 6, + "value": 446 + }, + { + "id": 7, + "value": 230 + }, + { + "id": 8, + "value": 131 + }, + { + "id": 9, + "value": 709 + } + ], + "total": 8386, + "page": 44 + }, + "meta": { + "timestamp": "2024-11-05T12:52:04Z", + "version": "v1", + "took_ms": 395 + } + }, + { + "request_id": "req-000037", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 16 + }, + { + "id": 1, + "value": 257 + }, + { + "id": 2, + "value": 99 + }, + { + "id": 3, + "value": 838 + }, + { + "id": 4, + "value": 399 + }, + { + "id": 5, + "value": 505 + }, + { + "id": 6, + "value": 871 + }, + { + "id": 7, + "value": 256 + }, + { + "id": 8, + "value": 5 + }, + { + "id": 9, + "value": 833 + }, + { + "id": 10, + "value": 971 + }, + { + "id": 11, + "value": 854 + }, + { + "id": 12, + "value": 832 + }, + { + "id": 13, + "value": 882 + }, + { + "id": 14, + "value": 880 + }, + { + "id": 15, + "value": 428 + }, + { + "id": 16, + "value": 32 + }, + { + "id": 17, + "value": 123 + } + ], + "total": 1734, + "page": 5 + }, + "meta": { + "timestamp": "2024-11-05T01:00:48Z", + "version": "v1", + "took_ms": 441 + } + }, + { + "request_id": "req-000038", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 974 + }, + { + "id": 1, + "value": 472 + }, + { + "id": 2, + "value": 55 + }, + { + "id": 3, + "value": 340 + }, + { + "id": 4, + "value": 218 + }, + { + "id": 5, + "value": 304 + }, + { + "id": 6, + "value": 696 + }, + { + "id": 7, + "value": 397 + } + ], + "total": 5518, + "page": 7 + }, + "meta": { + "timestamp": "2024-11-05T14:37:34Z", + "version": "v1", + "took_ms": 147 + } + }, + { + "request_id": "req-000039", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 387 + }, + { + "id": 1, + "value": 301 + }, + { + "id": 2, + "value": 954 + }, + { + "id": 3, + "value": 497 + }, + { + "id": 4, + "value": 816 + }, + { + "id": 5, + "value": 782 + }, + { + "id": 6, + "value": 672 + }, + { + "id": 7, + "value": 817 + }, + { + "id": 8, + "value": 659 + }, + { + "id": 9, + "value": 631 + }, + { + "id": 10, + "value": 520 + }, + { + "id": 11, + "value": 63 + }, + { + "id": 12, + "value": 977 + }, + { + "id": 13, + "value": 837 + }, + { + "id": 14, + "value": 314 + }, + { + "id": 15, + "value": 955 + } + ], + "total": 8756, + "page": 40 + }, + "meta": { + "timestamp": "2024-11-05T10:13:06Z", + "version": "v1", + "took_ms": 120 + } + }, + { + "request_id": "req-000040", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 322 + }, + { + "id": 1, + "value": 890 + }, + { + "id": 2, + "value": 703 + }, + { + "id": 3, + "value": 792 + }, + { + "id": 4, + "value": 657 + }, + { + "id": 5, + "value": 36 + }, + { + "id": 6, + "value": 972 + }, + { + "id": 7, + "value": 968 + } + ], + "total": 5918, + "page": 57 + }, + "meta": { + "timestamp": "2024-11-05T23:19:33Z", + "version": "v1", + "took_ms": 162 + } + }, + { + "request_id": "req-000041", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 573 + }, + { + "id": 1, + "value": 73 + }, + { + "id": 2, + "value": 971 + }, + { + "id": 3, + "value": 208 + }, + { + "id": 4, + "value": 694 + }, + { + "id": 5, + "value": 341 + } + ], + "total": 7405, + "page": 69 + }, + "meta": { + "timestamp": "2024-11-05T16:06:43Z", + "version": "v1", + "took_ms": 101 + } + }, + { + "request_id": "req-000042", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 570 + }, + { + "id": 1, + "value": 232 + }, + { + "id": 2, + "value": 835 + }, + { + "id": 3, + "value": 433 + }, + { + "id": 4, + "value": 714 + }, + { + "id": 5, + "value": 346 + }, + { + "id": 6, + "value": 798 + }, + { + "id": 7, + "value": 134 + }, + { + "id": 8, + "value": 414 + }, + { + "id": 9, + "value": 846 + }, + { + "id": 10, + "value": 343 + }, + { + "id": 11, + "value": 304 + }, + { + "id": 12, + "value": 923 + }, + { + "id": 13, + "value": 961 + }, + { + "id": 14, + "value": 559 + }, + { + "id": 15, + "value": 455 + }, + { + "id": 16, + "value": 236 + } + ], + "total": 2384, + "page": 53 + }, + "meta": { + "timestamp": "2024-11-05T11:51:22Z", + "version": "v1", + "took_ms": 393 + } + }, + { + "request_id": "req-000043", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 862 + }, + { + "id": 1, + "value": 522 + }, + { + "id": 2, + "value": 995 + }, + { + "id": 3, + "value": 53 + }, + { + "id": 4, + "value": 407 + }, + { + "id": 5, + "value": 883 + }, + { + "id": 6, + "value": 488 + }, + { + "id": 7, + "value": 709 + }, + { + "id": 8, + "value": 935 + }, + { + "id": 9, + "value": 838 + }, + { + "id": 10, + "value": 905 + }, + { + "id": 11, + "value": 566 + }, + { + "id": 12, + "value": 832 + }, + { + "id": 13, + "value": 190 + }, + { + "id": 14, + "value": 804 + }, + { + "id": 15, + "value": 902 + }, + { + "id": 16, + "value": 320 + }, + { + "id": 17, + "value": 660 + }, + { + "id": 18, + "value": 551 + }, + { + "id": 19, + "value": 992 + } + ], + "total": 7191, + "page": 36 + }, + "meta": { + "timestamp": "2024-11-05T01:09:34Z", + "version": "v1", + "took_ms": 307 + } + }, + { + "request_id": "req-000044", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 791 + }, + { + "id": 1, + "value": 315 + }, + { + "id": 2, + "value": 228 + }, + { + "id": 3, + "value": 118 + }, + { + "id": 4, + "value": 864 + }, + { + "id": 5, + "value": 516 + }, + { + "id": 6, + "value": 110 + }, + { + "id": 7, + "value": 666 + }, + { + "id": 8, + "value": 242 + }, + { + "id": 9, + "value": 397 + }, + { + "id": 10, + "value": 341 + }, + { + "id": 11, + "value": 115 + }, + { + "id": 12, + "value": 999 + }, + { + "id": 13, + "value": 325 + }, + { + "id": 14, + "value": 304 + } + ], + "total": 3365, + "page": 20 + }, + "meta": { + "timestamp": "2024-11-05T03:14:51Z", + "version": "v1", + "took_ms": 400 + } + }, + { + "request_id": "req-000045", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 933 + }, + { + "id": 1, + "value": 849 + }, + { + "id": 2, + "value": 220 + }, + { + "id": 3, + "value": 526 + }, + { + "id": 4, + "value": 232 + }, + { + "id": 5, + "value": 604 + }, + { + "id": 6, + "value": 939 + }, + { + "id": 7, + "value": 896 + }, + { + "id": 8, + "value": 840 + }, + { + "id": 9, + "value": 90 + }, + { + "id": 10, + "value": 106 + }, + { + "id": 11, + "value": 734 + }, + { + "id": 12, + "value": 966 + }, + { + "id": 13, + "value": 663 + }, + { + "id": 14, + "value": 686 + }, + { + "id": 15, + "value": 810 + } + ], + "total": 4724, + "page": 53 + }, + "meta": { + "timestamp": "2024-11-05T06:02:36Z", + "version": "v1", + "took_ms": 316 + } + }, + { + "request_id": "req-000046", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 930 + }, + { + "id": 1, + "value": 936 + }, + { + "id": 2, + "value": 276 + }, + { + "id": 3, + "value": 331 + }, + { + "id": 4, + "value": 193 + }, + { + "id": 5, + "value": 735 + }, + { + "id": 6, + "value": 54 + }, + { + "id": 7, + "value": 645 + }, + { + "id": 8, + "value": 752 + }, + { + "id": 9, + "value": 112 + }, + { + "id": 10, + "value": 912 + }, + { + "id": 11, + "value": 987 + }, + { + "id": 12, + "value": 823 + }, + { + "id": 13, + "value": 166 + }, + { + "id": 14, + "value": 788 + }, + { + "id": 15, + "value": 533 + } + ], + "total": 2092, + "page": 77 + }, + "meta": { + "timestamp": "2024-11-05T18:19:14Z", + "version": "v1", + "took_ms": 92 + } + }, + { + "request_id": "req-000047", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 601 + }, + { + "id": 1, + "value": 778 + }, + { + "id": 2, + "value": 932 + }, + { + "id": 3, + "value": 938 + }, + { + "id": 4, + "value": 944 + } + ], + "total": 7137, + "page": 75 + }, + "meta": { + "timestamp": "2024-11-05T11:39:05Z", + "version": "v1", + "took_ms": 16 + } + }, + { + "request_id": "req-000048", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 862 + }, + { + "id": 1, + "value": 291 + }, + { + "id": 2, + "value": 456 + }, + { + "id": 3, + "value": 241 + }, + { + "id": 4, + "value": 828 + }, + { + "id": 5, + "value": 666 + }, + { + "id": 6, + "value": 311 + }, + { + "id": 7, + "value": 99 + }, + { + "id": 8, + "value": 218 + }, + { + "id": 9, + "value": 626 + }, + { + "id": 10, + "value": 140 + }, + { + "id": 11, + "value": 917 + }, + { + "id": 12, + "value": 775 + }, + { + "id": 13, + "value": 102 + }, + { + "id": 14, + "value": 828 + }, + { + "id": 15, + "value": 48 + }, + { + "id": 16, + "value": 326 + }, + { + "id": 17, + "value": 269 + }, + { + "id": 18, + "value": 517 + } + ], + "total": 9909, + "page": 90 + }, + "meta": { + "timestamp": "2024-11-05T17:56:37Z", + "version": "v1", + "took_ms": 163 + } + }, + { + "request_id": "req-000049", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 398 + }, + { + "id": 1, + "value": 195 + }, + { + "id": 2, + "value": 320 + }, + { + "id": 3, + "value": 10 + }, + { + "id": 4, + "value": 603 + }, + { + "id": 5, + "value": 288 + }, + { + "id": 6, + "value": 827 + }, + { + "id": 7, + "value": 792 + }, + { + "id": 8, + "value": 503 + }, + { + "id": 9, + "value": 886 + }, + { + "id": 10, + "value": 73 + }, + { + "id": 11, + "value": 76 + }, + { + "id": 12, + "value": 986 + } + ], + "total": 8434, + "page": 60 + }, + "meta": { + "timestamp": "2024-11-05T22:57:52Z", + "version": "v1", + "took_ms": 306 + } + }, + { + "request_id": "req-000050", + "status": "success", + "data": { + "items": [ + { + "id": 0, + "value": 930 + }, + { + "id": 1, + "value": 272 + }, + { + "id": 2, + "value": 297 + }, + { + "id": 3, + "value": 528 + }, + { + "id": 4, + "value": 219 + }, + { + "id": 5, + "value": 508 + }, + { + "id": 6, + "value": 370 + } + ], + "total": 3015, + "page": 19 + }, + "meta": { + "timestamp": "2024-11-05T13:39:05Z", + "version": "v1", + "took_ms": 24 + } + } +] \ No newline at end of file diff --git a/synthetic/api_responses.metadata.json b/synthetic/api_responses.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..08c647a2395d41a253e4e688991f55d332164090 --- /dev/null +++ b/synthetic/api_responses.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_api_responses", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.263851", + "size_bytes": 51422, + "description": "50 API response samples", + "url": "" +} \ No newline at end of file diff --git a/synthetic/database_records_sparse.json b/synthetic/database_records_sparse.json new file mode 100644 index 0000000000000000000000000000000000000000..0807e7342d749494118ae4a680cb10ee0f3a7fd8 --- /dev/null +++ b/synthetic/database_records_sparse.json @@ -0,0 +1,733 @@ +[ + { + "id": 1, + "type": "A", + "timestamp": "2024-11-05T19:36:53Z", + "optional_field_2": 172 + }, + { + "id": 2, + "type": "B", + "timestamp": "2024-11-05T00:12:44Z", + "optional_field_2": 340, + "rare_field": { + "nested": "data" + } + }, + { + "id": 3, + "type": "A", + "timestamp": "2024-11-05T21:30:22Z", + "optional_field_1": "value-2", + "optional_field_2": 146 + }, + { + "id": 4, + "type": "C", + "timestamp": "2024-11-05T09:23:08Z", + "optional_field_1": "value-3" + }, + { + "id": 5, + "type": "C", + "timestamp": "2024-11-05T16:18:08Z", + "optional_field_2": 205 + }, + { + "id": 6, + "type": "C", + "timestamp": "2024-11-05T21:38:14Z", + "optional_field_1": "value-5" + }, + { + "id": 7, + "type": "C", + "timestamp": "2024-11-05T22:32:50Z", + "optional_field_1": "value-6", + "optional_field_2": 572, + "rare_field": { + "nested": "data" + } + }, + { + "id": 8, + "type": "A", + "timestamp": "2024-11-05T13:46:46Z", + "optional_field_1": "value-7" + }, + { + "id": 9, + "type": "B", + "timestamp": "2024-11-05T23:32:52Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 10, + "type": "B", + "timestamp": "2024-11-05T02:33:22Z", + "optional_field_1": "value-9" + }, + { + "id": 11, + "type": "B", + "timestamp": "2024-11-05T09:51:27Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 12, + "type": "B", + "timestamp": "2024-11-05T20:07:40Z", + "optional_field_1": "value-11" + }, + { + "id": 13, + "type": "B", + "timestamp": "2024-11-05T09:28:57Z", + "optional_field_1": "value-12" + }, + { + "id": 14, + "type": "A", + "timestamp": "2024-11-05T00:32:42Z", + "optional_field_1": "value-13", + "rare_field": { + "nested": "data" + } + }, + { + "id": 15, + "type": "C", + "timestamp": "2024-11-05T17:18:30Z", + "optional_field_1": "value-14", + "optional_field_2": 103, + "rare_field": { + "nested": "data" + } + }, + { + "id": 16, + "type": "B", + "timestamp": "2024-11-05T01:15:46Z" + }, + { + "id": 17, + "type": "C", + "timestamp": "2024-11-05T11:24:47Z", + "optional_field_1": "value-16", + "optional_field_2": 419 + }, + { + "id": 18, + "type": "B", + "timestamp": "2024-11-05T17:57:26Z", + "optional_field_1": "value-17" + }, + { + "id": 19, + "type": "A", + "timestamp": "2024-11-05T20:35:48Z", + "optional_field_1": "value-18", + "optional_field_2": 392 + }, + { + "id": 20, + "type": "B", + "timestamp": "2024-11-05T06:51:45Z" + }, + { + "id": 21, + "type": "A", + "timestamp": "2024-11-05T10:41:18Z", + "optional_field_1": "value-20", + "optional_field_2": 455 + }, + { + "id": 22, + "type": "C", + "timestamp": "2024-11-05T11:40:45Z", + "optional_field_1": "value-21", + "rare_field": { + "nested": "data" + } + }, + { + "id": 23, + "type": "C", + "timestamp": "2024-11-05T14:47:27Z", + "optional_field_2": 676, + "rare_field": { + "nested": "data" + } + }, + { + "id": 24, + "type": "A", + "timestamp": "2024-11-05T11:30:40Z", + "optional_field_1": "value-23", + "optional_field_2": 42, + "rare_field": { + "nested": "data" + } + }, + { + "id": 25, + "type": "B", + "timestamp": "2024-11-05T09:40:58Z", + "optional_field_1": "value-24", + "optional_field_2": 95 + }, + { + "id": 26, + "type": "B", + "timestamp": "2024-11-05T10:42:37Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 27, + "type": "A", + "timestamp": "2024-11-05T16:34:36Z", + "optional_field_1": "value-26", + "optional_field_2": 664 + }, + { + "id": 28, + "type": "A", + "timestamp": "2024-11-05T20:15:11Z", + "optional_field_1": "value-27", + "optional_field_2": 233 + }, + { + "id": 29, + "type": "A", + "timestamp": "2024-11-05T23:10:59Z", + "optional_field_1": "value-28" + }, + { + "id": 30, + "type": "A", + "timestamp": "2024-11-05T05:35:12Z", + "optional_field_1": "value-29", + "optional_field_2": 420 + }, + { + "id": 31, + "type": "C", + "timestamp": "2024-11-05T01:02:48Z", + "optional_field_1": "value-30", + "optional_field_2": 530 + }, + { + "id": 32, + "type": "C", + "timestamp": "2024-11-05T15:46:10Z", + "optional_field_1": "value-31", + "optional_field_2": 686, + "rare_field": { + "nested": "data" + } + }, + { + "id": 33, + "type": "C", + "timestamp": "2024-11-05T08:08:47Z", + "optional_field_2": 284 + }, + { + "id": 34, + "type": "C", + "timestamp": "2024-11-05T06:32:17Z", + "optional_field_2": 548 + }, + { + "id": 35, + "type": "A", + "timestamp": "2024-11-05T13:20:08Z", + "optional_field_1": "value-34" + }, + { + "id": 36, + "type": "C", + "timestamp": "2024-11-05T21:41:25Z", + "optional_field_1": "value-35", + "optional_field_2": 990 + }, + { + "id": 37, + "type": "C", + "timestamp": "2024-11-05T14:06:37Z", + "optional_field_1": "value-36", + "optional_field_2": 231 + }, + { + "id": 38, + "type": "A", + "timestamp": "2024-11-05T16:10:42Z", + "optional_field_1": "value-37", + "optional_field_2": 186 + }, + { + "id": 39, + "type": "C", + "timestamp": "2024-11-05T16:30:02Z", + "optional_field_1": "value-38" + }, + { + "id": 40, + "type": "B", + "timestamp": "2024-11-05T16:40:08Z", + "optional_field_1": "value-39", + "optional_field_2": 235 + }, + { + "id": 41, + "type": "C", + "timestamp": "2024-11-05T02:55:46Z", + "optional_field_1": "value-40", + "optional_field_2": 375, + "rare_field": { + "nested": "data" + } + }, + { + "id": 42, + "type": "B", + "timestamp": "2024-11-05T07:12:16Z", + "optional_field_1": "value-41" + }, + { + "id": 43, + "type": "B", + "timestamp": "2024-11-05T02:39:07Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 44, + "type": "A", + "timestamp": "2024-11-05T22:32:03Z", + "optional_field_1": "value-43" + }, + { + "id": 45, + "type": "A", + "timestamp": "2024-11-05T18:18:41Z", + "optional_field_1": "value-44", + "rare_field": { + "nested": "data" + } + }, + { + "id": 46, + "type": "B", + "timestamp": "2024-11-05T02:42:34Z", + "optional_field_1": "value-45", + "optional_field_2": 4 + }, + { + "id": 47, + "type": "C", + "timestamp": "2024-11-05T03:02:15Z", + "optional_field_1": "value-46", + "optional_field_2": 853 + }, + { + "id": 48, + "type": "C", + "timestamp": "2024-11-05T01:42:27Z", + "optional_field_1": "value-47", + "rare_field": { + "nested": "data" + } + }, + { + "id": 49, + "type": "B", + "timestamp": "2024-11-05T12:33:55Z", + "optional_field_1": "value-48", + "rare_field": { + "nested": "data" + } + }, + { + "id": 50, + "type": "C", + "timestamp": "2024-11-05T19:05:11Z", + "optional_field_1": "value-49" + }, + { + "id": 51, + "type": "A", + "timestamp": "2024-11-05T00:23:28Z" + }, + { + "id": 52, + "type": "B", + "timestamp": "2024-11-05T23:41:00Z", + "optional_field_1": "value-51", + "rare_field": { + "nested": "data" + } + }, + { + "id": 53, + "type": "C", + "timestamp": "2024-11-05T20:49:04Z" + }, + { + "id": 54, + "type": "B", + "timestamp": "2024-11-05T04:18:04Z", + "optional_field_1": "value-53" + }, + { + "id": 55, + "type": "B", + "timestamp": "2024-11-05T02:26:42Z", + "optional_field_1": "value-54", + "optional_field_2": 228 + }, + { + "id": 56, + "type": "A", + "timestamp": "2024-11-05T20:55:15Z", + "optional_field_1": "value-55", + "optional_field_2": 435, + "rare_field": { + "nested": "data" + } + }, + { + "id": 57, + "type": "C", + "timestamp": "2024-11-05T16:19:58Z", + "optional_field_1": "value-56", + "optional_field_2": 913 + }, + { + "id": 58, + "type": "C", + "timestamp": "2024-11-05T10:59:48Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 59, + "type": "B", + "timestamp": "2024-11-05T17:17:45Z", + "optional_field_1": "value-58", + "optional_field_2": 539 + }, + { + "id": 60, + "type": "C", + "timestamp": "2024-11-05T07:20:52Z", + "optional_field_1": "value-59", + "optional_field_2": 289 + }, + { + "id": 61, + "type": "C", + "timestamp": "2024-11-05T13:58:05Z", + "optional_field_1": "value-60", + "optional_field_2": 32, + "rare_field": { + "nested": "data" + } + }, + { + "id": 62, + "type": "C", + "timestamp": "2024-11-05T14:04:25Z", + "optional_field_1": "value-61", + "optional_field_2": 305 + }, + { + "id": 63, + "type": "A", + "timestamp": "2024-11-05T03:47:04Z", + "optional_field_1": "value-62", + "rare_field": { + "nested": "data" + } + }, + { + "id": 64, + "type": "B", + "timestamp": "2024-11-05T04:55:09Z", + "optional_field_1": "value-63" + }, + { + "id": 65, + "type": "B", + "timestamp": "2024-11-05T08:41:13Z", + "optional_field_1": "value-64", + "optional_field_2": 247 + }, + { + "id": 66, + "type": "C", + "timestamp": "2024-11-05T01:37:54Z", + "optional_field_1": "value-65", + "rare_field": { + "nested": "data" + } + }, + { + "id": 67, + "type": "B", + "timestamp": "2024-11-05T15:37:59Z", + "optional_field_1": "value-66", + "optional_field_2": 389, + "rare_field": { + "nested": "data" + } + }, + { + "id": 68, + "type": "B", + "timestamp": "2024-11-05T05:21:55Z", + "optional_field_1": "value-67" + }, + { + "id": 69, + "type": "C", + "timestamp": "2024-11-05T16:20:57Z", + "optional_field_1": "value-68" + }, + { + "id": 70, + "type": "A", + "timestamp": "2024-11-05T10:41:15Z", + "optional_field_1": "value-69", + "optional_field_2": 21 + }, + { + "id": 71, + "type": "A", + "timestamp": "2024-11-05T23:48:36Z", + "optional_field_1": "value-70", + "optional_field_2": 661 + }, + { + "id": 72, + "type": "B", + "timestamp": "2024-11-05T11:30:22Z", + "optional_field_2": 588 + }, + { + "id": 73, + "type": "A", + "timestamp": "2024-11-05T08:45:51Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 74, + "type": "B", + "timestamp": "2024-11-05T00:51:01Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 75, + "type": "C", + "timestamp": "2024-11-05T20:09:33Z", + "optional_field_1": "value-74" + }, + { + "id": 76, + "type": "B", + "timestamp": "2024-11-05T16:12:10Z", + "optional_field_2": 836, + "rare_field": { + "nested": "data" + } + }, + { + "id": 77, + "type": "C", + "timestamp": "2024-11-05T04:03:20Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 78, + "type": "B", + "timestamp": "2024-11-05T14:51:48Z", + "optional_field_2": 551, + "rare_field": { + "nested": "data" + } + }, + { + "id": 79, + "type": "B", + "timestamp": "2024-11-05T09:57:39Z", + "optional_field_1": "value-78", + "rare_field": { + "nested": "data" + } + }, + { + "id": 80, + "type": "C", + "timestamp": "2024-11-05T13:59:30Z", + "optional_field_2": 990, + "rare_field": { + "nested": "data" + } + }, + { + "id": 81, + "type": "C", + "timestamp": "2024-11-05T16:15:46Z", + "optional_field_1": "value-80", + "optional_field_2": 207, + "rare_field": { + "nested": "data" + } + }, + { + "id": 82, + "type": "A", + "timestamp": "2024-11-05T02:10:29Z", + "optional_field_1": "value-81", + "optional_field_2": 868, + "rare_field": { + "nested": "data" + } + }, + { + "id": 83, + "type": "A", + "timestamp": "2024-11-05T03:59:05Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 84, + "type": "A", + "timestamp": "2024-11-05T14:06:41Z", + "optional_field_1": "value-83", + "rare_field": { + "nested": "data" + } + }, + { + "id": 85, + "type": "A", + "timestamp": "2024-11-05T09:48:22Z", + "optional_field_1": "value-84", + "optional_field_2": 918 + }, + { + "id": 86, + "type": "C", + "timestamp": "2024-11-05T05:18:56Z" + }, + { + "id": 87, + "type": "C", + "timestamp": "2024-11-05T16:56:25Z", + "optional_field_1": "value-86" + }, + { + "id": 88, + "type": "C", + "timestamp": "2024-11-05T18:32:18Z", + "optional_field_2": 331 + }, + { + "id": 89, + "type": "B", + "timestamp": "2024-11-05T12:21:13Z", + "optional_field_2": 773, + "rare_field": { + "nested": "data" + } + }, + { + "id": 90, + "type": "B", + "timestamp": "2024-11-05T18:00:12Z", + "optional_field_1": "value-89" + }, + { + "id": 91, + "type": "B", + "timestamp": "2024-11-05T09:22:18Z", + "rare_field": { + "nested": "data" + } + }, + { + "id": 92, + "type": "B", + "timestamp": "2024-11-05T07:47:36Z", + "optional_field_2": 866 + }, + { + "id": 93, + "type": "C", + "timestamp": "2024-11-05T11:35:23Z", + "optional_field_1": "value-92", + "optional_field_2": 744 + }, + { + "id": 94, + "type": "A", + "timestamp": "2024-11-05T07:32:08Z", + "optional_field_1": "value-93", + "optional_field_2": 86 + }, + { + "id": 95, + "type": "A", + "timestamp": "2024-11-05T12:54:23Z", + "optional_field_1": "value-94" + }, + { + "id": 96, + "type": "A", + "timestamp": "2024-11-05T06:40:35Z", + "optional_field_1": "value-95", + "optional_field_2": 734 + }, + { + "id": 97, + "type": "B", + "timestamp": "2024-11-05T16:07:15Z", + "optional_field_1": "value-96", + "optional_field_2": 522 + }, + { + "id": 98, + "type": "B", + "timestamp": "2024-11-05T01:15:30Z", + "optional_field_1": "value-97" + }, + { + "id": 99, + "type": "A", + "timestamp": "2024-11-05T17:59:34Z", + "optional_field_1": "value-98" + }, + { + "id": 100, + "type": "C", + "timestamp": "2024-11-05T11:27:27Z", + "optional_field_1": "value-99" + } +] \ No newline at end of file diff --git a/synthetic/database_records_sparse.metadata.json b/synthetic/database_records_sparse.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..421ded2fc96d737bfc4648c89af00e4743a7a35c --- /dev/null +++ b/synthetic/database_records_sparse.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_database_records_sparse", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.265703", + "size_bytes": 13852, + "description": "100 database records with sparse fields", + "url": "" +} \ No newline at end of file diff --git a/synthetic/ecommerce_catalog.json b/synthetic/ecommerce_catalog.json new file mode 100644 index 0000000000000000000000000000000000000000..c0a592c4491d63236cb32ca7273ee9c6f585bf28 --- /dev/null +++ b/synthetic/ecommerce_catalog.json @@ -0,0 +1,1710 @@ +[ + { + "id": "PROD-0001", + "name": "Product 1", + "category": "Books", + "price": 913.24, + "stock": 400, + "rating": 4.1, + "reviews": 522, + "tags": [ + "featured", + "clearance", + "sale" + ], + "attributes": { + "weight": "10.60kg", + "dimensions": "25x74x8cm", + "color": "Green" + } + }, + { + "id": "PROD-0002", + "name": "Product 2", + "category": "Sports", + "price": 59.78, + "stock": 451, + "rating": 1.5, + "reviews": 936, + "tags": [ + "new" + ], + "attributes": { + "weight": "17.52kg", + "dimensions": "30x50x66cm", + "color": "Blue" + } + }, + { + "id": "PROD-0003", + "name": "Product 3", + "category": "Toys", + "price": 881.36, + "stock": 430, + "rating": 2.9, + "reviews": 253, + "tags": [ + "clearance", + "sale" + ], + "attributes": { + "weight": "42.44kg", + "dimensions": "8x73x31cm", + "color": "Red" + } + }, + { + "id": "PROD-0004", + "name": "Product 4", + "category": "Sports", + "price": 575.14, + "stock": 389, + "rating": 2.9, + "reviews": 615, + "tags": [], + "attributes": { + "weight": "25.98kg", + "dimensions": "6x56x23cm", + "color": "Green" + } + }, + { + "id": "PROD-0005", + "name": "Product 5", + "category": "Clothing", + "price": 289.23, + "stock": 56, + "rating": 2.9, + "reviews": 385, + "tags": [], + "attributes": { + "weight": "35.25kg", + "dimensions": "29x81x56cm", + "color": "Black" + } + }, + { + "id": "PROD-0006", + "name": "Product 6", + "category": "Sports", + "price": 68.12, + "stock": 328, + "rating": 4.4, + "reviews": 493, + "tags": [ + "clearance" + ], + "attributes": { + "weight": "28.86kg", + "dimensions": "96x89x28cm", + "color": "Black" + } + }, + { + "id": "PROD-0007", + "name": "Product 7", + "category": "Books", + "price": 156.06, + "stock": 166, + "rating": 1.5, + "reviews": 552, + "tags": [], + "attributes": { + "weight": "29.65kg", + "dimensions": "13x95x96cm", + "color": "Red" + } + }, + { + "id": "PROD-0008", + "name": "Product 8", + "category": "Electronics", + "price": 831.91, + "stock": 61, + "rating": 2.3, + "reviews": 764, + "tags": [ + "new" + ], + "attributes": { + "weight": "29.48kg", + "dimensions": "79x37x33cm", + "color": "Blue" + } + }, + { + "id": "PROD-0009", + "name": "Product 9", + "category": "Books", + "price": 915.53, + "stock": 371, + "rating": 4.3, + "reviews": 795, + "tags": [], + "attributes": { + "weight": "9.55kg", + "dimensions": "46x26x86cm", + "color": "Black" + } + }, + { + "id": "PROD-0010", + "name": "Product 10", + "category": "Books", + "price": 251.73, + "stock": 17, + "rating": 1.8, + "reviews": 154, + "tags": [ + "bestseller" + ], + "attributes": { + "weight": "32.14kg", + "dimensions": "41x7x68cm", + "color": "Blue" + } + }, + { + "id": "PROD-0011", + "name": "Product 11", + "category": "Toys", + "price": 680.79, + "stock": 86, + "rating": 3.7, + "reviews": 158, + "tags": [ + "new" + ], + "attributes": { + "weight": "25.27kg", + "dimensions": "20x8x29cm", + "color": "Red" + } + }, + { + "id": "PROD-0012", + "name": "Product 12", + "category": "Clothing", + "price": 700.26, + "stock": 68, + "rating": 3.6, + "reviews": 487, + "tags": [ + "clearance", + "new" + ], + "attributes": { + "weight": "24.79kg", + "dimensions": "70x59x98cm", + "color": "Green" + } + }, + { + "id": "PROD-0013", + "name": "Product 13", + "category": "Toys", + "price": 257.84, + "stock": 389, + "rating": 1.5, + "reviews": 222, + "tags": [ + "new", + "sale" + ], + "attributes": { + "weight": "19.75kg", + "dimensions": "45x22x38cm", + "color": "Red" + } + }, + { + "id": "PROD-0014", + "name": "Product 14", + "category": "Clothing", + "price": 774.81, + "stock": 428, + "rating": 1.8, + "reviews": 501, + "tags": [], + "attributes": { + "weight": "18.85kg", + "dimensions": "22x74x25cm", + "color": "Red" + } + }, + { + "id": "PROD-0015", + "name": "Product 15", + "category": "Clothing", + "price": 372.94, + "stock": 177, + "rating": 2.2, + "reviews": 733, + "tags": [ + "clearance" + ], + "attributes": { + "weight": "39.34kg", + "dimensions": "41x18x95cm", + "color": "Blue" + } + }, + { + "id": "PROD-0016", + "name": "Product 16", + "category": "Books", + "price": 948.5, + "stock": 466, + "rating": 2.2, + "reviews": 288, + "tags": [ + "clearance", + "bestseller", + "new" + ], + "attributes": { + "weight": "22.33kg", + "dimensions": "56x74x44cm", + "color": "Green" + } + }, + { + "id": "PROD-0017", + "name": "Product 17", + "category": "Sports", + "price": 841.64, + "stock": 18, + "rating": 4.2, + "reviews": 545, + "tags": [ + "new", + "featured" + ], + "attributes": { + "weight": "12.44kg", + "dimensions": "60x27x17cm", + "color": "White" + } + }, + { + "id": "PROD-0018", + "name": "Product 18", + "category": "Clothing", + "price": 160.31, + "stock": 297, + "rating": 4.8, + "reviews": 277, + "tags": [ + "sale", + "clearance", + "featured" + ], + "attributes": { + "weight": "46.21kg", + "dimensions": "38x69x38cm", + "color": "Blue" + } + }, + { + "id": "PROD-0019", + "name": "Product 19", + "category": "Electronics", + "price": 916.97, + "stock": 341, + "rating": 1.2, + "reviews": 430, + "tags": [ + "bestseller" + ], + "attributes": { + "weight": "41.75kg", + "dimensions": "35x89x80cm", + "color": "White" + } + }, + { + "id": "PROD-0020", + "name": "Product 20", + "category": "Sports", + "price": 692.34, + "stock": 299, + "rating": 3.3, + "reviews": 773, + "tags": [ + "new", + "featured" + ], + "attributes": { + "weight": "4.69kg", + "dimensions": "100x81x58cm", + "color": "Red" + } + }, + { + "id": "PROD-0021", + "name": "Product 21", + "category": "Sports", + "price": 260.95, + "stock": 287, + "rating": 1.1, + "reviews": 428, + "tags": [ + "bestseller", + "clearance", + "new" + ], + "attributes": { + "weight": "15.25kg", + "dimensions": "36x22x100cm", + "color": "Blue" + } + }, + { + "id": "PROD-0022", + "name": "Product 22", + "category": "Books", + "price": 885.23, + "stock": 290, + "rating": 2.4, + "reviews": 449, + "tags": [ + "bestseller", + "new" + ], + "attributes": { + "weight": "13.01kg", + "dimensions": "99x74x74cm", + "color": "Red" + } + }, + { + "id": "PROD-0023", + "name": "Product 23", + "category": "Electronics", + "price": 359.43, + "stock": 408, + "rating": 4.4, + "reviews": 630, + "tags": [ + "bestseller" + ], + "attributes": { + "weight": "33.24kg", + "dimensions": "65x97x39cm", + "color": "Green" + } + }, + { + "id": "PROD-0024", + "name": "Product 24", + "category": "Electronics", + "price": 106.54, + "stock": 306, + "rating": 4.7, + "reviews": 464, + "tags": [], + "attributes": { + "weight": "24.04kg", + "dimensions": "97x69x46cm", + "color": "White" + } + }, + { + "id": "PROD-0025", + "name": "Product 25", + "category": "Sports", + "price": 861.07, + "stock": 169, + "rating": 3.2, + "reviews": 978, + "tags": [ + "new", + "clearance", + "featured" + ], + "attributes": { + "weight": "42.72kg", + "dimensions": "13x55x86cm", + "color": "Green" + } + }, + { + "id": "PROD-0026", + "name": "Product 26", + "category": "Clothing", + "price": 124.48, + "stock": 75, + "rating": 4.0, + "reviews": 871, + "tags": [ + "sale" + ], + "attributes": { + "weight": "25.57kg", + "dimensions": "61x36x24cm", + "color": "Green" + } + }, + { + "id": "PROD-0027", + "name": "Product 27", + "category": "Home & Garden", + "price": 482.56, + "stock": 458, + "rating": 2.9, + "reviews": 879, + "tags": [ + "featured" + ], + "attributes": { + "weight": "33.27kg", + "dimensions": "62x68x54cm", + "color": "Silver" + } + }, + { + "id": "PROD-0028", + "name": "Product 28", + "category": "Books", + "price": 30.96, + "stock": 115, + "rating": 4.5, + "reviews": 110, + "tags": [], + "attributes": { + "weight": "36.56kg", + "dimensions": "89x77x17cm", + "color": "Red" + } + }, + { + "id": "PROD-0029", + "name": "Product 29", + "category": "Books", + "price": 843.46, + "stock": 487, + "rating": 1.2, + "reviews": 628, + "tags": [], + "attributes": { + "weight": "49.60kg", + "dimensions": "85x7x97cm", + "color": "Silver" + } + }, + { + "id": "PROD-0030", + "name": "Product 30", + "category": "Clothing", + "price": 483.22, + "stock": 208, + "rating": 4.6, + "reviews": 32, + "tags": [ + "bestseller", + "featured", + "clearance" + ], + "attributes": { + "weight": "36.23kg", + "dimensions": "94x27x41cm", + "color": "Red" + } + }, + { + "id": "PROD-0031", + "name": "Product 31", + "category": "Sports", + "price": 772.22, + "stock": 174, + "rating": 1.2, + "reviews": 230, + "tags": [], + "attributes": { + "weight": "17.34kg", + "dimensions": "71x56x36cm", + "color": "Blue" + } + }, + { + "id": "PROD-0032", + "name": "Product 32", + "category": "Clothing", + "price": 803.45, + "stock": 228, + "rating": 1.3, + "reviews": 370, + "tags": [ + "featured", + "clearance" + ], + "attributes": { + "weight": "43.43kg", + "dimensions": "22x79x5cm", + "color": "Blue" + } + }, + { + "id": "PROD-0033", + "name": "Product 33", + "category": "Electronics", + "price": 722.65, + "stock": 468, + "rating": 2.2, + "reviews": 233, + "tags": [ + "clearance", + "new", + "bestseller" + ], + "attributes": { + "weight": "43.26kg", + "dimensions": "58x59x48cm", + "color": "Green" + } + }, + { + "id": "PROD-0034", + "name": "Product 34", + "category": "Electronics", + "price": 455.72, + "stock": 331, + "rating": 4.7, + "reviews": 675, + "tags": [ + "sale" + ], + "attributes": { + "weight": "17.45kg", + "dimensions": "50x56x62cm", + "color": "Red" + } + }, + { + "id": "PROD-0035", + "name": "Product 35", + "category": "Books", + "price": 843.86, + "stock": 12, + "rating": 2.6, + "reviews": 485, + "tags": [], + "attributes": { + "weight": "38.17kg", + "dimensions": "43x36x50cm", + "color": "Silver" + } + }, + { + "id": "PROD-0036", + "name": "Product 36", + "category": "Sports", + "price": 295.41, + "stock": 165, + "rating": 2.3, + "reviews": 371, + "tags": [ + "clearance", + "bestseller", + "sale" + ], + "attributes": { + "weight": "43.69kg", + "dimensions": "62x75x98cm", + "color": "Blue" + } + }, + { + "id": "PROD-0037", + "name": "Product 37", + "category": "Sports", + "price": 247.51, + "stock": 388, + "rating": 3.1, + "reviews": 564, + "tags": [ + "new", + "clearance" + ], + "attributes": { + "weight": "6.58kg", + "dimensions": "45x73x86cm", + "color": "Green" + } + }, + { + "id": "PROD-0038", + "name": "Product 38", + "category": "Electronics", + "price": 72.51, + "stock": 343, + "rating": 2.8, + "reviews": 232, + "tags": [ + "clearance", + "bestseller", + "featured" + ], + "attributes": { + "weight": "45.87kg", + "dimensions": "91x8x89cm", + "color": "Black" + } + }, + { + "id": "PROD-0039", + "name": "Product 39", + "category": "Home & Garden", + "price": 850.38, + "stock": 20, + "rating": 4.2, + "reviews": 105, + "tags": [ + "featured", + "new", + "clearance" + ], + "attributes": { + "weight": "42.79kg", + "dimensions": "45x73x5cm", + "color": "Black" + } + }, + { + "id": "PROD-0040", + "name": "Product 40", + "category": "Toys", + "price": 175.34, + "stock": 410, + "rating": 2.5, + "reviews": 901, + "tags": [ + "featured" + ], + "attributes": { + "weight": "8.39kg", + "dimensions": "84x85x65cm", + "color": "White" + } + }, + { + "id": "PROD-0041", + "name": "Product 41", + "category": "Sports", + "price": 659.8, + "stock": 148, + "rating": 4.3, + "reviews": 188, + "tags": [ + "clearance", + "new" + ], + "attributes": { + "weight": "37.77kg", + "dimensions": "38x34x87cm", + "color": "Green" + } + }, + { + "id": "PROD-0042", + "name": "Product 42", + "category": "Clothing", + "price": 323.34, + "stock": 167, + "rating": 2.5, + "reviews": 562, + "tags": [ + "bestseller", + "clearance", + "new" + ], + "attributes": { + "weight": "2.27kg", + "dimensions": "92x26x75cm", + "color": "Green" + } + }, + { + "id": "PROD-0043", + "name": "Product 43", + "category": "Sports", + "price": 451.01, + "stock": 378, + "rating": 2.4, + "reviews": 774, + "tags": [ + "bestseller", + "sale", + "new" + ], + "attributes": { + "weight": "42.74kg", + "dimensions": "19x96x60cm", + "color": "Blue" + } + }, + { + "id": "PROD-0044", + "name": "Product 44", + "category": "Toys", + "price": 889.57, + "stock": 10, + "rating": 3.0, + "reviews": 43, + "tags": [], + "attributes": { + "weight": "20.18kg", + "dimensions": "56x60x70cm", + "color": "Silver" + } + }, + { + "id": "PROD-0045", + "name": "Product 45", + "category": "Sports", + "price": 174.93, + "stock": 16, + "rating": 4.3, + "reviews": 745, + "tags": [ + "bestseller" + ], + "attributes": { + "weight": "31.28kg", + "dimensions": "93x48x64cm", + "color": "Green" + } + }, + { + "id": "PROD-0046", + "name": "Product 46", + "category": "Electronics", + "price": 368.71, + "stock": 383, + "rating": 2.2, + "reviews": 811, + "tags": [], + "attributes": { + "weight": "23.67kg", + "dimensions": "13x38x17cm", + "color": "Green" + } + }, + { + "id": "PROD-0047", + "name": "Product 47", + "category": "Home & Garden", + "price": 23.21, + "stock": 486, + "rating": 1.2, + "reviews": 69, + "tags": [ + "clearance", + "featured", + "sale" + ], + "attributes": { + "weight": "21.20kg", + "dimensions": "73x15x79cm", + "color": "Blue" + } + }, + { + "id": "PROD-0048", + "name": "Product 48", + "category": "Clothing", + "price": 711.65, + "stock": 207, + "rating": 1.9, + "reviews": 628, + "tags": [ + "featured", + "bestseller" + ], + "attributes": { + "weight": "39.70kg", + "dimensions": "60x42x44cm", + "color": "Blue" + } + }, + { + "id": "PROD-0049", + "name": "Product 49", + "category": "Sports", + "price": 628.92, + "stock": 256, + "rating": 4.3, + "reviews": 404, + "tags": [], + "attributes": { + "weight": "48.04kg", + "dimensions": "45x38x15cm", + "color": "White" + } + }, + { + "id": "PROD-0050", + "name": "Product 50", + "category": "Books", + "price": 638.96, + "stock": 403, + "rating": 3.4, + "reviews": 290, + "tags": [ + "bestseller", + "clearance" + ], + "attributes": { + "weight": "13.70kg", + "dimensions": "43x22x30cm", + "color": "Red" + } + }, + { + "id": "PROD-0051", + "name": "Product 51", + "category": "Home & Garden", + "price": 394.01, + "stock": 95, + "rating": 4.0, + "reviews": 126, + "tags": [], + "attributes": { + "weight": "47.95kg", + "dimensions": "49x5x73cm", + "color": "Silver" + } + }, + { + "id": "PROD-0052", + "name": "Product 52", + "category": "Electronics", + "price": 327.45, + "stock": 291, + "rating": 2.6, + "reviews": 441, + "tags": [ + "new", + "bestseller" + ], + "attributes": { + "weight": "21.01kg", + "dimensions": "18x11x26cm", + "color": "Red" + } + }, + { + "id": "PROD-0053", + "name": "Product 53", + "category": "Electronics", + "price": 111.66, + "stock": 193, + "rating": 1.4, + "reviews": 232, + "tags": [ + "clearance", + "sale" + ], + "attributes": { + "weight": "5.70kg", + "dimensions": "9x68x42cm", + "color": "White" + } + }, + { + "id": "PROD-0054", + "name": "Product 54", + "category": "Sports", + "price": 593.62, + "stock": 346, + "rating": 3.6, + "reviews": 523, + "tags": [], + "attributes": { + "weight": "18.09kg", + "dimensions": "29x85x89cm", + "color": "Silver" + } + }, + { + "id": "PROD-0055", + "name": "Product 55", + "category": "Electronics", + "price": 740.79, + "stock": 283, + "rating": 4.0, + "reviews": 275, + "tags": [ + "featured", + "bestseller", + "clearance" + ], + "attributes": { + "weight": "10.10kg", + "dimensions": "31x26x73cm", + "color": "Blue" + } + }, + { + "id": "PROD-0056", + "name": "Product 56", + "category": "Toys", + "price": 459.44, + "stock": 110, + "rating": 3.0, + "reviews": 504, + "tags": [], + "attributes": { + "weight": "14.25kg", + "dimensions": "45x74x7cm", + "color": "Red" + } + }, + { + "id": "PROD-0057", + "name": "Product 57", + "category": "Home & Garden", + "price": 375.24, + "stock": 360, + "rating": 4.0, + "reviews": 607, + "tags": [ + "sale", + "featured", + "clearance" + ], + "attributes": { + "weight": "15.73kg", + "dimensions": "24x21x52cm", + "color": "White" + } + }, + { + "id": "PROD-0058", + "name": "Product 58", + "category": "Books", + "price": 650.3, + "stock": 63, + "rating": 4.4, + "reviews": 324, + "tags": [ + "featured", + "bestseller" + ], + "attributes": { + "weight": "29.04kg", + "dimensions": "61x98x7cm", + "color": "White" + } + }, + { + "id": "PROD-0059", + "name": "Product 59", + "category": "Clothing", + "price": 300.13, + "stock": 162, + "rating": 2.6, + "reviews": 133, + "tags": [ + "featured", + "new" + ], + "attributes": { + "weight": "20.99kg", + "dimensions": "79x51x31cm", + "color": "Blue" + } + }, + { + "id": "PROD-0060", + "name": "Product 60", + "category": "Toys", + "price": 218.36, + "stock": 436, + "rating": 3.7, + "reviews": 624, + "tags": [ + "clearance", + "featured" + ], + "attributes": { + "weight": "26.10kg", + "dimensions": "13x89x66cm", + "color": "Silver" + } + }, + { + "id": "PROD-0061", + "name": "Product 61", + "category": "Clothing", + "price": 740.83, + "stock": 193, + "rating": 2.1, + "reviews": 842, + "tags": [ + "bestseller", + "new", + "sale" + ], + "attributes": { + "weight": "14.08kg", + "dimensions": "69x68x78cm", + "color": "Red" + } + }, + { + "id": "PROD-0062", + "name": "Product 62", + "category": "Home & Garden", + "price": 119.7, + "stock": 145, + "rating": 3.8, + "reviews": 99, + "tags": [ + "sale" + ], + "attributes": { + "weight": "33.76kg", + "dimensions": "33x17x36cm", + "color": "Black" + } + }, + { + "id": "PROD-0063", + "name": "Product 63", + "category": "Clothing", + "price": 638.62, + "stock": 134, + "rating": 3.6, + "reviews": 810, + "tags": [ + "bestseller" + ], + "attributes": { + "weight": "18.20kg", + "dimensions": "44x30x58cm", + "color": "Green" + } + }, + { + "id": "PROD-0064", + "name": "Product 64", + "category": "Electronics", + "price": 164.17, + "stock": 387, + "rating": 1.6, + "reviews": 265, + "tags": [ + "new" + ], + "attributes": { + "weight": "0.70kg", + "dimensions": "94x26x28cm", + "color": "Blue" + } + }, + { + "id": "PROD-0065", + "name": "Product 65", + "category": "Sports", + "price": 136.28, + "stock": 71, + "rating": 4.3, + "reviews": 576, + "tags": [ + "new", + "featured" + ], + "attributes": { + "weight": "38.85kg", + "dimensions": "30x29x7cm", + "color": "White" + } + }, + { + "id": "PROD-0066", + "name": "Product 66", + "category": "Books", + "price": 559.52, + "stock": 176, + "rating": 1.4, + "reviews": 574, + "tags": [], + "attributes": { + "weight": "49.81kg", + "dimensions": "54x23x92cm", + "color": "Green" + } + }, + { + "id": "PROD-0067", + "name": "Product 67", + "category": "Home & Garden", + "price": 863.0, + "stock": 439, + "rating": 1.4, + "reviews": 99, + "tags": [ + "sale", + "bestseller" + ], + "attributes": { + "weight": "48.15kg", + "dimensions": "56x7x29cm", + "color": "Blue" + } + }, + { + "id": "PROD-0068", + "name": "Product 68", + "category": "Books", + "price": 25.17, + "stock": 32, + "rating": 3.9, + "reviews": 56, + "tags": [], + "attributes": { + "weight": "9.77kg", + "dimensions": "41x47x97cm", + "color": "Black" + } + }, + { + "id": "PROD-0069", + "name": "Product 69", + "category": "Sports", + "price": 126.38, + "stock": 300, + "rating": 3.7, + "reviews": 451, + "tags": [ + "bestseller" + ], + "attributes": { + "weight": "49.58kg", + "dimensions": "6x26x12cm", + "color": "Blue" + } + }, + { + "id": "PROD-0070", + "name": "Product 70", + "category": "Clothing", + "price": 75.24, + "stock": 496, + "rating": 3.5, + "reviews": 235, + "tags": [ + "sale", + "clearance" + ], + "attributes": { + "weight": "27.00kg", + "dimensions": "80x88x34cm", + "color": "Blue" + } + }, + { + "id": "PROD-0071", + "name": "Product 71", + "category": "Sports", + "price": 127.4, + "stock": 275, + "rating": 4.2, + "reviews": 345, + "tags": [ + "new" + ], + "attributes": { + "weight": "10.94kg", + "dimensions": "85x87x26cm", + "color": "White" + } + }, + { + "id": "PROD-0072", + "name": "Product 72", + "category": "Toys", + "price": 797.92, + "stock": 207, + "rating": 1.1, + "reviews": 960, + "tags": [ + "new", + "sale", + "clearance" + ], + "attributes": { + "weight": "22.29kg", + "dimensions": "76x35x34cm", + "color": "Blue" + } + }, + { + "id": "PROD-0073", + "name": "Product 73", + "category": "Electronics", + "price": 373.93, + "stock": 142, + "rating": 3.3, + "reviews": 271, + "tags": [], + "attributes": { + "weight": "40.94kg", + "dimensions": "86x82x28cm", + "color": "Red" + } + }, + { + "id": "PROD-0074", + "name": "Product 74", + "category": "Toys", + "price": 14.82, + "stock": 199, + "rating": 2.8, + "reviews": 647, + "tags": [ + "new", + "clearance" + ], + "attributes": { + "weight": "12.57kg", + "dimensions": "98x67x81cm", + "color": "Silver" + } + }, + { + "id": "PROD-0075", + "name": "Product 75", + "category": "Toys", + "price": 993.25, + "stock": 12, + "rating": 1.1, + "reviews": 714, + "tags": [], + "attributes": { + "weight": "46.40kg", + "dimensions": "79x35x26cm", + "color": "Black" + } + }, + { + "id": "PROD-0076", + "name": "Product 76", + "category": "Electronics", + "price": 460.45, + "stock": 103, + "rating": 2.2, + "reviews": 959, + "tags": [ + "featured", + "new", + "sale" + ], + "attributes": { + "weight": "9.75kg", + "dimensions": "41x9x88cm", + "color": "Blue" + } + }, + { + "id": "PROD-0077", + "name": "Product 77", + "category": "Clothing", + "price": 250.7, + "stock": 277, + "rating": 1.5, + "reviews": 982, + "tags": [], + "attributes": { + "weight": "16.07kg", + "dimensions": "80x72x76cm", + "color": "White" + } + }, + { + "id": "PROD-0078", + "name": "Product 78", + "category": "Books", + "price": 647.31, + "stock": 262, + "rating": 3.9, + "reviews": 46, + "tags": [ + "bestseller", + "new" + ], + "attributes": { + "weight": "29.73kg", + "dimensions": "17x51x63cm", + "color": "Blue" + } + }, + { + "id": "PROD-0079", + "name": "Product 79", + "category": "Electronics", + "price": 520.25, + "stock": 330, + "rating": 2.4, + "reviews": 442, + "tags": [], + "attributes": { + "weight": "43.71kg", + "dimensions": "64x72x67cm", + "color": "Blue" + } + }, + { + "id": "PROD-0080", + "name": "Product 80", + "category": "Electronics", + "price": 404.75, + "stock": 319, + "rating": 2.3, + "reviews": 428, + "tags": [ + "featured" + ], + "attributes": { + "weight": "14.76kg", + "dimensions": "77x61x47cm", + "color": "Silver" + } + }, + { + "id": "PROD-0081", + "name": "Product 81", + "category": "Books", + "price": 545.97, + "stock": 439, + "rating": 4.4, + "reviews": 498, + "tags": [ + "clearance", + "new" + ], + "attributes": { + "weight": "18.83kg", + "dimensions": "37x94x28cm", + "color": "Black" + } + }, + { + "id": "PROD-0082", + "name": "Product 82", + "category": "Books", + "price": 62.1, + "stock": 461, + "rating": 1.3, + "reviews": 7, + "tags": [], + "attributes": { + "weight": "15.58kg", + "dimensions": "67x28x68cm", + "color": "Blue" + } + }, + { + "id": "PROD-0083", + "name": "Product 83", + "category": "Electronics", + "price": 440.61, + "stock": 14, + "rating": 1.7, + "reviews": 618, + "tags": [ + "clearance", + "new", + "bestseller" + ], + "attributes": { + "weight": "15.03kg", + "dimensions": "84x34x78cm", + "color": "Silver" + } + }, + { + "id": "PROD-0084", + "name": "Product 84", + "category": "Sports", + "price": 924.69, + "stock": 211, + "rating": 1.8, + "reviews": 141, + "tags": [ + "new", + "sale" + ], + "attributes": { + "weight": "13.55kg", + "dimensions": "56x26x27cm", + "color": "Black" + } + }, + { + "id": "PROD-0085", + "name": "Product 85", + "category": "Sports", + "price": 489.04, + "stock": 368, + "rating": 1.4, + "reviews": 559, + "tags": [ + "sale" + ], + "attributes": { + "weight": "30.32kg", + "dimensions": "36x78x30cm", + "color": "Red" + } + }, + { + "id": "PROD-0086", + "name": "Product 86", + "category": "Electronics", + "price": 89.95, + "stock": 198, + "rating": 4.6, + "reviews": 664, + "tags": [ + "clearance" + ], + "attributes": { + "weight": "44.06kg", + "dimensions": "33x31x62cm", + "color": "Green" + } + }, + { + "id": "PROD-0087", + "name": "Product 87", + "category": "Electronics", + "price": 847.9, + "stock": 184, + "rating": 2.7, + "reviews": 150, + "tags": [], + "attributes": { + "weight": "46.68kg", + "dimensions": "66x45x43cm", + "color": "Red" + } + }, + { + "id": "PROD-0088", + "name": "Product 88", + "category": "Books", + "price": 108.13, + "stock": 457, + "rating": 1.0, + "reviews": 990, + "tags": [ + "sale" + ], + "attributes": { + "weight": "36.64kg", + "dimensions": "25x40x54cm", + "color": "White" + } + }, + { + "id": "PROD-0089", + "name": "Product 89", + "category": "Home & Garden", + "price": 391.83, + "stock": 356, + "rating": 1.6, + "reviews": 413, + "tags": [ + "featured", + "bestseller" + ], + "attributes": { + "weight": "45.19kg", + "dimensions": "10x79x54cm", + "color": "Red" + } + }, + { + "id": "PROD-0090", + "name": "Product 90", + "category": "Home & Garden", + "price": 108.15, + "stock": 128, + "rating": 3.6, + "reviews": 14, + "tags": [], + "attributes": { + "weight": "18.71kg", + "dimensions": "75x65x26cm", + "color": "Black" + } + }, + { + "id": "PROD-0091", + "name": "Product 91", + "category": "Clothing", + "price": 965.14, + "stock": 394, + "rating": 4.2, + "reviews": 299, + "tags": [ + "clearance", + "sale" + ], + "attributes": { + "weight": "22.04kg", + "dimensions": "90x78x9cm", + "color": "Silver" + } + }, + { + "id": "PROD-0092", + "name": "Product 92", + "category": "Home & Garden", + "price": 927.09, + "stock": 74, + "rating": 4.8, + "reviews": 230, + "tags": [ + "clearance" + ], + "attributes": { + "weight": "8.22kg", + "dimensions": "12x50x58cm", + "color": "Silver" + } + }, + { + "id": "PROD-0093", + "name": "Product 93", + "category": "Home & Garden", + "price": 244.59, + "stock": 83, + "rating": 3.7, + "reviews": 382, + "tags": [ + "bestseller", + "featured" + ], + "attributes": { + "weight": "39.15kg", + "dimensions": "99x31x75cm", + "color": "Silver" + } + }, + { + "id": "PROD-0094", + "name": "Product 94", + "category": "Home & Garden", + "price": 812.38, + "stock": 32, + "rating": 1.4, + "reviews": 434, + "tags": [], + "attributes": { + "weight": "27.05kg", + "dimensions": "13x31x70cm", + "color": "Blue" + } + }, + { + "id": "PROD-0095", + "name": "Product 95", + "category": "Sports", + "price": 246.52, + "stock": 432, + "rating": 1.6, + "reviews": 672, + "tags": [], + "attributes": { + "weight": "13.67kg", + "dimensions": "52x6x8cm", + "color": "Silver" + } + }, + { + "id": "PROD-0096", + "name": "Product 96", + "category": "Books", + "price": 899.1, + "stock": 215, + "rating": 2.2, + "reviews": 209, + "tags": [ + "featured" + ], + "attributes": { + "weight": "4.49kg", + "dimensions": "30x85x27cm", + "color": "Green" + } + }, + { + "id": "PROD-0097", + "name": "Product 97", + "category": "Clothing", + "price": 780.73, + "stock": 19, + "rating": 1.4, + "reviews": 574, + "tags": [ + "clearance" + ], + "attributes": { + "weight": "40.84kg", + "dimensions": "78x37x77cm", + "color": "Silver" + } + }, + { + "id": "PROD-0098", + "name": "Product 98", + "category": "Home & Garden", + "price": 615.49, + "stock": 289, + "rating": 4.0, + "reviews": 543, + "tags": [ + "clearance", + "new", + "bestseller" + ], + "attributes": { + "weight": "22.94kg", + "dimensions": "51x12x94cm", + "color": "Black" + } + }, + { + "id": "PROD-0099", + "name": "Product 99", + "category": "Toys", + "price": 907.69, + "stock": 136, + "rating": 2.7, + "reviews": 135, + "tags": [], + "attributes": { + "weight": "2.36kg", + "dimensions": "40x97x19cm", + "color": "Black" + } + }, + { + "id": "PROD-0100", + "name": "Product 100", + "category": "Electronics", + "price": 318.99, + "stock": 397, + "rating": 2.5, + "reviews": 468, + "tags": [], + "attributes": { + "weight": "42.54kg", + "dimensions": "64x41x58cm", + "color": "White" + } + } +] \ No newline at end of file diff --git a/synthetic/ecommerce_catalog.metadata.json b/synthetic/ecommerce_catalog.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..04db7b831b9ae74da40cb8a97fcf1756a65e8a57 --- /dev/null +++ b/synthetic/ecommerce_catalog.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_ecommerce_catalog", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.241057", + "size_bytes": 31452, + "description": "100 product catalog with varied attributes", + "url": "" +} \ No newline at end of file diff --git a/synthetic/event_stream.json b/synthetic/event_stream.json new file mode 100644 index 0000000000000000000000000000000000000000..ecf059c55f6362c5c51c818a05d6373fd88a38fd --- /dev/null +++ b/synthetic/event_stream.json @@ -0,0 +1,2102 @@ +[ + { + "event_id": "evt-000001", + "type": "item.delete", + "timestamp": 1730764800, + "user_id": 4, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "200.110.211.207", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000002", + "type": "user.login", + "timestamp": 1730764830, + "user_id": 33, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "109.113.185.105", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000003", + "type": "item.update", + "timestamp": 1730764860, + "user_id": 78, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "54.178.143.244", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000004", + "type": "user.logout", + "timestamp": 1730764890, + "user_id": 93, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "100.12.78.46", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000005", + "type": "user.login", + "timestamp": 1730764920, + "user_id": 72, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "126.220.36.169", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000006", + "type": "item.delete", + "timestamp": 1730764950, + "user_id": 21, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "188.87.204.238", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000007", + "type": "item.update", + "timestamp": 1730764980, + "user_id": 75, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "33.21.105.123", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000008", + "type": "user.logout", + "timestamp": 1730765010, + "user_id": 13, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "249.214.156.81", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000009", + "type": "user.login", + "timestamp": 1730765040, + "user_id": 79, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "170.62.188.103", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000010", + "type": "user.logout", + "timestamp": 1730765070, + "user_id": 1, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "130.209.104.64", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000011", + "type": "item.update", + "timestamp": 1730765100, + "user_id": 30, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "18.117.139.247", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000012", + "type": "item.create", + "timestamp": 1730765130, + "user_id": 2, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "89.140.227.33", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000013", + "type": "user.login", + "timestamp": 1730765160, + "user_id": 1, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "233.85.242.110", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000014", + "type": "item.delete", + "timestamp": 1730765190, + "user_id": 3, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "39.241.127.209", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000015", + "type": "item.delete", + "timestamp": 1730765220, + "user_id": 68, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "32.131.121.104", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000016", + "type": "item.update", + "timestamp": 1730765250, + "user_id": 40, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "114.70.102.191", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000017", + "type": "user.login", + "timestamp": 1730765280, + "user_id": 16, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "3.26.183.119", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000018", + "type": "item.update", + "timestamp": 1730765310, + "user_id": 83, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "147.152.215.111", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000019", + "type": "item.update", + "timestamp": 1730765340, + "user_id": 77, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "179.203.134.204", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000020", + "type": "user.login", + "timestamp": 1730765370, + "user_id": 80, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "96.253.176.84", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000021", + "type": "item.delete", + "timestamp": 1730765400, + "user_id": 47, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "187.32.39.173", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000022", + "type": "item.update", + "timestamp": 1730765430, + "user_id": 10, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "17.156.5.85", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000023", + "type": "item.create", + "timestamp": 1730765460, + "user_id": 82, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "59.2.30.58", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000024", + "type": "user.login", + "timestamp": 1730765490, + "user_id": 55, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "21.142.32.251", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000025", + "type": "user.login", + "timestamp": 1730765520, + "user_id": 93, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "8.228.36.234", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000026", + "type": "user.logout", + "timestamp": 1730765550, + "user_id": 21, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "63.128.136.205", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000027", + "type": "item.create", + "timestamp": 1730765580, + "user_id": 46, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "232.78.227.19", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000028", + "type": "item.update", + "timestamp": 1730765610, + "user_id": 74, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "203.61.57.241", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000029", + "type": "item.delete", + "timestamp": 1730765640, + "user_id": 87, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "186.211.102.113", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000030", + "type": "user.logout", + "timestamp": 1730765670, + "user_id": 88, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "33.49.8.41", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000031", + "type": "item.update", + "timestamp": 1730765700, + "user_id": 1, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "61.35.104.55", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000032", + "type": "item.update", + "timestamp": 1730765730, + "user_id": 46, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "26.159.230.151", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000033", + "type": "user.logout", + "timestamp": 1730765760, + "user_id": 65, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "130.81.149.251", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000034", + "type": "item.create", + "timestamp": 1730765790, + "user_id": 64, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "235.82.132.200", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000035", + "type": "item.create", + "timestamp": 1730765820, + "user_id": 28, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "110.115.55.30", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000036", + "type": "item.update", + "timestamp": 1730765850, + "user_id": 32, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "51.108.16.34", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000037", + "type": "item.update", + "timestamp": 1730765880, + "user_id": 27, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "235.146.213.85", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000038", + "type": "item.create", + "timestamp": 1730765910, + "user_id": 100, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "41.105.215.185", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000039", + "type": "item.delete", + "timestamp": 1730765940, + "user_id": 90, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "93.208.239.6", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000040", + "type": "item.update", + "timestamp": 1730765970, + "user_id": 88, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "103.129.215.19", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000041", + "type": "user.logout", + "timestamp": 1730766000, + "user_id": 29, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "198.179.86.88", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000042", + "type": "item.delete", + "timestamp": 1730766030, + "user_id": 4, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "96.163.160.165", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000043", + "type": "item.delete", + "timestamp": 1730766060, + "user_id": 70, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "41.173.252.64", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000044", + "type": "item.update", + "timestamp": 1730766090, + "user_id": 47, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "188.45.10.102", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000045", + "type": "user.login", + "timestamp": 1730766120, + "user_id": 24, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "151.123.27.116", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000046", + "type": "item.delete", + "timestamp": 1730766150, + "user_id": 11, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "238.105.188.174", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000047", + "type": "item.create", + "timestamp": 1730766180, + "user_id": 74, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "7.224.86.104", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000048", + "type": "item.create", + "timestamp": 1730766210, + "user_id": 91, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "64.127.120.120", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000049", + "type": "item.delete", + "timestamp": 1730766240, + "user_id": 79, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "46.104.201.192", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000050", + "type": "item.update", + "timestamp": 1730766270, + "user_id": 49, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "18.93.51.38", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000051", + "type": "item.update", + "timestamp": 1730766300, + "user_id": 43, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "134.235.72.71", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000052", + "type": "user.logout", + "timestamp": 1730766330, + "user_id": 43, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "123.23.73.7", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000053", + "type": "item.delete", + "timestamp": 1730766360, + "user_id": 54, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "113.78.210.6", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000054", + "type": "item.create", + "timestamp": 1730766390, + "user_id": 9, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "232.220.165.177", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000055", + "type": "item.update", + "timestamp": 1730766420, + "user_id": 35, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "100.75.207.253", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000056", + "type": "user.login", + "timestamp": 1730766450, + "user_id": 86, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "24.154.186.205", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000057", + "type": "user.login", + "timestamp": 1730766480, + "user_id": 59, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "140.15.185.83", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000058", + "type": "user.login", + "timestamp": 1730766510, + "user_id": 97, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "220.183.196.213", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000059", + "type": "user.logout", + "timestamp": 1730766540, + "user_id": 37, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "175.4.81.194", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000060", + "type": "user.login", + "timestamp": 1730766570, + "user_id": 39, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "114.44.191.187", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000061", + "type": "user.logout", + "timestamp": 1730766600, + "user_id": 65, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "248.139.209.145", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000062", + "type": "user.logout", + "timestamp": 1730766630, + "user_id": 73, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "65.79.25.184", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000063", + "type": "user.login", + "timestamp": 1730766660, + "user_id": 89, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "18.112.134.113", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000064", + "type": "item.update", + "timestamp": 1730766690, + "user_id": 37, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "141.193.180.73", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000065", + "type": "user.logout", + "timestamp": 1730766720, + "user_id": 27, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "155.4.124.20", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000066", + "type": "user.login", + "timestamp": 1730766750, + "user_id": 90, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "233.111.195.173", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000067", + "type": "item.delete", + "timestamp": 1730766780, + "user_id": 53, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "186.213.58.221", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000068", + "type": "user.login", + "timestamp": 1730766810, + "user_id": 58, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "44.196.115.72", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000069", + "type": "user.logout", + "timestamp": 1730766840, + "user_id": 72, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "175.20.55.165", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000070", + "type": "user.login", + "timestamp": 1730766870, + "user_id": 55, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "121.177.245.67", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000071", + "type": "user.login", + "timestamp": 1730766900, + "user_id": 59, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "85.230.186.206", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000072", + "type": "item.delete", + "timestamp": 1730766930, + "user_id": 54, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "188.118.120.5", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000073", + "type": "item.delete", + "timestamp": 1730766960, + "user_id": 87, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "192.104.101.31", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000074", + "type": "user.login", + "timestamp": 1730766990, + "user_id": 73, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "18.219.89.100", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000075", + "type": "user.logout", + "timestamp": 1730767020, + "user_id": 62, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "56.235.253.6", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000076", + "type": "item.update", + "timestamp": 1730767050, + "user_id": 21, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "221.193.196.127", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000077", + "type": "item.create", + "timestamp": 1730767080, + "user_id": 32, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "208.205.210.11", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000078", + "type": "item.create", + "timestamp": 1730767110, + "user_id": 53, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "7.37.150.68", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000079", + "type": "item.delete", + "timestamp": 1730767140, + "user_id": 82, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "33.156.111.78", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000080", + "type": "item.delete", + "timestamp": 1730767170, + "user_id": 48, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "155.130.79.190", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000081", + "type": "user.login", + "timestamp": 1730767200, + "user_id": 71, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "149.88.223.174", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000082", + "type": "item.create", + "timestamp": 1730767230, + "user_id": 26, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "65.12.239.166", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000083", + "type": "item.delete", + "timestamp": 1730767260, + "user_id": 57, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "2.88.37.239", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000084", + "type": "item.update", + "timestamp": 1730767290, + "user_id": 26, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "227.39.249.125", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000085", + "type": "item.delete", + "timestamp": 1730767320, + "user_id": 8, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "165.197.241.136", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000086", + "type": "item.update", + "timestamp": 1730767350, + "user_id": 84, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "192.193.25.134", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000087", + "type": "user.login", + "timestamp": 1730767380, + "user_id": 62, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "38.149.184.76", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000088", + "type": "item.delete", + "timestamp": 1730767410, + "user_id": 60, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "23.30.232.159", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000089", + "type": "user.login", + "timestamp": 1730767440, + "user_id": 9, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "241.160.252.31", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000090", + "type": "user.logout", + "timestamp": 1730767470, + "user_id": 30, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "218.40.125.129", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000091", + "type": "user.logout", + "timestamp": 1730767500, + "user_id": 28, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "211.157.166.138", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000092", + "type": "user.logout", + "timestamp": 1730767530, + "user_id": 87, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "125.242.34.47", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000093", + "type": "item.delete", + "timestamp": 1730767560, + "user_id": 90, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "12.187.181.119", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000094", + "type": "user.logout", + "timestamp": 1730767590, + "user_id": 30, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "138.224.1.105", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000095", + "type": "user.login", + "timestamp": 1730767620, + "user_id": 52, + "payload": { + "action": "create", + "resource": "order", + "metadata": { + "ip": "12.94.94.175", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000096", + "type": "user.logout", + "timestamp": 1730767650, + "user_id": 13, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "17.33.220.216", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000097", + "type": "item.delete", + "timestamp": 1730767680, + "user_id": 87, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "90.194.124.174", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000098", + "type": "user.logout", + "timestamp": 1730767710, + "user_id": 81, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "244.204.59.21", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000099", + "type": "item.update", + "timestamp": 1730767740, + "user_id": 24, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "86.9.230.126", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000100", + "type": "user.login", + "timestamp": 1730767770, + "user_id": 92, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "145.217.168.147", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000101", + "type": "user.login", + "timestamp": 1730767800, + "user_id": 31, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "69.193.33.102", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000102", + "type": "user.login", + "timestamp": 1730767830, + "user_id": 27, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "241.46.21.253", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000103", + "type": "item.create", + "timestamp": 1730767860, + "user_id": 30, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "151.128.212.149", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000104", + "type": "item.create", + "timestamp": 1730767890, + "user_id": 58, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "51.32.35.37", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000105", + "type": "item.create", + "timestamp": 1730767920, + "user_id": 54, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "101.53.141.37", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000106", + "type": "user.login", + "timestamp": 1730767950, + "user_id": 98, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "93.113.74.234", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000107", + "type": "item.update", + "timestamp": 1730767980, + "user_id": 23, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "102.221.232.126", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000108", + "type": "item.update", + "timestamp": 1730768010, + "user_id": 18, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "159.82.196.247", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000109", + "type": "item.delete", + "timestamp": 1730768040, + "user_id": 19, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "105.135.250.47", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000110", + "type": "item.delete", + "timestamp": 1730768070, + "user_id": 4, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "30.92.78.176", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000111", + "type": "item.update", + "timestamp": 1730768100, + "user_id": 62, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "165.200.172.121", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000112", + "type": "item.delete", + "timestamp": 1730768130, + "user_id": 66, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "50.209.69.220", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000113", + "type": "item.update", + "timestamp": 1730768160, + "user_id": 34, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "198.172.186.1", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000114", + "type": "item.delete", + "timestamp": 1730768190, + "user_id": 26, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "90.230.190.40", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000115", + "type": "user.login", + "timestamp": 1730768220, + "user_id": 12, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "121.164.61.222", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000116", + "type": "user.login", + "timestamp": 1730768250, + "user_id": 52, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "113.58.43.63", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000117", + "type": "item.delete", + "timestamp": 1730768280, + "user_id": 60, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "67.209.9.252", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000118", + "type": "user.login", + "timestamp": 1730768310, + "user_id": 69, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "221.36.69.82", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000119", + "type": "item.update", + "timestamp": 1730768340, + "user_id": 83, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "157.119.20.100", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000120", + "type": "item.update", + "timestamp": 1730768370, + "user_id": 42, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "15.82.57.30", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000121", + "type": "user.logout", + "timestamp": 1730768400, + "user_id": 77, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "51.24.132.164", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000122", + "type": "user.logout", + "timestamp": 1730768430, + "user_id": 6, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "56.199.235.208", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000123", + "type": "user.logout", + "timestamp": 1730768460, + "user_id": 57, + "payload": { + "action": "read", + "resource": "product", + "metadata": { + "ip": "190.162.94.154", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000124", + "type": "user.login", + "timestamp": 1730768490, + "user_id": 12, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "180.57.252.113", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000125", + "type": "user.login", + "timestamp": 1730768520, + "user_id": 15, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "241.130.254.135", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000126", + "type": "item.update", + "timestamp": 1730768550, + "user_id": 22, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "213.83.72.70", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000127", + "type": "item.create", + "timestamp": 1730768580, + "user_id": 45, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "29.111.168.251", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000128", + "type": "item.delete", + "timestamp": 1730768610, + "user_id": 66, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "241.27.52.110", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000129", + "type": "user.logout", + "timestamp": 1730768640, + "user_id": 4, + "payload": { + "action": "update", + "resource": "order", + "metadata": { + "ip": "113.115.210.214", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000130", + "type": "user.login", + "timestamp": 1730768670, + "user_id": 82, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "54.158.84.81", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000131", + "type": "item.create", + "timestamp": 1730768700, + "user_id": 33, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "108.94.72.201", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000132", + "type": "user.logout", + "timestamp": 1730768730, + "user_id": 1, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "6.128.43.185", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000133", + "type": "item.delete", + "timestamp": 1730768760, + "user_id": 9, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "235.110.218.113", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000134", + "type": "item.create", + "timestamp": 1730768790, + "user_id": 71, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "84.109.57.245", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000135", + "type": "item.create", + "timestamp": 1730768820, + "user_id": 78, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "238.47.65.188", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000136", + "type": "item.create", + "timestamp": 1730768850, + "user_id": 96, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "173.134.14.203", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000137", + "type": "item.update", + "timestamp": 1730768880, + "user_id": 31, + "payload": { + "action": "create", + "resource": "user", + "metadata": { + "ip": "27.154.117.103", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000138", + "type": "user.login", + "timestamp": 1730768910, + "user_id": 59, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "37.104.215.129", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000139", + "type": "item.update", + "timestamp": 1730768940, + "user_id": 74, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "132.162.19.18", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000140", + "type": "user.login", + "timestamp": 1730768970, + "user_id": 45, + "payload": { + "action": "read", + "resource": "user", + "metadata": { + "ip": "215.253.154.37", + "user_agent": "Firefox" + } + } + }, + { + "event_id": "evt-000141", + "type": "user.logout", + "timestamp": 1730769000, + "user_id": 94, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "179.213.147.208", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000142", + "type": "user.logout", + "timestamp": 1730769030, + "user_id": 27, + "payload": { + "action": "delete", + "resource": "user", + "metadata": { + "ip": "28.209.218.222", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000143", + "type": "item.create", + "timestamp": 1730769060, + "user_id": 100, + "payload": { + "action": "delete", + "resource": "order", + "metadata": { + "ip": "94.192.179.19", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000144", + "type": "item.delete", + "timestamp": 1730769090, + "user_id": 53, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "45.137.169.1", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000145", + "type": "user.logout", + "timestamp": 1730769120, + "user_id": 29, + "payload": { + "action": "read", + "resource": "order", + "metadata": { + "ip": "36.222.4.68", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000146", + "type": "item.create", + "timestamp": 1730769150, + "user_id": 95, + "payload": { + "action": "create", + "resource": "product", + "metadata": { + "ip": "133.70.183.249", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000147", + "type": "item.delete", + "timestamp": 1730769180, + "user_id": 93, + "payload": { + "action": "update", + "resource": "product", + "metadata": { + "ip": "184.16.204.74", + "user_agent": "Safari" + } + } + }, + { + "event_id": "evt-000148", + "type": "item.update", + "timestamp": 1730769210, + "user_id": 5, + "payload": { + "action": "delete", + "resource": "product", + "metadata": { + "ip": "135.137.207.104", + "user_agent": "Edge" + } + } + }, + { + "event_id": "evt-000149", + "type": "user.logout", + "timestamp": 1730769240, + "user_id": 53, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "159.9.210.21", + "user_agent": "Chrome" + } + } + }, + { + "event_id": "evt-000150", + "type": "item.update", + "timestamp": 1730769270, + "user_id": 73, + "payload": { + "action": "update", + "resource": "user", + "metadata": { + "ip": "43.117.126.137", + "user_agent": "Firefox" + } + } + } +] \ No newline at end of file diff --git a/synthetic/event_stream.metadata.json b/synthetic/event_stream.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d7a0b2e29eb72eca43af4093f30052e69e0f6a48 --- /dev/null +++ b/synthetic/event_stream.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_event_stream", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.289581", + "size_bytes": 41922, + "description": "150 event stream records", + "url": "" +} \ No newline at end of file diff --git a/synthetic/geographic_data.json b/synthetic/geographic_data.json new file mode 100644 index 0000000000000000000000000000000000000000..45cf1269d5b110f635b9d075ea1e03a83aedb66e --- /dev/null +++ b/synthetic/geographic_data.json @@ -0,0 +1,662 @@ +[ + { + "city": "Berlin", + "country": "Japan", + "coordinates": { + "lat": 1.24128, + "lon": 82.966439 + }, + "population": 16469697, + "timezone": "UTC+11", + "elevation_m": 2169 + }, + { + "city": "London", + "country": "France", + "coordinates": { + "lat": -64.688549, + "lon": 178.778515 + }, + "population": 1887577, + "timezone": "UTC-4", + "elevation_m": 794 + }, + { + "city": "Toronto", + "country": "USA", + "coordinates": { + "lat": -27.373787, + "lon": -167.722309 + }, + "population": 2088762, + "timezone": "UTC+4", + "elevation_m": 1239 + }, + { + "city": "Tokyo", + "country": "France", + "coordinates": { + "lat": -62.407583, + "lon": 113.118633 + }, + "population": 7314531, + "timezone": "UTC-1", + "elevation_m": 156 + }, + { + "city": "Paris", + "country": "Germany", + "coordinates": { + "lat": 72.623499, + "lon": 128.022345 + }, + "population": 9913094, + "timezone": "UTC-12", + "elevation_m": 2567 + }, + { + "city": "Tokyo", + "country": "France", + "coordinates": { + "lat": -26.230348, + "lon": 29.018347 + }, + "population": 8651785, + "timezone": "UTC+11", + "elevation_m": 2785 + }, + { + "city": "London", + "country": "Germany", + "coordinates": { + "lat": -64.830945, + "lon": 65.408962 + }, + "population": 16005613, + "timezone": "UTC-3", + "elevation_m": 576 + }, + { + "city": "Paris", + "country": "India", + "coordinates": { + "lat": -88.317102, + "lon": -162.333004 + }, + "population": 1298058, + "timezone": "UTC-7", + "elevation_m": 485 + }, + { + "city": "Sydney", + "country": "Germany", + "coordinates": { + "lat": -82.48792, + "lon": 156.448517 + }, + "population": 11024040, + "timezone": "UTC-11", + "elevation_m": 2751 + }, + { + "city": "New York", + "country": "France", + "coordinates": { + "lat": 67.194352, + "lon": 56.311205 + }, + "population": 2614568, + "timezone": "UTC+11", + "elevation_m": 565 + }, + { + "city": "Sydney", + "country": "France", + "coordinates": { + "lat": -56.604415, + "lon": 177.461817 + }, + "population": 14866305, + "timezone": "UTC+3", + "elevation_m": 188 + }, + { + "city": "Berlin", + "country": "Canada", + "coordinates": { + "lat": 67.936989, + "lon": -123.752383 + }, + "population": 2426520, + "timezone": "UTC+6", + "elevation_m": 1641 + }, + { + "city": "Mumbai", + "country": "USA", + "coordinates": { + "lat": 61.317883, + "lon": -122.267377 + }, + "population": 12869660, + "timezone": "UTC+7", + "elevation_m": 1024 + }, + { + "city": "Toronto", + "country": "Canada", + "coordinates": { + "lat": 22.282104, + "lon": -44.781913 + }, + "population": 12345652, + "timezone": "UTC+7", + "elevation_m": 2930 + }, + { + "city": "Tokyo", + "country": "Canada", + "coordinates": { + "lat": -68.872716, + "lon": -169.588489 + }, + "population": 12973201, + "timezone": "UTC+3", + "elevation_m": 2292 + }, + { + "city": "Toronto", + "country": "USA", + "coordinates": { + "lat": -73.789597, + "lon": -175.750934 + }, + "population": 11473552, + "timezone": "UTC+0", + "elevation_m": 722 + }, + { + "city": "New York", + "country": "USA", + "coordinates": { + "lat": 9.270893, + "lon": -162.823253 + }, + "population": 2477729, + "timezone": "UTC+6", + "elevation_m": 1414 + }, + { + "city": "Tokyo", + "country": "Germany", + "coordinates": { + "lat": -29.302775, + "lon": 16.233262 + }, + "population": 4183531, + "timezone": "UTC-8", + "elevation_m": 2546 + }, + { + "city": "London", + "country": "UK", + "coordinates": { + "lat": 80.696225, + "lon": 58.482284 + }, + "population": 16465974, + "timezone": "UTC+5", + "elevation_m": 711 + }, + { + "city": "Tokyo", + "country": "Canada", + "coordinates": { + "lat": 57.553764, + "lon": -141.277819 + }, + "population": 5767335, + "timezone": "UTC-6", + "elevation_m": 610 + }, + { + "city": "Paris", + "country": "Japan", + "coordinates": { + "lat": 48.318391, + "lon": 31.079418 + }, + "population": 357873, + "timezone": "UTC-9", + "elevation_m": 2179 + }, + { + "city": "New York", + "country": "Australia", + "coordinates": { + "lat": 52.773699, + "lon": 106.398602 + }, + "population": 468008, + "timezone": "UTC+10", + "elevation_m": 2013 + }, + { + "city": "Sydney", + "country": "India", + "coordinates": { + "lat": -39.109226, + "lon": -67.036165 + }, + "population": 10472334, + "timezone": "UTC-0", + "elevation_m": 429 + }, + { + "city": "Toronto", + "country": "France", + "coordinates": { + "lat": -62.779131, + "lon": 93.99376 + }, + "population": 18303286, + "timezone": "UTC-11", + "elevation_m": 2188 + }, + { + "city": "London", + "country": "USA", + "coordinates": { + "lat": 27.856236, + "lon": -108.498819 + }, + "population": 12120623, + "timezone": "UTC-1", + "elevation_m": 1864 + }, + { + "city": "Berlin", + "country": "Germany", + "coordinates": { + "lat": 58.092663, + "lon": -160.788056 + }, + "population": 9931204, + "timezone": "UTC+11", + "elevation_m": 885 + }, + { + "city": "Toronto", + "country": "India", + "coordinates": { + "lat": 35.024992, + "lon": -63.442698 + }, + "population": 425556, + "timezone": "UTC-12", + "elevation_m": 1215 + }, + { + "city": "London", + "country": "France", + "coordinates": { + "lat": 18.478519, + "lon": 150.919754 + }, + "population": 17429902, + "timezone": "UTC+12", + "elevation_m": 27 + }, + { + "city": "Mumbai", + "country": "India", + "coordinates": { + "lat": 51.596539, + "lon": 77.553867 + }, + "population": 18945854, + "timezone": "UTC-9", + "elevation_m": 516 + }, + { + "city": "Berlin", + "country": "UK", + "coordinates": { + "lat": 64.810583, + "lon": 86.095695 + }, + "population": 17972722, + "timezone": "UTC+4", + "elevation_m": 2222 + }, + { + "city": "Mumbai", + "country": "Japan", + "coordinates": { + "lat": 39.674144, + "lon": -13.47323 + }, + "population": 832500, + "timezone": "UTC+2", + "elevation_m": 2474 + }, + { + "city": "Tokyo", + "country": "Japan", + "coordinates": { + "lat": 42.444396, + "lon": 174.64809 + }, + "population": 10501140, + "timezone": "UTC+9", + "elevation_m": 1848 + }, + { + "city": "Paris", + "country": "Japan", + "coordinates": { + "lat": 9.321492, + "lon": 132.270986 + }, + "population": 14516305, + "timezone": "UTC+2", + "elevation_m": 2747 + }, + { + "city": "Sydney", + "country": "USA", + "coordinates": { + "lat": 19.975203, + "lon": -85.070117 + }, + "population": 16562356, + "timezone": "UTC+1", + "elevation_m": 2817 + }, + { + "city": "New York", + "country": "Germany", + "coordinates": { + "lat": -46.811445, + "lon": -26.287673 + }, + "population": 6057130, + "timezone": "UTC+3", + "elevation_m": 192 + }, + { + "city": "Paris", + "country": "USA", + "coordinates": { + "lat": -52.18067, + "lon": -72.86672 + }, + "population": 17273338, + "timezone": "UTC+8", + "elevation_m": 2035 + }, + { + "city": "Paris", + "country": "France", + "coordinates": { + "lat": 82.547923, + "lon": 44.335537 + }, + "population": 6077998, + "timezone": "UTC+0", + "elevation_m": 538 + }, + { + "city": "Paris", + "country": "India", + "coordinates": { + "lat": 88.003715, + "lon": -34.784369 + }, + "population": 10189579, + "timezone": "UTC-4", + "elevation_m": 2036 + }, + { + "city": "Paris", + "country": "Japan", + "coordinates": { + "lat": 19.519645, + "lon": 49.656248 + }, + "population": 5171490, + "timezone": "UTC+0", + "elevation_m": 1643 + }, + { + "city": "Berlin", + "country": "Canada", + "coordinates": { + "lat": 48.782191, + "lon": 66.801971 + }, + "population": 6302138, + "timezone": "UTC-1", + "elevation_m": 1096 + }, + { + "city": "Sydney", + "country": "UK", + "coordinates": { + "lat": 24.474232, + "lon": 74.09344 + }, + "population": 13877674, + "timezone": "UTC+9", + "elevation_m": 182 + }, + { + "city": "Sydney", + "country": "USA", + "coordinates": { + "lat": 67.085661, + "lon": 74.832959 + }, + "population": 16278760, + "timezone": "UTC+3", + "elevation_m": 16 + }, + { + "city": "Sydney", + "country": "Japan", + "coordinates": { + "lat": 75.441994, + "lon": 161.654042 + }, + "population": 5974509, + "timezone": "UTC-12", + "elevation_m": 1823 + }, + { + "city": "Toronto", + "country": "Australia", + "coordinates": { + "lat": 11.912895, + "lon": -12.57985 + }, + "population": 14514636, + "timezone": "UTC-8", + "elevation_m": 2899 + }, + { + "city": "Mumbai", + "country": "Japan", + "coordinates": { + "lat": -38.568627, + "lon": -5.226718 + }, + "population": 7508982, + "timezone": "UTC-3", + "elevation_m": 2057 + }, + { + "city": "Paris", + "country": "USA", + "coordinates": { + "lat": -9.078475, + "lon": 15.244222 + }, + "population": 14946261, + "timezone": "UTC+0", + "elevation_m": 393 + }, + { + "city": "Berlin", + "country": "France", + "coordinates": { + "lat": -41.532827, + "lon": -98.885416 + }, + "population": 7810940, + "timezone": "UTC+11", + "elevation_m": 1695 + }, + { + "city": "Toronto", + "country": "Australia", + "coordinates": { + "lat": -88.999696, + "lon": 48.458869 + }, + "population": 6148373, + "timezone": "UTC+8", + "elevation_m": 1682 + }, + { + "city": "London", + "country": "India", + "coordinates": { + "lat": -0.809928, + "lon": -124.629813 + }, + "population": 3485600, + "timezone": "UTC+3", + "elevation_m": 1764 + }, + { + "city": "Berlin", + "country": "USA", + "coordinates": { + "lat": -64.050209, + "lon": 1.854017 + }, + "population": 11700836, + "timezone": "UTC-0", + "elevation_m": 2230 + }, + { + "city": "Sydney", + "country": "USA", + "coordinates": { + "lat": 54.96754, + "lon": 118.096679 + }, + "population": 19655894, + "timezone": "UTC-12", + "elevation_m": 1464 + }, + { + "city": "Mumbai", + "country": "USA", + "coordinates": { + "lat": 47.971172, + "lon": -48.136911 + }, + "population": 15283548, + "timezone": "UTC+4", + "elevation_m": 2668 + }, + { + "city": "Toronto", + "country": "USA", + "coordinates": { + "lat": 26.759734, + "lon": -149.04306 + }, + "population": 16264946, + "timezone": "UTC+7", + "elevation_m": 23 + }, + { + "city": "Toronto", + "country": "USA", + "coordinates": { + "lat": 7.924306, + "lon": 64.991539 + }, + "population": 6499146, + "timezone": "UTC-12", + "elevation_m": 2142 + }, + { + "city": "Mumbai", + "country": "Germany", + "coordinates": { + "lat": -88.912342, + "lon": 40.374719 + }, + "population": 17529588, + "timezone": "UTC+9", + "elevation_m": 1329 + }, + { + "city": "Toronto", + "country": "Japan", + "coordinates": { + "lat": -43.26993, + "lon": -22.243895 + }, + "population": 9163191, + "timezone": "UTC-11", + "elevation_m": 1415 + }, + { + "city": "New York", + "country": "Germany", + "coordinates": { + "lat": -52.682706, + "lon": -31.961979 + }, + "population": 8253679, + "timezone": "UTC+6", + "elevation_m": 214 + }, + { + "city": "New York", + "country": "France", + "coordinates": { + "lat": 79.269863, + "lon": 146.306679 + }, + "population": 19887636, + "timezone": "UTC-4", + "elevation_m": 1217 + }, + { + "city": "New York", + "country": "USA", + "coordinates": { + "lat": -66.202113, + "lon": -178.458216 + }, + "population": 13546487, + "timezone": "UTC+6", + "elevation_m": 387 + }, + { + "city": "Paris", + "country": "USA", + "coordinates": { + "lat": -81.649321, + "lon": -33.688719 + }, + "population": 17348472, + "timezone": "UTC+11", + "elevation_m": 2522 + } +] \ No newline at end of file diff --git a/synthetic/geographic_data.metadata.json b/synthetic/geographic_data.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..f97dd010ee56f46ab76cfa92c623bff6e37a72f1 --- /dev/null +++ b/synthetic/geographic_data.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_geographic_data", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.282397", + "size_bytes": 12451, + "description": "60 city records with geographic data", + "url": "" +} \ No newline at end of file diff --git a/synthetic/large_text_fields.json b/synthetic/large_text_fields.json new file mode 100644 index 0000000000000000000000000000000000000000..d0bbc10d653a502ccf453ae9afc41b99662a3df0 --- /dev/null +++ b/synthetic/large_text_fields.json @@ -0,0 +1,546 @@ +[ + { + "id": 1, + "title": "Article Title 1", + "author": "Author 7", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416 word417 word418 word419 word420 word421 word422 word423 word424 word425 word426 word427 word428 word429 word430 word431 word432", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-14", + "tag-37", + "tag-50" + ], + "metadata": { + "word_count": 363, + "read_time_minutes": 6 + } + }, + { + "id": 2, + "title": "Article Title 2", + "author": "Author 5", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416 word417 word418 word419 word420 word421 word422 word423 word424 word425 word426 word427 word428 word429 word430 word431 word432 word433 word434 word435 word436 word437 word438 word439 word440 word441 word442 word443 word444 word445 word446 word447 word448 word449 word450 word451 word452 word453 word454 word455 word456 word457 word458 word459 word460 word461 word462 word463 word464 word465 word466 word467 word468 word469 word470 word471 word472 word473 word474 word475 word476 word477 word478 word479 word480 word481 word482", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-33", + "tag-14", + "tag-44", + "tag-20" + ], + "metadata": { + "word_count": 112, + "read_time_minutes": 1 + } + }, + { + "id": 3, + "title": "Article Title 3", + "author": "Author 15", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-3", + "tag-1", + "tag-49", + "tag-33" + ], + "metadata": { + "word_count": 344, + "read_time_minutes": 7 + } + }, + { + "id": 4, + "title": "Article Title 4", + "author": "Author 14", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-5", + "tag-30", + "tag-7", + "tag-17" + ], + "metadata": { + "word_count": 495, + "read_time_minutes": 9 + } + }, + { + "id": 5, + "title": "Article Title 5", + "author": "Author 11", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-34", + "tag-20", + "tag-12", + "tag-11", + "tag-31", + "tag-4", + "tag-31", + "tag-49" + ], + "metadata": { + "word_count": 186, + "read_time_minutes": 7 + } + }, + { + "id": 6, + "title": "Article Title 6", + "author": "Author 16", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-5", + "tag-10", + "tag-14", + "tag-10", + "tag-48", + "tag-20" + ], + "metadata": { + "word_count": 263, + "read_time_minutes": 1 + } + }, + { + "id": 7, + "title": "Article Title 7", + "author": "Author 9", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-14", + "tag-11", + "tag-47" + ], + "metadata": { + "word_count": 448, + "read_time_minutes": 6 + } + }, + { + "id": 8, + "title": "Article Title 8", + "author": "Author 17", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-44", + "tag-6", + "tag-3" + ], + "metadata": { + "word_count": 109, + "read_time_minutes": 8 + } + }, + { + "id": 9, + "title": "Article Title 9", + "author": "Author 20", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-36", + "tag-23", + "tag-34", + "tag-10" + ], + "metadata": { + "word_count": 278, + "read_time_minutes": 6 + } + }, + { + "id": 10, + "title": "Article Title 10", + "author": "Author 19", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-13", + "tag-47", + "tag-20", + "tag-16" + ], + "metadata": { + "word_count": 138, + "read_time_minutes": 3 + } + }, + { + "id": 11, + "title": "Article Title 11", + "author": "Author 6", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-46", + "tag-29", + "tag-31", + "tag-41", + "tag-40", + "tag-23" + ], + "metadata": { + "word_count": 242, + "read_time_minutes": 6 + } + }, + { + "id": 12, + "title": "Article Title 12", + "author": "Author 7", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-38", + "tag-37", + "tag-36", + "tag-47", + "tag-14" + ], + "metadata": { + "word_count": 157, + "read_time_minutes": 9 + } + }, + { + "id": 13, + "title": "Article Title 13", + "author": "Author 1", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-14", + "tag-7", + "tag-45", + "tag-7", + "tag-50", + "tag-2", + "tag-37" + ], + "metadata": { + "word_count": 281, + "read_time_minutes": 8 + } + }, + { + "id": 14, + "title": "Article Title 14", + "author": "Author 15", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-17", + "tag-16", + "tag-48" + ], + "metadata": { + "word_count": 456, + "read_time_minutes": 7 + } + }, + { + "id": 15, + "title": "Article Title 15", + "author": "Author 7", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-11", + "tag-17", + "tag-43", + "tag-23", + "tag-16", + "tag-19" + ], + "metadata": { + "word_count": 361, + "read_time_minutes": 10 + } + }, + { + "id": 16, + "title": "Article Title 16", + "author": "Author 9", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-2", + "tag-5", + "tag-3", + "tag-16", + "tag-29", + "tag-38", + "tag-2" + ], + "metadata": { + "word_count": 259, + "read_time_minutes": 8 + } + }, + { + "id": 17, + "title": "Article Title 17", + "author": "Author 2", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416 word417 word418", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-25", + "tag-36", + "tag-3", + "tag-18", + "tag-28", + "tag-18" + ], + "metadata": { + "word_count": 227, + "read_time_minutes": 4 + } + }, + { + "id": 18, + "title": "Article Title 18", + "author": "Author 3", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-48", + "tag-48", + "tag-43" + ], + "metadata": { + "word_count": 104, + "read_time_minutes": 3 + } + }, + { + "id": 19, + "title": "Article Title 19", + "author": "Author 8", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-36", + "tag-25", + "tag-39", + "tag-31", + "tag-38" + ], + "metadata": { + "word_count": 315, + "read_time_minutes": 9 + } + }, + { + "id": 20, + "title": "Article Title 20", + "author": "Author 4", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416 word417 word418 word419 word420 word421 word422 word423 word424 word425 word426 word427 word428 word429 word430 word431 word432 word433 word434 word435 word436 word437 word438 word439 word440 word441 word442 word443 word444", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-27", + "tag-31", + "tag-18", + "tag-29", + "tag-8", + "tag-20" + ], + "metadata": { + "word_count": 491, + "read_time_minutes": 10 + } + }, + { + "id": 21, + "title": "Article Title 21", + "author": "Author 1", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-50", + "tag-8", + "tag-15", + "tag-32", + "tag-15", + "tag-50", + "tag-19" + ], + "metadata": { + "word_count": 126, + "read_time_minutes": 9 + } + }, + { + "id": 22, + "title": "Article Title 22", + "author": "Author 17", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-36", + "tag-4", + "tag-29", + "tag-7", + "tag-3", + "tag-24", + "tag-15" + ], + "metadata": { + "word_count": 117, + "read_time_minutes": 8 + } + }, + { + "id": 23, + "title": "Article Title 23", + "author": "Author 8", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416 word417 word418 word419 word420 word421 word422 word423 word424 word425 word426 word427 word428 word429 word430 word431 word432 word433 word434 word435 word436 word437 word438 word439 word440 word441 word442 word443 word444 word445 word446 word447 word448 word449 word450 word451 word452 word453 word454 word455 word456 word457 word458 word459 word460 word461 word462 word463 word464 word465 word466 word467 word468 word469 word470 word471 word472 word473 word474 word475 word476 word477 word478 word479 word480 word481 word482 word483 word484 word485 word486 word487 word488 word489 word490 word491 word492 word493 word494 word495 word496 word497 word498 word499", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-2", + "tag-29", + "tag-23", + "tag-8", + "tag-39", + "tag-49", + "tag-37", + "tag-11" + ], + "metadata": { + "word_count": 314, + "read_time_minutes": 6 + } + }, + { + "id": 24, + "title": "Article Title 24", + "author": "Author 11", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-42", + "tag-46", + "tag-46", + "tag-34", + "tag-37", + "tag-23" + ], + "metadata": { + "word_count": 115, + "read_time_minutes": 9 + } + }, + { + "id": 25, + "title": "Article Title 25", + "author": "Author 17", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-35", + "tag-38", + "tag-46" + ], + "metadata": { + "word_count": 154, + "read_time_minutes": 4 + } + }, + { + "id": 26, + "title": "Article Title 26", + "author": "Author 16", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416 word417 word418 word419 word420 word421 word422 word423 word424 word425 word426 word427 word428 word429 word430 word431 word432 word433 word434 word435 word436 word437 word438 word439 word440 word441 word442 word443 word444 word445 word446 word447 word448 word449 word450 word451 word452 word453 word454 word455 word456 word457 word458 word459 word460 word461 word462 word463 word464 word465 word466 word467 word468 word469 word470 word471 word472 word473 word474 word475 word476 word477 word478 word479 word480 word481 word482 word483 word484 word485 word486 word487 word488 word489 word490 word491 word492 word493 word494", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-47", + "tag-14", + "tag-23" + ], + "metadata": { + "word_count": 229, + "read_time_minutes": 5 + } + }, + { + "id": 27, + "title": "Article Title 27", + "author": "Author 11", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399 word400 word401 word402 word403 word404 word405 word406 word407 word408 word409 word410 word411 word412 word413 word414 word415 word416", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-12", + "tag-38", + "tag-45", + "tag-35", + "tag-16", + "tag-15" + ], + "metadata": { + "word_count": 436, + "read_time_minutes": 5 + } + }, + { + "id": 28, + "title": "Article Title 28", + "author": "Author 10", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345 word346 word347 word348 word349 word350 word351 word352 word353 word354 word355 word356 word357 word358 word359 word360 word361 word362 word363 word364 word365 word366 word367 word368 word369 word370 word371 word372 word373 word374 word375 word376 word377 word378 word379 word380 word381 word382 word383 word384 word385 word386 word387 word388 word389 word390 word391 word392 word393 word394 word395 word396 word397 word398 word399", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-10", + "tag-3", + "tag-22", + "tag-15", + "tag-32", + "tag-8" + ], + "metadata": { + "word_count": 405, + "read_time_minutes": 8 + } + }, + { + "id": 29, + "title": "Article Title 29", + "author": "Author 13", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195 word196 word197 word198 word199 word200 word201 word202 word203 word204 word205 word206 word207 word208 word209 word210 word211 word212 word213 word214 word215 word216 word217 word218 word219 word220 word221 word222 word223 word224 word225 word226 word227 word228 word229 word230 word231 word232 word233 word234 word235 word236 word237 word238 word239 word240 word241 word242 word243 word244 word245 word246 word247 word248 word249 word250 word251 word252 word253 word254 word255 word256 word257 word258 word259 word260 word261 word262 word263 word264 word265 word266 word267 word268 word269 word270 word271 word272 word273 word274 word275 word276 word277 word278 word279 word280 word281 word282 word283 word284 word285 word286 word287 word288 word289 word290 word291 word292 word293 word294 word295 word296 word297 word298 word299 word300 word301 word302 word303 word304 word305 word306 word307 word308 word309 word310 word311 word312 word313 word314 word315 word316 word317 word318 word319 word320 word321 word322 word323 word324 word325 word326 word327 word328 word329 word330 word331 word332 word333 word334 word335 word336 word337 word338 word339 word340 word341 word342 word343 word344 word345", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-48", + "tag-37", + "tag-3" + ], + "metadata": { + "word_count": 115, + "read_time_minutes": 1 + } + }, + { + "id": 30, + "title": "Article Title 30", + "author": "Author 12", + "content": "word0 word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24 word25 word26 word27 word28 word29 word30 word31 word32 word33 word34 word35 word36 word37 word38 word39 word40 word41 word42 word43 word44 word45 word46 word47 word48 word49 word50 word51 word52 word53 word54 word55 word56 word57 word58 word59 word60 word61 word62 word63 word64 word65 word66 word67 word68 word69 word70 word71 word72 word73 word74 word75 word76 word77 word78 word79 word80 word81 word82 word83 word84 word85 word86 word87 word88 word89 word90 word91 word92 word93 word94 word95 word96 word97 word98 word99 word100 word101 word102 word103 word104 word105 word106 word107 word108 word109 word110 word111 word112 word113 word114 word115 word116 word117 word118 word119 word120 word121 word122 word123 word124 word125 word126 word127 word128 word129 word130 word131 word132 word133 word134 word135 word136 word137 word138 word139 word140 word141 word142 word143 word144 word145 word146 word147 word148 word149 word150 word151 word152 word153 word154 word155 word156 word157 word158 word159 word160 word161 word162 word163 word164 word165 word166 word167 word168 word169 word170 word171 word172 word173 word174 word175 word176 word177 word178 word179 word180 word181 word182 word183 word184 word185 word186 word187 word188 word189 word190 word191 word192 word193 word194 word195", + "summary": "summary0 summary1 summary2 summary3 summary4 summary5 summary6 summary7 summary8 summary9 summary10 summary11 summary12 summary13 summary14 summary15 summary16 summary17 summary18 summary19", + "tags": [ + "tag-12", + "tag-32", + "tag-46", + "tag-19", + "tag-37", + "tag-47", + "tag-45", + "tag-18" + ], + "metadata": { + "word_count": 104, + "read_time_minutes": 2 + } + } +] \ No newline at end of file diff --git a/synthetic/large_text_fields.metadata.json b/synthetic/large_text_fields.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..9eacff0cd1193043ffcfad259810be84d6fa7e61 --- /dev/null +++ b/synthetic/large_text_fields.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_large_text_fields", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.293169", + "size_bytes": 86944, + "description": "30 articles with large text content", + "url": "" +} \ No newline at end of file diff --git a/synthetic/mixed_types.json b/synthetic/mixed_types.json new file mode 100644 index 0000000000000000000000000000000000000000..366f34828c6abb31452b1eecbda5edbd9ea53266 --- /dev/null +++ b/synthetic/mixed_types.json @@ -0,0 +1,1542 @@ +[ + { + "string_field": "text-1", + "int_field": 1, + "float_field": 63.47, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 1 + ], + "object_field": { + "key": "value-1" + }, + "mixed_array": [ + 0, + "str-0", + true, + null + ] + }, + { + "string_field": "text-2", + "int_field": 2, + "float_field": 89.52, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 2 + ], + "object_field": { + "key": "value-2" + }, + "mixed_array": [ + 1, + "str-1", + false, + null + ] + }, + { + "string_field": "text-3", + "int_field": 3, + "float_field": 46.85, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 3 + ], + "object_field": { + "key": "value-3" + }, + "mixed_array": [ + 2, + "str-2", + true, + null + ] + }, + { + "string_field": "text-4", + "int_field": 4, + "float_field": 55.87, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 4 + ], + "object_field": { + "key": "value-4" + }, + "mixed_array": [ + 3, + "str-3", + false, + null + ] + }, + { + "string_field": "text-5", + "int_field": 5, + "float_field": 23.5, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 5 + ], + "object_field": { + "key": "value-5" + }, + "mixed_array": [ + 4, + "str-4", + true, + null + ] + }, + { + "string_field": "text-6", + "int_field": 6, + "float_field": 24.39, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 6 + ], + "object_field": { + "key": "value-6" + }, + "mixed_array": [ + 5, + "str-5", + false, + null + ] + }, + { + "string_field": "text-7", + "int_field": 7, + "float_field": 70.22, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 7 + ], + "object_field": { + "key": "value-7" + }, + "mixed_array": [ + 6, + "str-6", + true, + null + ] + }, + { + "string_field": "text-8", + "int_field": 8, + "float_field": 37.58, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 8 + ], + "object_field": { + "key": "value-8" + }, + "mixed_array": [ + 7, + "str-7", + false, + null + ] + }, + { + "string_field": "text-9", + "int_field": 9, + "float_field": 75.4, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 9 + ], + "object_field": { + "key": "value-9" + }, + "mixed_array": [ + 8, + "str-8", + true, + null + ] + }, + { + "string_field": "text-10", + "int_field": 10, + "float_field": 44.49, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 10 + ], + "object_field": { + "key": "value-10" + }, + "mixed_array": [ + 9, + "str-9", + false, + null + ] + }, + { + "string_field": "text-11", + "int_field": 11, + "float_field": 19.44, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 11 + ], + "object_field": { + "key": "value-11" + }, + "mixed_array": [ + 10, + "str-10", + true, + null + ] + }, + { + "string_field": "text-12", + "int_field": 12, + "float_field": 86.84, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 12 + ], + "object_field": { + "key": "value-12" + }, + "mixed_array": [ + 11, + "str-11", + false, + null + ] + }, + { + "string_field": "text-13", + "int_field": 13, + "float_field": 89.02, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 13 + ], + "object_field": { + "key": "value-13" + }, + "mixed_array": [ + 12, + "str-12", + true, + null + ] + }, + { + "string_field": "text-14", + "int_field": 14, + "float_field": 77.63, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 14 + ], + "object_field": { + "key": "value-14" + }, + "mixed_array": [ + 13, + "str-13", + false, + null + ] + }, + { + "string_field": "text-15", + "int_field": 15, + "float_field": 41.95, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 15 + ], + "object_field": { + "key": "value-15" + }, + "mixed_array": [ + 14, + "str-14", + true, + null + ] + }, + { + "string_field": "text-16", + "int_field": 16, + "float_field": 8.84, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 16 + ], + "object_field": { + "key": "value-16" + }, + "mixed_array": [ + 15, + "str-15", + false, + null + ] + }, + { + "string_field": "text-17", + "int_field": 17, + "float_field": 43.3, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 17 + ], + "object_field": { + "key": "value-17" + }, + "mixed_array": [ + 16, + "str-16", + true, + null + ] + }, + { + "string_field": "text-18", + "int_field": 18, + "float_field": 48.21, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 18 + ], + "object_field": { + "key": "value-18" + }, + "mixed_array": [ + 17, + "str-17", + false, + null + ] + }, + { + "string_field": "text-19", + "int_field": 19, + "float_field": 2.04, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 19 + ], + "object_field": { + "key": "value-19" + }, + "mixed_array": [ + 18, + "str-18", + true, + null + ] + }, + { + "string_field": "text-20", + "int_field": 20, + "float_field": 2.47, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 20 + ], + "object_field": { + "key": "value-20" + }, + "mixed_array": [ + 19, + "str-19", + false, + null + ] + }, + { + "string_field": "text-21", + "int_field": 21, + "float_field": 53.51, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 21 + ], + "object_field": { + "key": "value-21" + }, + "mixed_array": [ + 20, + "str-20", + true, + null + ] + }, + { + "string_field": "text-22", + "int_field": 22, + "float_field": 98.04, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 22 + ], + "object_field": { + "key": "value-22" + }, + "mixed_array": [ + 21, + "str-21", + false, + null + ] + }, + { + "string_field": "text-23", + "int_field": 23, + "float_field": 88.9, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 23 + ], + "object_field": { + "key": "value-23" + }, + "mixed_array": [ + 22, + "str-22", + true, + null + ] + }, + { + "string_field": "text-24", + "int_field": 24, + "float_field": 5.42, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 24 + ], + "object_field": { + "key": "value-24" + }, + "mixed_array": [ + 23, + "str-23", + false, + null + ] + }, + { + "string_field": "text-25", + "int_field": 25, + "float_field": 2.83, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 25 + ], + "object_field": { + "key": "value-25" + }, + "mixed_array": [ + 24, + "str-24", + true, + null + ] + }, + { + "string_field": "text-26", + "int_field": 26, + "float_field": 42.39, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 26 + ], + "object_field": { + "key": "value-26" + }, + "mixed_array": [ + 25, + "str-25", + false, + null + ] + }, + { + "string_field": "text-27", + "int_field": 27, + "float_field": 68.14, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 27 + ], + "object_field": { + "key": "value-27" + }, + "mixed_array": [ + 26, + "str-26", + true, + null + ] + }, + { + "string_field": "text-28", + "int_field": 28, + "float_field": 11.28, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 28 + ], + "object_field": { + "key": "value-28" + }, + "mixed_array": [ + 27, + "str-27", + false, + null + ] + }, + { + "string_field": "text-29", + "int_field": 29, + "float_field": 10.73, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 29 + ], + "object_field": { + "key": "value-29" + }, + "mixed_array": [ + 28, + "str-28", + true, + null + ] + }, + { + "string_field": "text-30", + "int_field": 30, + "float_field": 80.19, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 30 + ], + "object_field": { + "key": "value-30" + }, + "mixed_array": [ + 29, + "str-29", + false, + null + ] + }, + { + "string_field": "text-31", + "int_field": 31, + "float_field": 18.87, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 31 + ], + "object_field": { + "key": "value-31" + }, + "mixed_array": [ + 30, + "str-30", + true, + null + ] + }, + { + "string_field": "text-32", + "int_field": 32, + "float_field": 18.12, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 32 + ], + "object_field": { + "key": "value-32" + }, + "mixed_array": [ + 31, + "str-31", + false, + null + ] + }, + { + "string_field": "text-33", + "int_field": 33, + "float_field": 73.02, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 33 + ], + "object_field": { + "key": "value-33" + }, + "mixed_array": [ + 32, + "str-32", + true, + null + ] + }, + { + "string_field": "text-34", + "int_field": 34, + "float_field": 35.55, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 34 + ], + "object_field": { + "key": "value-34" + }, + "mixed_array": [ + 33, + "str-33", + false, + null + ] + }, + { + "string_field": "text-35", + "int_field": 35, + "float_field": 57.49, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 35 + ], + "object_field": { + "key": "value-35" + }, + "mixed_array": [ + 34, + "str-34", + true, + null + ] + }, + { + "string_field": "text-36", + "int_field": 36, + "float_field": 20.67, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 36 + ], + "object_field": { + "key": "value-36" + }, + "mixed_array": [ + 35, + "str-35", + false, + null + ] + }, + { + "string_field": "text-37", + "int_field": 37, + "float_field": 17.53, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 37 + ], + "object_field": { + "key": "value-37" + }, + "mixed_array": [ + 36, + "str-36", + true, + null + ] + }, + { + "string_field": "text-38", + "int_field": 38, + "float_field": 0.11, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 38 + ], + "object_field": { + "key": "value-38" + }, + "mixed_array": [ + 37, + "str-37", + false, + null + ] + }, + { + "string_field": "text-39", + "int_field": 39, + "float_field": 70.04, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 39 + ], + "object_field": { + "key": "value-39" + }, + "mixed_array": [ + 38, + "str-38", + true, + null + ] + }, + { + "string_field": "text-40", + "int_field": 40, + "float_field": 38.93, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 40 + ], + "object_field": { + "key": "value-40" + }, + "mixed_array": [ + 39, + "str-39", + false, + null + ] + }, + { + "string_field": "text-41", + "int_field": 41, + "float_field": 19.04, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 41 + ], + "object_field": { + "key": "value-41" + }, + "mixed_array": [ + 40, + "str-40", + true, + null + ] + }, + { + "string_field": "text-42", + "int_field": 42, + "float_field": 58.77, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 42 + ], + "object_field": { + "key": "value-42" + }, + "mixed_array": [ + 41, + "str-41", + false, + null + ] + }, + { + "string_field": "text-43", + "int_field": 43, + "float_field": 60.54, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 43 + ], + "object_field": { + "key": "value-43" + }, + "mixed_array": [ + 42, + "str-42", + true, + null + ] + }, + { + "string_field": "text-44", + "int_field": 44, + "float_field": 35.22, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 44 + ], + "object_field": { + "key": "value-44" + }, + "mixed_array": [ + 43, + "str-43", + false, + null + ] + }, + { + "string_field": "text-45", + "int_field": 45, + "float_field": 98.99, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 45 + ], + "object_field": { + "key": "value-45" + }, + "mixed_array": [ + 44, + "str-44", + true, + null + ] + }, + { + "string_field": "text-46", + "int_field": 46, + "float_field": 47.63, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 46 + ], + "object_field": { + "key": "value-46" + }, + "mixed_array": [ + 45, + "str-45", + false, + null + ] + }, + { + "string_field": "text-47", + "int_field": 47, + "float_field": 37.01, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 47 + ], + "object_field": { + "key": "value-47" + }, + "mixed_array": [ + 46, + "str-46", + true, + null + ] + }, + { + "string_field": "text-48", + "int_field": 48, + "float_field": 1.06, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 48 + ], + "object_field": { + "key": "value-48" + }, + "mixed_array": [ + 47, + "str-47", + false, + null + ] + }, + { + "string_field": "text-49", + "int_field": 49, + "float_field": 82.02, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 49 + ], + "object_field": { + "key": "value-49" + }, + "mixed_array": [ + 48, + "str-48", + true, + null + ] + }, + { + "string_field": "text-50", + "int_field": 50, + "float_field": 43.4, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 50 + ], + "object_field": { + "key": "value-50" + }, + "mixed_array": [ + 49, + "str-49", + false, + null + ] + }, + { + "string_field": "text-51", + "int_field": 51, + "float_field": 64.7, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 51 + ], + "object_field": { + "key": "value-51" + }, + "mixed_array": [ + 50, + "str-50", + true, + null + ] + }, + { + "string_field": "text-52", + "int_field": 52, + "float_field": 33.57, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 52 + ], + "object_field": { + "key": "value-52" + }, + "mixed_array": [ + 51, + "str-51", + false, + null + ] + }, + { + "string_field": "text-53", + "int_field": 53, + "float_field": 3.71, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 53 + ], + "object_field": { + "key": "value-53" + }, + "mixed_array": [ + 52, + "str-52", + true, + null + ] + }, + { + "string_field": "text-54", + "int_field": 54, + "float_field": 52.62, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 54 + ], + "object_field": { + "key": "value-54" + }, + "mixed_array": [ + 53, + "str-53", + false, + null + ] + }, + { + "string_field": "text-55", + "int_field": 55, + "float_field": 34.19, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 55 + ], + "object_field": { + "key": "value-55" + }, + "mixed_array": [ + 54, + "str-54", + true, + null + ] + }, + { + "string_field": "text-56", + "int_field": 56, + "float_field": 79.41, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 56 + ], + "object_field": { + "key": "value-56" + }, + "mixed_array": [ + 55, + "str-55", + false, + null + ] + }, + { + "string_field": "text-57", + "int_field": 57, + "float_field": 13.73, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 57 + ], + "object_field": { + "key": "value-57" + }, + "mixed_array": [ + 56, + "str-56", + true, + null + ] + }, + { + "string_field": "text-58", + "int_field": 58, + "float_field": 58.88, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 58 + ], + "object_field": { + "key": "value-58" + }, + "mixed_array": [ + 57, + "str-57", + false, + null + ] + }, + { + "string_field": "text-59", + "int_field": 59, + "float_field": 19.89, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 59 + ], + "object_field": { + "key": "value-59" + }, + "mixed_array": [ + 58, + "str-58", + true, + null + ] + }, + { + "string_field": "text-60", + "int_field": 60, + "float_field": 90.87, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 60 + ], + "object_field": { + "key": "value-60" + }, + "mixed_array": [ + 59, + "str-59", + false, + null + ] + }, + { + "string_field": "text-61", + "int_field": 61, + "float_field": 46.29, + "bool_field": true, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 61 + ], + "object_field": { + "key": "value-61" + }, + "mixed_array": [ + 60, + "str-60", + true, + null + ] + }, + { + "string_field": "text-62", + "int_field": 62, + "float_field": 30.92, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 62 + ], + "object_field": { + "key": "value-62" + }, + "mixed_array": [ + 61, + "str-61", + false, + null + ] + }, + { + "string_field": "text-63", + "int_field": 63, + "float_field": 83.76, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 63 + ], + "object_field": { + "key": "value-63" + }, + "mixed_array": [ + 62, + "str-62", + true, + null + ] + }, + { + "string_field": "text-64", + "int_field": 64, + "float_field": 94.42, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 64 + ], + "object_field": { + "key": "value-64" + }, + "mixed_array": [ + 63, + "str-63", + false, + null + ] + }, + { + "string_field": "text-65", + "int_field": 65, + "float_field": 52.08, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 65 + ], + "object_field": { + "key": "value-65" + }, + "mixed_array": [ + 64, + "str-64", + true, + null + ] + }, + { + "string_field": "text-66", + "int_field": 66, + "float_field": 58.9, + "bool_field": false, + "null_field": null, + "array_field": [ + 1, + 2, + 3, + 66 + ], + "object_field": { + "key": "value-66" + }, + "mixed_array": [ + 65, + "str-65", + false, + null + ] + }, + { + "string_field": "text-67", + "int_field": 67, + "float_field": 76.57, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 67 + ], + "object_field": { + "key": "value-67" + }, + "mixed_array": [ + 66, + "str-66", + true, + null + ] + }, + { + "string_field": "text-68", + "int_field": 68, + "float_field": 27.3, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 68 + ], + "object_field": { + "key": "value-68" + }, + "mixed_array": [ + 67, + "str-67", + false, + null + ] + }, + { + "string_field": "text-69", + "int_field": 69, + "float_field": 80.74, + "bool_field": true, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 69 + ], + "object_field": { + "key": "value-69" + }, + "mixed_array": [ + 68, + "str-68", + true, + null + ] + }, + { + "string_field": "text-70", + "int_field": 70, + "float_field": 24.87, + "bool_field": false, + "null_field": "not-null", + "array_field": [ + 1, + 2, + 3, + 70 + ], + "object_field": { + "key": "value-70" + }, + "mixed_array": [ + 69, + "str-69", + false, + null + ] + } +] \ No newline at end of file diff --git a/synthetic/mixed_types.metadata.json b/synthetic/mixed_types.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d4c5b0a4afd66a5155e18a761bd42177ef4531df --- /dev/null +++ b/synthetic/mixed_types.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_mixed_types", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.278310", + "size_bytes": 23296, + "description": "70 records with mixed data types", + "url": "" +} \ No newline at end of file diff --git a/synthetic/nested_structures.json b/synthetic/nested_structures.json new file mode 100644 index 0000000000000000000000000000000000000000..6495d53347be6ac9fd04a73ca16b603fece0fe3d --- /dev/null +++ b/synthetic/nested_structures.json @@ -0,0 +1,1394 @@ +[ + { + "id": 1, + "level1": { + "name": "item-1", + "level2": { + "value": 936, + "level3": { + "deep": "deep-value-1", + "array": [ + 71, + 45, + 41, + 47, + 84 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 2, + "level1": { + "name": "item-2", + "level2": { + "value": 904, + "level3": { + "deep": "deep-value-2", + "array": [ + 20, + 81, + 85, + 28, + 93 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 3, + "level1": { + "name": "item-3", + "level2": { + "value": 241, + "level3": { + "deep": "deep-value-3", + "array": [ + 56, + 75, + 13, + 53, + 10 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 4, + "level1": { + "name": "item-4", + "level2": { + "value": 639, + "level3": { + "deep": "deep-value-4", + "array": [ + 46, + 94, + 19, + 43, + 57 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 5, + "level1": { + "name": "item-5", + "level2": { + "value": 286, + "level3": { + "deep": "deep-value-5", + "array": [ + 37, + 82, + 36, + 9, + 68 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 6, + "level1": { + "name": "item-6", + "level2": { + "value": 856, + "level3": { + "deep": "deep-value-6", + "array": [ + 38, + 49, + 47, + 23, + 0 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 7, + "level1": { + "name": "item-7", + "level2": { + "value": 263, + "level3": { + "deep": "deep-value-7", + "array": [ + 64, + 72, + 50, + 59, + 3 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 8, + "level1": { + "name": "item-8", + "level2": { + "value": 709, + "level3": { + "deep": "deep-value-8", + "array": [ + 28, + 9, + 39, + 59, + 54 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 9, + "level1": { + "name": "item-9", + "level2": { + "value": 945, + "level3": { + "deep": "deep-value-9", + "array": [ + 19, + 88, + 81, + 99, + 0 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 10, + "level1": { + "name": "item-10", + "level2": { + "value": 329, + "level3": { + "deep": "deep-value-10", + "array": [ + 66, + 41, + 45, + 95, + 55 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 11, + "level1": { + "name": "item-11", + "level2": { + "value": 384, + "level3": { + "deep": "deep-value-11", + "array": [ + 61, + 25, + 33, + 98, + 28 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 12, + "level1": { + "name": "item-12", + "level2": { + "value": 558, + "level3": { + "deep": "deep-value-12", + "array": [ + 86, + 38, + 34, + 78, + 48 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 13, + "level1": { + "name": "item-13", + "level2": { + "value": 502, + "level3": { + "deep": "deep-value-13", + "array": [ + 24, + 46, + 32, + 6, + 93 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 14, + "level1": { + "name": "item-14", + "level2": { + "value": 504, + "level3": { + "deep": "deep-value-14", + "array": [ + 95, + 64, + 37, + 52, + 2 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 15, + "level1": { + "name": "item-15", + "level2": { + "value": 302, + "level3": { + "deep": "deep-value-15", + "array": [ + 8, + 96, + 3, + 38, + 100 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 16, + "level1": { + "name": "item-16", + "level2": { + "value": 949, + "level3": { + "deep": "deep-value-16", + "array": [ + 28, + 6, + 18, + 59, + 72 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 17, + "level1": { + "name": "item-17", + "level2": { + "value": 628, + "level3": { + "deep": "deep-value-17", + "array": [ + 62, + 46, + 46, + 59, + 70 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 18, + "level1": { + "name": "item-18", + "level2": { + "value": 176, + "level3": { + "deep": "deep-value-18", + "array": [ + 74, + 71, + 88, + 33, + 38 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 19, + "level1": { + "name": "item-19", + "level2": { + "value": 203, + "level3": { + "deep": "deep-value-19", + "array": [ + 52, + 8, + 25, + 53, + 2 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 20, + "level1": { + "name": "item-20", + "level2": { + "value": 290, + "level3": { + "deep": "deep-value-20", + "array": [ + 58, + 66, + 65, + 30, + 70 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 21, + "level1": { + "name": "item-21", + "level2": { + "value": 809, + "level3": { + "deep": "deep-value-21", + "array": [ + 50, + 3, + 21, + 20, + 87 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 22, + "level1": { + "name": "item-22", + "level2": { + "value": 840, + "level3": { + "deep": "deep-value-22", + "array": [ + 13, + 26, + 46, + 34, + 86 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 23, + "level1": { + "name": "item-23", + "level2": { + "value": 668, + "level3": { + "deep": "deep-value-23", + "array": [ + 37, + 33, + 54, + 95, + 70 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 24, + "level1": { + "name": "item-24", + "level2": { + "value": 82, + "level3": { + "deep": "deep-value-24", + "array": [ + 62, + 11, + 57, + 8, + 95 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 25, + "level1": { + "name": "item-25", + "level2": { + "value": 419, + "level3": { + "deep": "deep-value-25", + "array": [ + 66, + 46, + 98, + 55, + 0 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 26, + "level1": { + "name": "item-26", + "level2": { + "value": 147, + "level3": { + "deep": "deep-value-26", + "array": [ + 15, + 64, + 3, + 52, + 30 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 27, + "level1": { + "name": "item-27", + "level2": { + "value": 997, + "level3": { + "deep": "deep-value-27", + "array": [ + 47, + 1, + 64, + 14, + 74 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 28, + "level1": { + "name": "item-28", + "level2": { + "value": 232, + "level3": { + "deep": "deep-value-28", + "array": [ + 36, + 81, + 24, + 67, + 58 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 29, + "level1": { + "name": "item-29", + "level2": { + "value": 463, + "level3": { + "deep": "deep-value-29", + "array": [ + 59, + 79, + 63, + 95, + 78 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 30, + "level1": { + "name": "item-30", + "level2": { + "value": 929, + "level3": { + "deep": "deep-value-30", + "array": [ + 25, + 16, + 76, + 32, + 48 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 31, + "level1": { + "name": "item-31", + "level2": { + "value": 420, + "level3": { + "deep": "deep-value-31", + "array": [ + 87, + 22, + 69, + 52, + 99 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 32, + "level1": { + "name": "item-32", + "level2": { + "value": 947, + "level3": { + "deep": "deep-value-32", + "array": [ + 78, + 72, + 72, + 12, + 96 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 33, + "level1": { + "name": "item-33", + "level2": { + "value": 0, + "level3": { + "deep": "deep-value-33", + "array": [ + 10, + 49, + 28, + 91, + 84 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 34, + "level1": { + "name": "item-34", + "level2": { + "value": 136, + "level3": { + "deep": "deep-value-34", + "array": [ + 62, + 52, + 70, + 89, + 47 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + }, + { + "id": 35, + "level1": { + "name": "item-35", + "level2": { + "value": 360, + "level3": { + "deep": "deep-value-35", + "array": [ + 42, + 59, + 58, + 27, + 94 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 36, + "level1": { + "name": "item-36", + "level2": { + "value": 545, + "level3": { + "deep": "deep-value-36", + "array": [ + 36, + 65, + 40, + 67, + 21 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 37, + "level1": { + "name": "item-37", + "level2": { + "value": 105, + "level3": { + "deep": "deep-value-37", + "array": [ + 26, + 31, + 48, + 81, + 92 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + } + ] + } + }, + { + "id": 38, + "level1": { + "name": "item-38", + "level2": { + "value": 388, + "level3": { + "deep": "deep-value-38", + "array": [ + 83, + 90, + 97, + 66, + 13 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + }, + { + "id": 4, + "data": "sibling-4" + } + ] + } + }, + { + "id": 39, + "level1": { + "name": "item-39", + "level2": { + "value": 313, + "level3": { + "deep": "deep-value-39", + "array": [ + 73, + 4, + 18, + 8, + 82 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + } + ] + } + }, + { + "id": 40, + "level1": { + "name": "item-40", + "level2": { + "value": 471, + "level3": { + "deep": "deep-value-40", + "array": [ + 68, + 15, + 4, + 44, + 36 + ] + } + }, + "siblings": [ + { + "id": 0, + "data": "sibling-0" + }, + { + "id": 1, + "data": "sibling-1" + }, + { + "id": 2, + "data": "sibling-2" + }, + { + "id": 3, + "data": "sibling-3" + } + ] + } + } +] \ No newline at end of file diff --git a/synthetic/nested_structures.metadata.json b/synthetic/nested_structures.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ad0849e19117d85b3e36d3c997c64a695ef3cee3 --- /dev/null +++ b/synthetic/nested_structures.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_nested_structures", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.275728", + "size_bytes": 22533, + "description": "40 deeply nested object structures", + "url": "" +} \ No newline at end of file diff --git a/synthetic/npm_packages.json b/synthetic/npm_packages.json new file mode 100644 index 0000000000000000000000000000000000000000..6a08b438db274b4a6d025bbfe6b4a90f148b547a --- /dev/null +++ b/synthetic/npm_packages.json @@ -0,0 +1,1872 @@ +[ + { + "name": "@company/package-1", + "version": "2.0.41", + "description": "Package 1 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "api", + "tool", + "typescript", + "nodejs", + "library" + ], + "dependencies": { + "dep-0": "^3.8.0", + "dep-1": "^4.16.0", + "dep-2": "^8.15.0", + "dep-3": "^10.10.0", + "dep-4": "^10.17.0" + }, + "devDependencies": { + "dev-dep-0": "^5.2.0", + "dev-dep-1": "^1.9.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-2", + "version": "5.6.26", + "description": "Package 2 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "api", + "javascript", + "nodejs", + "typescript" + ], + "dependencies": { + "dep-0": "^9.9.0", + "dep-1": "^4.9.0", + "dep-2": "^2.8.0", + "dep-3": "^4.11.0", + "dep-4": "^8.10.0", + "dep-5": "^10.1.0", + "dep-6": "^4.14.0" + }, + "devDependencies": { + "dev-dep-0": "^9.6.0", + "dev-dep-1": "^9.6.0", + "dev-dep-2": "^9.11.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-3", + "version": "1.17.9", + "description": "Package 3 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "typescript", + "nodejs" + ], + "dependencies": { + "dep-0": "^9.12.0", + "dep-1": "^3.14.0", + "dep-2": "^8.10.0", + "dep-3": "^10.8.0", + "dep-4": "^6.2.0" + }, + "devDependencies": { + "dev-dep-0": "^7.7.0", + "dev-dep-1": "^2.11.0", + "dev-dep-2": "^1.1.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-4", + "version": "1.20.40", + "description": "Package 4 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "javascript" + ], + "dependencies": { + "dep-0": "^5.5.0", + "dep-1": "^5.6.0", + "dep-2": "^9.18.0", + "dep-3": "^10.2.0" + }, + "devDependencies": { + "dev-dep-0": "^7.1.0", + "dev-dep-1": "^10.3.0", + "dev-dep-2": "^5.19.0", + "dev-dep-3": "^9.5.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-5", + "version": "4.15.21", + "description": "Package 5 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "tool", + "library", + "javascript", + "cli", + "typescript" + ], + "dependencies": { + "dep-0": "^3.0.0", + "dep-1": "^8.12.0", + "dep-2": "^9.16.0" + }, + "devDependencies": { + "dev-dep-0": "^10.0.0", + "dev-dep-1": "^3.19.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-6", + "version": "3.4.39", + "description": "Package 6 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "library", + "javascript", + "api" + ], + "dependencies": { + "dep-0": "^2.20.0", + "dep-1": "^9.0.0", + "dep-2": "^7.13.0", + "dep-3": "^7.10.0", + "dep-4": "^8.17.0", + "dep-5": "^1.4.0", + "dep-6": "^3.14.0" + }, + "devDependencies": { + "dev-dep-0": "^10.20.0", + "dev-dep-1": "^9.18.0", + "dev-dep-2": "^8.0.0", + "dev-dep-3": "^4.4.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-7", + "version": "0.16.1", + "description": "Package 7 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "javascript", + "tool", + "cli", + "nodejs" + ], + "dependencies": { + "dep-0": "^4.15.0", + "dep-1": "^10.12.0", + "dep-2": "^5.1.0", + "dep-3": "^1.13.0", + "dep-4": "^10.12.0", + "dep-5": "^9.12.0" + }, + "devDependencies": { + "dev-dep-0": "^6.16.0", + "dev-dep-1": "^7.5.0", + "dev-dep-2": "^6.0.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-8", + "version": "5.6.21", + "description": "Package 8 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "nodejs", + "javascript" + ], + "dependencies": { + "dep-0": "^8.19.0", + "dep-1": "^6.6.0", + "dep-2": "^2.0.0", + "dep-3": "^6.16.0", + "dep-4": "^10.20.0" + }, + "devDependencies": { + "dev-dep-0": "^3.13.0", + "dev-dep-1": "^3.2.0", + "dev-dep-2": "^8.0.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-9", + "version": "3.18.4", + "description": "Package 9 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "cli", + "typescript", + "api" + ], + "dependencies": { + "dep-0": "^2.3.0", + "dep-1": "^7.1.0", + "dep-2": "^7.6.0", + "dep-3": "^10.20.0" + }, + "devDependencies": { + "dev-dep-0": "^5.3.0", + "dev-dep-1": "^10.3.0", + "dev-dep-2": "^7.13.0", + "dev-dep-3": "^6.10.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-10", + "version": "5.11.38", + "description": "Package 10 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "library", + "cli", + "javascript" + ], + "dependencies": { + "dep-0": "^8.1.0", + "dep-1": "^7.18.0", + "dep-2": "^10.4.0", + "dep-3": "^7.7.0", + "dep-4": "^3.12.0" + }, + "devDependencies": { + "dev-dep-0": "^8.0.0", + "dev-dep-1": "^1.1.0", + "dev-dep-2": "^3.3.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-11", + "version": "1.6.41", + "description": "Package 11 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "nodejs" + ], + "dependencies": { + "dep-0": "^6.13.0", + "dep-1": "^9.4.0", + "dep-2": "^2.3.0" + }, + "devDependencies": { + "dev-dep-0": "^7.9.0", + "dev-dep-1": "^5.12.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-12", + "version": "3.0.37", + "description": "Package 12 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "typescript", + "api", + "nodejs", + "library" + ], + "dependencies": { + "dep-0": "^4.3.0", + "dep-1": "^5.10.0", + "dep-2": "^5.7.0", + "dep-3": "^6.7.0" + }, + "devDependencies": { + "dev-dep-0": "^8.11.0", + "dev-dep-1": "^8.16.0", + "dev-dep-2": "^2.4.0", + "dev-dep-3": "^1.15.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-13", + "version": "2.4.21", + "description": "Package 13 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "javascript", + "tool", + "api" + ], + "dependencies": { + "dep-0": "^4.18.0", + "dep-1": "^9.18.0", + "dep-2": "^8.4.0", + "dep-3": "^1.1.0", + "dep-4": "^3.11.0", + "dep-5": "^5.18.0", + "dep-6": "^3.9.0", + "dep-7": "^6.5.0" + }, + "devDependencies": { + "dev-dep-0": "^4.2.0", + "dev-dep-1": "^1.14.0", + "dev-dep-2": "^6.14.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-14", + "version": "3.1.29", + "description": "Package 14 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "javascript" + ], + "dependencies": { + "dep-0": "^1.2.0", + "dep-1": "^2.18.0", + "dep-2": "^2.8.0", + "dep-3": "^4.7.0", + "dep-4": "^3.18.0", + "dep-5": "^6.4.0", + "dep-6": "^9.3.0", + "dep-7": "^2.15.0" + }, + "devDependencies": { + "dev-dep-0": "^9.6.0", + "dev-dep-1": "^4.19.0", + "dev-dep-2": "^6.10.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-15", + "version": "4.3.44", + "description": "Package 15 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "typescript", + "javascript", + "tool", + "cli" + ], + "dependencies": { + "dep-0": "^6.8.0", + "dep-1": "^3.10.0", + "dep-2": "^6.15.0", + "dep-3": "^9.6.0", + "dep-4": "^4.12.0", + "dep-5": "^6.6.0" + }, + "devDependencies": { + "dev-dep-0": "^3.1.0", + "dev-dep-1": "^3.8.0", + "dev-dep-2": "^6.19.0", + "dev-dep-3": "^8.11.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-16", + "version": "2.5.34", + "description": "Package 16 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "cli", + "nodejs" + ], + "dependencies": { + "dep-0": "^6.3.0", + "dep-1": "^1.7.0", + "dep-2": "^1.1.0", + "dep-3": "^4.14.0", + "dep-4": "^1.8.0", + "dep-5": "^1.0.0", + "dep-6": "^6.16.0" + }, + "devDependencies": { + "dev-dep-0": "^2.4.0", + "dev-dep-1": "^5.20.0", + "dev-dep-2": "^7.17.0", + "dev-dep-3": "^6.3.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-17", + "version": "2.6.43", + "description": "Package 17 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "nodejs", + "api", + "javascript", + "tool" + ], + "dependencies": { + "dep-0": "^4.6.0", + "dep-1": "^4.14.0", + "dep-2": "^5.8.0", + "dep-3": "^6.4.0", + "dep-4": "^1.5.0", + "dep-5": "^10.5.0", + "dep-6": "^10.11.0" + }, + "devDependencies": { + "dev-dep-0": "^5.12.0", + "dev-dep-1": "^1.8.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-18", + "version": "5.19.5", + "description": "Package 18 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "cli", + "tool" + ], + "dependencies": { + "dep-0": "^3.17.0", + "dep-1": "^6.12.0", + "dep-2": "^5.14.0", + "dep-3": "^9.9.0", + "dep-4": "^5.0.0", + "dep-5": "^10.5.0" + }, + "devDependencies": { + "dev-dep-0": "^2.3.0", + "dev-dep-1": "^7.0.0", + "dev-dep-2": "^8.3.0", + "dev-dep-3": "^10.9.0", + "dev-dep-4": "^3.2.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-19", + "version": "1.20.32", + "description": "Package 19 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "typescript" + ], + "dependencies": { + "dep-0": "^9.8.0", + "dep-1": "^2.2.0", + "dep-2": "^5.15.0", + "dep-3": "^10.18.0", + "dep-4": "^4.5.0" + }, + "devDependencies": { + "dev-dep-0": "^9.15.0", + "dev-dep-1": "^7.14.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-20", + "version": "5.12.35", + "description": "Package 20 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "api", + "tool", + "nodejs", + "typescript" + ], + "dependencies": { + "dep-0": "^1.14.0", + "dep-1": "^10.2.0", + "dep-2": "^9.10.0", + "dep-3": "^6.1.0", + "dep-4": "^6.11.0", + "dep-5": "^9.7.0" + }, + "devDependencies": { + "dev-dep-0": "^7.3.0", + "dev-dep-1": "^6.13.0", + "dev-dep-2": "^8.13.0", + "dev-dep-3": "^1.2.0", + "dev-dep-4": "^4.5.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-21", + "version": "2.1.32", + "description": "Package 21 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "nodejs", + "cli", + "api" + ], + "dependencies": { + "dep-0": "^8.16.0", + "dep-1": "^6.3.0", + "dep-2": "^5.8.0", + "dep-3": "^7.3.0", + "dep-4": "^5.14.0" + }, + "devDependencies": { + "dev-dep-0": "^3.0.0", + "dev-dep-1": "^6.0.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-22", + "version": "1.3.12", + "description": "Package 22 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "library", + "javascript" + ], + "dependencies": { + "dep-0": "^1.3.0", + "dep-1": "^10.1.0", + "dep-2": "^2.2.0", + "dep-3": "^3.3.0", + "dep-4": "^7.9.0", + "dep-5": "^8.7.0" + }, + "devDependencies": { + "dev-dep-0": "^10.11.0", + "dev-dep-1": "^3.8.0", + "dev-dep-2": "^3.18.0", + "dev-dep-3": "^2.5.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-23", + "version": "2.13.49", + "description": "Package 23 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "nodejs" + ], + "dependencies": { + "dep-0": "^8.10.0", + "dep-1": "^5.19.0", + "dep-2": "^9.7.0" + }, + "devDependencies": { + "dev-dep-0": "^7.17.0", + "dev-dep-1": "^6.1.0", + "dev-dep-2": "^10.4.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-24", + "version": "3.18.47", + "description": "Package 24 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "api", + "javascript", + "nodejs", + "library" + ], + "dependencies": { + "dep-0": "^4.10.0", + "dep-1": "^8.0.0", + "dep-2": "^1.2.0", + "dep-3": "^4.7.0", + "dep-4": "^6.6.0", + "dep-5": "^2.17.0", + "dep-6": "^3.10.0", + "dep-7": "^2.0.0" + }, + "devDependencies": { + "dev-dep-0": "^10.12.0", + "dev-dep-1": "^5.18.0", + "dev-dep-2": "^3.5.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-25", + "version": "4.16.24", + "description": "Package 25 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "typescript", + "api", + "library", + "cli" + ], + "dependencies": { + "dep-0": "^6.6.0", + "dep-1": "^2.18.0", + "dep-2": "^8.9.0" + }, + "devDependencies": { + "dev-dep-0": "^6.3.0", + "dev-dep-1": "^1.16.0", + "dev-dep-2": "^3.7.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-26", + "version": "5.16.50", + "description": "Package 26 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "nodejs", + "cli" + ], + "dependencies": { + "dep-0": "^9.16.0", + "dep-1": "^5.11.0", + "dep-2": "^7.6.0", + "dep-3": "^2.15.0", + "dep-4": "^3.14.0", + "dep-5": "^9.12.0" + }, + "devDependencies": { + "dev-dep-0": "^8.3.0", + "dev-dep-1": "^2.17.0", + "dev-dep-2": "^10.20.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-27", + "version": "5.18.40", + "description": "Package 27 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "api", + "typescript", + "nodejs" + ], + "dependencies": { + "dep-0": "^6.5.0", + "dep-1": "^2.20.0", + "dep-2": "^5.11.0", + "dep-3": "^9.19.0", + "dep-4": "^5.19.0", + "dep-5": "^7.10.0", + "dep-6": "^6.13.0", + "dep-7": "^2.14.0" + }, + "devDependencies": { + "dev-dep-0": "^6.2.0", + "dev-dep-1": "^6.0.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-28", + "version": "1.17.7", + "description": "Package 28 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "api", + "cli", + "typescript", + "nodejs" + ], + "dependencies": { + "dep-0": "^7.3.0", + "dep-1": "^1.5.0", + "dep-2": "^10.19.0", + "dep-3": "^3.14.0", + "dep-4": "^1.14.0", + "dep-5": "^8.16.0", + "dep-6": "^4.7.0" + }, + "devDependencies": { + "dev-dep-0": "^9.5.0", + "dev-dep-1": "^4.20.0", + "dev-dep-2": "^10.18.0", + "dev-dep-3": "^3.6.0", + "dev-dep-4": "^6.4.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-29", + "version": "1.19.35", + "description": "Package 29 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "typescript" + ], + "dependencies": { + "dep-0": "^1.12.0", + "dep-1": "^10.18.0", + "dep-2": "^6.0.0", + "dep-3": "^6.3.0" + }, + "devDependencies": { + "dev-dep-0": "^5.17.0", + "dev-dep-1": "^10.12.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-30", + "version": "4.3.43", + "description": "Package 30 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "typescript" + ], + "dependencies": { + "dep-0": "^5.14.0", + "dep-1": "^6.13.0", + "dep-2": "^1.11.0", + "dep-3": "^3.6.0", + "dep-4": "^2.14.0", + "dep-5": "^5.1.0", + "dep-6": "^9.6.0", + "dep-7": "^2.18.0" + }, + "devDependencies": { + "dev-dep-0": "^10.9.0", + "dev-dep-1": "^7.1.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-31", + "version": "2.12.24", + "description": "Package 31 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "typescript", + "tool" + ], + "dependencies": { + "dep-0": "^4.6.0", + "dep-1": "^10.15.0", + "dep-2": "^5.11.0", + "dep-3": "^7.1.0", + "dep-4": "^1.14.0" + }, + "devDependencies": { + "dev-dep-0": "^5.8.0", + "dev-dep-1": "^9.9.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-32", + "version": "2.11.6", + "description": "Package 32 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "javascript" + ], + "dependencies": { + "dep-0": "^1.12.0", + "dep-1": "^1.9.0", + "dep-2": "^4.18.0", + "dep-3": "^3.12.0", + "dep-4": "^10.19.0", + "dep-5": "^7.9.0", + "dep-6": "^5.19.0", + "dep-7": "^4.17.0" + }, + "devDependencies": { + "dev-dep-0": "^2.13.0", + "dev-dep-1": "^7.8.0", + "dev-dep-2": "^5.12.0", + "dev-dep-3": "^6.0.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-33", + "version": "2.3.22", + "description": "Package 33 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "tool" + ], + "dependencies": { + "dep-0": "^6.0.0", + "dep-1": "^9.5.0", + "dep-2": "^6.13.0" + }, + "devDependencies": { + "dev-dep-0": "^2.0.0", + "dev-dep-1": "^6.7.0", + "dev-dep-2": "^9.19.0", + "dev-dep-3": "^10.14.0", + "dev-dep-4": "^2.18.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-34", + "version": "0.18.45", + "description": "Package 34 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "api", + "tool", + "cli" + ], + "dependencies": { + "dep-0": "^4.10.0", + "dep-1": "^8.10.0", + "dep-2": "^3.20.0", + "dep-3": "^1.0.0", + "dep-4": "^3.19.0" + }, + "devDependencies": { + "dev-dep-0": "^10.5.0", + "dev-dep-1": "^6.3.0", + "dev-dep-2": "^7.17.0", + "dev-dep-3": "^8.8.0", + "dev-dep-4": "^2.10.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-35", + "version": "5.19.42", + "description": "Package 35 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "cli" + ], + "dependencies": { + "dep-0": "^1.13.0", + "dep-1": "^6.6.0", + "dep-2": "^7.12.0", + "dep-3": "^8.9.0", + "dep-4": "^7.2.0", + "dep-5": "^10.12.0", + "dep-6": "^1.14.0", + "dep-7": "^10.10.0" + }, + "devDependencies": { + "dev-dep-0": "^1.11.0", + "dev-dep-1": "^5.7.0", + "dev-dep-2": "^10.1.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-36", + "version": "3.4.49", + "description": "Package 36 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "library", + "nodejs", + "typescript", + "api" + ], + "dependencies": { + "dep-0": "^6.10.0", + "dep-1": "^10.6.0", + "dep-2": "^8.0.0", + "dep-3": "^8.3.0", + "dep-4": "^4.7.0", + "dep-5": "^4.19.0", + "dep-6": "^4.7.0" + }, + "devDependencies": { + "dev-dep-0": "^7.0.0", + "dev-dep-1": "^10.2.0", + "dev-dep-2": "^7.8.0", + "dev-dep-3": "^3.2.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-37", + "version": "0.11.41", + "description": "Package 37 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "api", + "nodejs", + "tool", + "javascript" + ], + "dependencies": { + "dep-0": "^10.4.0", + "dep-1": "^6.4.0", + "dep-2": "^8.15.0", + "dep-3": "^7.12.0", + "dep-4": "^3.9.0", + "dep-5": "^4.1.0" + }, + "devDependencies": { + "dev-dep-0": "^1.5.0", + "dev-dep-1": "^9.1.0", + "dev-dep-2": "^7.12.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-38", + "version": "5.4.40", + "description": "Package 38 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "api", + "javascript", + "typescript", + "library" + ], + "dependencies": { + "dep-0": "^1.11.0", + "dep-1": "^9.18.0", + "dep-2": "^6.17.0", + "dep-3": "^9.6.0" + }, + "devDependencies": { + "dev-dep-0": "^2.14.0", + "dev-dep-1": "^9.6.0", + "dev-dep-2": "^9.11.0", + "dev-dep-3": "^3.19.0", + "dev-dep-4": "^8.8.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-39", + "version": "1.11.4", + "description": "Package 39 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "api", + "typescript", + "javascript" + ], + "dependencies": { + "dep-0": "^5.17.0", + "dep-1": "^7.14.0", + "dep-2": "^3.20.0" + }, + "devDependencies": { + "dev-dep-0": "^3.17.0", + "dev-dep-1": "^1.5.0", + "dev-dep-2": "^6.5.0", + "dev-dep-3": "^4.8.0", + "dev-dep-4": "^7.11.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-40", + "version": "4.13.38", + "description": "Package 40 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "tool", + "nodejs" + ], + "dependencies": { + "dep-0": "^10.2.0", + "dep-1": "^9.18.0", + "dep-2": "^5.2.0", + "dep-3": "^2.5.0" + }, + "devDependencies": { + "dev-dep-0": "^8.7.0", + "dev-dep-1": "^3.20.0", + "dev-dep-2": "^1.19.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-41", + "version": "1.18.25", + "description": "Package 41 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "nodejs", + "library", + "typescript", + "cli" + ], + "dependencies": { + "dep-0": "^1.7.0", + "dep-1": "^6.18.0", + "dep-2": "^5.4.0", + "dep-3": "^8.11.0", + "dep-4": "^10.18.0", + "dep-5": "^1.16.0", + "dep-6": "^8.18.0" + }, + "devDependencies": { + "dev-dep-0": "^9.20.0", + "dev-dep-1": "^3.5.0", + "dev-dep-2": "^5.10.0", + "dev-dep-3": "^10.11.0", + "dev-dep-4": "^1.14.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-42", + "version": "4.6.5", + "description": "Package 42 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "library", + "tool", + "cli", + "typescript", + "javascript" + ], + "dependencies": { + "dep-0": "^7.18.0", + "dep-1": "^8.11.0", + "dep-2": "^1.2.0", + "dep-3": "^4.15.0", + "dep-4": "^8.5.0", + "dep-5": "^6.11.0" + }, + "devDependencies": { + "dev-dep-0": "^10.10.0", + "dev-dep-1": "^2.7.0", + "dev-dep-2": "^8.19.0", + "dev-dep-3": "^10.11.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-43", + "version": "3.13.34", + "description": "Package 43 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "api", + "library" + ], + "dependencies": { + "dep-0": "^3.17.0", + "dep-1": "^5.15.0", + "dep-2": "^7.1.0", + "dep-3": "^8.16.0" + }, + "devDependencies": { + "dev-dep-0": "^9.8.0", + "dev-dep-1": "^10.9.0", + "dev-dep-2": "^7.8.0", + "dev-dep-3": "^7.15.0", + "dev-dep-4": "^7.7.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-44", + "version": "2.14.17", + "description": "Package 44 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "nodejs", + "typescript" + ], + "dependencies": { + "dep-0": "^4.15.0", + "dep-1": "^5.17.0", + "dep-2": "^1.9.0", + "dep-3": "^1.14.0", + "dep-4": "^6.19.0", + "dep-5": "^1.17.0" + }, + "devDependencies": { + "dev-dep-0": "^4.10.0", + "dev-dep-1": "^3.17.0", + "dev-dep-2": "^1.8.0", + "dev-dep-3": "^3.16.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-45", + "version": "5.16.5", + "description": "Package 45 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "tool", + "typescript" + ], + "dependencies": { + "dep-0": "^10.10.0", + "dep-1": "^6.12.0", + "dep-2": "^6.3.0", + "dep-3": "^4.6.0", + "dep-4": "^2.8.0", + "dep-5": "^1.8.0", + "dep-6": "^7.8.0", + "dep-7": "^9.11.0" + }, + "devDependencies": { + "dev-dep-0": "^10.14.0", + "dev-dep-1": "^6.5.0", + "dev-dep-2": "^4.0.0", + "dev-dep-3": "^2.16.0", + "dev-dep-4": "^5.6.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-46", + "version": "3.5.46", + "description": "Package 46 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "api" + ], + "dependencies": { + "dep-0": "^6.20.0", + "dep-1": "^3.11.0", + "dep-2": "^6.0.0" + }, + "devDependencies": { + "dev-dep-0": "^9.8.0", + "dev-dep-1": "^3.4.0", + "dev-dep-2": "^8.20.0", + "dev-dep-3": "^2.10.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-47", + "version": "5.10.6", + "description": "Package 47 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "api", + "typescript", + "javascript", + "library" + ], + "dependencies": { + "dep-0": "^1.12.0", + "dep-1": "^5.18.0", + "dep-2": "^1.3.0", + "dep-3": "^2.19.0", + "dep-4": "^3.19.0", + "dep-5": "^1.10.0" + }, + "devDependencies": { + "dev-dep-0": "^9.19.0", + "dev-dep-1": "^7.19.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-48", + "version": "2.14.22", + "description": "Package 48 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "nodejs", + "cli" + ], + "dependencies": { + "dep-0": "^7.12.0", + "dep-1": "^3.1.0", + "dep-2": "^2.16.0", + "dep-3": "^2.4.0", + "dep-4": "^4.10.0" + }, + "devDependencies": { + "dev-dep-0": "^4.12.0", + "dev-dep-1": "^8.16.0", + "dev-dep-2": "^4.1.0", + "dev-dep-3": "^2.4.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-49", + "version": "5.17.49", + "description": "Package 49 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "tool", + "library" + ], + "dependencies": { + "dep-0": "^1.3.0", + "dep-1": "^8.7.0", + "dep-2": "^6.18.0", + "dep-3": "^4.12.0" + }, + "devDependencies": { + "dev-dep-0": "^7.14.0", + "dev-dep-1": "^3.18.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-50", + "version": "4.5.41", + "description": "Package 50 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "tool", + "api" + ], + "dependencies": { + "dep-0": "^6.9.0", + "dep-1": "^5.19.0", + "dep-2": "^7.12.0", + "dep-3": "^8.9.0", + "dep-4": "^1.15.0" + }, + "devDependencies": { + "dev-dep-0": "^1.7.0", + "dev-dep-1": "^6.10.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-51", + "version": "3.7.43", + "description": "Package 51 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "tool", + "nodejs", + "library", + "typescript", + "api" + ], + "dependencies": { + "dep-0": "^10.5.0", + "dep-1": "^9.4.0", + "dep-2": "^1.10.0" + }, + "devDependencies": { + "dev-dep-0": "^10.6.0", + "dev-dep-1": "^10.9.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-52", + "version": "3.10.15", + "description": "Package 52 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "javascript", + "typescript" + ], + "dependencies": { + "dep-0": "^5.18.0", + "dep-1": "^9.5.0", + "dep-2": "^2.11.0", + "dep-3": "^7.5.0", + "dep-4": "^3.9.0" + }, + "devDependencies": { + "dev-dep-0": "^5.15.0", + "dev-dep-1": "^7.20.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-53", + "version": "1.20.30", + "description": "Package 53 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "cli", + "nodejs", + "library" + ], + "dependencies": { + "dep-0": "^7.7.0", + "dep-1": "^4.12.0", + "dep-2": "^9.4.0", + "dep-3": "^4.4.0", + "dep-4": "^5.3.0", + "dep-5": "^7.11.0", + "dep-6": "^3.20.0", + "dep-7": "^4.14.0" + }, + "devDependencies": { + "dev-dep-0": "^9.8.0", + "dev-dep-1": "^9.12.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-54", + "version": "0.17.0", + "description": "Package 54 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "javascript", + "cli" + ], + "dependencies": { + "dep-0": "^9.10.0", + "dep-1": "^9.8.0", + "dep-2": "^1.0.0", + "dep-3": "^2.6.0", + "dep-4": "^3.1.0", + "dep-5": "^1.7.0", + "dep-6": "^5.1.0", + "dep-7": "^7.17.0" + }, + "devDependencies": { + "dev-dep-0": "^10.1.0", + "dev-dep-1": "^6.9.0", + "dev-dep-2": "^6.16.0", + "dev-dep-3": "^2.4.0", + "dev-dep-4": "^8.11.0" + }, + "license": "ISC" + }, + { + "name": "@company/package-55", + "version": "2.6.30", + "description": "Package 55 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "library", + "nodejs", + "api" + ], + "dependencies": { + "dep-0": "^3.0.0", + "dep-1": "^4.3.0", + "dep-2": "^4.13.0" + }, + "devDependencies": { + "dev-dep-0": "^7.14.0", + "dev-dep-1": "^10.11.0", + "dev-dep-2": "^9.5.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-56", + "version": "2.12.24", + "description": "Package 56 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "cli", + "nodejs" + ], + "dependencies": { + "dep-0": "^8.11.0", + "dep-1": "^2.4.0", + "dep-2": "^5.3.0", + "dep-3": "^9.9.0" + }, + "devDependencies": { + "dev-dep-0": "^10.19.0", + "dev-dep-1": "^4.16.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-57", + "version": "1.18.0", + "description": "Package 57 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "tool", + "api" + ], + "dependencies": { + "dep-0": "^10.19.0", + "dep-1": "^7.5.0", + "dep-2": "^6.16.0", + "dep-3": "^5.1.0" + }, + "devDependencies": { + "dev-dep-0": "^4.8.0", + "dev-dep-1": "^7.14.0", + "dev-dep-2": "^8.19.0" + }, + "license": "BSD-3-Clause" + }, + { + "name": "@company/package-58", + "version": "2.15.50", + "description": "Package 58 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "api", + "typescript", + "tool", + "cli" + ], + "dependencies": { + "dep-0": "^7.1.0", + "dep-1": "^3.4.0", + "dep-2": "^2.4.0" + }, + "devDependencies": { + "dev-dep-0": "^7.19.0", + "dev-dep-1": "^10.0.0", + "dev-dep-2": "^6.6.0" + }, + "license": "Apache-2.0" + }, + { + "name": "@company/package-59", + "version": "0.14.25", + "description": "Package 59 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "typescript", + "javascript" + ], + "dependencies": { + "dep-0": "^10.5.0", + "dep-1": "^6.1.0", + "dep-2": "^8.20.0", + "dep-3": "^4.19.0", + "dep-4": "^8.14.0" + }, + "devDependencies": { + "dev-dep-0": "^1.16.0", + "dev-dep-1": "^2.15.0" + }, + "license": "MIT" + }, + { + "name": "@company/package-60", + "version": "0.9.31", + "description": "Package 60 description", + "main": "dist/index.js", + "scripts": { + "test": "jest", + "build": "tsc", + "lint": "eslint src/", + "start": "node dist/index.js" + }, + "keywords": [ + "javascript", + "api", + "tool", + "nodejs" + ], + "dependencies": { + "dep-0": "^8.20.0", + "dep-1": "^10.7.0", + "dep-2": "^1.15.0", + "dep-3": "^8.11.0", + "dep-4": "^10.16.0", + "dep-5": "^5.1.0" + }, + "devDependencies": { + "dev-dep-0": "^9.0.0", + "dev-dep-1": "^8.2.0", + "dev-dep-2": "^5.20.0", + "dev-dep-3": "^7.14.0" + }, + "license": "BSD-3-Clause" + } +] \ No newline at end of file diff --git a/synthetic/npm_packages.metadata.json b/synthetic/npm_packages.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e23952d6b5b6dda60571401140a8038b6ec99616 --- /dev/null +++ b/synthetic/npm_packages.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_npm_packages", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.259694", + "size_bytes": 40608, + "description": "60 npm package.json configurations", + "url": "" +} \ No newline at end of file diff --git a/synthetic/numeric_sequences.json b/synthetic/numeric_sequences.json new file mode 100644 index 0000000000000000000000000000000000000000..1d79aafe6166de99b1318e1ebeaa22f2f19ae3ae --- /dev/null +++ b/synthetic/numeric_sequences.json @@ -0,0 +1,234 @@ +{ + "linear": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100 + ], + "fibonacci": [ + 1, + 1, + 2, + 3, + 5, + 8, + 13, + 21, + 34, + 55, + 89, + 144 + ], + "powers_of_2": [ + 1, + 2, + 4, + 8, + 16, + 32, + 64, + 128, + 256, + 512, + 1024, + 2048, + 4096, + 8192, + 16384 + ], + "primes": [ + 2, + 3, + 5, + 7, + 11, + 13, + 17, + 19, + 23, + 29, + 31, + 37, + 41, + 43, + 47, + 53 + ], + "squares": [ + 1, + 4, + 9, + 16, + 25, + 36, + 49, + 64, + 81, + 100, + 121, + 144, + 169, + 196, + 225, + 256, + 289, + 324, + 361, + 400, + 441, + 484, + 529, + 576, + 625 + ], + "cubes": [ + 1, + 8, + 27, + 64, + 125, + 216, + 343, + 512, + 729, + 1000, + 1331, + 1728, + 2197, + 2744, + 3375, + 4096, + 4913, + 5832, + 6859, + 8000 + ], + "arithmetic": [ + 10, + 15, + 20, + 25, + 30, + 35, + 40, + 45, + 50, + 55, + 60, + 65, + 70, + 75, + 80, + 85, + 90, + 95, + 100, + 105, + 110, + 115, + 120, + 125, + 130, + 135, + 140, + 145, + 150, + 155 + ] +} \ No newline at end of file diff --git a/synthetic/numeric_sequences.metadata.json b/synthetic/numeric_sequences.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..c62a16b70e348d13f2fb3c811733a446759ddcc3 --- /dev/null +++ b/synthetic/numeric_sequences.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_numeric_sequences", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.266151", + "size_bytes": 1927, + "description": "Various numeric sequences for delta compression", + "url": "" +} \ No newline at end of file diff --git a/synthetic/repeated_values.json b/synthetic/repeated_values.json new file mode 100644 index 0000000000000000000000000000000000000000..0a487d667e6dd3cdc9be8af3c089241b5397a3bf --- /dev/null +++ b/synthetic/repeated_values.json @@ -0,0 +1,702 @@ +[ + { + "id": 1, + "status": "active", + "priority": "normal", + "category": "default", + "value": 58 + }, + { + "id": 2, + "status": "active", + "priority": "normal", + "category": "default", + "value": 768 + }, + { + "id": 3, + "status": "active", + "priority": "normal", + "category": "default", + "value": 251 + }, + { + "id": 4, + "status": "active", + "priority": "normal", + "category": "default", + "value": 135 + }, + { + "id": 5, + "status": "active", + "priority": "normal", + "category": "default", + "value": 964 + }, + { + "id": 6, + "status": "active", + "priority": "normal", + "category": "default", + "value": 989 + }, + { + "id": 7, + "status": "active", + "priority": "normal", + "category": "default", + "value": 556 + }, + { + "id": 8, + "status": "active", + "priority": "normal", + "category": "default", + "value": 494 + }, + { + "id": 9, + "status": "active", + "priority": "normal", + "category": "default", + "value": 321 + }, + { + "id": 10, + "status": "active", + "priority": "normal", + "category": "default", + "value": 571 + }, + { + "id": 11, + "status": "active", + "priority": "normal", + "category": "default", + "value": 770 + }, + { + "id": 12, + "status": "active", + "priority": "normal", + "category": "default", + "value": 893 + }, + { + "id": 13, + "status": "active", + "priority": "normal", + "category": "default", + "value": 191 + }, + { + "id": 14, + "status": "active", + "priority": "normal", + "category": "default", + "value": 972 + }, + { + "id": 15, + "status": "active", + "priority": "normal", + "category": "default", + "value": 259 + }, + { + "id": 16, + "status": "active", + "priority": "normal", + "category": "default", + "value": 808 + }, + { + "id": 17, + "status": "active", + "priority": "normal", + "category": "default", + "value": 943 + }, + { + "id": 18, + "status": "active", + "priority": "normal", + "category": "default", + "value": 299 + }, + { + "id": 19, + "status": "active", + "priority": "normal", + "category": "default", + "value": 110 + }, + { + "id": 20, + "status": "active", + "priority": "normal", + "category": "default", + "value": 92 + }, + { + "id": 21, + "status": "active", + "priority": "normal", + "category": "default", + "value": 310 + }, + { + "id": 22, + "status": "active", + "priority": "normal", + "category": "default", + "value": 585 + }, + { + "id": 23, + "status": "active", + "priority": "normal", + "category": "default", + "value": 626 + }, + { + "id": 24, + "status": "active", + "priority": "normal", + "category": "default", + "value": 525 + }, + { + "id": 25, + "status": "active", + "priority": "normal", + "category": "default", + "value": 689 + }, + { + "id": 26, + "status": "active", + "priority": "normal", + "category": "default", + "value": 482 + }, + { + "id": 27, + "status": "active", + "priority": "normal", + "category": "default", + "value": 954 + }, + { + "id": 28, + "status": "active", + "priority": "normal", + "category": "default", + "value": 374 + }, + { + "id": 29, + "status": "active", + "priority": "normal", + "category": "default", + "value": 300 + }, + { + "id": 30, + "status": "active", + "priority": "normal", + "category": "default", + "value": 71 + }, + { + "id": 31, + "status": "active", + "priority": "normal", + "category": "default", + "value": 770 + }, + { + "id": 32, + "status": "active", + "priority": "normal", + "category": "default", + "value": 205 + }, + { + "id": 33, + "status": "active", + "priority": "normal", + "category": "default", + "value": 827 + }, + { + "id": 34, + "status": "active", + "priority": "normal", + "category": "default", + "value": 538 + }, + { + "id": 35, + "status": "active", + "priority": "normal", + "category": "default", + "value": 95 + }, + { + "id": 36, + "status": "active", + "priority": "normal", + "category": "default", + "value": 813 + }, + { + "id": 37, + "status": "active", + "priority": "normal", + "category": "default", + "value": 144 + }, + { + "id": 38, + "status": "active", + "priority": "normal", + "category": "default", + "value": 402 + }, + { + "id": 39, + "status": "active", + "priority": "normal", + "category": "default", + "value": 651 + }, + { + "id": 40, + "status": "active", + "priority": "normal", + "category": "default", + "value": 920 + }, + { + "id": 41, + "status": "active", + "priority": "normal", + "category": "default", + "value": 285 + }, + { + "id": 42, + "status": "active", + "priority": "normal", + "category": "default", + "value": 674 + }, + { + "id": 43, + "status": "active", + "priority": "normal", + "category": "default", + "value": 594 + }, + { + "id": 44, + "status": "active", + "priority": "normal", + "category": "default", + "value": 732 + }, + { + "id": 45, + "status": "active", + "priority": "normal", + "category": "default", + "value": 572 + }, + { + "id": 46, + "status": "active", + "priority": "normal", + "category": "default", + "value": 447 + }, + { + "id": 47, + "status": "active", + "priority": "normal", + "category": "default", + "value": 748 + }, + { + "id": 48, + "status": "active", + "priority": "normal", + "category": "default", + "value": 957 + }, + { + "id": 49, + "status": "active", + "priority": "normal", + "category": "default", + "value": 368 + }, + { + "id": 50, + "status": "active", + "priority": "normal", + "category": "default", + "value": 719 + }, + { + "id": 51, + "status": "active", + "priority": "normal", + "category": "default", + "value": 422 + }, + { + "id": 52, + "status": "active", + "priority": "normal", + "category": "default", + "value": 44 + }, + { + "id": 53, + "status": "active", + "priority": "normal", + "category": "default", + "value": 974 + }, + { + "id": 54, + "status": "active", + "priority": "normal", + "category": "default", + "value": 333 + }, + { + "id": 55, + "status": "active", + "priority": "normal", + "category": "default", + "value": 661 + }, + { + "id": 56, + "status": "active", + "priority": "normal", + "category": "default", + "value": 200 + }, + { + "id": 57, + "status": "active", + "priority": "normal", + "category": "default", + "value": 387 + }, + { + "id": 58, + "status": "active", + "priority": "normal", + "category": "default", + "value": 903 + }, + { + "id": 59, + "status": "active", + "priority": "normal", + "category": "default", + "value": 65 + }, + { + "id": 60, + "status": "active", + "priority": "normal", + "category": "default", + "value": 815 + }, + { + "id": 61, + "status": "active", + "priority": "normal", + "category": "default", + "value": 333 + }, + { + "id": 62, + "status": "active", + "priority": "normal", + "category": "default", + "value": 270 + }, + { + "id": 63, + "status": "active", + "priority": "normal", + "category": "default", + "value": 823 + }, + { + "id": 64, + "status": "active", + "priority": "normal", + "category": "default", + "value": 40 + }, + { + "id": 65, + "status": "active", + "priority": "normal", + "category": "default", + "value": 805 + }, + { + "id": 66, + "status": "active", + "priority": "normal", + "category": "default", + "value": 868 + }, + { + "id": 67, + "status": "active", + "priority": "normal", + "category": "default", + "value": 222 + }, + { + "id": 68, + "status": "active", + "priority": "normal", + "category": "default", + "value": 454 + }, + { + "id": 69, + "status": "active", + "priority": "normal", + "category": "default", + "value": 952 + }, + { + "id": 70, + "status": "active", + "priority": "normal", + "category": "default", + "value": 457 + }, + { + "id": 71, + "status": "active", + "priority": "normal", + "category": "default", + "value": 140 + }, + { + "id": 72, + "status": "active", + "priority": "normal", + "category": "default", + "value": 36 + }, + { + "id": 73, + "status": "active", + "priority": "normal", + "category": "default", + "value": 292 + }, + { + "id": 74, + "status": "active", + "priority": "normal", + "category": "default", + "value": 764 + }, + { + "id": 75, + "status": "active", + "priority": "normal", + "category": "default", + "value": 130 + }, + { + "id": 76, + "status": "active", + "priority": "normal", + "category": "default", + "value": 51 + }, + { + "id": 77, + "status": "active", + "priority": "normal", + "category": "default", + "value": 763 + }, + { + "id": 78, + "status": "active", + "priority": "normal", + "category": "default", + "value": 577 + }, + { + "id": 79, + "status": "active", + "priority": "normal", + "category": "default", + "value": 169 + }, + { + "id": 80, + "status": "active", + "priority": "normal", + "category": "default", + "value": 655 + }, + { + "id": 81, + "status": "active", + "priority": "normal", + "category": "default", + "value": 640 + }, + { + "id": 82, + "status": "active", + "priority": "normal", + "category": "default", + "value": 203 + }, + { + "id": 83, + "status": "active", + "priority": "normal", + "category": "default", + "value": 933 + }, + { + "id": 84, + "status": "active", + "priority": "normal", + "category": "default", + "value": 791 + }, + { + "id": 85, + "status": "active", + "priority": "normal", + "category": "default", + "value": 859 + }, + { + "id": 86, + "status": "active", + "priority": "high", + "category": "default", + "value": 784 + }, + { + "id": 87, + "status": "active", + "priority": "high", + "category": "default", + "value": 32 + }, + { + "id": 88, + "status": "active", + "priority": "high", + "category": "default", + "value": 352 + }, + { + "id": 89, + "status": "active", + "priority": "high", + "category": "default", + "value": 414 + }, + { + "id": 90, + "status": "active", + "priority": "high", + "category": "default", + "value": 582 + }, + { + "id": 91, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 964 + }, + { + "id": 92, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 494 + }, + { + "id": 93, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 558 + }, + { + "id": 94, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 91 + }, + { + "id": 95, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 902 + }, + { + "id": 96, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 461 + }, + { + "id": 97, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 839 + }, + { + "id": 98, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 786 + }, + { + "id": 99, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 653 + }, + { + "id": 100, + "status": "inactive", + "priority": "high", + "category": "default", + "value": 743 + } +] \ No newline at end of file diff --git a/synthetic/repeated_values.metadata.json b/synthetic/repeated_values.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..0989ae1f0a6968347f344451f1ddc813b7434978 --- /dev/null +++ b/synthetic/repeated_values.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_repeated_values", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.267353", + "size_bytes": 11673, + "description": "100 records with high repetition for sparse mode", + "url": "" +} \ No newline at end of file diff --git a/synthetic/sensor_timeseries.json b/synthetic/sensor_timeseries.json new file mode 100644 index 0000000000000000000000000000000000000000..83e7148f823f93aafa69a4521b06073a40a94b74 --- /dev/null +++ b/synthetic/sensor_timeseries.json @@ -0,0 +1,1652 @@ +[ + { + "timestamp": 1730764800, + "sensor_id": "SENSOR-006", + "temperature": 21.44, + "humidity": 47.23, + "pressure": 1008.35, + "location": { + "lat": 9.890275, + "lon": 171.951738 + } + }, + { + "timestamp": 1730764860, + "sensor_id": "SENSOR-002", + "temperature": 21.7, + "humidity": 65.3, + "pressure": 983.43, + "location": { + "lat": 39.472639, + "lon": 123.363466 + } + }, + { + "timestamp": 1730764920, + "sensor_id": "SENSOR-009", + "temperature": 17.58, + "humidity": 62.39, + "pressure": 988.51, + "location": { + "lat": 14.965227, + "lon": 10.579753 + } + }, + { + "timestamp": 1730764980, + "sensor_id": "SENSOR-001", + "temperature": 28.98, + "humidity": 78.88, + "pressure": 1016.22, + "location": { + "lat": 1.906836, + "lon": -0.622222 + } + }, + { + "timestamp": 1730765040, + "sensor_id": "SENSOR-005", + "temperature": 21.15, + "humidity": 74.71, + "pressure": 1005.72, + "location": { + "lat": 15.133721, + "lon": 128.826692 + } + }, + { + "timestamp": 1730765100, + "sensor_id": "SENSOR-008", + "temperature": 23.66, + "humidity": 49.63, + "pressure": 991.7, + "location": { + "lat": -32.819359, + "lon": -98.595732 + } + }, + { + "timestamp": 1730765160, + "sensor_id": "SENSOR-003", + "temperature": 28.0, + "humidity": 57.69, + "pressure": 996.56, + "location": { + "lat": 27.735421, + "lon": 47.649608 + } + }, + { + "timestamp": 1730765220, + "sensor_id": "SENSOR-003", + "temperature": 29.71, + "humidity": 51.64, + "pressure": 1017.81, + "location": { + "lat": 21.442046, + "lon": 167.427086 + } + }, + { + "timestamp": 1730765280, + "sensor_id": "SENSOR-003", + "temperature": 18.25, + "humidity": 65.07, + "pressure": 993.58, + "location": { + "lat": -66.590626, + "lon": 70.764299 + } + }, + { + "timestamp": 1730765340, + "sensor_id": "SENSOR-005", + "temperature": 16.11, + "humidity": 44.76, + "pressure": 1006.61, + "location": { + "lat": 36.460263, + "lon": 92.437717 + } + }, + { + "timestamp": 1730765400, + "sensor_id": "SENSOR-003", + "temperature": 21.14, + "humidity": 58.11, + "pressure": 1003.11, + "location": { + "lat": 38.920743, + "lon": -119.237055 + } + }, + { + "timestamp": 1730765460, + "sensor_id": "SENSOR-010", + "temperature": 23.76, + "humidity": 61.51, + "pressure": 997.54, + "location": { + "lat": -59.650628, + "lon": 110.457615 + } + }, + { + "timestamp": 1730765520, + "sensor_id": "SENSOR-009", + "temperature": 22.23, + "humidity": 49.31, + "pressure": 993.98, + "location": { + "lat": -43.680568, + "lon": 28.781555 + } + }, + { + "timestamp": 1730765580, + "sensor_id": "SENSOR-004", + "temperature": 15.2, + "humidity": 36.89, + "pressure": 1005.46, + "location": { + "lat": -22.787981, + "lon": 16.58355 + } + }, + { + "timestamp": 1730765640, + "sensor_id": "SENSOR-007", + "temperature": 29.26, + "humidity": 42.88, + "pressure": 986.4, + "location": { + "lat": 54.424529, + "lon": -158.414044 + } + }, + { + "timestamp": 1730765700, + "sensor_id": "SENSOR-008", + "temperature": 26.2, + "humidity": 63.68, + "pressure": 1007.35, + "location": { + "lat": 34.716452, + "lon": 150.199764 + } + }, + { + "timestamp": 1730765760, + "sensor_id": "SENSOR-010", + "temperature": 20.62, + "humidity": 55.16, + "pressure": 988.19, + "location": { + "lat": -28.171346, + "lon": 144.28563 + } + }, + { + "timestamp": 1730765820, + "sensor_id": "SENSOR-007", + "temperature": 26.59, + "humidity": 57.23, + "pressure": 1008.75, + "location": { + "lat": 66.287822, + "lon": 160.508497 + } + }, + { + "timestamp": 1730765880, + "sensor_id": "SENSOR-005", + "temperature": 28.23, + "humidity": 45.87, + "pressure": 992.45, + "location": { + "lat": -73.250664, + "lon": 158.90523 + } + }, + { + "timestamp": 1730765940, + "sensor_id": "SENSOR-007", + "temperature": 18.29, + "humidity": 36.37, + "pressure": 992.72, + "location": { + "lat": -68.306198, + "lon": -154.460277 + } + }, + { + "timestamp": 1730766000, + "sensor_id": "SENSOR-004", + "temperature": 29.69, + "humidity": 74.94, + "pressure": 1000.73, + "location": { + "lat": -15.851826, + "lon": 40.570637 + } + }, + { + "timestamp": 1730766060, + "sensor_id": "SENSOR-006", + "temperature": 22.72, + "humidity": 46.02, + "pressure": 1019.31, + "location": { + "lat": -36.426239, + "lon": -71.395066 + } + }, + { + "timestamp": 1730766120, + "sensor_id": "SENSOR-002", + "temperature": 17.53, + "humidity": 32.8, + "pressure": 1001.42, + "location": { + "lat": -67.566437, + "lon": -146.553313 + } + }, + { + "timestamp": 1730766180, + "sensor_id": "SENSOR-009", + "temperature": 26.79, + "humidity": 73.83, + "pressure": 1017.45, + "location": { + "lat": 73.784041, + "lon": 38.331928 + } + }, + { + "timestamp": 1730766240, + "sensor_id": "SENSOR-004", + "temperature": 19.92, + "humidity": 75.54, + "pressure": 1000.35, + "location": { + "lat": 87.359066, + "lon": 54.12906 + } + }, + { + "timestamp": 1730766300, + "sensor_id": "SENSOR-002", + "temperature": 15.35, + "humidity": 59.92, + "pressure": 1010.46, + "location": { + "lat": -68.830238, + "lon": 33.950019 + } + }, + { + "timestamp": 1730766360, + "sensor_id": "SENSOR-002", + "temperature": 24.06, + "humidity": 68.06, + "pressure": 982.81, + "location": { + "lat": 14.667375, + "lon": -108.27654 + } + }, + { + "timestamp": 1730766420, + "sensor_id": "SENSOR-008", + "temperature": 29.8, + "humidity": 58.24, + "pressure": 996.03, + "location": { + "lat": 77.037389, + "lon": -119.380182 + } + }, + { + "timestamp": 1730766480, + "sensor_id": "SENSOR-009", + "temperature": 17.38, + "humidity": 71.61, + "pressure": 1006.45, + "location": { + "lat": 74.890625, + "lon": 145.64271 + } + }, + { + "timestamp": 1730766540, + "sensor_id": "SENSOR-010", + "temperature": 23.44, + "humidity": 53.25, + "pressure": 994.15, + "location": { + "lat": 86.094285, + "lon": -66.411566 + } + }, + { + "timestamp": 1730766600, + "sensor_id": "SENSOR-008", + "temperature": 22.22, + "humidity": 71.25, + "pressure": 993.12, + "location": { + "lat": 89.047284, + "lon": -147.511276 + } + }, + { + "timestamp": 1730766660, + "sensor_id": "SENSOR-001", + "temperature": 29.54, + "humidity": 59.47, + "pressure": 994.0, + "location": { + "lat": -45.060268, + "lon": 104.5744 + } + }, + { + "timestamp": 1730766720, + "sensor_id": "SENSOR-008", + "temperature": 27.31, + "humidity": 77.15, + "pressure": 997.66, + "location": { + "lat": 14.908222, + "lon": -104.487723 + } + }, + { + "timestamp": 1730766780, + "sensor_id": "SENSOR-009", + "temperature": 26.76, + "humidity": 42.89, + "pressure": 996.2, + "location": { + "lat": 64.745428, + "lon": 1.510999 + } + }, + { + "timestamp": 1730766840, + "sensor_id": "SENSOR-004", + "temperature": 24.67, + "humidity": 76.25, + "pressure": 1015.21, + "location": { + "lat": -17.283817, + "lon": 34.944694 + } + }, + { + "timestamp": 1730766900, + "sensor_id": "SENSOR-006", + "temperature": 15.4, + "humidity": 41.77, + "pressure": 1001.34, + "location": { + "lat": -30.741979, + "lon": 69.876495 + } + }, + { + "timestamp": 1730766960, + "sensor_id": "SENSOR-004", + "temperature": 26.12, + "humidity": 35.69, + "pressure": 985.01, + "location": { + "lat": 47.210654, + "lon": -155.028233 + } + }, + { + "timestamp": 1730767020, + "sensor_id": "SENSOR-009", + "temperature": 24.33, + "humidity": 43.34, + "pressure": 1002.52, + "location": { + "lat": 47.66987, + "lon": 35.14509 + } + }, + { + "timestamp": 1730767080, + "sensor_id": "SENSOR-001", + "temperature": 26.31, + "humidity": 39.0, + "pressure": 982.37, + "location": { + "lat": -23.110887, + "lon": -77.803702 + } + }, + { + "timestamp": 1730767140, + "sensor_id": "SENSOR-005", + "temperature": 18.71, + "humidity": 35.75, + "pressure": 994.17, + "location": { + "lat": 73.108021, + "lon": 0.572294 + } + }, + { + "timestamp": 1730767200, + "sensor_id": "SENSOR-008", + "temperature": 21.69, + "humidity": 47.04, + "pressure": 1000.62, + "location": { + "lat": -73.51026, + "lon": 87.921597 + } + }, + { + "timestamp": 1730767260, + "sensor_id": "SENSOR-003", + "temperature": 27.31, + "humidity": 75.04, + "pressure": 1014.18, + "location": { + "lat": 74.6504, + "lon": 133.596966 + } + }, + { + "timestamp": 1730767320, + "sensor_id": "SENSOR-009", + "temperature": 29.96, + "humidity": 70.47, + "pressure": 981.63, + "location": { + "lat": -81.232259, + "lon": -66.996597 + } + }, + { + "timestamp": 1730767380, + "sensor_id": "SENSOR-008", + "temperature": 20.71, + "humidity": 49.34, + "pressure": 1005.81, + "location": { + "lat": 50.088192, + "lon": -1.079462 + } + }, + { + "timestamp": 1730767440, + "sensor_id": "SENSOR-007", + "temperature": 29.08, + "humidity": 37.49, + "pressure": 1017.63, + "location": { + "lat": -89.164584, + "lon": 94.579322 + } + }, + { + "timestamp": 1730767500, + "sensor_id": "SENSOR-008", + "temperature": 19.77, + "humidity": 63.21, + "pressure": 1016.36, + "location": { + "lat": -21.18869, + "lon": 91.372188 + } + }, + { + "timestamp": 1730767560, + "sensor_id": "SENSOR-001", + "temperature": 15.47, + "humidity": 43.03, + "pressure": 990.77, + "location": { + "lat": 29.275568, + "lon": -20.994418 + } + }, + { + "timestamp": 1730767620, + "sensor_id": "SENSOR-009", + "temperature": 29.8, + "humidity": 72.75, + "pressure": 1011.11, + "location": { + "lat": 47.204257, + "lon": -20.650774 + } + }, + { + "timestamp": 1730767680, + "sensor_id": "SENSOR-001", + "temperature": 21.07, + "humidity": 61.16, + "pressure": 1015.19, + "location": { + "lat": 46.998179, + "lon": -134.603701 + } + }, + { + "timestamp": 1730767740, + "sensor_id": "SENSOR-007", + "temperature": 19.28, + "humidity": 54.75, + "pressure": 997.25, + "location": { + "lat": 3.950419, + "lon": -116.277968 + } + }, + { + "timestamp": 1730767800, + "sensor_id": "SENSOR-010", + "temperature": 20.04, + "humidity": 78.02, + "pressure": 990.98, + "location": { + "lat": 47.936209, + "lon": -90.157677 + } + }, + { + "timestamp": 1730767860, + "sensor_id": "SENSOR-005", + "temperature": 15.32, + "humidity": 38.03, + "pressure": 1015.94, + "location": { + "lat": -48.080314, + "lon": -160.832788 + } + }, + { + "timestamp": 1730767920, + "sensor_id": "SENSOR-010", + "temperature": 16.37, + "humidity": 49.87, + "pressure": 1006.98, + "location": { + "lat": 85.585272, + "lon": 108.637349 + } + }, + { + "timestamp": 1730767980, + "sensor_id": "SENSOR-003", + "temperature": 21.48, + "humidity": 32.29, + "pressure": 1000.49, + "location": { + "lat": -2.245961, + "lon": 2.101513 + } + }, + { + "timestamp": 1730768040, + "sensor_id": "SENSOR-008", + "temperature": 16.67, + "humidity": 33.98, + "pressure": 1004.66, + "location": { + "lat": -54.96773, + "lon": 93.334655 + } + }, + { + "timestamp": 1730768100, + "sensor_id": "SENSOR-006", + "temperature": 23.47, + "humidity": 60.3, + "pressure": 1008.07, + "location": { + "lat": 83.09999, + "lon": 90.487438 + } + }, + { + "timestamp": 1730768160, + "sensor_id": "SENSOR-004", + "temperature": 23.73, + "humidity": 68.06, + "pressure": 1016.01, + "location": { + "lat": -43.132783, + "lon": -57.908687 + } + }, + { + "timestamp": 1730768220, + "sensor_id": "SENSOR-001", + "temperature": 27.47, + "humidity": 73.19, + "pressure": 983.35, + "location": { + "lat": -48.098967, + "lon": 178.907334 + } + }, + { + "timestamp": 1730768280, + "sensor_id": "SENSOR-010", + "temperature": 27.34, + "humidity": 54.52, + "pressure": 984.7, + "location": { + "lat": 89.188932, + "lon": 68.938065 + } + }, + { + "timestamp": 1730768340, + "sensor_id": "SENSOR-006", + "temperature": 23.51, + "humidity": 40.39, + "pressure": 1007.81, + "location": { + "lat": -34.591987, + "lon": -106.609348 + } + }, + { + "timestamp": 1730768400, + "sensor_id": "SENSOR-001", + "temperature": 28.55, + "humidity": 58.78, + "pressure": 987.45, + "location": { + "lat": -1.839079, + "lon": 117.389 + } + }, + { + "timestamp": 1730768460, + "sensor_id": "SENSOR-008", + "temperature": 23.08, + "humidity": 45.76, + "pressure": 1004.45, + "location": { + "lat": 38.975136, + "lon": 142.476771 + } + }, + { + "timestamp": 1730768520, + "sensor_id": "SENSOR-006", + "temperature": 15.44, + "humidity": 39.39, + "pressure": 1014.25, + "location": { + "lat": -48.513144, + "lon": -130.529891 + } + }, + { + "timestamp": 1730768580, + "sensor_id": "SENSOR-006", + "temperature": 28.16, + "humidity": 71.56, + "pressure": 981.35, + "location": { + "lat": 71.613606, + "lon": 42.148345 + } + }, + { + "timestamp": 1730768640, + "sensor_id": "SENSOR-001", + "temperature": 23.73, + "humidity": 65.06, + "pressure": 1000.52, + "location": { + "lat": -35.445489, + "lon": -102.125224 + } + }, + { + "timestamp": 1730768700, + "sensor_id": "SENSOR-002", + "temperature": 19.73, + "humidity": 48.74, + "pressure": 1007.79, + "location": { + "lat": -60.721706, + "lon": -126.082472 + } + }, + { + "timestamp": 1730768760, + "sensor_id": "SENSOR-002", + "temperature": 23.72, + "humidity": 65.67, + "pressure": 994.76, + "location": { + "lat": -33.901087, + "lon": 121.350592 + } + }, + { + "timestamp": 1730768820, + "sensor_id": "SENSOR-008", + "temperature": 21.61, + "humidity": 74.13, + "pressure": 988.94, + "location": { + "lat": 83.298444, + "lon": 56.782975 + } + }, + { + "timestamp": 1730768880, + "sensor_id": "SENSOR-009", + "temperature": 18.29, + "humidity": 45.82, + "pressure": 980.38, + "location": { + "lat": 17.13173, + "lon": 56.826083 + } + }, + { + "timestamp": 1730768940, + "sensor_id": "SENSOR-008", + "temperature": 26.39, + "humidity": 72.17, + "pressure": 996.52, + "location": { + "lat": -74.156878, + "lon": 144.893329 + } + }, + { + "timestamp": 1730769000, + "sensor_id": "SENSOR-008", + "temperature": 24.32, + "humidity": 44.8, + "pressure": 987.82, + "location": { + "lat": -30.95462, + "lon": 167.683699 + } + }, + { + "timestamp": 1730769060, + "sensor_id": "SENSOR-001", + "temperature": 23.57, + "humidity": 47.75, + "pressure": 988.49, + "location": { + "lat": -64.199841, + "lon": 69.434151 + } + }, + { + "timestamp": 1730769120, + "sensor_id": "SENSOR-003", + "temperature": 18.63, + "humidity": 78.14, + "pressure": 994.68, + "location": { + "lat": -38.239765, + "lon": -38.95112 + } + }, + { + "timestamp": 1730769180, + "sensor_id": "SENSOR-008", + "temperature": 28.69, + "humidity": 74.78, + "pressure": 996.55, + "location": { + "lat": 42.721657, + "lon": -133.584498 + } + }, + { + "timestamp": 1730769240, + "sensor_id": "SENSOR-002", + "temperature": 16.79, + "humidity": 75.89, + "pressure": 1014.49, + "location": { + "lat": 26.260207, + "lon": 92.486146 + } + }, + { + "timestamp": 1730769300, + "sensor_id": "SENSOR-007", + "temperature": 22.9, + "humidity": 32.47, + "pressure": 1010.17, + "location": { + "lat": -32.099291, + "lon": 24.397014 + } + }, + { + "timestamp": 1730769360, + "sensor_id": "SENSOR-006", + "temperature": 20.71, + "humidity": 67.61, + "pressure": 1006.29, + "location": { + "lat": -12.112287, + "lon": -91.110035 + } + }, + { + "timestamp": 1730769420, + "sensor_id": "SENSOR-006", + "temperature": 20.37, + "humidity": 51.46, + "pressure": 996.71, + "location": { + "lat": 84.402254, + "lon": 127.527445 + } + }, + { + "timestamp": 1730769480, + "sensor_id": "SENSOR-001", + "temperature": 22.69, + "humidity": 48.78, + "pressure": 983.44, + "location": { + "lat": -75.899713, + "lon": 22.871955 + } + }, + { + "timestamp": 1730769540, + "sensor_id": "SENSOR-006", + "temperature": 24.46, + "humidity": 35.52, + "pressure": 1002.1, + "location": { + "lat": -2.666166, + "lon": 45.444136 + } + }, + { + "timestamp": 1730769600, + "sensor_id": "SENSOR-001", + "temperature": 24.89, + "humidity": 58.6, + "pressure": 1009.25, + "location": { + "lat": -77.179994, + "lon": -160.523714 + } + }, + { + "timestamp": 1730769660, + "sensor_id": "SENSOR-005", + "temperature": 20.44, + "humidity": 74.78, + "pressure": 984.8, + "location": { + "lat": -47.486233, + "lon": 168.739714 + } + }, + { + "timestamp": 1730769720, + "sensor_id": "SENSOR-007", + "temperature": 21.65, + "humidity": 75.28, + "pressure": 1012.92, + "location": { + "lat": -58.458689, + "lon": 111.729419 + } + }, + { + "timestamp": 1730769780, + "sensor_id": "SENSOR-006", + "temperature": 26.57, + "humidity": 38.47, + "pressure": 1004.13, + "location": { + "lat": 59.819803, + "lon": -57.083878 + } + }, + { + "timestamp": 1730769840, + "sensor_id": "SENSOR-006", + "temperature": 15.86, + "humidity": 56.42, + "pressure": 1000.16, + "location": { + "lat": -38.287885, + "lon": 32.726679 + } + }, + { + "timestamp": 1730769900, + "sensor_id": "SENSOR-004", + "temperature": 29.64, + "humidity": 48.25, + "pressure": 990.25, + "location": { + "lat": 1.856436, + "lon": 106.706552 + } + }, + { + "timestamp": 1730769960, + "sensor_id": "SENSOR-007", + "temperature": 23.18, + "humidity": 34.33, + "pressure": 1000.54, + "location": { + "lat": -6.696102, + "lon": 149.513978 + } + }, + { + "timestamp": 1730770020, + "sensor_id": "SENSOR-005", + "temperature": 18.94, + "humidity": 56.25, + "pressure": 1005.03, + "location": { + "lat": 69.112456, + "lon": 23.258522 + } + }, + { + "timestamp": 1730770080, + "sensor_id": "SENSOR-002", + "temperature": 26.14, + "humidity": 45.74, + "pressure": 987.15, + "location": { + "lat": 75.899159, + "lon": 10.055526 + } + }, + { + "timestamp": 1730770140, + "sensor_id": "SENSOR-007", + "temperature": 18.41, + "humidity": 64.56, + "pressure": 981.82, + "location": { + "lat": 66.449914, + "lon": 58.343996 + } + }, + { + "timestamp": 1730770200, + "sensor_id": "SENSOR-004", + "temperature": 16.2, + "humidity": 71.2, + "pressure": 1013.0, + "location": { + "lat": -5.880033, + "lon": 158.00382 + } + }, + { + "timestamp": 1730770260, + "sensor_id": "SENSOR-006", + "temperature": 15.41, + "humidity": 51.88, + "pressure": 992.67, + "location": { + "lat": -62.295168, + "lon": 33.964005 + } + }, + { + "timestamp": 1730770320, + "sensor_id": "SENSOR-007", + "temperature": 28.64, + "humidity": 48.05, + "pressure": 1013.32, + "location": { + "lat": 70.026375, + "lon": -14.574227 + } + }, + { + "timestamp": 1730770380, + "sensor_id": "SENSOR-010", + "temperature": 24.54, + "humidity": 50.72, + "pressure": 1016.35, + "location": { + "lat": 76.013195, + "lon": 104.921248 + } + }, + { + "timestamp": 1730770440, + "sensor_id": "SENSOR-004", + "temperature": 21.77, + "humidity": 31.02, + "pressure": 980.71, + "location": { + "lat": -32.234975, + "lon": -124.106617 + } + }, + { + "timestamp": 1730770500, + "sensor_id": "SENSOR-001", + "temperature": 16.01, + "humidity": 59.05, + "pressure": 1011.56, + "location": { + "lat": -26.740034, + "lon": 159.819765 + } + }, + { + "timestamp": 1730770560, + "sensor_id": "SENSOR-005", + "temperature": 16.91, + "humidity": 39.86, + "pressure": 981.27, + "location": { + "lat": 60.049952, + "lon": -3.658071 + } + }, + { + "timestamp": 1730770620, + "sensor_id": "SENSOR-004", + "temperature": 19.31, + "humidity": 73.85, + "pressure": 994.49, + "location": { + "lat": 14.524251, + "lon": 66.561527 + } + }, + { + "timestamp": 1730770680, + "sensor_id": "SENSOR-009", + "temperature": 24.15, + "humidity": 74.2, + "pressure": 1010.22, + "location": { + "lat": -23.781559, + "lon": -30.042399 + } + }, + { + "timestamp": 1730770740, + "sensor_id": "SENSOR-006", + "temperature": 25.1, + "humidity": 79.95, + "pressure": 997.63, + "location": { + "lat": 11.889011, + "lon": -173.439984 + } + }, + { + "timestamp": 1730770800, + "sensor_id": "SENSOR-010", + "temperature": 28.64, + "humidity": 65.26, + "pressure": 984.34, + "location": { + "lat": 10.906702, + "lon": -67.425499 + } + }, + { + "timestamp": 1730770860, + "sensor_id": "SENSOR-008", + "temperature": 28.89, + "humidity": 52.87, + "pressure": 980.37, + "location": { + "lat": 22.188226, + "lon": -171.477173 + } + }, + { + "timestamp": 1730770920, + "sensor_id": "SENSOR-008", + "temperature": 17.14, + "humidity": 64.23, + "pressure": 1012.7, + "location": { + "lat": 36.324316, + "lon": -105.289875 + } + }, + { + "timestamp": 1730770980, + "sensor_id": "SENSOR-004", + "temperature": 26.13, + "humidity": 31.16, + "pressure": 995.49, + "location": { + "lat": 75.382524, + "lon": 21.463059 + } + }, + { + "timestamp": 1730771040, + "sensor_id": "SENSOR-009", + "temperature": 23.09, + "humidity": 44.79, + "pressure": 1010.37, + "location": { + "lat": -74.714915, + "lon": -142.18591 + } + }, + { + "timestamp": 1730771100, + "sensor_id": "SENSOR-006", + "temperature": 18.02, + "humidity": 63.21, + "pressure": 989.08, + "location": { + "lat": -71.594757, + "lon": 112.915486 + } + }, + { + "timestamp": 1730771160, + "sensor_id": "SENSOR-006", + "temperature": 29.23, + "humidity": 45.74, + "pressure": 1018.39, + "location": { + "lat": 48.03945, + "lon": -120.422301 + } + }, + { + "timestamp": 1730771220, + "sensor_id": "SENSOR-003", + "temperature": 16.67, + "humidity": 76.08, + "pressure": 1013.88, + "location": { + "lat": 26.314151, + "lon": 168.808679 + } + }, + { + "timestamp": 1730771280, + "sensor_id": "SENSOR-004", + "temperature": 15.89, + "humidity": 78.73, + "pressure": 1016.84, + "location": { + "lat": -35.297708, + "lon": 18.045825 + } + }, + { + "timestamp": 1730771340, + "sensor_id": "SENSOR-003", + "temperature": 21.81, + "humidity": 72.72, + "pressure": 1019.43, + "location": { + "lat": 7.114424, + "lon": -99.606668 + } + }, + { + "timestamp": 1730771400, + "sensor_id": "SENSOR-004", + "temperature": 22.11, + "humidity": 43.61, + "pressure": 1015.67, + "location": { + "lat": 79.216595, + "lon": -51.737538 + } + }, + { + "timestamp": 1730771460, + "sensor_id": "SENSOR-005", + "temperature": 17.58, + "humidity": 58.08, + "pressure": 999.02, + "location": { + "lat": 43.159898, + "lon": 101.165572 + } + }, + { + "timestamp": 1730771520, + "sensor_id": "SENSOR-010", + "temperature": 20.28, + "humidity": 67.84, + "pressure": 981.95, + "location": { + "lat": 82.64753, + "lon": -78.188365 + } + }, + { + "timestamp": 1730771580, + "sensor_id": "SENSOR-009", + "temperature": 17.77, + "humidity": 74.26, + "pressure": 984.61, + "location": { + "lat": 10.006942, + "lon": 108.727508 + } + }, + { + "timestamp": 1730771640, + "sensor_id": "SENSOR-009", + "temperature": 16.06, + "humidity": 32.75, + "pressure": 1016.69, + "location": { + "lat": -28.470735, + "lon": -43.489681 + } + }, + { + "timestamp": 1730771700, + "sensor_id": "SENSOR-001", + "temperature": 28.13, + "humidity": 32.51, + "pressure": 986.88, + "location": { + "lat": 40.065268, + "lon": 96.410749 + } + }, + { + "timestamp": 1730771760, + "sensor_id": "SENSOR-004", + "temperature": 17.38, + "humidity": 76.91, + "pressure": 982.54, + "location": { + "lat": 2.002635, + "lon": -134.658494 + } + }, + { + "timestamp": 1730771820, + "sensor_id": "SENSOR-006", + "temperature": 24.07, + "humidity": 50.61, + "pressure": 1004.07, + "location": { + "lat": 7.801872, + "lon": -3.592772 + } + }, + { + "timestamp": 1730771880, + "sensor_id": "SENSOR-006", + "temperature": 25.84, + "humidity": 39.85, + "pressure": 1009.39, + "location": { + "lat": 77.056904, + "lon": -167.614701 + } + }, + { + "timestamp": 1730771940, + "sensor_id": "SENSOR-008", + "temperature": 24.21, + "humidity": 36.5, + "pressure": 1004.72, + "location": { + "lat": 10.707149, + "lon": 140.503057 + } + }, + { + "timestamp": 1730772000, + "sensor_id": "SENSOR-001", + "temperature": 23.32, + "humidity": 70.53, + "pressure": 1000.19, + "location": { + "lat": 27.717963, + "lon": 125.001028 + } + }, + { + "timestamp": 1730772060, + "sensor_id": "SENSOR-007", + "temperature": 29.85, + "humidity": 66.63, + "pressure": 1003.73, + "location": { + "lat": 72.445145, + "lon": 78.929402 + } + }, + { + "timestamp": 1730772120, + "sensor_id": "SENSOR-002", + "temperature": 26.99, + "humidity": 46.31, + "pressure": 1012.32, + "location": { + "lat": 65.893367, + "lon": -102.219983 + } + }, + { + "timestamp": 1730772180, + "sensor_id": "SENSOR-002", + "temperature": 25.96, + "humidity": 31.73, + "pressure": 1006.59, + "location": { + "lat": -9.303833, + "lon": 30.091353 + } + }, + { + "timestamp": 1730772240, + "sensor_id": "SENSOR-004", + "temperature": 23.93, + "humidity": 30.92, + "pressure": 990.57, + "location": { + "lat": -56.508935, + "lon": 103.613034 + } + }, + { + "timestamp": 1730772300, + "sensor_id": "SENSOR-010", + "temperature": 20.88, + "humidity": 39.99, + "pressure": 984.19, + "location": { + "lat": -2.883581, + "lon": 49.938629 + } + }, + { + "timestamp": 1730772360, + "sensor_id": "SENSOR-008", + "temperature": 18.57, + "humidity": 65.73, + "pressure": 1019.7, + "location": { + "lat": 73.368197, + "lon": -47.233137 + } + }, + { + "timestamp": 1730772420, + "sensor_id": "SENSOR-002", + "temperature": 26.02, + "humidity": 72.23, + "pressure": 988.97, + "location": { + "lat": 82.181436, + "lon": 104.308653 + } + }, + { + "timestamp": 1730772480, + "sensor_id": "SENSOR-003", + "temperature": 24.59, + "humidity": 51.49, + "pressure": 1001.87, + "location": { + "lat": 86.889603, + "lon": -134.886355 + } + }, + { + "timestamp": 1730772540, + "sensor_id": "SENSOR-005", + "temperature": 23.3, + "humidity": 41.9, + "pressure": 983.06, + "location": { + "lat": 53.16564, + "lon": -98.854134 + } + }, + { + "timestamp": 1730772600, + "sensor_id": "SENSOR-005", + "temperature": 24.8, + "humidity": 72.63, + "pressure": 1000.37, + "location": { + "lat": 74.897792, + "lon": -90.047421 + } + }, + { + "timestamp": 1730772660, + "sensor_id": "SENSOR-009", + "temperature": 27.16, + "humidity": 33.98, + "pressure": 1002.69, + "location": { + "lat": 62.637381, + "lon": -57.622102 + } + }, + { + "timestamp": 1730772720, + "sensor_id": "SENSOR-005", + "temperature": 26.03, + "humidity": 58.67, + "pressure": 997.79, + "location": { + "lat": -31.186781, + "lon": -28.817754 + } + }, + { + "timestamp": 1730772780, + "sensor_id": "SENSOR-004", + "temperature": 15.55, + "humidity": 40.25, + "pressure": 985.9, + "location": { + "lat": 49.913715, + "lon": 177.867061 + } + }, + { + "timestamp": 1730772840, + "sensor_id": "SENSOR-009", + "temperature": 20.71, + "humidity": 41.96, + "pressure": 1008.48, + "location": { + "lat": -4.388489, + "lon": -89.667089 + } + }, + { + "timestamp": 1730772900, + "sensor_id": "SENSOR-009", + "temperature": 23.12, + "humidity": 68.09, + "pressure": 1017.99, + "location": { + "lat": 4.409256, + "lon": 144.291223 + } + }, + { + "timestamp": 1730772960, + "sensor_id": "SENSOR-003", + "temperature": 16.5, + "humidity": 51.19, + "pressure": 1011.52, + "location": { + "lat": 30.185857, + "lon": 177.581661 + } + }, + { + "timestamp": 1730773020, + "sensor_id": "SENSOR-010", + "temperature": 20.45, + "humidity": 46.78, + "pressure": 1014.16, + "location": { + "lat": 11.44486, + "lon": -2.544325 + } + }, + { + "timestamp": 1730773080, + "sensor_id": "SENSOR-003", + "temperature": 26.08, + "humidity": 75.15, + "pressure": 986.21, + "location": { + "lat": -55.60476, + "lon": -151.399159 + } + }, + { + "timestamp": 1730773140, + "sensor_id": "SENSOR-005", + "temperature": 18.5, + "humidity": 65.45, + "pressure": 1015.96, + "location": { + "lat": 81.384897, + "lon": 38.472638 + } + }, + { + "timestamp": 1730773200, + "sensor_id": "SENSOR-004", + "temperature": 26.66, + "humidity": 40.66, + "pressure": 1012.92, + "location": { + "lat": -23.157091, + "lon": 107.008128 + } + }, + { + "timestamp": 1730773260, + "sensor_id": "SENSOR-006", + "temperature": 29.04, + "humidity": 77.74, + "pressure": 1013.2, + "location": { + "lat": 12.868553, + "lon": 71.491676 + } + }, + { + "timestamp": 1730773320, + "sensor_id": "SENSOR-006", + "temperature": 26.1, + "humidity": 79.4, + "pressure": 985.32, + "location": { + "lat": 58.648447, + "lon": 32.216703 + } + }, + { + "timestamp": 1730773380, + "sensor_id": "SENSOR-003", + "temperature": 20.45, + "humidity": 44.81, + "pressure": 980.57, + "location": { + "lat": 12.549355, + "lon": 46.413858 + } + }, + { + "timestamp": 1730773440, + "sensor_id": "SENSOR-010", + "temperature": 15.56, + "humidity": 40.83, + "pressure": 1008.89, + "location": { + "lat": -52.725304, + "lon": -28.128043 + } + }, + { + "timestamp": 1730773500, + "sensor_id": "SENSOR-004", + "temperature": 18.81, + "humidity": 38.33, + "pressure": 982.0, + "location": { + "lat": -15.191282, + "lon": 60.625027 + } + }, + { + "timestamp": 1730773560, + "sensor_id": "SENSOR-007", + "temperature": 25.53, + "humidity": 66.72, + "pressure": 995.33, + "location": { + "lat": -66.609255, + "lon": 15.464417 + } + }, + { + "timestamp": 1730773620, + "sensor_id": "SENSOR-003", + "temperature": 29.81, + "humidity": 52.85, + "pressure": 1012.58, + "location": { + "lat": -44.130994, + "lon": 19.833621 + } + }, + { + "timestamp": 1730773680, + "sensor_id": "SENSOR-005", + "temperature": 18.93, + "humidity": 40.93, + "pressure": 998.13, + "location": { + "lat": -9.648027, + "lon": 20.597297 + } + }, + { + "timestamp": 1730773740, + "sensor_id": "SENSOR-005", + "temperature": 16.49, + "humidity": 74.83, + "pressure": 1012.51, + "location": { + "lat": -15.955901, + "lon": 153.389176 + } + } +] \ No newline at end of file diff --git a/synthetic/sensor_timeseries.metadata.json b/synthetic/sensor_timeseries.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d440c1c53e1eb3f64d1d88c2a18bcaf7b20750d3 --- /dev/null +++ b/synthetic/sensor_timeseries.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_sensor_timeseries", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.254997", + "size_bytes": 32135, + "description": "150 time-series sensor readings", + "url": "" +} \ No newline at end of file diff --git a/synthetic/server_logs.json b/synthetic/server_logs.json new file mode 100644 index 0000000000000000000000000000000000000000..b1c6a3cb9ff30ba5fd37cad41d9a048affe47b32 --- /dev/null +++ b/synthetic/server_logs.json @@ -0,0 +1,2202 @@ +[ + { + "timestamp": "2024-11-05T23:44:57Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 3731, + "user_id": 619, + "ip": "39.111.142.222" + }, + { + "timestamp": "2024-11-05T20:03:29Z", + "level": "WARN", + "service": "database", + "endpoint": "/api/products", + "method": "GET", + "status": 200, + "duration_ms": 2452, + "user_id": 952, + "ip": "232.25.157.20" + }, + { + "timestamp": "2024-11-05T17:36:28Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/users", + "method": "DELETE", + "status": 201, + "duration_ms": 760, + "user_id": 492, + "ip": "207.9.79.75" + }, + { + "timestamp": "2024-11-05T10:07:07Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 1898, + "user_id": 414, + "ip": "73.219.42.213" + }, + { + "timestamp": "2024-11-05T03:35:30Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/analytics", + "method": "POST", + "status": 201, + "duration_ms": 373, + "user_id": 986, + "ip": "124.89.68.235" + }, + { + "timestamp": "2024-11-05T08:20:07Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "POST", + "status": 200, + "duration_ms": 503, + "user_id": 512, + "ip": "86.61.204.66" + }, + { + "timestamp": "2024-11-05T07:34:21Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 1887, + "user_id": 748, + "ip": "103.88.16.147" + }, + { + "timestamp": "2024-11-05T14:49:34Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "DELETE", + "status": 200, + "duration_ms": 1500, + "user_id": 724, + "ip": "16.73.70.197" + }, + { + "timestamp": "2024-11-05T18:25:07Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/orders", + "method": "POST", + "status": 200, + "duration_ms": 2623, + "user_id": 916, + "ip": "43.211.231.111" + }, + { + "timestamp": "2024-11-05T14:26:59Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 1809, + "user_id": 738, + "ip": "26.44.60.48" + }, + { + "timestamp": "2024-11-05T16:29:37Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/auth", + "method": "PUT", + "status": 201, + "duration_ms": 699, + "user_id": 442, + "ip": "94.223.201.146" + }, + { + "timestamp": "2024-11-05T21:06:36Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 2244, + "user_id": 35, + "ip": "245.165.183.217" + }, + { + "timestamp": "2024-11-05T00:28:05Z", + "level": "WARN", + "service": "api-server", + "endpoint": "/api/orders", + "method": "PUT", + "status": 404, + "duration_ms": 1987, + "user_id": 445, + "ip": "127.133.148.164" + }, + { + "timestamp": "2024-11-05T01:08:58Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 1981, + "user_id": 636, + "ip": "86.46.248.224" + }, + { + "timestamp": "2024-11-05T16:06:32Z", + "level": "WARN", + "service": "database", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 500, + "duration_ms": 3978, + "user_id": 644, + "ip": "86.205.241.203" + }, + { + "timestamp": "2024-11-05T10:43:59Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 4773, + "user_id": 237, + "ip": "218.65.17.146" + }, + { + "timestamp": "2024-11-05T23:30:37Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/products", + "method": "DELETE", + "status": 200, + "duration_ms": 4875, + "user_id": 89, + "ip": "224.251.87.139" + }, + { + "timestamp": "2024-11-05T07:07:58Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/auth", + "method": "PUT", + "status": 200, + "duration_ms": 1819, + "user_id": 770, + "ip": "48.175.13.152" + }, + { + "timestamp": "2024-11-05T07:44:25Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/products", + "method": "PUT", + "status": 404, + "duration_ms": 435, + "user_id": 255, + "ip": "161.149.8.156" + }, + { + "timestamp": "2024-11-05T07:41:48Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/analytics", + "method": "POST", + "status": 200, + "duration_ms": 2983, + "user_id": 1000, + "ip": "7.8.141.207" + }, + { + "timestamp": "2024-11-05T22:58:33Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/users", + "method": "POST", + "status": 400, + "duration_ms": 3719, + "user_id": 517, + "ip": "193.251.29.62" + }, + { + "timestamp": "2024-11-05T18:41:58Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/users", + "method": "PUT", + "status": 200, + "duration_ms": 3871, + "user_id": 994, + "ip": "146.114.91.66" + }, + { + "timestamp": "2024-11-05T14:09:07Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 1408, + "user_id": 543, + "ip": "143.225.125.89" + }, + { + "timestamp": "2024-11-05T03:24:04Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/orders", + "method": "GET", + "status": 500, + "duration_ms": 3689, + "user_id": 606, + "ip": "76.179.62.126" + }, + { + "timestamp": "2024-11-05T19:52:24Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 500, + "duration_ms": 3257, + "user_id": 931, + "ip": "1.112.196.187" + }, + { + "timestamp": "2024-11-05T01:15:35Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/orders", + "method": "GET", + "status": 200, + "duration_ms": 299, + "user_id": 369, + "ip": "144.12.5.155" + }, + { + "timestamp": "2024-11-05T02:15:24Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "GET", + "status": 404, + "duration_ms": 3575, + "user_id": 42, + "ip": "38.96.206.87" + }, + { + "timestamp": "2024-11-05T04:08:02Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 200, + "duration_ms": 2461, + "user_id": 489, + "ip": "203.58.196.39" + }, + { + "timestamp": "2024-11-05T18:51:26Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "POST", + "status": 200, + "duration_ms": 4347, + "user_id": 729, + "ip": "19.68.121.228" + }, + { + "timestamp": "2024-11-05T09:53:21Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 500, + "duration_ms": 1757, + "user_id": 360, + "ip": "74.8.185.215" + }, + { + "timestamp": "2024-11-05T04:30:08Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "GET", + "status": 404, + "duration_ms": 866, + "user_id": 584, + "ip": "43.203.1.216" + }, + { + "timestamp": "2024-11-05T18:37:59Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 500, + "duration_ms": 3643, + "user_id": 675, + "ip": "194.180.112.145" + }, + { + "timestamp": "2024-11-05T14:46:18Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 200, + "duration_ms": 3833, + "user_id": 682, + "ip": "41.185.199.61" + }, + { + "timestamp": "2024-11-05T16:20:30Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "PUT", + "status": 400, + "duration_ms": 3484, + "user_id": 785, + "ip": "107.252.66.48" + }, + { + "timestamp": "2024-11-05T03:05:19Z", + "level": "WARN", + "service": "database", + "endpoint": "/api/auth", + "method": "PUT", + "status": 201, + "duration_ms": 2388, + "user_id": 786, + "ip": "82.91.243.36" + }, + { + "timestamp": "2024-11-05T17:12:33Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/orders", + "method": "POST", + "status": 201, + "duration_ms": 2093, + "user_id": 286, + "ip": "192.170.213.19" + }, + { + "timestamp": "2024-11-05T17:37:45Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 991, + "user_id": 212, + "ip": "129.40.175.191" + }, + { + "timestamp": "2024-11-05T10:43:49Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/analytics", + "method": "POST", + "status": 500, + "duration_ms": 2791, + "user_id": 495, + "ip": "20.161.177.18" + }, + { + "timestamp": "2024-11-05T19:40:11Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/orders", + "method": "GET", + "status": 404, + "duration_ms": 4795, + "user_id": 927, + "ip": "19.68.147.168" + }, + { + "timestamp": "2024-11-05T22:58:25Z", + "level": "WARN", + "service": "database", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 200, + "duration_ms": 1895, + "user_id": 556, + "ip": "154.18.182.106" + }, + { + "timestamp": "2024-11-05T12:23:37Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 400, + "duration_ms": 2036, + "user_id": 271, + "ip": "145.113.102.144" + }, + { + "timestamp": "2024-11-05T16:24:02Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/products", + "method": "GET", + "status": 201, + "duration_ms": 2278, + "user_id": 505, + "ip": "136.92.197.241" + }, + { + "timestamp": "2024-11-05T18:58:46Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 4930, + "user_id": 319, + "ip": "43.164.255.89" + }, + { + "timestamp": "2024-11-05T17:33:22Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/auth", + "method": "PUT", + "status": 500, + "duration_ms": 484, + "user_id": 348, + "ip": "85.66.216.171" + }, + { + "timestamp": "2024-11-05T04:27:13Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "PUT", + "status": 200, + "duration_ms": 4316, + "user_id": 844, + "ip": "2.237.223.222" + }, + { + "timestamp": "2024-11-05T17:37:25Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "POST", + "status": 200, + "duration_ms": 1376, + "user_id": 790, + "ip": "173.167.213.7" + }, + { + "timestamp": "2024-11-05T15:12:01Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/orders", + "method": "GET", + "status": 201, + "duration_ms": 779, + "user_id": 865, + "ip": "24.1.178.191" + }, + { + "timestamp": "2024-11-05T04:20:45Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 975, + "user_id": 969, + "ip": "233.175.141.116" + }, + { + "timestamp": "2024-11-05T04:26:44Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "DELETE", + "status": 404, + "duration_ms": 4977, + "user_id": 85, + "ip": "157.27.37.136" + }, + { + "timestamp": "2024-11-05T21:56:10Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 404, + "duration_ms": 57, + "user_id": 332, + "ip": "179.177.31.55" + }, + { + "timestamp": "2024-11-05T12:04:57Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "PUT", + "status": 404, + "duration_ms": 1767, + "user_id": 977, + "ip": "106.42.124.204" + }, + { + "timestamp": "2024-11-05T21:57:11Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/products", + "method": "PUT", + "status": 404, + "duration_ms": 1120, + "user_id": 928, + "ip": "204.225.217.83" + }, + { + "timestamp": "2024-11-05T06:03:39Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/analytics", + "method": "GET", + "status": 200, + "duration_ms": 1700, + "user_id": 251, + "ip": "145.233.67.224" + }, + { + "timestamp": "2024-11-05T23:48:11Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/products", + "method": "POST", + "status": 201, + "duration_ms": 4029, + "user_id": 774, + "ip": "254.249.22.83" + }, + { + "timestamp": "2024-11-05T02:08:36Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 1290, + "user_id": 33, + "ip": "190.205.176.67" + }, + { + "timestamp": "2024-11-05T18:34:52Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "POST", + "status": 201, + "duration_ms": 4383, + "user_id": 471, + "ip": "41.17.63.143" + }, + { + "timestamp": "2024-11-05T06:14:42Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 4248, + "user_id": 308, + "ip": "28.66.139.177" + }, + { + "timestamp": "2024-11-05T11:38:49Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 3602, + "user_id": 745, + "ip": "239.7.11.150" + }, + { + "timestamp": "2024-11-05T22:05:56Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 751, + "user_id": 911, + "ip": "21.130.194.31" + }, + { + "timestamp": "2024-11-05T12:31:57Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/users", + "method": "GET", + "status": 200, + "duration_ms": 110, + "user_id": 877, + "ip": "215.116.73.108" + }, + { + "timestamp": "2024-11-05T14:46:37Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/auth", + "method": "POST", + "status": 200, + "duration_ms": 3421, + "user_id": 412, + "ip": "195.122.179.114" + }, + { + "timestamp": "2024-11-05T22:20:49Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "POST", + "status": 201, + "duration_ms": 815, + "user_id": 405, + "ip": "54.112.228.165" + }, + { + "timestamp": "2024-11-05T15:54:05Z", + "level": "ERROR", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 1637, + "user_id": 977, + "ip": "162.25.71.91" + }, + { + "timestamp": "2024-11-05T09:21:15Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "POST", + "status": 200, + "duration_ms": 2589, + "user_id": 114, + "ip": "77.26.34.145" + }, + { + "timestamp": "2024-11-05T22:56:02Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/products", + "method": "DELETE", + "status": 500, + "duration_ms": 832, + "user_id": 279, + "ip": "120.231.246.174" + }, + { + "timestamp": "2024-11-05T19:17:44Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/products", + "method": "DELETE", + "status": 500, + "duration_ms": 481, + "user_id": 390, + "ip": "79.135.153.95" + }, + { + "timestamp": "2024-11-05T00:17:17Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "PUT", + "status": 200, + "duration_ms": 1983, + "user_id": 646, + "ip": "218.15.197.167" + }, + { + "timestamp": "2024-11-05T02:33:28Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "POST", + "status": 400, + "duration_ms": 4771, + "user_id": 178, + "ip": "26.203.180.58" + }, + { + "timestamp": "2024-11-05T18:12:42Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/auth", + "method": "PUT", + "status": 400, + "duration_ms": 653, + "user_id": 424, + "ip": "55.94.111.228" + }, + { + "timestamp": "2024-11-05T18:00:50Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "PUT", + "status": 200, + "duration_ms": 2762, + "user_id": 702, + "ip": "172.106.238.85" + }, + { + "timestamp": "2024-11-05T02:33:27Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "PUT", + "status": 404, + "duration_ms": 1887, + "user_id": 973, + "ip": "205.89.91.234" + }, + { + "timestamp": "2024-11-05T06:55:43Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 200, + "duration_ms": 3435, + "user_id": 969, + "ip": "117.61.231.54" + }, + { + "timestamp": "2024-11-05T07:08:47Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/products", + "method": "GET", + "status": 500, + "duration_ms": 1421, + "user_id": 289, + "ip": "152.97.47.91" + }, + { + "timestamp": "2024-11-05T13:09:58Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/orders", + "method": "GET", + "status": 200, + "duration_ms": 1430, + "user_id": 595, + "ip": "238.47.8.37" + }, + { + "timestamp": "2024-11-05T15:12:35Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "PUT", + "status": 500, + "duration_ms": 210, + "user_id": 321, + "ip": "228.243.30.230" + }, + { + "timestamp": "2024-11-05T08:22:42Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/users", + "method": "POST", + "status": 201, + "duration_ms": 4932, + "user_id": 356, + "ip": "166.117.213.216" + }, + { + "timestamp": "2024-11-05T18:08:06Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/users", + "method": "PUT", + "status": 200, + "duration_ms": 2726, + "user_id": 427, + "ip": "94.16.234.201" + }, + { + "timestamp": "2024-11-05T15:38:30Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/products", + "method": "PUT", + "status": 200, + "duration_ms": 2620, + "user_id": 70, + "ip": "166.103.120.90" + }, + { + "timestamp": "2024-11-05T14:27:51Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 3163, + "user_id": 888, + "ip": "255.12.38.13" + }, + { + "timestamp": "2024-11-05T07:42:35Z", + "level": "WARN", + "service": "api-server", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 2126, + "user_id": 793, + "ip": "11.27.170.65" + }, + { + "timestamp": "2024-11-05T15:29:23Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 400, + "duration_ms": 1964, + "user_id": 906, + "ip": "11.47.74.161" + }, + { + "timestamp": "2024-11-05T12:43:34Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/users", + "method": "POST", + "status": 200, + "duration_ms": 4466, + "user_id": 893, + "ip": "157.22.71.61" + }, + { + "timestamp": "2024-11-05T06:01:11Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "PUT", + "status": 200, + "duration_ms": 1601, + "user_id": 259, + "ip": "212.228.28.7" + }, + { + "timestamp": "2024-11-05T16:42:31Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "POST", + "status": 404, + "duration_ms": 2499, + "user_id": 837, + "ip": "190.26.184.175" + }, + { + "timestamp": "2024-11-05T13:51:04Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 201, + "duration_ms": 3241, + "user_id": 765, + "ip": "23.51.31.239" + }, + { + "timestamp": "2024-11-05T05:59:14Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/auth", + "method": "POST", + "status": 200, + "duration_ms": 2296, + "user_id": 735, + "ip": "128.55.11.242" + }, + { + "timestamp": "2024-11-05T12:16:58Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 200, + "duration_ms": 1155, + "user_id": 469, + "ip": "138.214.99.88" + }, + { + "timestamp": "2024-11-05T04:11:09Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "GET", + "status": 200, + "duration_ms": 2480, + "user_id": 496, + "ip": "184.81.28.237" + }, + { + "timestamp": "2024-11-05T14:18:05Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/products", + "method": "PUT", + "status": 201, + "duration_ms": 716, + "user_id": 925, + "ip": "112.97.107.8" + }, + { + "timestamp": "2024-11-05T18:15:23Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "GET", + "status": 500, + "duration_ms": 970, + "user_id": 509, + "ip": "219.215.239.76" + }, + { + "timestamp": "2024-11-05T14:20:12Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "GET", + "status": 200, + "duration_ms": 1817, + "user_id": 353, + "ip": "46.105.165.138" + }, + { + "timestamp": "2024-11-05T13:34:33Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "GET", + "status": 404, + "duration_ms": 4425, + "user_id": 956, + "ip": "39.236.68.58" + }, + { + "timestamp": "2024-11-05T17:58:31Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/users", + "method": "DELETE", + "status": 404, + "duration_ms": 3144, + "user_id": 245, + "ip": "10.77.174.104" + }, + { + "timestamp": "2024-11-05T15:04:44Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 4168, + "user_id": 248, + "ip": "123.231.214.179" + }, + { + "timestamp": "2024-11-05T10:27:52Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 404, + "duration_ms": 4130, + "user_id": 799, + "ip": "115.54.169.149" + }, + { + "timestamp": "2024-11-05T20:11:23Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/auth", + "method": "PUT", + "status": 200, + "duration_ms": 499, + "user_id": 916, + "ip": "24.190.158.23" + }, + { + "timestamp": "2024-11-05T04:48:11Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/orders", + "method": "PUT", + "status": 500, + "duration_ms": 4585, + "user_id": 480, + "ip": "9.34.95.142" + }, + { + "timestamp": "2024-11-05T12:54:02Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 373, + "user_id": 795, + "ip": "1.21.73.252" + }, + { + "timestamp": "2024-11-05T02:17:35Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/analytics", + "method": "GET", + "status": 404, + "duration_ms": 2649, + "user_id": 406, + "ip": "101.147.196.26" + }, + { + "timestamp": "2024-11-05T13:26:18Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/orders", + "method": "POST", + "status": 500, + "duration_ms": 4287, + "user_id": 584, + "ip": "77.132.211.173" + }, + { + "timestamp": "2024-11-05T07:54:31Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 404, + "duration_ms": 2712, + "user_id": 150, + "ip": "210.84.212.114" + }, + { + "timestamp": "2024-11-05T09:30:33Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 4211, + "user_id": 625, + "ip": "55.80.183.248" + }, + { + "timestamp": "2024-11-05T08:44:45Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 4271, + "user_id": 357, + "ip": "38.21.126.135" + }, + { + "timestamp": "2024-11-05T21:45:28Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "GET", + "status": 200, + "duration_ms": 3989, + "user_id": 748, + "ip": "104.182.168.203" + }, + { + "timestamp": "2024-11-05T17:57:18Z", + "level": "ERROR", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 400, + "duration_ms": 2244, + "user_id": 241, + "ip": "8.203.210.50" + }, + { + "timestamp": "2024-11-05T23:57:09Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/users", + "method": "POST", + "status": 404, + "duration_ms": 154, + "user_id": 633, + "ip": "66.144.98.97" + }, + { + "timestamp": "2024-11-05T00:34:28Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/users", + "method": "PUT", + "status": 400, + "duration_ms": 71, + "user_id": 426, + "ip": "33.249.168.86" + }, + { + "timestamp": "2024-11-05T03:06:27Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "GET", + "status": 404, + "duration_ms": 748, + "user_id": 722, + "ip": "242.49.181.192" + }, + { + "timestamp": "2024-11-05T07:46:23Z", + "level": "WARN", + "service": "api-server", + "endpoint": "/api/orders", + "method": "POST", + "status": 404, + "duration_ms": 2129, + "user_id": 381, + "ip": "115.53.215.152" + }, + { + "timestamp": "2024-11-05T05:52:50Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 689, + "user_id": 429, + "ip": "49.112.153.97" + }, + { + "timestamp": "2024-11-05T11:00:05Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/auth", + "method": "PUT", + "status": 400, + "duration_ms": 4773, + "user_id": 25, + "ip": "10.61.47.167" + }, + { + "timestamp": "2024-11-05T14:43:25Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "POST", + "status": 200, + "duration_ms": 3245, + "user_id": 333, + "ip": "194.236.166.187" + }, + { + "timestamp": "2024-11-05T02:59:33Z", + "level": "WARN", + "service": "database", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 200, + "duration_ms": 185, + "user_id": 311, + "ip": "91.129.97.28" + }, + { + "timestamp": "2024-11-05T15:24:32Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/users", + "method": "POST", + "status": 500, + "duration_ms": 3310, + "user_id": 12, + "ip": "152.128.156.134" + }, + { + "timestamp": "2024-11-05T20:19:59Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 400, + "duration_ms": 3669, + "user_id": 806, + "ip": "189.18.243.118" + }, + { + "timestamp": "2024-11-05T15:26:12Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 400, + "duration_ms": 719, + "user_id": 183, + "ip": "209.196.15.203" + }, + { + "timestamp": "2024-11-05T16:15:00Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "PUT", + "status": 201, + "duration_ms": 1314, + "user_id": 851, + "ip": "198.237.154.186" + }, + { + "timestamp": "2024-11-05T12:29:38Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "GET", + "status": 500, + "duration_ms": 3610, + "user_id": 832, + "ip": "147.218.119.113" + }, + { + "timestamp": "2024-11-05T09:27:33Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "DELETE", + "status": 200, + "duration_ms": 1176, + "user_id": 838, + "ip": "74.123.212.133" + }, + { + "timestamp": "2024-11-05T08:38:10Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 1597, + "user_id": 547, + "ip": "93.120.240.226" + }, + { + "timestamp": "2024-11-05T15:32:54Z", + "level": "ERROR", + "service": "auth-service", + "endpoint": "/api/users", + "method": "DELETE", + "status": 500, + "duration_ms": 545, + "user_id": 623, + "ip": "247.180.33.108" + }, + { + "timestamp": "2024-11-05T13:56:12Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 241, + "user_id": 922, + "ip": "196.39.189.58" + }, + { + "timestamp": "2024-11-05T04:21:15Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 1012, + "user_id": 165, + "ip": "71.54.30.246" + }, + { + "timestamp": "2024-11-05T04:45:43Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 404, + "duration_ms": 4101, + "user_id": 200, + "ip": "145.225.147.98" + }, + { + "timestamp": "2024-11-05T14:21:16Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/users", + "method": "GET", + "status": 200, + "duration_ms": 2044, + "user_id": 350, + "ip": "122.142.177.31" + }, + { + "timestamp": "2024-11-05T22:02:09Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/auth", + "method": "PUT", + "status": 404, + "duration_ms": 571, + "user_id": 447, + "ip": "144.214.146.67" + }, + { + "timestamp": "2024-11-05T05:04:51Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "PUT", + "status": 200, + "duration_ms": 3726, + "user_id": 344, + "ip": "216.211.32.99" + }, + { + "timestamp": "2024-11-05T02:37:14Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/products", + "method": "DELETE", + "status": 200, + "duration_ms": 3709, + "user_id": 148, + "ip": "130.125.248.205" + }, + { + "timestamp": "2024-11-05T09:31:29Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 3264, + "user_id": 291, + "ip": "254.60.197.76" + }, + { + "timestamp": "2024-11-05T15:40:15Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "PUT", + "status": 500, + "duration_ms": 4976, + "user_id": 379, + "ip": "120.9.242.22" + }, + { + "timestamp": "2024-11-05T21:49:17Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/analytics", + "method": "GET", + "status": 400, + "duration_ms": 1438, + "user_id": 397, + "ip": "125.47.157.127" + }, + { + "timestamp": "2024-11-05T01:05:41Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/users", + "method": "PUT", + "status": 201, + "duration_ms": 2846, + "user_id": 861, + "ip": "30.245.113.187" + }, + { + "timestamp": "2024-11-05T13:39:16Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 201, + "duration_ms": 730, + "user_id": 355, + "ip": "253.10.226.142" + }, + { + "timestamp": "2024-11-05T15:44:07Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "GET", + "status": 200, + "duration_ms": 3904, + "user_id": 769, + "ip": "93.63.111.94" + }, + { + "timestamp": "2024-11-05T11:52:50Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 200, + "duration_ms": 2070, + "user_id": 691, + "ip": "130.73.149.39" + }, + { + "timestamp": "2024-11-05T08:37:44Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/users", + "method": "POST", + "status": 200, + "duration_ms": 1539, + "user_id": 244, + "ip": "167.12.47.58" + }, + { + "timestamp": "2024-11-05T09:47:09Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 4917, + "user_id": 751, + "ip": "133.100.204.244" + }, + { + "timestamp": "2024-11-05T14:33:50Z", + "level": "WARN", + "service": "api-server", + "endpoint": "/api/auth", + "method": "PUT", + "status": 500, + "duration_ms": 2071, + "user_id": 2, + "ip": "200.183.69.75" + }, + { + "timestamp": "2024-11-05T02:09:37Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 3610, + "user_id": 377, + "ip": "245.37.206.55" + }, + { + "timestamp": "2024-11-05T16:45:04Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "PUT", + "status": 200, + "duration_ms": 2145, + "user_id": 409, + "ip": "167.125.242.76" + }, + { + "timestamp": "2024-11-05T12:35:35Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/products", + "method": "GET", + "status": 404, + "duration_ms": 18, + "user_id": 968, + "ip": "221.100.141.78" + }, + { + "timestamp": "2024-11-05T09:21:31Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "POST", + "status": 200, + "duration_ms": 3598, + "user_id": 755, + "ip": "20.244.26.34" + }, + { + "timestamp": "2024-11-05T03:19:19Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/products", + "method": "GET", + "status": 500, + "duration_ms": 4559, + "user_id": 923, + "ip": "109.62.230.253" + }, + { + "timestamp": "2024-11-05T16:22:32Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "POST", + "status": 200, + "duration_ms": 2936, + "user_id": 358, + "ip": "111.90.154.66" + }, + { + "timestamp": "2024-11-05T11:58:47Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/products", + "method": "PUT", + "status": 200, + "duration_ms": 3695, + "user_id": 636, + "ip": "29.165.161.37" + }, + { + "timestamp": "2024-11-05T11:30:15Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/users", + "method": "POST", + "status": 201, + "duration_ms": 3716, + "user_id": 72, + "ip": "149.198.173.120" + }, + { + "timestamp": "2024-11-05T12:02:05Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "POST", + "status": 400, + "duration_ms": 4195, + "user_id": 940, + "ip": "169.197.81.102" + }, + { + "timestamp": "2024-11-05T10:26:14Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "DELETE", + "status": 400, + "duration_ms": 2467, + "user_id": 685, + "ip": "81.215.184.188" + }, + { + "timestamp": "2024-11-05T18:14:23Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "GET", + "status": 404, + "duration_ms": 3858, + "user_id": 807, + "ip": "60.235.4.175" + }, + { + "timestamp": "2024-11-05T13:36:03Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "GET", + "status": 500, + "duration_ms": 1889, + "user_id": 166, + "ip": "46.207.66.30" + }, + { + "timestamp": "2024-11-05T23:08:28Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 1297, + "user_id": 180, + "ip": "59.189.162.17" + }, + { + "timestamp": "2024-11-05T02:03:16Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "POST", + "status": 400, + "duration_ms": 1732, + "user_id": 568, + "ip": "49.25.37.179" + }, + { + "timestamp": "2024-11-05T21:49:07Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 200, + "duration_ms": 2374, + "user_id": 21, + "ip": "45.133.73.61" + }, + { + "timestamp": "2024-11-05T19:32:22Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "GET", + "status": 200, + "duration_ms": 3970, + "user_id": 87, + "ip": "155.188.186.19" + }, + { + "timestamp": "2024-11-05T19:14:28Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/auth", + "method": "POST", + "status": 400, + "duration_ms": 3461, + "user_id": 690, + "ip": "155.245.109.114" + }, + { + "timestamp": "2024-11-05T19:23:01Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 3228, + "user_id": 924, + "ip": "121.107.47.224" + }, + { + "timestamp": "2024-11-05T22:15:31Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/auth", + "method": "GET", + "status": 201, + "duration_ms": 1514, + "user_id": 206, + "ip": "253.132.149.116" + }, + { + "timestamp": "2024-11-05T11:43:50Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "GET", + "status": 500, + "duration_ms": 1501, + "user_id": 520, + "ip": "221.198.83.38" + }, + { + "timestamp": "2024-11-05T21:13:19Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/auth", + "method": "PUT", + "status": 404, + "duration_ms": 2161, + "user_id": 904, + "ip": "40.86.232.162" + }, + { + "timestamp": "2024-11-05T07:10:38Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/users", + "method": "POST", + "status": 200, + "duration_ms": 4689, + "user_id": 764, + "ip": "75.79.124.205" + }, + { + "timestamp": "2024-11-05T14:29:36Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/products", + "method": "DELETE", + "status": 404, + "duration_ms": 4428, + "user_id": 405, + "ip": "218.39.163.103" + }, + { + "timestamp": "2024-11-05T10:18:14Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "DELETE", + "status": 200, + "duration_ms": 3973, + "user_id": 760, + "ip": "99.195.93.4" + }, + { + "timestamp": "2024-11-05T17:43:12Z", + "level": "WARN", + "service": "api-server", + "endpoint": "/api/analytics", + "method": "POST", + "status": 500, + "duration_ms": 2200, + "user_id": 309, + "ip": "16.194.251.155" + }, + { + "timestamp": "2024-11-05T22:25:09Z", + "level": "ERROR", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "GET", + "status": 404, + "duration_ms": 2444, + "user_id": 764, + "ip": "151.158.136.216" + }, + { + "timestamp": "2024-11-05T21:16:47Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "GET", + "status": 200, + "duration_ms": 176, + "user_id": 351, + "ip": "125.15.66.34" + }, + { + "timestamp": "2024-11-05T12:38:50Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/products", + "method": "PUT", + "status": 201, + "duration_ms": 824, + "user_id": 514, + "ip": "178.247.77.42" + }, + { + "timestamp": "2024-11-05T03:54:39Z", + "level": "ERROR", + "service": "api-server", + "endpoint": "/api/users", + "method": "POST", + "status": 404, + "duration_ms": 1466, + "user_id": 750, + "ip": "203.83.155.214" + }, + { + "timestamp": "2024-11-05T15:57:44Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 200, + "duration_ms": 4513, + "user_id": 373, + "ip": "72.85.155.65" + }, + { + "timestamp": "2024-11-05T17:43:46Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/users", + "method": "PUT", + "status": 500, + "duration_ms": 1065, + "user_id": 671, + "ip": "20.91.67.222" + }, + { + "timestamp": "2024-11-05T19:52:21Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/auth", + "method": "PUT", + "status": 200, + "duration_ms": 561, + "user_id": 886, + "ip": "232.29.153.7" + }, + { + "timestamp": "2024-11-05T08:10:29Z", + "level": "WARN", + "service": "database", + "endpoint": "/api/analytics", + "method": "GET", + "status": 500, + "duration_ms": 2763, + "user_id": 43, + "ip": "146.151.40.177" + }, + { + "timestamp": "2024-11-05T13:41:35Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/analytics", + "method": "DELETE", + "status": 404, + "duration_ms": 4759, + "user_id": 927, + "ip": "168.184.147.191" + }, + { + "timestamp": "2024-11-05T11:14:49Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/auth", + "method": "PUT", + "status": 500, + "duration_ms": 4707, + "user_id": 937, + "ip": "236.48.157.159" + }, + { + "timestamp": "2024-11-05T08:10:28Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/users", + "method": "DELETE", + "status": 200, + "duration_ms": 1641, + "user_id": 405, + "ip": "209.16.47.231" + }, + { + "timestamp": "2024-11-05T05:49:56Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "GET", + "status": 500, + "duration_ms": 4634, + "user_id": 378, + "ip": "139.40.209.247" + }, + { + "timestamp": "2024-11-05T04:18:28Z", + "level": "DEBUG", + "service": "cache", + "endpoint": "/api/products", + "method": "GET", + "status": 200, + "duration_ms": 788, + "user_id": 155, + "ip": "7.221.81.144" + }, + { + "timestamp": "2024-11-05T11:13:35Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/orders", + "method": "PUT", + "status": 400, + "duration_ms": 1944, + "user_id": 398, + "ip": "153.21.246.240" + }, + { + "timestamp": "2024-11-05T20:43:15Z", + "level": "ERROR", + "service": "cache", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 3279, + "user_id": 418, + "ip": "209.161.122.71" + }, + { + "timestamp": "2024-11-05T23:27:41Z", + "level": "DEBUG", + "service": "api-server", + "endpoint": "/api/auth", + "method": "POST", + "status": 400, + "duration_ms": 1014, + "user_id": 633, + "ip": "123.41.27.89" + }, + { + "timestamp": "2024-11-05T22:38:05Z", + "level": "INFO", + "service": "auth-service", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 200, + "duration_ms": 680, + "user_id": 265, + "ip": "78.218.252.240" + }, + { + "timestamp": "2024-11-05T21:26:22Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/analytics", + "method": "PUT", + "status": 404, + "duration_ms": 1889, + "user_id": 766, + "ip": "16.86.127.119" + }, + { + "timestamp": "2024-11-05T12:51:13Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/products", + "method": "POST", + "status": 400, + "duration_ms": 1898, + "user_id": 438, + "ip": "97.161.44.118" + }, + { + "timestamp": "2024-11-05T18:52:26Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/auth", + "method": "DELETE", + "status": 200, + "duration_ms": 4305, + "user_id": 972, + "ip": "146.114.21.96" + }, + { + "timestamp": "2024-11-05T19:11:27Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/products", + "method": "DELETE", + "status": 500, + "duration_ms": 2676, + "user_id": 26, + "ip": "31.195.19.127" + }, + { + "timestamp": "2024-11-05T18:17:25Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "POST", + "status": 200, + "duration_ms": 1309, + "user_id": 726, + "ip": "114.235.209.31" + }, + { + "timestamp": "2024-11-05T16:11:59Z", + "level": "WARN", + "service": "cache", + "endpoint": "/api/auth", + "method": "GET", + "status": 200, + "duration_ms": 4174, + "user_id": 635, + "ip": "216.147.59.179" + }, + { + "timestamp": "2024-11-05T04:26:02Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "GET", + "status": 201, + "duration_ms": 4257, + "user_id": 252, + "ip": "44.72.101.231" + }, + { + "timestamp": "2024-11-05T05:55:30Z", + "level": "DEBUG", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "GET", + "status": 200, + "duration_ms": 1441, + "user_id": 26, + "ip": "185.83.202.86" + }, + { + "timestamp": "2024-11-05T06:41:45Z", + "level": "INFO", + "service": "cache", + "endpoint": "/api/orders", + "method": "POST", + "status": 400, + "duration_ms": 2762, + "user_id": 922, + "ip": "162.240.54.97" + }, + { + "timestamp": "2024-11-05T18:56:53Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/products", + "method": "GET", + "status": 200, + "duration_ms": 3476, + "user_id": 323, + "ip": "191.186.133.84" + }, + { + "timestamp": "2024-11-05T19:15:40Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/orders", + "method": "GET", + "status": 201, + "duration_ms": 4376, + "user_id": 45, + "ip": "97.157.18.126" + }, + { + "timestamp": "2024-11-05T10:22:44Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 4073, + "user_id": 526, + "ip": "210.2.141.18" + }, + { + "timestamp": "2024-11-05T09:55:30Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/users", + "method": "PUT", + "status": 500, + "duration_ms": 995, + "user_id": 979, + "ip": "241.76.130.33" + }, + { + "timestamp": "2024-11-05T01:45:31Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/products", + "method": "PUT", + "status": 500, + "duration_ms": 4441, + "user_id": 914, + "ip": "56.252.87.39" + }, + { + "timestamp": "2024-11-05T19:59:00Z", + "level": "INFO", + "service": "api-server", + "endpoint": "/api/products", + "method": "POST", + "status": 200, + "duration_ms": 2461, + "user_id": 267, + "ip": "4.28.51.232" + }, + { + "timestamp": "2024-11-05T09:14:17Z", + "level": "WARN", + "service": "auth-service", + "endpoint": "/api/orders", + "method": "GET", + "status": 500, + "duration_ms": 4490, + "user_id": 819, + "ip": "219.14.105.156" + }, + { + "timestamp": "2024-11-05T10:50:35Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/products", + "method": "DELETE", + "status": 200, + "duration_ms": 1594, + "user_id": 667, + "ip": "72.76.164.53" + }, + { + "timestamp": "2024-11-05T23:24:37Z", + "level": "INFO", + "service": "database", + "endpoint": "/api/auth", + "method": "PUT", + "status": 404, + "duration_ms": 4634, + "user_id": 582, + "ip": "144.25.130.37" + }, + { + "timestamp": "2024-11-05T15:22:28Z", + "level": "ERROR", + "service": "database", + "endpoint": "/api/orders", + "method": "DELETE", + "status": 200, + "duration_ms": 3326, + "user_id": 855, + "ip": "61.78.165.54" + }, + { + "timestamp": "2024-11-05T19:22:51Z", + "level": "DEBUG", + "service": "database", + "endpoint": "/api/users", + "method": "DELETE", + "status": 404, + "duration_ms": 4886, + "user_id": 925, + "ip": "10.191.95.203" + } +] \ No newline at end of file diff --git a/synthetic/server_logs.metadata.json b/synthetic/server_logs.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..c835f32e5f7e90de36f7950d16c1025c7b272b8f --- /dev/null +++ b/synthetic/server_logs.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_server_logs", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.251735", + "size_bytes": 48446, + "description": "200 structured log entries", + "url": "" +} \ No newline at end of file diff --git a/synthetic/user_profiles.json b/synthetic/user_profiles.json new file mode 100644 index 0000000000000000000000000000000000000000..5403ed3391add661cc69ede27c2e05395ad4038c --- /dev/null +++ b/synthetic/user_profiles.json @@ -0,0 +1,1682 @@ +[ + { + "id": 1, + "username": "user1", + "email": "user1@example.com", + "firstName": "First1", + "lastName": "Last1", + "age": 25, + "country": "UK", + "registered": "2020-05-16", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 12, + "followers": 461, + "following": 344 + } + }, + { + "id": 2, + "username": "user2", + "email": "user2@example.com", + "firstName": "First2", + "lastName": "Last2", + "age": 27, + "country": "UK", + "registered": "2020-04-21", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 277, + "followers": 583, + "following": 892 + } + }, + { + "id": 3, + "username": "user3", + "email": "user3@example.com", + "firstName": "First3", + "lastName": "Last3", + "age": 44, + "country": "France", + "registered": "2020-07-09", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 484, + "followers": 2174, + "following": 243 + } + }, + { + "id": 4, + "username": "user4", + "email": "user4@example.com", + "firstName": "First4", + "lastName": "Last4", + "age": 19, + "country": "France", + "registered": "2020-12-13", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 380, + "followers": 4493, + "following": 795 + } + }, + { + "id": 5, + "username": "user5", + "email": "user5@example.com", + "firstName": "First5", + "lastName": "Last5", + "age": 19, + "country": "USA", + "registered": "2020-02-03", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 176, + "followers": 5932, + "following": 367 + } + }, + { + "id": 6, + "username": "user6", + "email": "user6@example.com", + "firstName": "First6", + "lastName": "Last6", + "age": 75, + "country": "Canada", + "registered": "2020-08-14", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 29, + "followers": 4264, + "following": 1000 + } + }, + { + "id": 7, + "username": "user7", + "email": "user7@example.com", + "firstName": "First7", + "lastName": "Last7", + "age": 36, + "country": "Australia", + "registered": "2020-11-26", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 429, + "followers": 5848, + "following": 374 + } + }, + { + "id": 8, + "username": "user8", + "email": "user8@example.com", + "firstName": "First8", + "lastName": "Last8", + "age": 41, + "country": "Australia", + "registered": "2020-03-07", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 445, + "followers": 2170, + "following": 704 + } + }, + { + "id": 9, + "username": "user9", + "email": "user9@example.com", + "firstName": "First9", + "lastName": "Last9", + "age": 47, + "country": "Japan", + "registered": "2020-09-11", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 441, + "followers": 7920, + "following": 404 + } + }, + { + "id": 10, + "username": "user10", + "email": "user10@example.com", + "firstName": "First10", + "lastName": "Last10", + "age": 33, + "country": "France", + "registered": "2020-06-15", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 314, + "followers": 6125, + "following": 603 + } + }, + { + "id": 11, + "username": "user11", + "email": "user11@example.com", + "firstName": "First11", + "lastName": "Last11", + "age": 63, + "country": "Canada", + "registered": "2020-07-25", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 494, + "followers": 6193, + "following": 917 + } + }, + { + "id": 12, + "username": "user12", + "email": "user12@example.com", + "firstName": "First12", + "lastName": "Last12", + "age": 35, + "country": "Germany", + "registered": "2020-02-23", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 191, + "followers": 6253, + "following": 433 + } + }, + { + "id": 13, + "username": "user13", + "email": "user13@example.com", + "firstName": "First13", + "lastName": "Last13", + "age": 67, + "country": "Canada", + "registered": "2020-06-03", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 495, + "followers": 3307, + "following": 669 + } + }, + { + "id": 14, + "username": "user14", + "email": "user14@example.com", + "firstName": "First14", + "lastName": "Last14", + "age": 32, + "country": "UK", + "registered": "2020-10-09", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 52, + "followers": 6261, + "following": 319 + } + }, + { + "id": 15, + "username": "user15", + "email": "user15@example.com", + "firstName": "First15", + "lastName": "Last15", + "age": 21, + "country": "Japan", + "registered": "2020-06-05", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 90, + "followers": 4003, + "following": 808 + } + }, + { + "id": 16, + "username": "user16", + "email": "user16@example.com", + "firstName": "First16", + "lastName": "Last16", + "age": 48, + "country": "Germany", + "registered": "2020-03-03", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 445, + "followers": 3429, + "following": 689 + } + }, + { + "id": 17, + "username": "user17", + "email": "user17@example.com", + "firstName": "First17", + "lastName": "Last17", + "age": 43, + "country": "Australia", + "registered": "2020-10-20", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 312, + "followers": 8118, + "following": 418 + } + }, + { + "id": 18, + "username": "user18", + "email": "user18@example.com", + "firstName": "First18", + "lastName": "Last18", + "age": 35, + "country": "Japan", + "registered": "2020-03-07", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 238, + "followers": 1576, + "following": 367 + } + }, + { + "id": 19, + "username": "user19", + "email": "user19@example.com", + "firstName": "First19", + "lastName": "Last19", + "age": 30, + "country": "Australia", + "registered": "2020-03-09", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 333, + "followers": 5753, + "following": 841 + } + }, + { + "id": 20, + "username": "user20", + "email": "user20@example.com", + "firstName": "First20", + "lastName": "Last20", + "age": 54, + "country": "USA", + "registered": "2020-12-02", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 186, + "followers": 3238, + "following": 311 + } + }, + { + "id": 21, + "username": "user21", + "email": "user21@example.com", + "firstName": "First21", + "lastName": "Last21", + "age": 27, + "country": "UK", + "registered": "2020-01-25", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 271, + "followers": 467, + "following": 786 + } + }, + { + "id": 22, + "username": "user22", + "email": "user22@example.com", + "firstName": "First22", + "lastName": "Last22", + "age": 55, + "country": "Australia", + "registered": "2020-09-20", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 368, + "followers": 5765, + "following": 469 + } + }, + { + "id": 23, + "username": "user23", + "email": "user23@example.com", + "firstName": "First23", + "lastName": "Last23", + "age": 33, + "country": "UK", + "registered": "2020-08-23", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 165, + "followers": 1751, + "following": 515 + } + }, + { + "id": 24, + "username": "user24", + "email": "user24@example.com", + "firstName": "First24", + "lastName": "Last24", + "age": 54, + "country": "UK", + "registered": "2020-08-20", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 120, + "followers": 856, + "following": 396 + } + }, + { + "id": 25, + "username": "user25", + "email": "user25@example.com", + "firstName": "First25", + "lastName": "Last25", + "age": 23, + "country": "Japan", + "registered": "2020-04-27", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 94, + "followers": 5263, + "following": 952 + } + }, + { + "id": 26, + "username": "user26", + "email": "user26@example.com", + "firstName": "First26", + "lastName": "Last26", + "age": 56, + "country": "Australia", + "registered": "2020-05-18", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 57, + "followers": 1280, + "following": 749 + } + }, + { + "id": 27, + "username": "user27", + "email": "user27@example.com", + "firstName": "First27", + "lastName": "Last27", + "age": 31, + "country": "Japan", + "registered": "2020-04-10", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 376, + "followers": 5258, + "following": 385 + } + }, + { + "id": 28, + "username": "user28", + "email": "user28@example.com", + "firstName": "First28", + "lastName": "Last28", + "age": 22, + "country": "Canada", + "registered": "2020-07-04", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 491, + "followers": 8755, + "following": 151 + } + }, + { + "id": 29, + "username": "user29", + "email": "user29@example.com", + "firstName": "First29", + "lastName": "Last29", + "age": 61, + "country": "Canada", + "registered": "2020-09-06", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 249, + "followers": 4266, + "following": 218 + } + }, + { + "id": 30, + "username": "user30", + "email": "user30@example.com", + "firstName": "First30", + "lastName": "Last30", + "age": 60, + "country": "Japan", + "registered": "2020-06-23", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 493, + "followers": 8263, + "following": 35 + } + }, + { + "id": 31, + "username": "user31", + "email": "user31@example.com", + "firstName": "First31", + "lastName": "Last31", + "age": 66, + "country": "Canada", + "registered": "2020-04-27", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 247, + "followers": 4508, + "following": 230 + } + }, + { + "id": 32, + "username": "user32", + "email": "user32@example.com", + "firstName": "First32", + "lastName": "Last32", + "age": 22, + "country": "UK", + "registered": "2020-02-04", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 146, + "followers": 4728, + "following": 945 + } + }, + { + "id": 33, + "username": "user33", + "email": "user33@example.com", + "firstName": "First33", + "lastName": "Last33", + "age": 56, + "country": "Japan", + "registered": "2020-02-20", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 158, + "followers": 838, + "following": 31 + } + }, + { + "id": 34, + "username": "user34", + "email": "user34@example.com", + "firstName": "First34", + "lastName": "Last34", + "age": 18, + "country": "France", + "registered": "2020-07-02", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 36, + "followers": 3595, + "following": 308 + } + }, + { + "id": 35, + "username": "user35", + "email": "user35@example.com", + "firstName": "First35", + "lastName": "Last35", + "age": 69, + "country": "USA", + "registered": "2020-01-25", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 423, + "followers": 2069, + "following": 12 + } + }, + { + "id": 36, + "username": "user36", + "email": "user36@example.com", + "firstName": "First36", + "lastName": "Last36", + "age": 66, + "country": "Germany", + "registered": "2020-10-18", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 373, + "followers": 1419, + "following": 89 + } + }, + { + "id": 37, + "username": "user37", + "email": "user37@example.com", + "firstName": "First37", + "lastName": "Last37", + "age": 33, + "country": "Australia", + "registered": "2020-03-23", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 136, + "followers": 4442, + "following": 152 + } + }, + { + "id": 38, + "username": "user38", + "email": "user38@example.com", + "firstName": "First38", + "lastName": "Last38", + "age": 21, + "country": "France", + "registered": "2020-09-21", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 47, + "followers": 28, + "following": 191 + } + }, + { + "id": 39, + "username": "user39", + "email": "user39@example.com", + "firstName": "First39", + "lastName": "Last39", + "age": 55, + "country": "Australia", + "registered": "2020-01-05", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 15, + "followers": 5042, + "following": 942 + } + }, + { + "id": 40, + "username": "user40", + "email": "user40@example.com", + "firstName": "First40", + "lastName": "Last40", + "age": 41, + "country": "Germany", + "registered": "2020-03-15", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 85, + "followers": 3719, + "following": 646 + } + }, + { + "id": 41, + "username": "user41", + "email": "user41@example.com", + "firstName": "First41", + "lastName": "Last41", + "age": 75, + "country": "Canada", + "registered": "2020-04-20", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 202, + "followers": 7285, + "following": 412 + } + }, + { + "id": 42, + "username": "user42", + "email": "user42@example.com", + "firstName": "First42", + "lastName": "Last42", + "age": 34, + "country": "Germany", + "registered": "2020-09-16", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 282, + "followers": 5933, + "following": 46 + } + }, + { + "id": 43, + "username": "user43", + "email": "user43@example.com", + "firstName": "First43", + "lastName": "Last43", + "age": 48, + "country": "USA", + "registered": "2020-08-25", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 492, + "followers": 4448, + "following": 84 + } + }, + { + "id": 44, + "username": "user44", + "email": "user44@example.com", + "firstName": "First44", + "lastName": "Last44", + "age": 58, + "country": "France", + "registered": "2020-01-04", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 339, + "followers": 9250, + "following": 947 + } + }, + { + "id": 45, + "username": "user45", + "email": "user45@example.com", + "firstName": "First45", + "lastName": "Last45", + "age": 63, + "country": "Japan", + "registered": "2020-10-03", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 352, + "followers": 5103, + "following": 913 + } + }, + { + "id": 46, + "username": "user46", + "email": "user46@example.com", + "firstName": "First46", + "lastName": "Last46", + "age": 44, + "country": "USA", + "registered": "2020-05-16", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 2, + "followers": 7876, + "following": 796 + } + }, + { + "id": 47, + "username": "user47", + "email": "user47@example.com", + "firstName": "First47", + "lastName": "Last47", + "age": 46, + "country": "France", + "registered": "2020-05-08", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 58, + "followers": 1703, + "following": 910 + } + }, + { + "id": 48, + "username": "user48", + "email": "user48@example.com", + "firstName": "First48", + "lastName": "Last48", + "age": 72, + "country": "UK", + "registered": "2020-03-13", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 411, + "followers": 1093, + "following": 577 + } + }, + { + "id": 49, + "username": "user49", + "email": "user49@example.com", + "firstName": "First49", + "lastName": "Last49", + "age": 67, + "country": "Canada", + "registered": "2020-02-06", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 58, + "followers": 6189, + "following": 444 + } + }, + { + "id": 50, + "username": "user50", + "email": "user50@example.com", + "firstName": "First50", + "lastName": "Last50", + "age": 41, + "country": "Germany", + "registered": "2020-04-22", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 125, + "followers": 7172, + "following": 365 + } + }, + { + "id": 51, + "username": "user51", + "email": "user51@example.com", + "firstName": "First51", + "lastName": "Last51", + "age": 30, + "country": "Germany", + "registered": "2020-03-14", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 206, + "followers": 4596, + "following": 288 + } + }, + { + "id": 52, + "username": "user52", + "email": "user52@example.com", + "firstName": "First52", + "lastName": "Last52", + "age": 72, + "country": "Canada", + "registered": "2020-05-03", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 495, + "followers": 4451, + "following": 534 + } + }, + { + "id": 53, + "username": "user53", + "email": "user53@example.com", + "firstName": "First53", + "lastName": "Last53", + "age": 37, + "country": "Germany", + "registered": "2020-06-05", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 496, + "followers": 6678, + "following": 727 + } + }, + { + "id": 54, + "username": "user54", + "email": "user54@example.com", + "firstName": "First54", + "lastName": "Last54", + "age": 48, + "country": "France", + "registered": "2020-09-11", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 182, + "followers": 7894, + "following": 88 + } + }, + { + "id": 55, + "username": "user55", + "email": "user55@example.com", + "firstName": "First55", + "lastName": "Last55", + "age": 33, + "country": "USA", + "registered": "2020-12-08", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 195, + "followers": 7928, + "following": 477 + } + }, + { + "id": 56, + "username": "user56", + "email": "user56@example.com", + "firstName": "First56", + "lastName": "Last56", + "age": 46, + "country": "Japan", + "registered": "2020-03-01", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 245, + "followers": 5228, + "following": 249 + } + }, + { + "id": 57, + "username": "user57", + "email": "user57@example.com", + "firstName": "First57", + "lastName": "Last57", + "age": 31, + "country": "Japan", + "registered": "2020-04-11", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 415, + "followers": 1941, + "following": 21 + } + }, + { + "id": 58, + "username": "user58", + "email": "user58@example.com", + "firstName": "First58", + "lastName": "Last58", + "age": 44, + "country": "Canada", + "registered": "2020-10-27", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 237, + "followers": 195, + "following": 818 + } + }, + { + "id": 59, + "username": "user59", + "email": "user59@example.com", + "firstName": "First59", + "lastName": "Last59", + "age": 33, + "country": "Australia", + "registered": "2020-10-13", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 258, + "followers": 6211, + "following": 538 + } + }, + { + "id": 60, + "username": "user60", + "email": "user60@example.com", + "firstName": "First60", + "lastName": "Last60", + "age": 57, + "country": "Germany", + "registered": "2020-01-07", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "auto" + }, + "stats": { + "posts": 133, + "followers": 2592, + "following": 694 + } + }, + { + "id": 61, + "username": "user61", + "email": "user61@example.com", + "firstName": "First61", + "lastName": "Last61", + "age": 25, + "country": "USA", + "registered": "2020-12-05", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 289, + "followers": 4257, + "following": 584 + } + }, + { + "id": 62, + "username": "user62", + "email": "user62@example.com", + "firstName": "First62", + "lastName": "Last62", + "age": 69, + "country": "Japan", + "registered": "2020-03-10", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 450, + "followers": 9812, + "following": 925 + } + }, + { + "id": 63, + "username": "user63", + "email": "user63@example.com", + "firstName": "First63", + "lastName": "Last63", + "age": 43, + "country": "UK", + "registered": "2020-09-18", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 485, + "followers": 132, + "following": 163 + } + }, + { + "id": 64, + "username": "user64", + "email": "user64@example.com", + "firstName": "First64", + "lastName": "Last64", + "age": 62, + "country": "Germany", + "registered": "2020-11-22", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 199, + "followers": 4367, + "following": 770 + } + }, + { + "id": 65, + "username": "user65", + "email": "user65@example.com", + "firstName": "First65", + "lastName": "Last65", + "age": 68, + "country": "Japan", + "registered": "2020-02-21", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 66, + "followers": 7894, + "following": 911 + } + }, + { + "id": 66, + "username": "user66", + "email": "user66@example.com", + "firstName": "First66", + "lastName": "Last66", + "age": 57, + "country": "UK", + "registered": "2020-12-11", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 44, + "followers": 2700, + "following": 192 + } + }, + { + "id": 67, + "username": "user67", + "email": "user67@example.com", + "firstName": "First67", + "lastName": "Last67", + "age": 72, + "country": "Japan", + "registered": "2020-12-07", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 306, + "followers": 2738, + "following": 998 + } + }, + { + "id": 68, + "username": "user68", + "email": "user68@example.com", + "firstName": "First68", + "lastName": "Last68", + "age": 74, + "country": "Germany", + "registered": "2020-12-21", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 385, + "followers": 1785, + "following": 822 + } + }, + { + "id": 69, + "username": "user69", + "email": "user69@example.com", + "firstName": "First69", + "lastName": "Last69", + "age": 64, + "country": "UK", + "registered": "2020-08-19", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 151, + "followers": 1052, + "following": 672 + } + }, + { + "id": 70, + "username": "user70", + "email": "user70@example.com", + "firstName": "First70", + "lastName": "Last70", + "age": 32, + "country": "Canada", + "registered": "2020-07-05", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 442, + "followers": 1893, + "following": 454 + } + }, + { + "id": 71, + "username": "user71", + "email": "user71@example.com", + "firstName": "First71", + "lastName": "Last71", + "age": 34, + "country": "UK", + "registered": "2020-12-22", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 185, + "followers": 9656, + "following": 751 + } + }, + { + "id": 72, + "username": "user72", + "email": "user72@example.com", + "firstName": "First72", + "lastName": "Last72", + "age": 57, + "country": "USA", + "registered": "2020-11-21", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "light" + }, + "stats": { + "posts": 116, + "followers": 6028, + "following": 660 + } + }, + { + "id": 73, + "username": "user73", + "email": "user73@example.com", + "firstName": "First73", + "lastName": "Last73", + "age": 75, + "country": "Canada", + "registered": "2020-06-25", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "dark" + }, + "stats": { + "posts": 180, + "followers": 8844, + "following": 883 + } + }, + { + "id": 74, + "username": "user74", + "email": "user74@example.com", + "firstName": "First74", + "lastName": "Last74", + "age": 58, + "country": "Canada", + "registered": "2020-02-10", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 415, + "followers": 1480, + "following": 555 + } + }, + { + "id": 75, + "username": "user75", + "email": "user75@example.com", + "firstName": "First75", + "lastName": "Last75", + "age": 38, + "country": "Australia", + "registered": "2020-01-17", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 123, + "followers": 1555, + "following": 350 + } + }, + { + "id": 76, + "username": "user76", + "email": "user76@example.com", + "firstName": "First76", + "lastName": "Last76", + "age": 34, + "country": "Australia", + "registered": "2020-11-16", + "premium": false, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 301, + "followers": 3977, + "following": 516 + } + }, + { + "id": 77, + "username": "user77", + "email": "user77@example.com", + "firstName": "First77", + "lastName": "Last77", + "age": 49, + "country": "UK", + "registered": "2020-06-17", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 295, + "followers": 7965, + "following": 155 + } + }, + { + "id": 78, + "username": "user78", + "email": "user78@example.com", + "firstName": "First78", + "lastName": "Last78", + "age": 65, + "country": "USA", + "registered": "2020-08-26", + "premium": false, + "preferences": { + "newsletter": false, + "notifications": true, + "theme": "light" + }, + "stats": { + "posts": 467, + "followers": 4964, + "following": 629 + } + }, + { + "id": 79, + "username": "user79", + "email": "user79@example.com", + "firstName": "First79", + "lastName": "Last79", + "age": 53, + "country": "USA", + "registered": "2020-05-16", + "premium": true, + "preferences": { + "newsletter": false, + "notifications": false, + "theme": "dark" + }, + "stats": { + "posts": 127, + "followers": 3071, + "following": 861 + } + }, + { + "id": 80, + "username": "user80", + "email": "user80@example.com", + "firstName": "First80", + "lastName": "Last80", + "age": 56, + "country": "Japan", + "registered": "2020-12-25", + "premium": true, + "preferences": { + "newsletter": true, + "notifications": false, + "theme": "auto" + }, + "stats": { + "posts": 259, + "followers": 2947, + "following": 911 + } + } +] \ No newline at end of file diff --git a/synthetic/user_profiles.metadata.json b/synthetic/user_profiles.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..23597171b99897dd9bcb32bda012c52f690e8c4a --- /dev/null +++ b/synthetic/user_profiles.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_user_profiles", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.244920", + "size_bytes": 34013, + "description": "80 user profiles with varied fields", + "url": "" +} \ No newline at end of file diff --git a/synthetic/wide_table.json b/synthetic/wide_table.json new file mode 100644 index 0000000000000000000000000000000000000000..0cd043221e2996ba73f941ef3fdac27cb7535f23 --- /dev/null +++ b/synthetic/wide_table.json @@ -0,0 +1,1152 @@ +[ + { + "id": 1, + "field_1": 969, + "field_2": 828, + "field_3": 775, + "field_4": 227, + "field_5": 105, + "field_6": 235, + "field_7": 633, + "field_8": 265, + "field_9": 322, + "field_10": 966, + "field_11": 438, + "field_12": 225, + "field_13": 757, + "field_14": 64, + "field_15": 351, + "field_16": 238, + "field_17": 496, + "field_18": 714, + "field_19": 637, + "field_20": 254 + }, + { + "id": 2, + "field_1": 309, + "field_2": 831, + "field_3": 501, + "field_4": 576, + "field_5": 377, + "field_6": 449, + "field_7": 100, + "field_8": 382, + "field_9": 569, + "field_10": 275, + "field_11": 256, + "field_12": 943, + "field_13": 136, + "field_14": 943, + "field_15": 322, + "field_16": 944, + "field_17": 805, + "field_18": 785, + "field_19": 640, + "field_20": 165 + }, + { + "id": 3, + "field_1": 707, + "field_2": 492, + "field_3": 987, + "field_4": 701, + "field_5": 498, + "field_6": 623, + "field_7": 469, + "field_8": 933, + "field_9": 99, + "field_10": 198, + "field_11": 404, + "field_12": 125, + "field_13": 378, + "field_14": 259, + "field_15": 982, + "field_16": 102, + "field_17": 20, + "field_18": 540, + "field_19": 340, + "field_20": 864 + }, + { + "id": 4, + "field_1": 508, + "field_2": 747, + "field_3": 11, + "field_4": 176, + "field_5": 464, + "field_6": 121, + "field_7": 75, + "field_8": 304, + "field_9": 208, + "field_10": 366, + "field_11": 377, + "field_12": 493, + "field_13": 666, + "field_14": 884, + "field_15": 67, + "field_16": 531, + "field_17": 493, + "field_18": 785, + "field_19": 420, + "field_20": 290 + }, + { + "id": 5, + "field_1": 973, + "field_2": 446, + "field_3": 476, + "field_4": 220, + "field_5": 647, + "field_6": 291, + "field_7": 572, + "field_8": 154, + "field_9": 546, + "field_10": 693, + "field_11": 987, + "field_12": 127, + "field_13": 342, + "field_14": 746, + "field_15": 211, + "field_16": 517, + "field_17": 937, + "field_18": 126, + "field_19": 817, + "field_20": 98 + }, + { + "id": 6, + "field_1": 953, + "field_2": 888, + "field_3": 675, + "field_4": 626, + "field_5": 661, + "field_6": 822, + "field_7": 811, + "field_8": 357, + "field_9": 681, + "field_10": 907, + "field_11": 962, + "field_12": 476, + "field_13": 948, + "field_14": 197, + "field_15": 457, + "field_16": 502, + "field_17": 926, + "field_18": 823, + "field_19": 926, + "field_20": 380 + }, + { + "id": 7, + "field_1": 913, + "field_2": 96, + "field_3": 98, + "field_4": 362, + "field_5": 201, + "field_6": 755, + "field_7": 723, + "field_8": 980, + "field_9": 360, + "field_10": 506, + "field_11": 760, + "field_12": 266, + "field_13": 482, + "field_14": 624, + "field_15": 233, + "field_16": 963, + "field_17": 469, + "field_18": 282, + "field_19": 663, + "field_20": 628 + }, + { + "id": 8, + "field_1": 822, + "field_2": 191, + "field_3": 218, + "field_4": 742, + "field_5": 937, + "field_6": 254, + "field_7": 596, + "field_8": 896, + "field_9": 184, + "field_10": 699, + "field_11": 354, + "field_12": 496, + "field_13": 679, + "field_14": 244, + "field_15": 643, + "field_16": 963, + "field_17": 266, + "field_18": 572, + "field_19": 421, + "field_20": 939 + }, + { + "id": 9, + "field_1": 456, + "field_2": 510, + "field_3": 463, + "field_4": 249, + "field_5": 520, + "field_6": 276, + "field_7": 530, + "field_8": 769, + "field_9": 518, + "field_10": 597, + "field_11": 550, + "field_12": 982, + "field_13": 602, + "field_14": 749, + "field_15": 723, + "field_16": 24, + "field_17": 864, + "field_18": 130, + "field_19": 135, + "field_20": 782 + }, + { + "id": 10, + "field_1": 853, + "field_2": 644, + "field_3": 362, + "field_4": 101, + "field_5": 157, + "field_6": 503, + "field_7": 753, + "field_8": 774, + "field_9": 954, + "field_10": 934, + "field_11": 621, + "field_12": 300, + "field_13": 189, + "field_14": 745, + "field_15": 63, + "field_16": 918, + "field_17": 161, + "field_18": 753, + "field_19": 639, + "field_20": 543 + }, + { + "id": 11, + "field_1": 949, + "field_2": 464, + "field_3": 195, + "field_4": 957, + "field_5": 260, + "field_6": 233, + "field_7": 595, + "field_8": 913, + "field_9": 347, + "field_10": 586, + "field_11": 614, + "field_12": 223, + "field_13": 722, + "field_14": 585, + "field_15": 690, + "field_16": 985, + "field_17": 174, + "field_18": 761, + "field_19": 93, + "field_20": 209 + }, + { + "id": 12, + "field_1": 521, + "field_2": 259, + "field_3": 725, + "field_4": 684, + "field_5": 168, + "field_6": 187, + "field_7": 905, + "field_8": 863, + "field_9": 945, + "field_10": 855, + "field_11": 122, + "field_12": 596, + "field_13": 266, + "field_14": 831, + "field_15": 437, + "field_16": 383, + "field_17": 881, + "field_18": 291, + "field_19": 866, + "field_20": 975 + }, + { + "id": 13, + "field_1": 8, + "field_2": 806, + "field_3": 207, + "field_4": 179, + "field_5": 251, + "field_6": 821, + "field_7": 676, + "field_8": 264, + "field_9": 310, + "field_10": 861, + "field_11": 745, + "field_12": 808, + "field_13": 532, + "field_14": 149, + "field_15": 488, + "field_16": 839, + "field_17": 73, + "field_18": 852, + "field_19": 825, + "field_20": 112 + }, + { + "id": 14, + "field_1": 872, + "field_2": 786, + "field_3": 346, + "field_4": 443, + "field_5": 915, + "field_6": 650, + "field_7": 117, + "field_8": 447, + "field_9": 366, + "field_10": 503, + "field_11": 846, + "field_12": 460, + "field_13": 161, + "field_14": 382, + "field_15": 557, + "field_16": 141, + "field_17": 390, + "field_18": 320, + "field_19": 454, + "field_20": 979 + }, + { + "id": 15, + "field_1": 902, + "field_2": 609, + "field_3": 397, + "field_4": 835, + "field_5": 303, + "field_6": 152, + "field_7": 733, + "field_8": 458, + "field_9": 875, + "field_10": 654, + "field_11": 16, + "field_12": 457, + "field_13": 617, + "field_14": 750, + "field_15": 740, + "field_16": 205, + "field_17": 387, + "field_18": 167, + "field_19": 367, + "field_20": 971 + }, + { + "id": 16, + "field_1": 931, + "field_2": 460, + "field_3": 300, + "field_4": 368, + "field_5": 989, + "field_6": 365, + "field_7": 339, + "field_8": 480, + "field_9": 808, + "field_10": 994, + "field_11": 87, + "field_12": 489, + "field_13": 332, + "field_14": 938, + "field_15": 229, + "field_16": 937, + "field_17": 150, + "field_18": 242, + "field_19": 50, + "field_20": 70 + }, + { + "id": 17, + "field_1": 101, + "field_2": 879, + "field_3": 342, + "field_4": 62, + "field_5": 673, + "field_6": 470, + "field_7": 456, + "field_8": 257, + "field_9": 116, + "field_10": 670, + "field_11": 50, + "field_12": 887, + "field_13": 7, + "field_14": 820, + "field_15": 687, + "field_16": 649, + "field_17": 58, + "field_18": 824, + "field_19": 199, + "field_20": 40 + }, + { + "id": 18, + "field_1": 443, + "field_2": 418, + "field_3": 421, + "field_4": 557, + "field_5": 142, + "field_6": 315, + "field_7": 112, + "field_8": 809, + "field_9": 222, + "field_10": 46, + "field_11": 1, + "field_12": 314, + "field_13": 75, + "field_14": 967, + "field_15": 857, + "field_16": 217, + "field_17": 859, + "field_18": 692, + "field_19": 453, + "field_20": 618 + }, + { + "id": 19, + "field_1": 373, + "field_2": 451, + "field_3": 145, + "field_4": 720, + "field_5": 781, + "field_6": 683, + "field_7": 684, + "field_8": 928, + "field_9": 887, + "field_10": 181, + "field_11": 419, + "field_12": 451, + "field_13": 217, + "field_14": 705, + "field_15": 76, + "field_16": 991, + "field_17": 510, + "field_18": 207, + "field_19": 544, + "field_20": 643 + }, + { + "id": 20, + "field_1": 887, + "field_2": 574, + "field_3": 540, + "field_4": 611, + "field_5": 281, + "field_6": 68, + "field_7": 594, + "field_8": 64, + "field_9": 55, + "field_10": 340, + "field_11": 166, + "field_12": 688, + "field_13": 843, + "field_14": 506, + "field_15": 317, + "field_16": 931, + "field_17": 592, + "field_18": 836, + "field_19": 812, + "field_20": 660 + }, + { + "id": 21, + "field_1": 5, + "field_2": 270, + "field_3": 465, + "field_4": 734, + "field_5": 495, + "field_6": 845, + "field_7": 361, + "field_8": 823, + "field_9": 942, + "field_10": 565, + "field_11": 876, + "field_12": 796, + "field_13": 471, + "field_14": 364, + "field_15": 99, + "field_16": 934, + "field_17": 352, + "field_18": 256, + "field_19": 684, + "field_20": 863 + }, + { + "id": 22, + "field_1": 776, + "field_2": 729, + "field_3": 98, + "field_4": 594, + "field_5": 570, + "field_6": 945, + "field_7": 478, + "field_8": 610, + "field_9": 889, + "field_10": 562, + "field_11": 451, + "field_12": 777, + "field_13": 341, + "field_14": 83, + "field_15": 378, + "field_16": 317, + "field_17": 350, + "field_18": 318, + "field_19": 333, + "field_20": 639 + }, + { + "id": 23, + "field_1": 739, + "field_2": 376, + "field_3": 579, + "field_4": 665, + "field_5": 328, + "field_6": 824, + "field_7": 411, + "field_8": 212, + "field_9": 880, + "field_10": 994, + "field_11": 607, + "field_12": 219, + "field_13": 322, + "field_14": 380, + "field_15": 817, + "field_16": 86, + "field_17": 344, + "field_18": 723, + "field_19": 964, + "field_20": 522 + }, + { + "id": 24, + "field_1": 47, + "field_2": 246, + "field_3": 528, + "field_4": 361, + "field_5": 57, + "field_6": 503, + "field_7": 957, + "field_8": 757, + "field_9": 432, + "field_10": 966, + "field_11": 954, + "field_12": 54, + "field_13": 620, + "field_14": 566, + "field_15": 635, + "field_16": 738, + "field_17": 822, + "field_18": 445, + "field_19": 279, + "field_20": 436 + }, + { + "id": 25, + "field_1": 963, + "field_2": 562, + "field_3": 665, + "field_4": 833, + "field_5": 618, + "field_6": 515, + "field_7": 596, + "field_8": 579, + "field_9": 116, + "field_10": 631, + "field_11": 806, + "field_12": 845, + "field_13": 68, + "field_14": 110, + "field_15": 958, + "field_16": 639, + "field_17": 159, + "field_18": 199, + "field_19": 541, + "field_20": 661 + }, + { + "id": 26, + "field_1": 176, + "field_2": 734, + "field_3": 100, + "field_4": 171, + "field_5": 908, + "field_6": 390, + "field_7": 82, + "field_8": 518, + "field_9": 928, + "field_10": 238, + "field_11": 304, + "field_12": 556, + "field_13": 828, + "field_14": 485, + "field_15": 883, + "field_16": 908, + "field_17": 754, + "field_18": 799, + "field_19": 106, + "field_20": 186 + }, + { + "id": 27, + "field_1": 348, + "field_2": 52, + "field_3": 631, + "field_4": 574, + "field_5": 986, + "field_6": 244, + "field_7": 876, + "field_8": 829, + "field_9": 332, + "field_10": 260, + "field_11": 487, + "field_12": 828, + "field_13": 309, + "field_14": 585, + "field_15": 191, + "field_16": 732, + "field_17": 766, + "field_18": 498, + "field_19": 7, + "field_20": 222 + }, + { + "id": 28, + "field_1": 239, + "field_2": 819, + "field_3": 763, + "field_4": 511, + "field_5": 421, + "field_6": 765, + "field_7": 280, + "field_8": 393, + "field_9": 7, + "field_10": 190, + "field_11": 75, + "field_12": 525, + "field_13": 848, + "field_14": 192, + "field_15": 472, + "field_16": 198, + "field_17": 257, + "field_18": 88, + "field_19": 629, + "field_20": 899 + }, + { + "id": 29, + "field_1": 446, + "field_2": 673, + "field_3": 992, + "field_4": 50, + "field_5": 969, + "field_6": 135, + "field_7": 34, + "field_8": 865, + "field_9": 174, + "field_10": 341, + "field_11": 47, + "field_12": 108, + "field_13": 168, + "field_14": 281, + "field_15": 411, + "field_16": 117, + "field_17": 256, + "field_18": 563, + "field_19": 6, + "field_20": 937 + }, + { + "id": 30, + "field_1": 782, + "field_2": 69, + "field_3": 350, + "field_4": 775, + "field_5": 267, + "field_6": 356, + "field_7": 120, + "field_8": 697, + "field_9": 529, + "field_10": 449, + "field_11": 457, + "field_12": 116, + "field_13": 826, + "field_14": 197, + "field_15": 147, + "field_16": 466, + "field_17": 35, + "field_18": 961, + "field_19": 832, + "field_20": 853 + }, + { + "id": 31, + "field_1": 68, + "field_2": 363, + "field_3": 372, + "field_4": 870, + "field_5": 54, + "field_6": 339, + "field_7": 937, + "field_8": 422, + "field_9": 831, + "field_10": 74, + "field_11": 570, + "field_12": 122, + "field_13": 187, + "field_14": 994, + "field_15": 914, + "field_16": 682, + "field_17": 715, + "field_18": 110, + "field_19": 122, + "field_20": 601 + }, + { + "id": 32, + "field_1": 973, + "field_2": 989, + "field_3": 624, + "field_4": 512, + "field_5": 2, + "field_6": 433, + "field_7": 48, + "field_8": 612, + "field_9": 599, + "field_10": 915, + "field_11": 836, + "field_12": 809, + "field_13": 650, + "field_14": 402, + "field_15": 372, + "field_16": 305, + "field_17": 353, + "field_18": 922, + "field_19": 228, + "field_20": 675 + }, + { + "id": 33, + "field_1": 635, + "field_2": 159, + "field_3": 211, + "field_4": 440, + "field_5": 543, + "field_6": 418, + "field_7": 531, + "field_8": 435, + "field_9": 865, + "field_10": 168, + "field_11": 722, + "field_12": 292, + "field_13": 44, + "field_14": 350, + "field_15": 463, + "field_16": 594, + "field_17": 818, + "field_18": 348, + "field_19": 541, + "field_20": 365 + }, + { + "id": 34, + "field_1": 593, + "field_2": 486, + "field_3": 563, + "field_4": 741, + "field_5": 993, + "field_6": 873, + "field_7": 314, + "field_8": 70, + "field_9": 475, + "field_10": 528, + "field_11": 793, + "field_12": 697, + "field_13": 496, + "field_14": 164, + "field_15": 380, + "field_16": 139, + "field_17": 716, + "field_18": 799, + "field_19": 565, + "field_20": 437 + }, + { + "id": 35, + "field_1": 947, + "field_2": 403, + "field_3": 321, + "field_4": 128, + "field_5": 538, + "field_6": 647, + "field_7": 169, + "field_8": 452, + "field_9": 608, + "field_10": 731, + "field_11": 866, + "field_12": 323, + "field_13": 795, + "field_14": 397, + "field_15": 783, + "field_16": 28, + "field_17": 337, + "field_18": 137, + "field_19": 815, + "field_20": 69 + }, + { + "id": 36, + "field_1": 952, + "field_2": 438, + "field_3": 180, + "field_4": 803, + "field_5": 621, + "field_6": 297, + "field_7": 34, + "field_8": 798, + "field_9": 127, + "field_10": 824, + "field_11": 654, + "field_12": 244, + "field_13": 582, + "field_14": 869, + "field_15": 159, + "field_16": 213, + "field_17": 331, + "field_18": 32, + "field_19": 808, + "field_20": 355 + }, + { + "id": 37, + "field_1": 689, + "field_2": 243, + "field_3": 317, + "field_4": 277, + "field_5": 956, + "field_6": 319, + "field_7": 9, + "field_8": 702, + "field_9": 13, + "field_10": 295, + "field_11": 171, + "field_12": 446, + "field_13": 425, + "field_14": 647, + "field_15": 784, + "field_16": 268, + "field_17": 154, + "field_18": 70, + "field_19": 977, + "field_20": 762 + }, + { + "id": 38, + "field_1": 689, + "field_2": 741, + "field_3": 129, + "field_4": 844, + "field_5": 363, + "field_6": 149, + "field_7": 466, + "field_8": 492, + "field_9": 171, + "field_10": 689, + "field_11": 373, + "field_12": 956, + "field_13": 275, + "field_14": 228, + "field_15": 997, + "field_16": 272, + "field_17": 716, + "field_18": 386, + "field_19": 311, + "field_20": 144 + }, + { + "id": 39, + "field_1": 579, + "field_2": 654, + "field_3": 681, + "field_4": 503, + "field_5": 763, + "field_6": 857, + "field_7": 435, + "field_8": 239, + "field_9": 691, + "field_10": 845, + "field_11": 480, + "field_12": 954, + "field_13": 16, + "field_14": 79, + "field_15": 196, + "field_16": 23, + "field_17": 164, + "field_18": 279, + "field_19": 576, + "field_20": 585 + }, + { + "id": 40, + "field_1": 368, + "field_2": 423, + "field_3": 676, + "field_4": 695, + "field_5": 273, + "field_6": 241, + "field_7": 43, + "field_8": 531, + "field_9": 399, + "field_10": 595, + "field_11": 238, + "field_12": 614, + "field_13": 198, + "field_14": 780, + "field_15": 8, + "field_16": 610, + "field_17": 838, + "field_18": 883, + "field_19": 745, + "field_20": 314 + }, + { + "id": 41, + "field_1": 626, + "field_2": 734, + "field_3": 841, + "field_4": 808, + "field_5": 174, + "field_6": 0, + "field_7": 549, + "field_8": 104, + "field_9": 51, + "field_10": 69, + "field_11": 983, + "field_12": 536, + "field_13": 320, + "field_14": 63, + "field_15": 127, + "field_16": 620, + "field_17": 144, + "field_18": 944, + "field_19": 623, + "field_20": 684 + }, + { + "id": 42, + "field_1": 350, + "field_2": 727, + "field_3": 855, + "field_4": 771, + "field_5": 154, + "field_6": 834, + "field_7": 909, + "field_8": 417, + "field_9": 696, + "field_10": 843, + "field_11": 831, + "field_12": 262, + "field_13": 598, + "field_14": 807, + "field_15": 933, + "field_16": 572, + "field_17": 370, + "field_18": 205, + "field_19": 570, + "field_20": 346 + }, + { + "id": 43, + "field_1": 439, + "field_2": 807, + "field_3": 745, + "field_4": 953, + "field_5": 366, + "field_6": 1, + "field_7": 343, + "field_8": 480, + "field_9": 91, + "field_10": 801, + "field_11": 590, + "field_12": 412, + "field_13": 296, + "field_14": 32, + "field_15": 558, + "field_16": 892, + "field_17": 403, + "field_18": 336, + "field_19": 394, + "field_20": 147 + }, + { + "id": 44, + "field_1": 412, + "field_2": 66, + "field_3": 258, + "field_4": 129, + "field_5": 357, + "field_6": 873, + "field_7": 187, + "field_8": 77, + "field_9": 223, + "field_10": 711, + "field_11": 882, + "field_12": 513, + "field_13": 698, + "field_14": 47, + "field_15": 855, + "field_16": 898, + "field_17": 698, + "field_18": 357, + "field_19": 621, + "field_20": 455 + }, + { + "id": 45, + "field_1": 164, + "field_2": 759, + "field_3": 403, + "field_4": 282, + "field_5": 619, + "field_6": 968, + "field_7": 252, + "field_8": 527, + "field_9": 460, + "field_10": 906, + "field_11": 319, + "field_12": 815, + "field_13": 531, + "field_14": 76, + "field_15": 767, + "field_16": 313, + "field_17": 675, + "field_18": 208, + "field_19": 790, + "field_20": 150 + }, + { + "id": 46, + "field_1": 873, + "field_2": 593, + "field_3": 601, + "field_4": 509, + "field_5": 602, + "field_6": 27, + "field_7": 360, + "field_8": 964, + "field_9": 333, + "field_10": 426, + "field_11": 264, + "field_12": 836, + "field_13": 945, + "field_14": 479, + "field_15": 587, + "field_16": 752, + "field_17": 239, + "field_18": 35, + "field_19": 346, + "field_20": 992 + }, + { + "id": 47, + "field_1": 211, + "field_2": 423, + "field_3": 203, + "field_4": 932, + "field_5": 18, + "field_6": 919, + "field_7": 999, + "field_8": 412, + "field_9": 872, + "field_10": 849, + "field_11": 131, + "field_12": 448, + "field_13": 494, + "field_14": 888, + "field_15": 136, + "field_16": 908, + "field_17": 259, + "field_18": 199, + "field_19": 28, + "field_20": 666 + }, + { + "id": 48, + "field_1": 559, + "field_2": 588, + "field_3": 680, + "field_4": 328, + "field_5": 669, + "field_6": 120, + "field_7": 913, + "field_8": 220, + "field_9": 959, + "field_10": 950, + "field_11": 424, + "field_12": 289, + "field_13": 901, + "field_14": 626, + "field_15": 3, + "field_16": 65, + "field_17": 780, + "field_18": 579, + "field_19": 807, + "field_20": 279 + }, + { + "id": 49, + "field_1": 515, + "field_2": 26, + "field_3": 70, + "field_4": 573, + "field_5": 523, + "field_6": 928, + "field_7": 723, + "field_8": 318, + "field_9": 689, + "field_10": 330, + "field_11": 838, + "field_12": 531, + "field_13": 291, + "field_14": 492, + "field_15": 354, + "field_16": 655, + "field_17": 327, + "field_18": 988, + "field_19": 446, + "field_20": 716 + }, + { + "id": 50, + "field_1": 830, + "field_2": 976, + "field_3": 143, + "field_4": 129, + "field_5": 557, + "field_6": 988, + "field_7": 253, + "field_8": 206, + "field_9": 845, + "field_10": 830, + "field_11": 575, + "field_12": 825, + "field_13": 607, + "field_14": 778, + "field_15": 724, + "field_16": 297, + "field_17": 199, + "field_18": 996, + "field_19": 328, + "field_20": 660 + } +] \ No newline at end of file diff --git a/synthetic/wide_table.metadata.json b/synthetic/wide_table.metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..a880dfdc771e921d8db8652c8f7a74ca7108596a --- /dev/null +++ b/synthetic/wide_table.metadata.json @@ -0,0 +1,8 @@ +{ + "id": "synthetic_wide_table", + "source": "synthetic", + "collected_date": "2025-11-05T22:51:39.272256", + "size_bytes": 21541, + "description": "50 records with 20 fields for column mode", + "url": "" +} \ No newline at end of file