Prechádzať zdrojové kódy

governor: export chainList and tokenList (#4411)

yevshev 4 mesiacov pred
rodič
commit
a15ba9ff4d

+ 8 - 8
node/hack/governor/src/index.ts

@@ -123,8 +123,8 @@ axios
       MinNotional +
       "\n\n";
     content += "package governor\n\n";
-    content += "func generatedMainnetTokenList() []tokenConfigEntry {\n";
-    content += "\treturn []tokenConfigEntry {\n";
+    content += "func generatedMainnetTokenList() []TokenConfigEntry {\n";
+    content += "\treturn []TokenConfigEntry {\n";
 
     var significantPriceChanges = [];
     var addedTokens = [];
@@ -257,17 +257,17 @@ axios
             }
             
             content +=
-              "\t{ chain: " +
+              "\t{ Chain: " +
               chain +
-              ', addr: "' +
+              ', Addr: "' +
               wormholeAddr +
-              '", symbol: "' +
+              '", Symbol: "' +
               data.Symbol +
-              '", coinGeckoId: "' +
+              '", CoinGeckoId: "' +
               data.CoinGeckoId +
-              '", decimals: ' +
+              '", Decimals: ' +
               data.TokenDecimals +
-              ", price: " +
+              ", Price: " +
               data.TokenPrice +
               " }, // Addr: " +
               data.Address +

+ 11 - 11
node/pkg/governor/devnet_config.go

@@ -6,28 +6,28 @@ import (
 	"github.com/wormhole-foundation/wormhole/sdk/vaa"
 )
 
-func (gov *ChainGovernor) initDevnetConfig() ([]tokenConfigEntry, []tokenConfigEntry, []chainConfigEntry, []corridor) {
+func (gov *ChainGovernor) initDevnetConfig() ([]TokenConfigEntry, []TokenConfigEntry, []ChainConfigEntry, []corridor) {
 	gov.logger.Info("setting up devnet config")
 
 	gov.dayLengthInMinutes = 5
 
-	tokens := []tokenConfigEntry{
-		{chain: 1, addr: "069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001", symbol: "SOL", coinGeckoId: "wrapped-solana", decimals: 9, price: 138.11}, // Addr: So11111111111111111111111111111111111111112, Notional: 82226686.73036034
-		{chain: 1, addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 1.001},       // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
-		{chain: 2, addr: "000000000000000000000000DDb64fE46a91D46ee29420539FC25FD07c5FEa3E", symbol: "WETH", coinGeckoId: "weth", decimals: 8, price: 1174},
+	tokens := []TokenConfigEntry{
+		{Chain: 1, Addr: "069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001", Symbol: "SOL", CoinGeckoId: "wrapped-solana", Decimals: 9, Price: 138.11}, // Addr: So11111111111111111111111111111111111111112, Notional: 82226686.73036034
+		{Chain: 1, Addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 1.001},       // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
+		{Chain: 2, Addr: "000000000000000000000000DDb64fE46a91D46ee29420539FC25FD07c5FEa3E", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 8, Price: 1174},
 	}
 
-	flowCancelTokens := []tokenConfigEntry{}
+	flowCancelTokens := []TokenConfigEntry{}
 	flowCancelCorridors := []corridor{}
 	if gov.flowCancelEnabled {
-		flowCancelTokens = []tokenConfigEntry{
-			{chain: 1, addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 1.001}, // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
+		flowCancelTokens = []TokenConfigEntry{
+			{Chain: 1, Addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 1.001}, // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
 		}
 	}
 
-	chains := []chainConfigEntry{
-		{emitterChainID: vaa.ChainIDSolana, dailyLimit: 100, bigTransactionSize: 75},
-		{emitterChainID: vaa.ChainIDEthereum, dailyLimit: 100000},
+	chains := []ChainConfigEntry{
+		{EmitterChainID: vaa.ChainIDSolana, DailyLimit: 100, BigTransactionSize: 75},
+		{EmitterChainID: vaa.ChainIDEthereum, DailyLimit: 100000},
 	}
 
 	return tokens, flowCancelTokens, chains, flowCancelCorridors

+ 7 - 7
node/pkg/governor/flow_cancel_tokens.go

@@ -8,17 +8,17 @@ package governor
 // present in this list but not in the mainnet token lists, it should not flow cancel.
 //
 // Note that the field `symbol` is unused. It is retained in this file only for convenience.
-func FlowCancelTokenList() []tokenConfigEntry {
-	return []tokenConfigEntry{
+func FlowCancelTokenList() []TokenConfigEntry {
+	return []TokenConfigEntry{
 		// USDC variants
-		{chain: 1, addr: "c6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61", symbol: "USDC"},
-		{chain: 2, addr: "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", symbol: "USDC"},
+		{Chain: 1, Addr: "c6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61", Symbol: "USDC"},
+		{Chain: 2, Addr: "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", Symbol: "USDC"},
 
 		// USDT variants
-		{chain: 1, addr: "ce010e60afedb22717bd63192f54145a3f965a33bb82d2c7029eb2ce1e208264", symbol: "USDT"},
-		{chain: 2, addr: "000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", symbol: "USDT"},
+		{Chain: 1, Addr: "ce010e60afedb22717bd63192f54145a3f965a33bb82d2c7029eb2ce1e208264", Symbol: "USDT"},
+		{Chain: 2, Addr: "000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", Symbol: "USDT"},
 
 		// DAI variants
-		{chain: 2, addr: "0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", symbol: "DAI"},
+		{Chain: 2, Addr: "0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", Symbol: "DAI"},
 	}
 }

+ 1656 - 1656
node/pkg/governor/generated_mainnet_tokens.go

@@ -4,1661 +4,1661 @@
 
 package governor
 
-func generatedMainnetTokenList() []tokenConfigEntry {
-	return []tokenConfigEntry{
-		{chain: 1, addr: "00587a642600d6f2bd3bbfdf116dbd613c45cfa659b55a1fbc7cbc28e6092699", symbol: "Skibidi", coinGeckoId: "skibidi-dop-dop", decimals: 6, price: 0.00001431},                               // Addr: 12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp, Notional: 245.69164256918364
-		{chain: 1, addr: "017009a9390d6d6e7777a27675f05e1692fe09561cf25879203a0d282f8b3408", symbol: "SHILL", coinGeckoId: "shill-token", decimals: 6, price: 0.00033394},                                     // Addr: 6cVgJUqo4nmvQpbgrDZwyfd6RwWw5bfnCamS3M9N1fd, Notional: 1.135860811086
-		{chain: 1, addr: "0266eb1428607b1c110941decd0ebe34eab6586ffba3e15820aa9c63b4110b10", symbol: "", coinGeckoId: "zignaly", decimals: 9, price: 0.095405},                                                // Addr: ANqY8h3sRSwkC29FvGJenAh7VGRABVVx7Ls6Mq4BuGT, Notional: 286.2150025253704
-		{chain: 1, addr: "02a88b06fab40a8cd293f0c527587e62d2ffab766fca08b7f6f3c919ee731b12", symbol: "BNSOL", coinGeckoId: "binance-staked-sol", decimals: 9, price: 165.36},                                  // Addr: BNso1VUJnh4zcfpZa6986Ea66P6TCp59hvtNJ8b1X85, Notional: 20.82940704
-		{chain: 1, addr: "03481237c86b4ff57b5c845a97ecee44f3b4c459954b607a232869cfb2bfb345", symbol: "BONKFA", coinGeckoId: "bonk-of-america", decimals: 6, price: 0.00003059},                                // Addr: DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t, Notional: 0.61391071
-		{chain: 1, addr: "0479d9c7cc1035de7211f99eb48c09d70b2bdf5bdf9e2e56b8a1fbb5a2ea3327", symbol: "JUP", coinGeckoId: "jupiter-exchange-solana", decimals: 6, price: 0.468132},                             // Addr: JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN, Notional: 86.388545141388
-		{chain: 1, addr: "049a250bfacf558c6b6407a8d3716ff17c8c062a29b26a868e7ba5e7422ffd15", symbol: "mockJUP", coinGeckoId: "mockjup", decimals: 9, price: 0.00019905},                                       // Addr: JxxWsvm9jHt4ah7DT9NuLyVLYZcZLUdPD93PcPQ71Ka, Notional: 0.021903315783841498
-		{chain: 1, addr: "049c63b95b6f586200bc5571c3deee5f0d404434c2bb1418f473c661893771cd", symbol: "clSUI", coinGeckoId: "cloned-sui", decimals: 8, price: 0.792309},                                        // Addr: JzwfZvJGdsqbrKZQUvzJpWhbHcZUix7CYcCaoiNpjxg, Notional: 0.792309
-		{chain: 1, addr: "051687499457f76f90ed11ff8133233eee9f139718c36a85dff99950b7adabf1", symbol: "LARIX", coinGeckoId: "larix", decimals: 6, price: 0.00002526},                                           // Addr: Lrxqnh6ZHKbGy3dcrCED43nsoLkM1LTzU2jRfWe8qUC, Notional: 0.0017682
-		{chain: 1, addr: "052e7f80a14a1e7a5254e9a1c27f7fc48563bfc35f0be177a8d556ae8ba1add6", symbol: "MEAN", coinGeckoId: "meanfi", decimals: 6, price: 0.00016119},                                           // Addr: MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD, Notional: 0.0007930547999999999
-		{chain: 1, addr: "052ed35010b819ff4914f47a3118c42c98bf210fd7e47d722307b5c24901a7ba", symbol: "MPLX", coinGeckoId: "metaplex", decimals: 6, price: 0.138063},                                           // Addr: METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m, Notional: 27.612599999999997
-		{chain: 1, addr: "0537996f2699674fb7086e468fb33b4fde1449f47a8befd8b342bf6b33cff372", symbol: "MNDE", coinGeckoId: "marinade", decimals: 9, price: 0.116511},                                           // Addr: MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey, Notional: 5.88473411247687
-		{chain: 1, addr: "0545d1ee9805764e58b3ef5bcb54177517dfe7980e6e44e67a628bdb9d2a7bd1", symbol: "MNGO", coinGeckoId: "mango-markets", decimals: 6, price: 0.01867651},                                    // Addr: MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac, Notional: 0.009338255
-		{chain: 1, addr: "05718b04572312d73aa71deaec43c89d77844b0b7ff9e3e72da8510182627455", symbol: "BLOCK", coinGeckoId: "blockasset", decimals: 6, price: 0.074459},                                        // Addr: NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk, Notional: 1957195.9863830635
-		{chain: 1, addr: "058bf1f00d167d3df31491dae204d6006b9d596870eecf5d305035df8a3f96dd", symbol: "NEON", coinGeckoId: "neon", decimals: 9, price: 0.112421},                                               // Addr: NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44, Notional: 32.0512271
-		{chain: 1, addr: "05be68ae2977ce39f15086f2c761b24cf054a40b22a2a5b33ef583c50f1cfdb7", symbol: "", coinGeckoId: "prism", decimals: 6, price: 0.00034322},                                                // Addr: PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x, Notional: 1.01787566417276
-		{chain: 1, addr: "05be6c87eec2d40a2e26e1fc0a8423a379820ca454982348adfc9563b5157725", symbol: "PRT", coinGeckoId: "parrot-protocol", decimals: 6, price: 0.00013656},                                   // Addr: PRT88RkA4Kg5z7pKnezeNH4mafTvtQdfFgpQTGRjz44, Notional: 0.03943601352072
-		{chain: 1, addr: "05beb884b642b260d9c2b53cb3d876b8b4de72aea0d787d779bf4266688a3935", symbol: "", coinGeckoId: "solanaprime", decimals: 9, price: 0.0020415},                                           // Addr: PRiME7gDoiG1vGr95a3CRMv9xHY7UGjd4JKvfSkmQu2, Notional: 0.21639899999999998
-		{chain: 1, addr: "061391c556ba0106d4b1b2ccf939d47caf9fb30639a58bf9cc315d024f1cb458", symbol: "", coinGeckoId: "tudabirds", decimals: 9, price: 0.00081844},                                            // Addr: Qikhhhg9Ta3Jg7WoDFbSYuCAE14hx9hPvdz1zVp3zUw, Notional: 0.5606314
-		{chain: 1, addr: "063ba2f4697205f531b6de49bb9605fd2ca6a9ddf243bed251fda6552ef0e571", symbol: "", coinGeckoId: "rollbit-coin", decimals: 2, price: 0.059749},                                           // Addr: RLBxxFkseAZ4RgJH3Sqn8jXxhmGoz9jWxDNJMh8pL7a, Notional: 982.1176151099999
-		{chain: 1, addr: "0679db01ce2a84f71c139e7c9942f6da3b331fdec3319d02f899eba70134737e", symbol: "SHDW", coinGeckoId: "genesysgo-shadow", decimals: 9, price: 0.100692},                                   // Addr: SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y, Notional: 20.239092
-		{chain: 1, addr: "067d3988ce882945c63a0717a92538addd9a37550ce5cd711f76ca74a4c89786", symbol: "", coinGeckoId: "solcial", decimals: 9, price: 0.00008045},                                              // Addr: SLCLww7nc1PD2gQPQdGayHviVVcpMthnqUz2iWKhNQV, Notional: 0.0007347013587625001
-		{chain: 1, addr: "067fc27abcad2df07cc40437330da4fe8851680ae2b242c2ea1d86e2cfa10064", symbol: "SNS", coinGeckoId: "synesis-one", decimals: 9, price: 0.00280277},                                       // Addr: SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd, Notional: 176.7387101988894
-		{chain: 1, addr: "068310861a98327d0550574d84418aa6e10c3352ddaa7fd7f58152cceeb23887", symbol: "SRM", coinGeckoId: "serum", decimals: 6, price: 0.01616937},                                             // Addr: SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt, Notional: 423.6614225009044
-		{chain: 1, addr: "068677427842ef204cf58abdf76271228b5a485abb6dfa465e6ed7ee8b7d5e79", symbol: "SUNNY", coinGeckoId: "sunny-aggregator", decimals: 6, price: 0.00000592},                                // Addr: SUNNYWgPQmFxe9wTZzNK7iPnJ3vYDrkgnxJRJm1s3ag, Notional: 0.0173206815064
-		{chain: 1, addr: "068d824d56f0eebb7566e6ee1d65a9d260ff509a4b5c69b6269ad64de3cd50bc", symbol: "SBR", coinGeckoId: "saber", decimals: 6, price: 0.0014697},                                              // Addr: Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1, Notional: 5.1993230859135
-		{chain: 1, addr: "069501a7f73f3b05dfff8b104d2393e9c39e1ee2fe6b329ccf9847ccfa2af594", symbol: "SHEESH", coinGeckoId: "sheeshin-on-solana", decimals: 6, price: 0.01762035},                             // Addr: ShEEsukacNfbBpULD1xtCZKjeMMzvc78xufMDuE3jvB, Notional: 5.6683994262258
-		{chain: 1, addr: "069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001", symbol: "SOL", coinGeckoId: "wrapped-solana", decimals: 9, price: 156.53},                                        // Addr: So11111111111111111111111111111111111111112, Notional: 93064671.3081117
-		{chain: 1, addr: "06a1ec5bd82ad9c032a9f7d466ba2c728b0ef36a8b773ed219d69650d3472bd6", symbol: "", coinGeckoId: "step-finance", decimals: 9, price: 0.078677},                                           // Addr: StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT, Notional: 6.89659268352683
-		{chain: 1, addr: "06cf442fd1ea50d2b18629079232396c075d29c1eda912d38fd75049f827e3a3", symbol: "TAKI", coinGeckoId: "taki", decimals: 9, price: 0.00028552},                                             // Addr: Taki7fi3Zicv7Du1xNAWLaf6mRK7ikdn77HeGzgwvo4, Notional: 10235.608331503212
-		{chain: 1, addr: "06e44836998a9e52bde7b5182fdbbdde4e2789cbffe5ab0e9762cb13651c8bda", symbol: "TULIP", coinGeckoId: "solfarm", decimals: 6, price: 0.118722},                                           // Addr: TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs, Notional: 0.00023744399999999999
-		{chain: 1, addr: "0704152a9efdde41a8971e72c23f18079623cad2b3a8d4330cc7ee0072aba7a1", symbol: "UPT", coinGeckoId: "uprock", decimals: 9, price: 0.00868243},                                            // Addr: UPTx1d24aBWuRgwxVnFmX4gNraj3QGFzL3QqBgxtWQG, Notional: 0.2129628173831944
-		{chain: 1, addr: "0707305232e6160c18b4099da5b66bd387bc6469ad2244f283f73ff2a8e40338", symbol: "", coinGeckoId: "usdh", decimals: 6, price: 0.997796},                                                   // Addr: USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX, Notional: 9.950514623223999
-		{chain: 1, addr: "070d0b9bee96609a69a17a10833705370fb116a06adb20d5efd866e68051c132", symbol: "", coinGeckoId: "uxd-protocol-token", decimals: 9, price: 0.01246475},                                   // Addr: UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M, Notional: 10.499335659651356
-		{chain: 1, addr: "072844c94ab6a7097e1134511934be65304b482d6e8850493ce05ac78755dbea", symbol: "UWU", coinGeckoId: "unicorn-3", decimals: 6, price: 0.0000602},                                          // Addr: UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z, Notional: 26575.024501810534
-		{chain: 1, addr: "0752a8bf6d64c5f78ef23e3e7e92cdc4cf80f8dc791596e099cafb776ca56e2f", symbol: "OIIAOIIA", coinGeckoId: "spinning-cat", decimals: 6, price: 0.00252949},                                 // Addr: VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump, Notional: 0.12647450000000002
-		{chain: 1, addr: "077cf63a56ff0afb124f6f68875a02adce4e320bbfcc1072e67a0a4ffa46c295", symbol: "WEN", coinGeckoId: "wen-4", decimals: 5, price: 0.00004109},                                             // Addr: WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk, Notional: 58.8506442758696
-		{chain: 1, addr: "07bb093e9f7decab41a717b15946f6db587868a6721c0a6e3c4281ed3fef0e09", symbol: "XBG", coinGeckoId: "xborg", decimals: 9, price: 0.073721},                                               // Addr: XBGdqJ9P175hCC1LangCEyXWNeCPHaKWA17tymz2PrY, Notional: 733.3085306185914
-		{chain: 1, addr: "08742da77f532cb2337402e2ab66187b63a2907c9a62107dab7013a28deb4657", symbol: "ABR", coinGeckoId: "allbridge", decimals: 9, price: 0.081603},                                           // Addr: a11bdAAuV8iB2fu7X6AxAvDTo1QZ8FXB3kk5eecdasp, Notional: 0.5379087997477799
-		{chain: 1, addr: "08808616ce71e6e2e483262f0dc1cf87122c2001543cbfc95fd75fab46ac2893", symbol: "HAPPI", coinGeckoId: "happi-cat", decimals: 6, price: 0.00003157},                                       // Addr: aBvs3Zv9JYmvUCKqRJvGctDQSCt6R7NAMELid3FeqsQ, Notional: 52.221778169471676
-		{chain: 1, addr: "08d2e970f93c7b3d50191e611acd93aa80a546b45ec965e18b0587155699c8ac", symbol: "", coinGeckoId: "blazestake-staked-sol", decimals: 9, price: 191.42},                                    // Addr: bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1, Notional: 19.929664586999998
-		{chain: 1, addr: "08ea6f14a48ad8d63068ce1114a7f5148c0dc909a8564c958e57e4ddea0e6cbf", symbol: "BOBAOPPA", coinGeckoId: "boba-oppa", decimals: 6, price: 0.00056245},                                    // Addr: bobaM3u8QmqZhY1HwAtnvze9DLXvkgKYk3td3t8MLva, Notional: 0.04209139739735
-		{chain: 1, addr: "08eaab49809a0d284791dcf38d96b4dde48d41807f3a795dcfaf325205943057", symbol: "Boo", coinGeckoId: "boo-2", decimals: 9, price: 0.00002857},                                             // Addr: booe3XGMztBMB9RhCgNodhJQeaaMmhdGehMCVPMGza2, Notional: 0.7261752896122762
-		{chain: 1, addr: "0936990e30118f3e824ab4ad611dbacae303117a46ab833c9c911acb736a7ecf", symbol: "", coinGeckoId: "solchicks-token", decimals: 9, price: 0.00004814},                                      // Addr: cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2, Notional: 0.00539168
-		{chain: 1, addr: "0a732093918561f7dd7fcbec4abd8513deca1a967f7ad7a39d63b41ed893808b", symbol: "HNT", coinGeckoId: "helium", decimals: 8, price: 2.95},                                                  // Addr: hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux, Notional: 0.033437837000000005
-		{chain: 1, addr: "0afcf8968b8dab88481e2d2ae689c952c757aeba643e3919e89f2e55795c76c1", symbol: "JTO", coinGeckoId: "jito-governance-token", decimals: 9, price: 1.89},                                   // Addr: jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL, Notional: 77.54342298569999
-		{chain: 1, addr: "0b32c16d6e18acb932405c63adbf490ed2e214adf8860590fafcc3c869556b26", symbol: "", coinGeckoId: "kineko", decimals: 9, price: 0.0001405},                                                // Addr: kiNeKo77w1WBEzFFCXrTDRWGRWGP8yHvKC9rX6dqjQh, Notional: 0.015461551780545
-		{chain: 1, addr: "0b3338a0ab2cc841d5b014bc6a3cf756291874b319c9517d9bbfa9e4e9661ef9", symbol: "KIN", coinGeckoId: "kin", decimals: 5, price: 0.00000138},                                               // Addr: kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6, Notional: 0.1747422106968
-		{chain: 1, addr: "0b62ba074f722c9d4114f2d8f70a00c66002337b9bf90c873657a6d201db4c80", symbol: "mSOL", coinGeckoId: "msol", decimals: 9, price: 203.28},                                                 // Addr: mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So, Notional: 99.0700386984
-		{chain: 1, addr: "0b8bba91467afe97500d18b35605e1c5842b2310a97ebfb863d17f32f1943fb1", symbol: "PEEP", coinGeckoId: "peepo-sol", decimals: 6, price: 0.00000418},                                        // Addr: n54ZwXEcLnc3o7zK48nhrLV4KTU5wWD4iq7Gvdt5tik, Notional: 0.00000418
-		{chain: 1, addr: "0c00d0afeb8614da7f19aba02d40f18c692585f65020dfced3d5e5f9a9c0c4e1", symbol: "ORCA", coinGeckoId: "orca", decimals: 6, price: 2.41},                                                   // Addr: orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE, Notional: 52.96782832
-		{chain: 1, addr: "0c96450628904429a41300a3eeb390680414f8c0a2e1a2442610df748aca371e", symbol: "DAOJONES", coinGeckoId: "fractionalized-smb-2367", decimals: 2, price: 0.197795},                        // Addr: r8nuuzXCchjtqsmQZVZDPXXq928tuk7KVH479GsKVpy, Notional: 0.197795
-		{chain: 1, addr: "0cc10f516aaae9c14ba9471f60abd392dcd786d57354abedeee7289dd40a0a0a", symbol: "RENDER", coinGeckoId: "render-token", decimals: 8, price: 3.99},                                         // Addr: rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof, Notional: 2090.4588205557
-		{chain: 1, addr: "0cea8ee4d02b332af25488b03f6b02b11cd5ca4b7f051ee72575c50b55addd40", symbol: "sRLY", coinGeckoId: "rally-solana", decimals: 9, price: 0.00109343},                                     // Addr: sRLY3migNrkC1HLgqotpvi66qGkdNedqPZ9TJpAQhyh, Notional: 15.019729194087281
-		{chain: 1, addr: "0d8323c076f0e28718ca60d77e6b39cee8f23f43cfc4ff1f5852b8fc1b94a293", symbol: "BOME", coinGeckoId: "book-of-meme", decimals: 6, price: 0.00189193},                                     // Addr: ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82, Notional: 47920.28634516173
-		{chain: 1, addr: "0e21542327931809efbf3b282c09eb7ef5f82c68e5c35024c97da4f89a2234c7", symbol: "DONK", coinGeckoId: "donk", decimals: 5, price: 2.48773e-10},                                            // Addr: xABfKiG2KCHi6keTeLycW1iK7B52wJmchSWXu3YrsDp, Notional: 0.042147121659999995
-		{chain: 1, addr: "0e217f1d89397a8a2cdfcf5e46b64ac4e04206a3f396cd87b23734049eff9cae", symbol: "xALGO", coinGeckoId: "wrapped-algo", decimals: 6, price: 0.316206},                                      // Addr: xALGoH1zUfRmpCriy94qbfoMXHtK6NDnMKzT4Xdvgms, Notional: 8.118382883688
-		{chain: 1, addr: "0e56395e3c860143802e9b94a02cc6d04f75fec72a3fbb715268355e0cd7cd89", symbol: "SLIM", coinGeckoId: "solanium", decimals: 6, price: 0.051899},                                           // Addr: xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW, Notional: 2.23725430715
-		{chain: 1, addr: "0ec49e1c77e79828f9ae8a051b662e2088c728069cedb70fef8521b94acf74f8", symbol: "", coinGeckoId: "zebec-protocol", decimals: 9, price: 0.00241933},                                       // Addr: zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF, Notional: 5054.949992465308
-		{chain: 1, addr: "1076469c1041d9e9b39fc2ede11333973b3e95732a4439207193a61cc4108d43", symbol: "JLP", coinGeckoId: "jupiter-perpetuals-liquidity-provider-token", decimals: 6, price: 4.49},             // Addr: 27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4, Notional: 2.245
-		{chain: 1, addr: "11615a73ca119d91ad275cf19659f206265356fbd4161175b6c2cee43ceb267a", symbol: "STATE", coinGeckoId: "new-world-order", decimals: 3, price: 2.418e-12},                                  // Addr: 2Ar2n5DJSiQuMhY4XeSzg7C5AGMezZPoLUt98VmmjsAR, Notional: 29.532099958631814
-		{chain: 1, addr: "11f6454055669087f8f46c16a81e0ec3df5f68187b6bb8f1ecb954d07b7d3339", symbol: "GNOME", coinGeckoId: "gnomeland", decimals: 9, price: 0.00016284},                                       // Addr: 2D7jZLpUUAMboqzHMeyaxZfLWpf4JZUoR4i82Zva7sxU, Notional: 5357.04810224697
-		{chain: 1, addr: "128bcb647d8bad1e7250e3b834bcfa9fd986f4d477d1bbb9054e602b11ebe061", symbol: "ETH", coinGeckoId: "wrapped-ethereum-sollet", decimals: 6, price: 848.75},                               // Addr: 2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk, Notional: 8.99250625
-		{chain: 1, addr: "131fec1ab25c75e93eceea35ea3d3d82e6a3fd3d1e1f45a68ee0c14245aebaf6", symbol: "SAO", coinGeckoId: "sator", decimals: 9, price: 0.00015796},                                             // Addr: 2HeykdKjzHKGm2LKHw8pDYwjKPiFEoXAz74dirhUgQvq, Notional: 5401.67986075027
-		{chain: 1, addr: "139fc1fba8ff288c85d542130fc2caf2caf15d4dc9fce4ac81c1de0fdd3e5be1", symbol: "KURO", coinGeckoId: "kurobi", decimals: 6, price: 0.00001577},                                           // Addr: 2Kc38rfQ49DFaKHQaWbijkE7fcymUMLY5guUiUsDmFfn, Notional: 0.16282980021272
-		{chain: 1, addr: "16360094fd16e58867412ca58e622fe81a71fe47b8a8bf3b612e9d96a403d33b", symbol: "EUROe", coinGeckoId: "euroe-stablecoin", decimals: 6, price: 1.14},                                      // Addr: 2VhjJ9WxaGC3EZFwJG9BDUs9KxKCAjQY4vgd1qxgYWVg, Notional: 5.699999999999999
-		{chain: 1, addr: "17e700a49c421ef60ab1bb731357d11093c809d0056852d3e9e1e6c2653c81e9", symbol: "", coinGeckoId: "plutonian-dao", decimals: 6, price: 0.00164923},                                        // Addr: 2cJgFtnqjaoiu9fKVX3fny4Z4pRzuaqfJ3PBTMk2D9ur, Notional: 0.16492300000000001
-		{chain: 1, addr: "1a4fede1c16f0065b6988359bf11e8dad051daba0f615395b80faeee4ed8ad97", symbol: "POGAI", coinGeckoId: "pogai-sol", decimals: 5, price: 0.0000061},                                        // Addr: 2miHpQbYLPvXxC2V234jrrrtnJdejd5xW883a5ToNW3g, Notional: 0.193076458667
-		{chain: 1, addr: "1d0b90f13cac323097379dfaa8c11f7d6cf3a7bed333042be6fe572281cdfca0", symbol: "NINJA", coinGeckoId: "shinobi-2", decimals: 9, price: 0.00007033},                                       // Addr: 2xP43MawHfU7pwPUmvkc6AUWg4GX8xPQLTGMkSZfCEJT, Notional: 0.0014066
-		{chain: 1, addr: "1de8220d15414f8be688949bb1a2e853c45d49fb9c17b70ff4250c82c0518cb1", symbol: "GP", coinGeckoId: "graphite-protocol", decimals: 9, price: 0.165019},                                    // Addr: 31k88G5Mq7ptbRDf3AM13HAq6wRQHXHikR8hik7wPygk, Notional: 0.09044436930702
-		{chain: 1, addr: "204cc66e5cc71f4795cfafe7b922d9e9bfe57b6ae41fb5ab6d9e65a8845ee90f", symbol: "BILLY", coinGeckoId: "billy", decimals: 6, price: 0.0033133},                                            // Addr: 3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump, Notional: 3.0584438167513
-		{chain: 1, addr: "208a634ca68fc16843f70bbfcba1726110efb9ecfeafc0ac828d749cc62fe72b", symbol: "CAPRICORN", coinGeckoId: "capricorn-2", decimals: 6, price: 0.00050951},                                 // Addr: 3C2SN1FjzE9MiLFFVRp7Jhkp8Gjwpk29S2TCSJ2jkHn2, Notional: 2442.759358734304
-		{chain: 1, addr: "20dc94caa1c4d02e8d2d5d955438684fa2fc1558a68ffe079b4b813554301119", symbol: "HM", coinGeckoId: "holdium", decimals: 9, price: 0.00012431},                                            // Addr: 3DH8WZ6C2HdDR4J9ekYnTfai8Tx8mxn92mW8zcYmP4px, Notional: 0.00049724
-		{chain: 1, addr: "2109ce397c41f14a97da3d94eb68a2fcbc62fdd568e73b3d8a8c62d18a691b80", symbol: "", coinGeckoId: "arenum", decimals: 6, price: 0.00004401},                                               // Addr: 3Dy8KFyvpUJ8nfRCbvk4HLWjNRRzxiVhTeE9PQF9RARD, Notional: 0.007348613671980001
-		{chain: 1, addr: "224b49876149714cc03053b6738ec0533f346a62459bfbad2c93c8eb54e3912f", symbol: "PISCES", coinGeckoId: "pisces", decimals: 6, price: 0.00050682},                                         // Addr: 3JsSsmGzjWDNe9XCw2L9vznC5JU9wSqQeB6ns5pAkPeE, Notional: 2656.712967012468
-		{chain: 1, addr: "2427c13d88770be13f5907d01ba6c18f72f0241307c721a88b95f53dceada211", symbol: "MOTHER", coinGeckoId: "mother-iggy", decimals: 6, price: 0.00973485},                                    // Addr: 3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN, Notional: 1464.8107022502327
-		{chain: 1, addr: "25a608f065296572c67bdf0a455f0f0069d17a8b7a716bb1396448f1a1e249e3", symbol: "DIP", coinGeckoId: "doginthpool", decimals: 6, price: 0.00033939},                                       // Addr: 3XxvmED354933DwSPJuzB7SE9uiWpD1ErydDuhmbFRMk, Notional: 0.33939
-		{chain: 1, addr: "2688c77a2a9c9ad17318699dcb85b3d9a23762c6e7156bc7f83b3052953293f2", symbol: "LIKE", coinGeckoId: "only1", decimals: 9, price: 0.01443725},                                            // Addr: 3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR, Notional: 0.11650860750000001
-		{chain: 1, addr: "28baefb80baafbc803106976f26f343eb62d796b8f96a8c6b81a425b9ac0f388", symbol: "FLOOF", coinGeckoId: "floof", decimals: 1, price: 4.14805e-7},                                           // Addr: 3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw, Notional: 0.000001244415
-		{chain: 1, addr: "2903e3b75ce4a7a17e88a51089e5ab74c0337016511bd471870e26012321a296", symbol: "", coinGeckoId: "wagmi-on-solana", decimals: 6, price: 2.87597e-7},                                      // Addr: 3m7A2A8HHdqmiDrjAfaddj7Hxd88FrBHA1KSoqjoELtu, Notional: 0.0000287597
-		{chain: 1, addr: "2ae45f86dd41432f582f58321d9bf302527cce303a285d36d915c5fc9e87fbbe", symbol: "pepe", coinGeckoId: "pepecoin-on-sol", decimals: 9, price: 0.00009766},                                  // Addr: 3tS6fbLh2P8tzxXuqCiHZpZhsxJpmrR3Xb9psmypnp69, Notional: 60.22868243450238
-		{chain: 1, addr: "2ccec8f92e8942182bef15efc347d609a7b2010db68d678664fae043b5f6e707", symbol: "BOGUS", coinGeckoId: "bogus", decimals: 9, price: 0.00004649},                                           // Addr: 41upazdWAgLjfCkLGQwGDgj2knovnpPyr4q2ZVNjifLz, Notional: 134.4785321568479
-		{chain: 1, addr: "2cdc841aa0053fa5a1a39de2d59ef07fecd3e1220b6ec63b7a3ca1662f8adc6a", symbol: "SAUCE", coinGeckoId: "sauce", decimals: 9, price: 0.00002575},                                           // Addr: 427xvZVKbFj7ZyfFoYS9iFpNuNsrijm6T9VP8znfko9j, Notional: 0.0010299999999999999
-		{chain: 1, addr: "2d36764d010cc1a6962ed97f6f9da736f885232ea23e6980142d6d9fa26156ff", symbol: "STNK", coinGeckoId: "stonks-4", decimals: 9, price: 12.82},                                              // Addr: 43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We, Notional: 12.82
-		{chain: 1, addr: "2f0a3b79b92e25cb92710b81e49f233cef7ced3e9fb4ee0191f39b11c74777d4", symbol: "TJRM", coinGeckoId: "tajir-tech-hub", decimals: 9, price: 0.01504249},                                   // Addr: 4AdDFsG1xzz1L7zKGo2fbiqv256Z92u8uCcJCgYuTBLo, Notional: 73980.81658712799
-		{chain: 1, addr: "2f64669f9f8ad5ee900c4050cf06c756f3d10a02c908f803c1e43ed7a145d3a0", symbol: "SWOLE", coinGeckoId: "swole-doge", decimals: 9, price: 0.00000188},                                      // Addr: 4BzxVoBQzwKoqm1dQc78r42Yby3EzAeZmMiYFdCjeu5Z, Notional: 3.5006325887501992
-		{chain: 1, addr: "2f982c219d581e23f410f320ee59a543dadda9d7925d6995a88982eb5e63f39f", symbol: "DADDY", coinGeckoId: "daddy-tate", decimals: 6, price: 0.03858732},                                      // Addr: 4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump, Notional: 0.081033372
-		{chain: 1, addr: "300e2e338a5ee89798c860ff877f2e6986cdec0ecee68f23874a7cc386b34e55", symbol: "WGC", coinGeckoId: "wild-goat-coin-2", decimals: 6, price: 0.0000162},                                   // Addr: 4Eb7ReeT936hX25KMBfYtyP1RWDdd9iixEwGJroACeLC, Notional: 35644.23113215176
-		{chain: 1, addr: "33660fff0fbce64c4da91c3b3e6e77e58d059df2e05e6c53608de170455ba938", symbol: "SCT", coinGeckoId: "solclout", decimals: 9, price: 0.00099435},                                          // Addr: 4Te4KJgjtnZe4aE2zne8G4NPfrPjCwDmaiEx9rKnyDVZ, Notional: 81754.67245793703
-		{chain: 1, addr: "3398844e5c88d23bf0fde5120ffd5b8d81893dea2fb950ad305923b40562e58c", symbol: "JALA", coinGeckoId: "jalapeno-finance", decimals: 9, price: 0.00003742},                                 // Addr: 4UQgPwwcyTfELvJViUUJEa229K7RQEzCrc4Cnuxa7zxs, Notional: 318.11161103999996
-		{chain: 1, addr: "33b8d6efc25f5766808494c4ec2c62ad1409a96266eab2113b72b3148ebede0f", symbol: "XSB", coinGeckoId: "solareum-wallet", decimals: 9, price: 0.00006227},                                   // Addr: 4UuGQgkD3rSeoXatXRWwRfRd21G87d5LiCfkVzNNv1Tt, Notional: 0.00031135
-		{chain: 1, addr: "35fe161e6828028ece9caa2d89bcd7a1fd1bf140ad838d0c17d7b57c9b1aa238", symbol: "SNY", coinGeckoId: "synthetify-token", decimals: 6, price: 0.00346563},                                  // Addr: 4dmKkXNHdgYsXqBHCuMikNQWwVomZURhYvkkX5c4pQ7y, Notional: 2.7725039999999998e-8
-		{chain: 1, addr: "360c012e23f5bf12d1e47e985682d8814e6bb1715920852acca33346708fa968", symbol: "MIM", coinGeckoId: "mim", decimals: 9, price: 0.0000013},                                                // Addr: 4dydh8EGNEdTz6grqnGBxpduRg55eLnwNZXoNZJetadu, Notional: 0.014634626727097002
-		{chain: 1, addr: "37998ccbf2d0458b615cbcc6b1a367c4749e9fef7306622e1b1b58910120bc9a", symbol: "RAY", coinGeckoId: "raydium", decimals: 6, price: 2.44},                                                 // Addr: 4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R, Notional: 46123.449808
-		{chain: 1, addr: "3a0147829f94ff731beb78f4bf79f8247eb6db6ff78cbdbd778004547c3cfb15", symbol: "", coinGeckoId: "playground-waves-floor-index", decimals: 2, price: 0.059343},                           // Addr: 4uRn7vxRPWYP4HuAa4UNXwEPLRL8oQ71YByMhr6yBnL4, Notional: 1.127517
-		{chain: 1, addr: "3a5dbacb04d71ef866691d531287d96c7c36bfdf444418fc74a4dd1b7017f76b", symbol: "WYNN", coinGeckoId: "anita-max-wynn", decimals: 6, price: 0.00033805},                                   // Addr: 4vqYQTjmKjxrWGtbL2tVkbAU1EVAz9JwcYtd2VE3PbVU, Notional: 30.424500000000002
-		{chain: 1, addr: "3af4e2d8b5cb7182c097ad3b67e18e9ff9f28ad4a1ca8161809e1ff94e0e2216", symbol: "FATGF", coinGeckoId: "fatgf", decimals: 6, price: 0.0003416},                                            // Addr: 4y9E3tJpGNzRr1592oWTPECgyp2VDSc1Bf3DqAm5FZsK, Notional: 0.0003416
-		{chain: 1, addr: "3b15c6089ac9e1722434f64313f16131fa6dab386951f47f2a6f02f3a9ab602a", symbol: "CTUS", coinGeckoId: "contractus", decimals: 9, price: 0.00277281},                                       // Addr: 4yeK2cCyxNNz28fVqEbkLYNCb1T9qPadsuJWeZ44Evcq, Notional: 333546.67351747095
-		{chain: 1, addr: "3b1f93f67db7d561ba257575f5935a4b2b8a7f0365015043ba2ebab4d94abeb8", symbol: "EGG", coinGeckoId: "egg", decimals: 9, price: 0.00000789},                                               // Addr: 4ynyx6BzY2XGFgjjun9Cruj1bSRo8FLsAqNnPsW6jDsu, Notional: 0.0005444100000000001
-		{chain: 1, addr: "3ba8d09f68b3cc2546ac682aafba3d585690ebba80c218a9cc3807524ecc5957", symbol: "", coinGeckoId: "apexit-finance", decimals: 9, price: 0.00121099},                                       // Addr: 51tMb3zBKDiQhNwGqpgwbavaGH54mk8fXFzxTc1xnasg, Notional: 0.0036329699999999997
-		{chain: 1, addr: "3df04a3638c2fb63cdbe8dfef12a3ac5398999227bcab5f97742f11c9bdb75ff", symbol: "DOLLAR", coinGeckoId: "dollar-2", decimals: 6, price: 0.00012961},                                       // Addr: 5AnPDx9GposBi9jSW2dFfE5QQD3FmXbudoquMNDxpump, Notional: 6403.773590417411
-		{chain: 1, addr: "3ffd20f06c83bba88002f87f9d56050a5ef941fbbb0ea0293c829a82f11e3891", symbol: "APYS", coinGeckoId: "apyswap", decimals: 9, price: 0.00233419},                                          // Addr: 5JnZ667P3VcjDinkJFysWh2K2KtViy63FZ3oL5YghEhW, Notional: 0.16105911
-		{chain: 1, addr: "4099261906e4d99a6926404cb79d4a2de516b4aef140e4bf48d35b4ba22654e4", symbol: "ACS", coinGeckoId: "access-protocol", decimals: 6, price: 0.00126013},                                   // Addr: 5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y, Notional: 75.65514190713857
-		{chain: 1, addr: "41f6388b9c6a78895d16cb6f8ccb8705e0d68640c14d908ef943fb13d693cbcf", symbol: "SIGMA", coinGeckoId: "sigma", decimals: 6, price: 0.01659483},                                           // Addr: 5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump, Notional: 29.6172182605446
-		{chain: 1, addr: "4262f09434e938b2714803d3aa425d1d543a735ba324109087760d83deae653d", symbol: "SPWN", coinGeckoId: "bitspawn", decimals: 9, price: 0.000012},                                           // Addr: 5U9QqCPhqXAJcEv9uyzFJd5zhN93vuPk1aNNkXnUfPnt, Notional: 0.0012000000000000001
-		{chain: 1, addr: "430badff7f2921f4811389b1c6d633b143f0fddcc7b5b2750e906bb8852b174b", symbol: "HER", coinGeckoId: "her-ai", decimals: 6, price: 0.00035215},                                            // Addr: 5WieRrJ5oFthgxaH4nCEkwJiBTxuRpEn9qmFRkVzkc98, Notional: 0.0035215000000000003
-		{chain: 1, addr: "45a5161476cc9df6ef8583b581a3111b4416ebcea65f4eca5bb961124c3399df", symbol: "", coinGeckoId: "xhashtag", decimals: 6, price: 0.03105851},                                             // Addr: 5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp, Notional: 30830.293622936308
-		{chain: 1, addr: "46db194d842a0b334325c1781821709d3e85b63901bd7dd4a5383bd312f3aaab", symbol: "$michi", coinGeckoId: "michicoin", decimals: 6, price: 0.03448239},                                      // Addr: 5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp, Notional: 24.26318272725219
-		{chain: 1, addr: "46dd37dd6a92fc21467d58d83c526393cd94492b97fec5124970fc4ea5a68be6", symbol: "BRAWL", coinGeckoId: "bitbrawl", decimals: 9, price: 0.00007468},                                        // Addr: 5mdBkZ4dTP94SE7PyiuWseTDAd1kYxSk6oYaWB7186s7, Notional: 25090.641099430293
-		{chain: 1, addr: "4757899fb8bedba28778aacd67e568e73470cce90bcd532b6cb618297628824e", symbol: "INF", coinGeckoId: "socean-staked-sol", decimals: 9, price: 208.05},                                     // Addr: 5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm, Notional: 208.9957557705
-		{chain: 1, addr: "485493b637792cca16fe9d53fc4879c23dbf52cf6d9af4e61fe92df15c17c98d", symbol: "", coinGeckoId: "bamboo-coin", decimals: 9, price: 0.00000123},                                          // Addr: 5sM9xxcBTM9rWza6nEgq2cShA87JjTBx1Cu82LjgmaEg, Notional: 0.36900000000000005
-		{chain: 1, addr: "48972c3e59cc0c7a094c2948f847381cfef470e1ddf0711f0c858070711876f3", symbol: "WAG", coinGeckoId: "waggle-network", decimals: 9, price: 0.00029893},                                    // Addr: 5tN42n9vMi6ubp67Uy4NnmM5DMZYN8aS8GeB3bEDHr6E, Notional: 0.0015245429999999997
-		{chain: 1, addr: "4a05e1f7f53477602c239f1a2b8da4277ccd279ff26128cb361c3791b5a9156c", symbol: "Fronk", coinGeckoId: "fronk", decimals: 5, price: 5.452e-9},                                             // Addr: 5yxNbU8DgYJZNi3mPD9rs4XLh9ckXrhPjJ5VCujUWg5H, Notional: 112.52260239057729
-		{chain: 1, addr: "4a0b628dff0f5cdd497907e62510e77277360c2e9dc2081898dd62e4ffe39caf", symbol: "PONKE", coinGeckoId: "ponke", decimals: 9, price: 0.146506},                                             // Addr: 5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC, Notional: 1.6955000272552998
-		{chain: 1, addr: "4a6b1a6b92df4ed3059e120bd0e5e4b6a97fd0e8db832c163a15fd284e4d46c7", symbol: "DILLY", coinGeckoId: "dilly", decimals: 9, price: 0.00001593},                                           // Addr: 61VtkXr9mRXtrFYe2T9arWYX52sbJnkAUQgfjGuCzox2, Notional: 29.81862437391073
-		{chain: 1, addr: "4ae3d320820544fffa2e6dae60f8ed2bc3426d8de3d7f77ddf350c18fd6b3194", symbol: "GIGA", coinGeckoId: "gigachad-2", decimals: 5, price: 0.02354745},                                       // Addr: 63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9, Notional: 6415.100218496705
-		{chain: 1, addr: "4d649bee4edf806f5f3258955fc99e05348af3e3376299b00256d6a0d08a157f", symbol: "SC", coinGeckoId: "shark-cat", decimals: 6, price: 0.00244801},                                          // Addr: 6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui, Notional: 9.057637
-		{chain: 1, addr: "518ecf30942036e11b4eb4f2f5a05d32661f9ada0a6a4402c5df098ea6c4fbce", symbol: "wHAPI", coinGeckoId: "hapi", decimals: 9, price: 3.24},                                                  // Addr: 6VNKqgz9hk7zRShTFdg5AnkfKwZUcojzwAkzxSH3bnUm, Notional: 0.09746736480000001
-		{chain: 1, addr: "5468187df701e428898565f1c522b352ad481d0dcb40d8b6e1036ba153e5e3af", symbol: "pog", coinGeckoId: "pog", decimals: 6, price: 0.00003944},                                               // Addr: 6gVJwfHxWov8HxdAZ4v4tt2RpZZst6du74y4bUCdpump, Notional: 0.0041412
-		{chain: 1, addr: "547b309eace670a9af4c6da12402ddbbc60d43c10e2c177b9533bdbc1888576f", symbol: "BSKT", coinGeckoId: "basket", decimals: 5, price: 2.45064e-7},                                           // Addr: 6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA, Notional: 5813.603473790048
-		{chain: 1, addr: "558bfd9cf2fcdc18de6a9463c3d2a372e961c63264900d3d3cb5d86560c4655b", symbol: "SAIL", coinGeckoId: "sail", decimals: 6, price: 0.0032285},                                              // Addr: 6kwTqmdQkJd8qRr9RjSnUX9XJ24RmJRSrU1rsragP97Y, Notional: 0.019371
-		{chain: 1, addr: "560d05641b74bbada05fdd6b3fd731b5df7cd417fd1d8cf129476a7aaa55b308", symbol: "", coinGeckoId: "wrapped-busd-allbridge-from-bsc", decimals: 9, price: 1.004},                           // Addr: 6nuaX3ogrr2CaoAPjtaKHAoBNWok32BMcRozuf32s2QF, Notional: 259.2621460666
-		{chain: 1, addr: "56405db9a54ee121b5acf6d28c359e5b50caae6bcd6439d814696ea95a99a3e9", symbol: "RETARDIO", coinGeckoId: "retardio", decimals: 6, price: 0.01822691},                                     // Addr: 6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx, Notional: 13.05404335165762
-		{chain: 1, addr: "58d2e009e5166d2e61063ed79f0fc83cdca913520383969208143c66ca0d2d8d", symbol: "Chud", coinGeckoId: "chudjak", decimals: 6, price: 0.00191498},                                          // Addr: 6yjNqPzTSanBWSa6dxVEgTjePXBrZ2FoHLDQwYwEsyM6, Notional: 2182.156146219136
-		{chain: 1, addr: "59174309f88fbd80970c5b2e2e69708a0d6e76eb4cf35ebf801bceae476211a6", symbol: "CUTE", coinGeckoId: "pepe-uwu", decimals: 7, price: 7.4528e-8},                                          // Addr: 6zmrmNUGdRwrqcchshVkBgAyLhLwZ7QvJRQiKktqVQLV, Notional: 26728.55852250992
-		{chain: 1, addr: "5970e12d014491b2ca2f4b15f6348ff255076d62422140f01e3d955896ccc619", symbol: "Leancoin", coinGeckoId: "leancoin", decimals: 9, price: 0.00004726},                                     // Addr: 7297kX7SEZ1do223VsjTAC2MS9gLxPJoxFs9UMwiG4oS, Notional: 1.22876e-11
-		{chain: 1, addr: "5be23d7c881e445a9387e65ee9b2ba25a1ffa3429008b591784fbe6300091d06", symbol: "SLERF", coinGeckoId: "slerf", decimals: 9, price: 0.076618},                                             // Addr: 7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3, Notional: 22.206620351484663
-		{chain: 1, addr: "5c9e9d5fa309864acd7d8118d326313cde7b86df18e197924a03186ffe9f3d7a", symbol: "SILLY", coinGeckoId: "silly-dragon", decimals: 9, price: 0.00141406},                                    // Addr: 7EYnhQoR9YM3N7UoaKRoA44Uy8JeaZV3qyouov87awMs, Notional: 5.994769030332548
-		{chain: 1, addr: "5d0b159affcbccf165c09bc2f5d4bafb4aa6345af793b9b3222daa40293a950d", symbol: "POPCAT", coinGeckoId: "popcat", decimals: 9, price: 0.391547},                                           // Addr: 7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr, Notional: 13536.740341487337
-		{chain: 1, addr: "5d8b4322ce5dfbe40a7d872bfd6e517329b49b125a21245fa2677f8e9163c77c", symbol: "GEOD", coinGeckoId: "geodnet", decimals: 9, price: 0.201872},                                            // Addr: 7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu, Notional: 0.08074880000000001
-		{chain: 1, addr: "5f0c446318ab10c95f4094958570cd057465a54dab14d9dde3481a86fed5fccb", symbol: "JSOL", coinGeckoId: "jpool", decimals: 9, price: 199.55},                                                // Addr: 7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn, Notional: 614.8237649645
-		{chain: 1, addr: "61926627585b9be4953991b827eb7d0ecc061afe1bf9a0a9079e009ccd695ae7", symbol: "LIBRA", coinGeckoId: "libra-4", decimals: 6, price: 0.00049067},                                         // Addr: 7Zt2KUh5mkpEpPGcNcFy51aGkh9Ycb5ELcqRH1n2GmAe, Notional: 5002.634323148143
-		{chain: 1, addr: "6270a9646bd0d4a8daeb0deba12c396b88fa79f4bf3c16f844ed91af004a4723", symbol: "GCR", coinGeckoId: "golden-celestial-ratio", decimals: 9, price: 0.00011205},                            // Addr: 7dGbPgUxKpB5qWiLRKcTQSC3om1fPzUpgGAFfwej9hXx, Notional: 4304.7369
-		{chain: 1, addr: "6271cb7119476b9dce00d815c8ff315fc8bf7d2848633d34942adfd535f2defe", symbol: "stSOL", coinGeckoId: "lido-staked-sol", decimals: 9, price: 189.8},                                      // Addr: 7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj, Notional: 116161.67973771402
-		{chain: 1, addr: "6386d5114f2b5a344f6265cb7e334e78ae569abd44a39b718d8e02fc487d9c02", symbol: "CAT", coinGeckoId: "catcoin-cash", decimals: 3, price: 8.6928e-11},                                      // Addr: 7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3, Notional: 26.00444403072675
-		{chain: 1, addr: "63abd0967076f58ba2edadb41f10719df1354abe118f29a8f30ee6639474b947", symbol: "", coinGeckoId: "stepn", decimals: 9, price: 0.051683},                                                  // Addr: 7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx, Notional: 119.33472945458394
-		{chain: 1, addr: "63ef9d2e6be295552062ac55bdd693bea2bb7f6e6221edc9d308d843d293650b", symbol: "SOLR", coinGeckoId: "solrazr", decimals: 6, price: 0.00229832},                                          // Addr: 7j7H7sgsnNDeCngAPjpaCN4aaaru4HS7NAFYSEUyzJ3k, Notional: 0.00229832
-		{chain: 1, addr: "6752055c20b3e9d8746656ddf73855507f87ab6d87523e4c76a7fa36096a99eb", symbol: "SAMO", coinGeckoId: "samoyedcoin", decimals: 9, price: 0.00246285},                                      // Addr: 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU, Notional: 0.9951635022093765
-		{chain: 1, addr: "676179b0b67070a1d3e299cac3bddc85e6b6b60600a99ddceae0f96b521cae33", symbol: "DOGEVERSE", coinGeckoId: "dogeverse", decimals: 8, price: 0.00000622},                                   // Addr: 7xZCdhj7rGhnKndRpU3NHgZhbFMkPLP2ErDr1AS8Chsx, Notional: 47.66094904
-		{chain: 1, addr: "689ac099ef657e5d3b7efaf1e36ab8b897e2746232d8a9261b3e49b35c1dead4", symbol: "xUSD", coinGeckoId: "synthetic-usd", decimals: 6, price: 0.592223},                                      // Addr: 83LGLCm7QKpYZbX8q4W2kYWbtt8NJBwbVwEepzkVnJ9y, Notional: 5.904222275239
-		{chain: 1, addr: "6927fdc01ea906f96d7137874cdd7adad00ca35764619310e54196c781d84d5b", symbol: "W", coinGeckoId: "wormhole", decimals: 6, price: 0.074222},                                              // Addr: 85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ, Notional: 8247.093235851933
-		{chain: 1, addr: "69302bef50efd86a9bc1c2ac763ff56633e9fda1709eb0b858088e9cfbdcfe0f", symbol: "Rizzmas", coinGeckoId: "rizzmas", decimals: 6, price: 0.000004},                                         // Addr: 85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg, Notional: 2.18832
-		{chain: 1, addr: "6afc09bb2ca898b2a734540d93a61ea2dd46ab6bd318a3e3283c8fbe86b93f3e", symbol: "LEO", coinGeckoId: "leo-2", decimals: 6, price: 0.00052509},                                             // Addr: 8Cd7wXoPb5Yt9cUGtmHNqAEmpMDrhfcVqnGbLC48b8Qm, Notional: 2520.711701499235
-		{chain: 1, addr: "6b04a01bfd79e1eddf99d77598a5da54ee3cc8189dedfc1408908e29e1e94058", symbol: "POWSCHE", coinGeckoId: "powsche", decimals: 9, price: 0.00703043},                                       // Addr: 8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf, Notional: 7980.104415139496
-		{chain: 1, addr: "6b054395432c64d8250648371121f271fc3b8e36621384b9e91956bf02307c13", symbol: "DOKI", coinGeckoId: "doki", decimals: 6, price: 0.0000386},                                              // Addr: 8CmHC7Y2715VFaMkMZMwWDqRYQwPLAsM57Xiu3Ho4TjG, Notional: 1.572768209633
-		{chain: 1, addr: "6cccc33e6627899bd00d679cca0b56d788a1861b8de1ea3691e870710b92447c", symbol: "LOCKIN", coinGeckoId: "lock-in", decimals: 9, price: 0.00666822},                                        // Addr: 8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5, Notional: 6.9446871399046355
-		{chain: 1, addr: "6dbb85629db6a38eeb2fec793974b4c7e9c5fdc9e70165303b4f73106e5e62ba", symbol: "", coinGeckoId: "rope-token", decimals: 9, price: 0.00510375},                                           // Addr: 8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo, Notional: 0.00510375
-		{chain: 1, addr: "73512a31b0ae74aae6fbce469044131a230a122b1ea6f4af3a4e93c9158b538e", symbol: "JOWNES", coinGeckoId: "alux-jownes", decimals: 6, price: 0.00000921},                                    // Addr: 8m9fjYycXAFva1kScttQgsESVZT7yELhjZASqfHBuMa5, Notional: 1.81135373425605
-		{chain: 1, addr: "7589fb28d63e11a5f134a97a6bc85399e6cbe2fddb268d496f91204d5271ff05", symbol: "GRAPE", coinGeckoId: "grape-2", decimals: 6, price: 0.00015298},                                         // Addr: 8upjSpvjcdpuzhfR1zriwg5NXkwDruejqNE9WNbPRtyA, Notional: 0.0035491359999999996
-		{chain: 1, addr: "75fa185aaff1c781b07269a4dfd7849add90a6db207bf61cff506c9b3d525376", symbol: "GME", coinGeckoId: "gme", decimals: 9, price: 0.00199126},                                               // Addr: 8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB, Notional: 4046.3629797471026
-		{chain: 1, addr: "7618e3a4b6365218d0473a17c3386761b449f05d4e5dc213bd7966edde409f24", symbol: "SAGIT", coinGeckoId: "sagittarius", decimals: 6, price: 0.00049996},                                     // Addr: 8x17zMmVjJxqswjX4hNpxVPc7Tr5UabVJF3kv8TKq8Y3, Notional: 2528.703750939926
-		{chain: 1, addr: "766d8eac4c0ae9f5d006f7a74ca87eaa78b50411e9385154b12fcc17c21b41d3", symbol: "KITTY", coinGeckoId: "kitty-ai", decimals: 6, price: 0.00015861},                                        // Addr: 8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G, Notional: 4.7583
-		{chain: 1, addr: "7747dce1ae5735f0fe877af40fc4b972847edabdb0abb1e04a432c4025606496", symbol: "MONKEY", coinGeckoId: "monkey", decimals: 1, price: 3.50972e-10},                                        // Addr: 92d5AncUVELq79xqLWNQ5Zoxz7fn9XHwijYswYWFrKtR, Notional: 2.2033919779010795
-		{chain: 1, addr: "777c026899a52a4c61329b0a098e74fbcd720d34665a41782bca2e2713410082", symbol: "ZERO", coinGeckoId: "analysoor", decimals: 9, price: 0.093269},                                          // Addr: 93RC484oMK5T9H89rzT5qiAXKHGP9jscXfFfrihNbe57, Notional: 0.093269
-		{chain: 1, addr: "78404f497a9523d5d2530469f1d76f4ac5cfafad2423341f61aa08021efc459c", symbol: "$POPO", coinGeckoId: "popo-pepe-s-dog", decimals: 9, price: 0.00001528},                                 // Addr: 96QoNkZLTKH7Gecf6dKMRXBQXW1wqh378uF9pnTejgAw, Notional: 1.6713019196664503
-		{chain: 1, addr: "7dd04d62e0c5aac91b412ea0cf91f647234e2797378e4b983cdecb7d3ef6fd46", symbol: "", coinGeckoId: "gigadao", decimals: 4, price: 0.00040465},                                              // Addr: 9U8Bn6zAf6Wyp1YHdXtLyfbN7yMvdvW1qQY475iZ5ftZ, Notional: 0.202325
-		{chain: 1, addr: "8217c0f1b6d3300f53e7ea24352e93a307829c4ba2a43533c1b56d11468b0033", symbol: "ZORKSEES", coinGeckoId: "zorksees", decimals: 8, price: 354244},                                         // Addr: 9kq1VuGCCKeTgtRmzUTjLVi6LpmBD38im2hPRaqusPkE, Notional: 341447.49520552
-		{chain: 1, addr: "82444ff8283660793c0370a7dd9fb35cb1f7338d57eb088765d0dad090541e72", symbol: "", coinGeckoId: "mimatic", decimals: 9, price: 0.995702},                                                // Addr: 9mWRABuz2x6koTPCWiCPM49WUbcrNqGTHBV9T9k7y1o7, Notional: 20.76120622248812
-		{chain: 1, addr: "8268e9a9a1444c2ba5c77a51936856b072e43fefcff5e4b01e99623c8ebb7749", symbol: "BTC", coinGeckoId: "wrapped-bitcoin-sollet", decimals: 6, price: 2823.11},                               // Addr: 9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E, Notional: 5538.75549474
-		{chain: 1, addr: "826d35ab8f5b30c7d511f8f2ba9d8765228e94c8b810afc82c9a3a29a8146f89", symbol: "FLOCKA", coinGeckoId: "waka-flocka", decimals: 6, price: 0.00034212},                                    // Addr: 9n8b1EXLCA8Z22mf7pjLKVNzuQgGbyPfLrmFQvEcHeSU, Notional: 67570.8660578783
-		{chain: 1, addr: "8274472938310e90c774c25ade5e6fcaa7238aef9e3e67764d45b920d0c3e075", symbol: "WOOF", coinGeckoId: "woof-token", decimals: 6, price: 0.00002137},                                       // Addr: 9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE, Notional: 0.21952628096250998
-		{chain: 1, addr: "82993f9b768020400dc11af927de6d015f4f4abe63d73272b7e57ae17c7c5c6e", symbol: "KING", coinGeckoId: "king-2", decimals: 9, price: 0.0000115},                                            // Addr: 9noXzpXnkyEcKF3AeXqUHTdR59V5uvrRBUZ9bwfQwxeq, Notional: 3419.695083161747
-		{chain: 1, addr: "8300ec316d7d1c7a81a6907c633655bcf37368889c2bed5f47901d0f56e01c8b", symbol: "KEYCAT", coinGeckoId: "keyboard-cat", decimals: 9, price: 0.00014834},                                   // Addr: 9pPE1q9EW1bMQWbHmffrzUCfRr7S82UoxNUFfA6mAZC6, Notional: 0.18039401568222382
-		{chain: 1, addr: "842f35b8d1f37e6cc0a7eb8d12bf9079f7abf194cdcd466c22f5f1e8baa4dea8", symbol: "", coinGeckoId: "arb-protocol", decimals: 6, price: 0.00005136},                                         // Addr: 9tzZzEHsKnwFL1A3DyFJwj36KnZj3gZ7g4srWp9YTEoh, Notional: 0.25705680000000003
-		{chain: 1, addr: "85cdebc205dddf95b88200aba0ac9bcbb78096324e276fce85d63c69211f0845", symbol: "USDY", coinGeckoId: "ondo-us-dollar-yield", decimals: 6, price: 1.096},                                  // Addr: A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6, Notional: 0.122240168
-		{chain: 1, addr: "8666930409fea01a38402e938d3116943dc955b0abc3406728922f21131b6f01", symbol: "PENG", coinGeckoId: "peng", decimals: 6, price: 0.01643477},                                             // Addr: A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ, Notional: 2.60888396986503
-		{chain: 1, addr: "86d536568df6b574b219c07565198d7fab61cb0458cdfbadf0f004759f2e5038", symbol: "GMEOW", coinGeckoId: "gmeow-cat", decimals: 6, price: 0.00002748},                                       // Addr: A5LCTQ1vJECCQWSXJYs3rfCoexctbUgTCAEKDuNye8bZ, Notional: 15.07256957923716
-		{chain: 1, addr: "86d786039c432f0d4d65f3d29b9fe4ba5fd0f4057f259bcdc314c115559274fc", symbol: "", coinGeckoId: "vynk-chain", decimals: 4, price: 0.000054},                                             // Addr: A5NF1e6RnYkVwtg3V3z1qeUz4PZfHCXmQ9RotuJWgi6F, Notional: 0.036396
-		{chain: 1, addr: "87c9ce6b6344187c4b75fa01dd4334d8bb826a9214fefe9d39cce5fad29b6faa", symbol: "", coinGeckoId: "bilira", decimals: 6, price: 0.02546433},                                               // Addr: A94X2fRy3wydNShU4dRaDyap2UuoeWJGWyATtyp61WZf, Notional: 5.3475093000000005
-		{chain: 1, addr: "883977f594221f16fd8037db6cd49393cb7ccb597ef5513fee423975372ff5b3", symbol: "", coinGeckoId: "racefi", decimals: 6, price: 0.00061614},                                               // Addr: AAmGoPDFLG6bE82BgZWjVi8k95tj9Tf3vUN7WvtUm2BU, Notional: 151.69449917286
-		{chain: 1, addr: "895e01287acee57df889b96b43c641ad49a9b304f8a5619eb18098db01c6e583", symbol: "COLLE", coinGeckoId: "colle-ai", decimals: 6, price: 0.00048889},                                        // Addr: AFDzaLz3cQZNWjnWbyq2q81TLVTPbHTbfkj8qKqTk74e, Notional: 9.422162466090269
-		{chain: 1, addr: "897658557d211722ba678ad99276eb14d9567f0a792e3ba70c894785c742bfae", symbol: "", coinGeckoId: "green-satoshi-token", decimals: 9, price: 0.00734404},                                  // Addr: AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB, Notional: 23.965609358906594
-		{chain: 1, addr: "89a0fd32e8624b657a53062808b8980d227274c3f76d3ddaa49985ddf034004c", symbol: "FTT", coinGeckoId: "ftx-token", decimals: 6, price: 0.965896},                                           // Addr: AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3, Notional: 18.083497184831998
-		{chain: 1, addr: "89efe489cf710a97bb9346ccc2dd81a30d71b982ed3523f6bfefdd8ebd04187c", symbol: "AHT", coinGeckoId: "avenue-hamilton-token", decimals: 9, price: 0.03585085},                             // Addr: AHT1yynTv45s3P3KrRfQCVMHckdHeMVA3fteEg34xt9y, Notional: 0.17925424999999998
-		{chain: 1, addr: "8af8661ba22613733b7c8025128597497dea9952506b2e1b484dc840befe83f1", symbol: "AMU", coinGeckoId: "amulet-protocol", decimals: 9, price: 0.00053419},                                   // Addr: AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8, Notional: 14306.057804593986
-		{chain: 1, addr: "8b7a5bd48982a26d6436cb99d7a2c7ea90e46d38625a0bdb74e1cc5886a7b703", symbol: "", coinGeckoId: "apricot", decimals: 6, price: 0.00013166},                                              // Addr: APTtJyaRX5yGTsJU522N4VYWg3vCvSb65eam5GrPT5Rt, Notional: 0.25068064
-		{chain: 1, addr: "8c0e1e13db30b1678d1cf8888201ced5a3ffc5104bf903743bfb1f87a5e15589", symbol: "GEMINI", coinGeckoId: "gemini-2", decimals: 6, price: 0.00083832},                                       // Addr: ARiZfq6dK19uNqxWyRudhbM2MswLyYhVUHdndGkffdGc, Notional: 3982.419097703843
-		{chain: 1, addr: "8c77f3661d6b4a8ef39dbc5340eead8c3cbe0b45099840e8263d8725b587b073", symbol: "ATLAS", coinGeckoId: "star-atlas", decimals: 8, price: 0.00110374},                                      // Addr: ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx, Notional: 55583.03389066706
-		{chain: 1, addr: "8cbf9fdba8691b67e32eb57a784b1cae2744c6fc03ac61e450dd9331b9bdbb2e", symbol: "AURY", coinGeckoId: "aurory", decimals: 9, price: 0.116197},                                             // Addr: AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP, Notional: 676.9482541168032
-		{chain: 1, addr: "8cc1469b46aa9e904a5106fa3e6dd3937ac55099a1fbb62047fc1c556d88d29b", symbol: "AUT", coinGeckoId: "avenue-university-token", decimals: 9, price: 0.00546985},                           // Addr: AUT1gfMZw37wMMQqAxk89nfpjZpEEf2XSoBUd8V5ydnS, Notional: 0.06016835
-		{chain: 1, addr: "8ea08d02b6089b85e7fe935113e84cc3179342190a8dd4f55aad83aa4a07231b", symbol: "MS2", coinGeckoId: "station-this", decimals: 6, price: 0.00013914},                                      // Addr: AbktLHcNzEoZc9qfVgNaQhJbqDTEmLwsARY7JcTndsPg, Notional: 20537.94582860819
-		{chain: 1, addr: "8ea6bae83ada8cc0d7be5c2816a74e95d409603129bb2ee4fa22cc6f964a4d81", symbol: "Cheese", coinGeckoId: "cheese-2", decimals: 6, price: 0.00023875},                                       // Addr: AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn, Notional: 0.00006408646875
-		{chain: 1, addr: "8f286c320f95f37efe6535d91dac27779494093b14e7b427a0a07b1c7f97ccc1", symbol: "WIT", coinGeckoId: "what-in-tarnation", decimals: 6, price: 0.00032188},                                 // Addr: Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE, Notional: 3155.8498047745825
-		{chain: 1, addr: "8f8eda6d92c4afa64e25a02b8cc6e9f4026cf3007f48f279d842594d0328e121", symbol: "WGC", coinGeckoId: "wild-goat-coin", decimals: 6, price: 4.04896e-7},                                    // Addr: AfPeB1BDUotBeNoLv82XRDCNQcdAA1mqis3YC5SMTe7a, Notional: 8913.622867611515
-		{chain: 1, addr: "8fa66a1378bce9e01b9496615ed38c132c586fa36e29f6b38eace0bf7b3d4b69", symbol: "ca", coinGeckoId: "contract-address-meme", decimals: 9, price: 0.00002482},                              // Addr: AfkUkcoJ5Yt7eU9BwnF1RjRqt4fQG5zYV1eS1ytDk7FE, Notional: 1023.0362937916457
-		{chain: 1, addr: "90eb19122682b9b340f9afd6717bcc7770812215c2286d3d3051dff49288b17e", symbol: "BOT", coinGeckoId: "starbots", decimals: 8, price: 0.00026419},                                          // Addr: AkhdZGVbJXPuQZ53u2LrimCjkRP6ZyxG1SoM85T98eE1, Notional: 1276.8912641441314
-		{chain: 1, addr: "921414f6337fb743709e6fcbcc439ecc35fe8e23bc33941b1d62862b809e8d24", symbol: "YAKU", coinGeckoId: "yaku", decimals: 9, price: 0.00262357},                                             // Addr: AqEHVh8J2nXH9saV2ciZyYwPpqWFRfD2ffcq5Z8xxqm5, Notional: 0.00262357
-		{chain: 1, addr: "9266050ea34cd64a96e9e7be1e210ed22b2e3f5fde61861af7527c681ef2f3d3", symbol: "renDOGE", coinGeckoId: "rendoge", decimals: 8, price: 0.0176324},                                        // Addr: ArUkYE2XDKzqy77PRRGjo4wREWwqk6RXTfM9NeqzPvjU, Notional: 56.7365845704
-		{chain: 1, addr: "92d10feca33abd20cdb6c082b7066be3a8664e9098e5758226e82e28a0e0cc0a", symbol: "", coinGeckoId: "battle-of-guardians-share", decimals: 9, price: 0.0011079},                             // Addr: At7RLMbA6ZUjj7riyvFq2j5NHQ19aJabCju2VxLDAqso, Notional: 12.92246760384
-		{chain: 1, addr: "9353906bba080336a76db51391c3737194d3a31183665f4b7021e908739bc0f2", symbol: "COST", coinGeckoId: "costco-hot-dog", decimals: 9, price: 0.00075777},                                   // Addr: Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm, Notional: 3349.136648008044
-		{chain: 1, addr: "969c68e974ffbb74feed1af1672b9f67adb65fb382ff2ee105070fd8d60d9fe5", symbol: "POS", coinGeckoId: "pengyos", decimals: 6, price: 0.0000198},                                            // Addr: B8vV6An7xFF3bARB1cmU7TMfKNjjes2WvY7jWqiRc6K6, Notional: 1.188e-10
-		{chain: 1, addr: "97af730592f7e84eaf461cf72db62d036e914c7a1b1f2cd2ac35c3301efb434f", symbol: "SNARC", coinGeckoId: "first-ai-1951", decimals: 6, price: 0.00000726},                                   // Addr: BD7jNnt6uYDp9rVRBTjJhkweGxYQppRe8CXLnAJspump, Notional: 46.964675349840604
-		{chain: 1, addr: "9990517de4aab724b1d8e7fead02d3f25a7ad6912ba339c6b7b637d2f53d7d10", symbol: "", coinGeckoId: "blocto-token", decimals: 8, price: 0.00015994},                                         // Addr: BLT1noyNr3GttckEVrtcfC6oyK6yV1DpPgSyXbncMwef, Notional: 0.00167937
-		{chain: 1, addr: "99975862e4e373b0063604e03ebced38da7060839238fb7001a925fd85756c93", symbol: "BLZE", coinGeckoId: "solblaze", decimals: 9, price: 0.0002328},                                          // Addr: BLZEEuZUBVqFhj8adcCFPJvPVCiCyVmh3hkJMrU8KuJA, Notional: 0.00120704969028
-		{chain: 1, addr: "9a7bc3a4fa3d288a156a2a3171fd953536f10e7c92cefad8b919c709aefb2b0c", symbol: "GROK", coinGeckoId: "grok-6", decimals: 9, price: 0.069904},                                             // Addr: BQ3F72yt9FVRgYrqCVCG3YohyBesDZ9bTuhGdmQ7GNEF, Notional: 0.34951999999999994
-		{chain: 1, addr: "9cdd9b466af324c58b653f6eac5e78f748e55778caed00a90d61e70c061587f8", symbol: "IO", coinGeckoId: "io", decimals: 8, price: 0.78712},                                                    // Addr: BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K, Notional: 35.3448127325896
-		{chain: 1, addr: "9ce7be61bf4938b98cd984cbfabd66b6b4ee2fd4d02529ab27f76bcfcc88798f", symbol: "JANI", coinGeckoId: "jani", decimals: 6, price: 0.00019721},                                             // Addr: BZVZFqfUaV2uEsBU9QCcVgsLJVMy9UCcSVbryzAFpump, Notional: 2958.1499999999996
-		{chain: 1, addr: "9ed00a9e2b184c6c0b6d9629c2648efe56c512456e354538bb4efad332ea5f30", symbol: "", coinGeckoId: "deapcoin", decimals: 6, price: 0.00118359},                                             // Addr: BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ, Notional: 3.55077
-		{chain: 1, addr: "a084edb439cccf78ff5db4936074779133cc49d8058731fb9ad6d982f57f899e", symbol: "BOBO", coinGeckoId: "bobo-the-bear", decimals: 6, price: 2.9549e-8},                                     // Addr: Bobo54AXWLGQWqCK6EZdrBQz4bKJXeBE9ExD1HJGbXed, Notional: 0.41623138478627064
-		{chain: 1, addr: "a2b04fe6f429ea28555be7b6dbba72479b6694ea96e93082996e9be877bc920a", symbol: "TOX", coinGeckoId: "trollbox", decimals: 9, price: 0.0000262},                                           // Addr: Bx4ykEMurwPQBAFNvthGj73fMBVTvHa8e9cbAyaK4ZSh, Notional: 0.0005239999999999999
-		{chain: 1, addr: "a43ee344a6ae6a837ced5766eb6183dad04fbe9b15e49e1dcd89fe0937fe930f", symbol: "AQUARIUS", coinGeckoId: "aquarius-2", decimals: 6, price: 0.00050054},                                   // Addr: C49Ut3om3QFTDrMZ5Cr8VcTKPpHDcQ2Fv8mmuJHHigDt, Notional: 2637.613543071129
-		{chain: 1, addr: "a5854b583d61bd674064522d1d3017a389990e96a9c244b9c57f0dac1cde4ea8", symbol: "C98", coinGeckoId: "coin98", decimals: 6, price: 0.051361},                                              // Addr: C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9, Notional: 26.965798085106996
-		{chain: 1, addr: "a790b593d8c348fba977d377f67f86214cb50662ae0e1410776d5b92611aec13", symbol: "SOLX", coinGeckoId: "soldex", decimals: 9, price: 0.00024145},                                           // Addr: CH74tuRLTYcxG7qNJCsV9rghfLXJCQJbsu7i52a8F1Gn, Notional: 0.00629214378045
-		{chain: 1, addr: "a832b1347f65932aa5a8b8e3b6f7854a2972157d0375097d599eabac9685a95c", symbol: "", coinGeckoId: "gari-network", decimals: 9, price: 0.00281102},                                         // Addr: CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks, Notional: 58582.91405862961
-		{chain: 1, addr: "a9b7b4c191b9fcd8a101e517de4a2bc44ae7df4ff6595f62cb4bf9c5c3b01fd2", symbol: "CRWNY", coinGeckoId: "crowny-token", decimals: 6, price: 0.00122073},                                    // Addr: CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1, Notional: 2.20585912098657
-		{chain: 1, addr: "aa77c1f5d0d2c07ce7075e31d348ca1c0965bb287be13984dec1c5615bf22665", symbol: "CUSD", coinGeckoId: "coin98-dollar", decimals: 6, price: 0.814205},                                      // Addr: CUSDvqAQLbt7fRofcmV2EXfPA2t36kzj7FjzdmqDiNQL, Notional: 1.729743511685
-		{chain: 1, addr: "aeeafcf3ec1126c4abb764352b5b2959152bf9c3aa2237802092efc84f8e04ca", symbol: "CANCER", coinGeckoId: "cancer", decimals: 6, price: 0.00049546},                                         // Addr: CmomKM8iPKRSMN7y1jqyW1QKj5bGoZmbvNZXWBJSUdnZ, Notional: 2446.3534296726866
-		{chain: 1, addr: "b41652c46fff703ca2d2d9660dc6e9c2f9eb59cbd77ba07d1edf3548c30e4fac", symbol: "CAIR", coinGeckoId: "crypto-ai-robo", decimals: 6, price: 0.00009121},                                   // Addr: D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F, Notional: 0.02873115
-		{chain: 1, addr: "b4f7fddc746c9c6b8872c4a21efe2817409c7c51a20c286e32162bbca75b8400", symbol: "DBR", coinGeckoId: "debridge", decimals: 6, price: 0.01400029},                                          // Addr: DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5, Notional: 0.01400029
-		{chain: 1, addr: "b5cbeacdc2c4b9172fc2055facc3b365eacb144ec670fcd02689fc9c29a252be", symbol: "KWEEN", coinGeckoId: "kween", decimals: 6, price: 0.00256352},                                           // Addr: DEf93bSt8dx58gDFCcz4CwbjYZzjwaRBYAciJYLfdCA9, Notional: 7333.751725885528
-		{chain: 1, addr: "b5ce441b09fe68fbcace88868d120ae3dbe8969465c859e1abaeb390d966d890", symbol: "Odie", coinGeckoId: "odie-on-sol", decimals: 6, price: 0.00001495},                                      // Addr: DEhDXhtUFuz6Uodhde3rznGbVbdiECahp1kTHnFpsna3, Notional: 0.031395
-		{chain: 1, addr: "b5f7e08966fa2f997abc90d7a7cde1bc733f567b9eafc3007e80a3174726b6f6", symbol: "", coinGeckoId: "defi-land", decimals: 9, price: 0.00019132},                                            // Addr: DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh, Notional: 4.062518662983373
-		{chain: 1, addr: "b7db4e83eb727f1187bd7a50303f5b4e4e943503da8571ad6564a51131504792", symbol: "", coinGeckoId: "wrapped-usdt-allbridge-from-polygon", decimals: 6, price: 0.99903},                     // Addr: DNhZkUaxHXYvpxZ7LNnHtss8sQgdAfd1ZYS1fB7LKWUZ, Notional: 42.153824089589996
-		{chain: 1, addr: "b814cbaa6004e889059e49841809b54c120f6d17c37cfaace4d28d394d56f67c", symbol: "SKBDI", coinGeckoId: "skibidi-toilet-2", decimals: 9, price: 0.04460597},                                // Addr: DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB, Notional: 0.04460597
-		{chain: 1, addr: "b953b5f8dd5457a2a0f0d41903409785b9d84d4045614faa4f505ee132dcd769", symbol: "DUST", coinGeckoId: "dust-protocol", decimals: 9, price: 0.03331026},                                    // Addr: DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ, Notional: 310295.5201917302
-		{chain: 1, addr: "ba9c1304d72c97ebb7070767351b86a218c179c897fb75727540e0e8522c3626", symbol: "DAWAE", coinGeckoId: "dawae-2", decimals: 9, price: 0.00021324},                                         // Addr: DZSs9nHSr9BBunLNWd6PDstesJ4PBLMFVK1GbZ9urYNZ, Notional: 29461.156315609038
-		{chain: 1, addr: "bbec677bca5169fbcaa1dccd44ef4badd3fe4d53bf3c9610379afe527256660a", symbol: "SOLNIC", coinGeckoId: "solnic", decimals: 6, price: 0.00501231},                                         // Addr: DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9, Notional: 21764.251395525982
-		{chain: 1, addr: "bc07c56e60ad3d3f177382eac6548fba1fd32cfd90ca02b3e7cfa185fdce7398", symbol: "Bonk", coinGeckoId: "bonk", decimals: 5, price: 0.00001667},                                             // Addr: DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263, Notional: 9795430.258879706
-		{chain: 1, addr: "bfc5f3a72f20be422f69837df545b8a5c992a9cb3e4687f61030f55ae9e3b235", symbol: "CRP", coinGeckoId: "cropperfinance", decimals: 9, price: 0.00054392},                                    // Addr: DubwWZNWiNGMMeeQHPnMATNj77YZPZSAz2WVR5WjLJqz, Notional: 4.296968e-10
-		{chain: 1, addr: "c206c5c565936e75a63aca8d62d7f2c27c21572474d7dd13e38424b0377f17af", symbol: "ADA", coinGeckoId: "ada-the-dog", decimals: 9, price: 0.00022615},                                       // Addr: E4Q5pLaEiejwEQHcM9GeYSQfMyGy8DJ4bPWgeYthn24v, Notional: 0.0006784499999999999
-		{chain: 1, addr: "c261d86cf5cf877128ba1f5652e5f3dda599270c1556a15bc0a9aacf8063e563", symbol: "RIN", coinGeckoId: "aldrin", decimals: 9, price: 0.00274758},                                            // Addr: E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp, Notional: 0.002335443
-		{chain: 1, addr: "c2667f39a3a7b6febb2f995eb4d1b739f45fe2edd645403c3e52e677e6bd6852", symbol: "WOO", coinGeckoId: "woo-network", decimals: 6, price: 0.079828},                                         // Addr: E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy, Notional: 159.43081878276
-		{chain: 1, addr: "c28ee4128851e187510f75f9d61703da621ecbbb4b5b6e0d4b1fc21942f309a0", symbol: "DGLN", coinGeckoId: "dogelana", decimals: 9, price: 0.00000679},                                         // Addr: E6UU5M1z4CvSAAF99d9wRoXsasWMEXsvHrz3JQRXtm2X, Notional: 0.9704322366851
-		{chain: 1, addr: "c3bc53a848c67ab3799f20a745a51e51c991946690c7c8a4b9a480aa29b07b94", symbol: "RPILL", coinGeckoId: "red-pill-2", decimals: 7, price: 2.01909e-7},                                      // Addr: EB54Nt1ydAgMR3edpaXEwb16R8TfF1enJ7zaYSefo7wH, Notional: 25009.117273254524
-		{chain: 1, addr: "c44051a911b54c7ecffc7ee0b0a40af48b328ae755a99533c8402cb26df43807", symbol: "MOODENG", coinGeckoId: "moo-deng", decimals: 6, price: 0.203937},                                        // Addr: ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY, Notional: 24304.558580104742
-		{chain: 1, addr: "c52e93ce650a3e02a70273e400132ed89b3bd67f2b839d4848593282bdec3ea0", symbol: "", coinGeckoId: "bitmon", decimals: 9, price: 0.00004538},                                               // Addr: EGiWZhNk3vUNJr35MbL2tY5YD6D81VVZghR2LgEFyXZh, Notional: 0.0743617047034104
-		{chain: 1, addr: "c59cade70266477a5028970d5d9680bb9f1602dd393d05e3cfa8775ea818e6f8", symbol: "", coinGeckoId: "bozo-hybrid", decimals: 9, price: 0.00363594},                                          // Addr: EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q, Notional: 0.00010066314410459999
-		{chain: 1, addr: "c6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v, Notional: 3102647.0399086927
-		{chain: 1, addr: "c7dc3552acd085ffa989b81b21e5e0bcbccbb1ec87835f0db12fabbad666ddf6", symbol: "MEDIA", coinGeckoId: "media-network", decimals: 6, price: 0.755892},                                     // Addr: ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs, Notional: 1.5454060761600001
-		{chain: 1, addr: "c9a11f01cc857e5febddff9fd9e04cc82f44ec58ec6f19e23f5e7cca07ffb041", symbol: "PAI", coinGeckoId: "parrot-usd", decimals: 6, price: 0.968736},                                          // Addr: Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS, Notional: 38.74944
-		{chain: 1, addr: "ca4d39964c9cb5f9790d0a12969f60fd9724936284ea4a12daded42ddfa69c5d", symbol: "FIDA", coinGeckoId: "bonfida", decimals: 6, price: 0.066453},                                            // Addr: EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp, Notional: 2.191375924584
-		{chain: 1, addr: "cc1bcd1d67c75bc278395ed463e45967941dd0ee02cc7327100d02c8730d1637", symbol: "TAURUS", coinGeckoId: "taurus-2", decimals: 6, price: 0.00068752},                                       // Addr: EjkkxYpfSwS6TAtKKuiJuNMMngYvumc1t1v9ZX1WJKMp, Notional: 2954.5306582934963
-		{chain: 1, addr: "ce010e60afedb22717bd63192f54145a3f965a33bb82d2c7029eb2ce1e208264", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                    // Addr: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB, Notional: 582244.432362
-		{chain: 1, addr: "ceaf14fcf7cb2ed5003289247656f3427aa86c1cee4185effcc253e7a8fe403a", symbol: "LAIKA", coinGeckoId: "the-soldog", decimals: 6, price: 0.00000205},                                      // Addr: Euoq6CyQFCjCVSLR9wFaUPDW19Y6ZHwEcJoZsEi643i1, Notional: 0.0006355
-		{chain: 1, addr: "ced51ea8ae7d7670ce24e31fa7cc1f731ee3e02b91c017a37af71968cb17a290", symbol: "CHADCAT", coinGeckoId: "chad-cat", decimals: 9, price: 0.00004668},                                      // Addr: EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27, Notional: 0.029212096850406002
-		{chain: 1, addr: "cf3be585daf0d7aa080054c5ff622f468dbb2f49d086c5ca3230b60529e06103", symbol: "", coinGeckoId: "wrapped-cusd-allbridge-from-celo", decimals: 9, price: 0.995695},                       // Addr: EwxNF8g9UfmsJVcZFTpL9Hx5MCkoQFoJi6XNWzKf1j8e, Notional: 1.6926815
-		{chain: 1, addr: "cfc61bb2ec4f1577d9b77f7d25db59555fa791bcea427ce294a390e3e127f82e", symbol: "VIRGO", coinGeckoId: "virgo-2", decimals: 6, price: 0.00050433},                                         // Addr: Ez4bst5qu5uqX3AntYWUdafw9XvtFeJ3gugytKKbSJso, Notional: 2593.1889266630756
-		{chain: 1, addr: "d670e7f1810e56d73423f0e3ccb3c5e6218211acda522599c494f893113305ab", symbol: "SMOG", coinGeckoId: "smog", decimals: 6, price: 0.00958167},                                             // Addr: FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8, Notional: 622423.9239459515
-		{chain: 1, addr: "d6c679aa7652867ebb3221cd90f5cf1d7f1b20e3bfd713c95de54bbdd6df2172", symbol: "wBIRD", coinGeckoId: "bird-money", decimals: 9, price: 0.768407},                                        // Addr: FTPnEQ3NfRRZ9tvmpDW6JFrvweBE5sanxnXSpJL1dvbB, Notional: 0.1536814
-		{chain: 1, addr: "d6de2876953718f8ae61f7a6da3b0869cc770dbe30d86458f46467d8ed1bf499", symbol: "", coinGeckoId: "synex-coin", decimals: 9, price: 0.00037006},                                           // Addr: FTkj421DxbS1wajE74J34BJ5a1o9ccA97PkK6mYq9hNQ, Notional: 0.018503000000000002
-		{chain: 1, addr: "d813ffacd702778f0e56a4224bc22b7c2644dfa713fe929fec09c5fae093a802", symbol: "MC", coinGeckoId: "tap-fantasy-mc", decimals: 9, price: 0.086592},                                       // Addr: FYUkUybywqUUyrUwiAezbvhTp2DUgx1eg8tQNiKkXqJ9, Notional: 0.0072982075584
-		{chain: 1, addr: "d9299d4dd5f2e8021a5f9d220ee6499ed7ce916b4455042a172fd08cee33065e", symbol: "TGT", coinGeckoId: "twirl-governance-token", decimals: 6, price: 0.00206801},                            // Addr: FciGvHj9FjgSGgCBF1b9HY814FM9D28NijDd5SJrKvPo, Notional: 0.010546851
-		{chain: 1, addr: "d9f5f028b2262005f14736d01e0115d02ecbf82513a58b8c0525c5537a186f41", symbol: "BOO", coinGeckoId: "boo", decimals: 6, price: 2.25488e-10},                                              // Addr: FfpyoV365c7iR8QQg5NHGCXQfahbqzY67B3wpzXkiLXr, Notional: 0.0009470496
-		{chain: 1, addr: "db532dd1df8e6c87ca70695ddf92f8d86e621d0d86de69c3058de9b29ee22647", symbol: "", coinGeckoId: "monkeyball", decimals: 6, price: 0.00252492},                                           // Addr: Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A, Notional: 0.35412393352632
-		{chain: 1, addr: "db9f5cc7f4249010132350e743d99e2a30f0a264b8b345cf23622f0e4eca9d14", symbol: "SYP", coinGeckoId: "sypool", decimals: 9, price: 0.00020889},                                            // Addr: FnKE9n6aGjQoNWRBZXy4RW6LZVao7qwBonUbiD7edUmZ, Notional: 1384.2561228222899
-		{chain: 1, addr: "dbe7c49c3d365abe845bb853bf8a6e8a42743847fd0611ffba1a410b3f22639e", symbol: "FORGE", coinGeckoId: "blocksmith-labs-forge", decimals: 9, price: 0.00396194},                           // Addr: FoRGERiW7odcCBGU1bztZi16osPBHjxharvDathL5eds, Notional: 0.005123731163622999
-		{chain: 1, addr: "dbef5aa1e0f0042edd619a2f68fd3e4df833325dd2037fcc6bb3b6ed0cb7508e", symbol: "", coinGeckoId: "famous-fox-federation", decimals: 0, price: 0.00262265},                                // Addr: FoXyMu5xwXre7zEoSvzViRk3nGawHUp9kUh97y2NDhcq, Notional: 12.4418516
-		{chain: 1, addr: "dd40a2f6f423e4c3990a83eac3d9d9c1fe625b36cbc5e4a6d553544552a867ee", symbol: "BRZ", coinGeckoId: "brz", decimals: 4, price: 0.178599},                                                 // Addr: FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD, Notional: 4607.145644187301
-		{chain: 1, addr: "e24bdeaeffa04f43b8771a420b80061cf093260db29ac9c8ead65058a97f7857", symbol: "", coinGeckoId: "genopets", decimals: 9, price: 0.065715},                                               // Addr: GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz, Notional: 8.6086478418135
-		{chain: 1, addr: "e2975e097997188b8c83cf5b64f28ff42b1ae579b1b6747857bf722150de7fb0", symbol: "GOFX", coinGeckoId: "goosefx", decimals: 9, price: 0.00184441},                                          // Addr: GFX1ZjR2P15tmrSwow6FjyDYcEkoFb4p4gJCpLBjaxHD, Notional: 0.00368882
-		{chain: 1, addr: "e334cd4a3826672ea4c5394a042929c94638ecee0deeae37fbd41e396d06fc77", symbol: "SOLAPE", coinGeckoId: "solape-token", decimals: 9, price: 0.00013401},                                   // Addr: GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN, Notional: 0.00013401
-		{chain: 1, addr: "e350770814014371e2277d39b550570dd02e77db5f266e58f68f023c277f14af", symbol: "ily", coinGeckoId: "iiii-lovvv-youuuu", decimals: 6, price: 0.00036838},                                 // Addr: GJLiErro8cbWeDngDMWJug9dkwwckYZg4Lvb79F3pump, Notional: 16.45997675885616
-		{chain: 1, addr: "e66b5c6e86ec048a73a370e0588e1dcbaa16f532b8e5790eb830386b3ae947fc", symbol: "", coinGeckoId: "galaxy-war", decimals: 6, price: 0.00011302},                                           // Addr: GWTipxSJVPmmW2wCjBdkbnEJbCRCyrhL2x9zuHRPPTj1, Notional: 1.16168541313736
-		{chain: 1, addr: "e67a4e87ce4d1df99623ee52b47b2675bfa1dc3c875eac60533c6e7cc6daee27", symbol: "", coinGeckoId: "1safu", decimals: 0, price: 5.329e-9},                                                  // Addr: GWgwUUrgai3BFeEJZp7bdsBSYiuDqNmHf9uRusWsf3Yi, Notional: 0.000647766595
-		{chain: 1, addr: "e8aea53120492d4b007a41f4fea777ac914c36dc21f944614e9a96ebe0a18367", symbol: "SOLPAD", coinGeckoId: "solpad-finance", decimals: 9, price: 0.00000501},                                 // Addr: GfJ3Vq2eSTYf1hJP6kKLE9RT6u7jF9gNszJhZwo5VPZp, Notional: 0.00023357990350230003
-		{chain: 1, addr: "e92f2b9eb212cdc7941a829712babcb7a6697f8b94710f05ba381666130d96d1", symbol: "ARIES", coinGeckoId: "aries", decimals: 6, price: 0.0004938},                                            // Addr: GhFiFrExPY3proVF96oth1gESWA5QPQzdtb8cy8b1YZv, Notional: 2522.763944027841
-		{chain: 1, addr: "e9e5418ae527093d6a777adabea125d9681dd77643ac339e6ec487865c928672", symbol: "$PTRUMP", coinGeckoId: "pepe-trump", decimals: 6, price: 0.00074914},                                    // Addr: Gk2kRrwNMBU4Dn9JhC1Dks8G5X9nqi4ZE5jMvK6bdgEd, Notional: 19009.322357264577
-		{chain: 1, addr: "eac40dce1cfccb5ca30a878aebb3025763a8d3f0c4f15c3e858b98899982b71f", symbol: "KSG", coinGeckoId: "king-sugar-glider", decimals: 6, price: 0.00001781},                                 // Addr: GoRnxWR5h4HMYAbCWhfPxsTF6N27jTRkBDFpAsvLpump, Notional: 2.9367037770040105
-		{chain: 1, addr: "eb93117f10dd2e3ff96c12c11267f8654eb1050d05a55eaa08ab80a77c409d1e", symbol: "GRASS", coinGeckoId: "grass", decimals: 9, price: 2.05},                                                 // Addr: Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs, Notional: 0.012525499999999998
-		{chain: 1, addr: "ebc7380b4b2467a56f247d9d83635f45df774bd341fe028ef56b45607bfe256c", symbol: "DXL", coinGeckoId: "dexlab", decimals: 6, price: 0.0003502},                                             // Addr: GsNzxJfFn6zQdJGeYsupJWzUAm57Ba7335mfhWvFiE9Z, Notional: 0.0000015520864000000001
-		{chain: 1, addr: "ebd47511adbd4c48202bc2d335138ce08fca42964e99e08126d8cdd78f974985", symbol: "gSAIL", coinGeckoId: "solanasail-governance-token", decimals: 9, price: 0.00589147},                     // Addr: Gsai2KN28MTGcSZ1gKYFswUpFpS7EM9mvdR9c8f6iVXJ, Notional: 0.01767441
-		{chain: 1, addr: "ecc960fbf1d75d4051dc9833005626b0556325ab2a1d2eaeba5e1241e479a699", symbol: "LLD", coinGeckoId: "liberland-lld", decimals: 8, price: 1.95},                                           // Addr: GwKKPsJdY5oWMJ8RReWLcvb82KzW6FKy2bKoYW7kHr16, Notional: 2.703751791
-		{chain: 1, addr: "edcc10dafe9e4643d0397fb1ffa280b7a3c28090ebfe4816c3e0f39b9d7ca411", symbol: "SBONK", coinGeckoId: "shibonk-311f81df-a4ea-4f31-9e61-df0af8211bd7", decimals: 9, price: 0.50232},       // Addr: H1G6sZ1WDoMmMCFqBKAbg9gkQPCo1sKQtaJWz9dHmqZr, Notional: 0.8539078882152
-		{chain: 1, addr: "f204ae4a202016d4de45496d2b0becaa650f1e9a58c02426f4190166488f4d9c", symbol: "", coinGeckoId: "pip", decimals: 9, price: 0.0022965},                                                   // Addr: HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw, Notional: 0.7762399649999999
-		{chain: 1, addr: "f207dc9bd5545f9674a6b087ef55a585e8580a192f412de0890e91f735201049", symbol: "clAPT", coinGeckoId: "cloned-aptos", decimals: 8, price: 3.67},                                          // Addr: HHncifGW3yJyaW2fRRfBYAawnD9ogbsWM5PccFA4GHSx, Notional: 0.5642172488999999
-		{chain: 1, addr: "f23cba7173364712aaa6114393f2c187b8d8b5194abaa872ada605fa8820b61f", symbol: "", coinGeckoId: "atlas-dex", decimals: 9, price: 0.00042941},                                            // Addr: HJbNXx2YMRxgfUJ6K4qeWtjatMK5KYQT1QnsCdDWywNv, Notional: 0.039335061644868004
-		{chain: 1, addr: "f51829ba389a574812109c6de6051e77c7a003ba666a26d13d30c51c51f7e94e", symbol: "", coinGeckoId: "visiongame", decimals: 9, price: 0.00063191},                                           // Addr: HVkFqcMHevVPb4XKrf4XowjEaVVsBoqJ2U1EG59Dfk5j, Notional: 21.969313991898908
-		{chain: 1, addr: "f5a8417cdb387bd0c408b600e0a4662f155aa37527e6376bc28254deea6e1e48", symbol: "$DEFI", coinGeckoId: "de-fi", decimals: 6, price: 0.00270398},                                           // Addr: HXwh9i8D1LKkVK8WfMjFPyiyVZ4Auh9aLD5ut4LCRqqR, Notional: 168.76014814137972
-		{chain: 1, addr: "f5edec8471c75624ebc4079a634326d96a689e6157d79abe8f5a6f94472853bc", symbol: "PYTH", coinGeckoId: "pyth-network", decimals: 6, price: 0.121263},                                       // Addr: HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3, Notional: 369353.4237567052
-		{chain: 1, addr: "f79a6689e1ee9439000424c51198bfa4f0510ea523204ce8ec639c3fa8ebb916", symbol: "", coinGeckoId: "cryowar-token", decimals: 9, price: 0.00126976},                                        // Addr: HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo, Notional: 2.53952
-		{chain: 1, addr: "f926de74d018c7be81c476f359aaacba61b762767977d2565c9eb57682011706", symbol: "PSOL", coinGeckoId: "parasol-finance", decimals: 7, price: 0.00417566},                                  // Addr: Hmatmu1ktLbobSvim94mfpZmjL5iiyoM1zidtXJRAdLZ, Notional: 0.00417566
-		{chain: 1, addr: "faf2d6df73cb4778b625966d4fba883fd424a80497d5e31c934352ade1d1bdc9", symbol: "", coinGeckoId: "dead-knight", decimals: 9, price: 0.00001716},                                          // Addr: HtbhBYdcfXbbD2JiH6jtsTt2m2FXjn7h4k6iXfz98k5W, Notional: 0.008043749999999999
-		{chain: 1, addr: "fcd141e9832caf10ad917495ca0f271b5b293cd47027ea737007ed40eb39a0bd", symbol: "JitoSOL", coinGeckoId: "jito-staked-sol", decimals: 9, price: 189.01},                                   // Addr: J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn, Notional: 21533.7603109774
-		{chain: 1, addr: "fd86d81bd924f3cfc702ea40b8d30705f75c387a23d9a8e22ff1d6e52a8a3b54", symbol: "SCORPIO", coinGeckoId: "scorpio", decimals: 6, price: 0.0005079},                                        // Addr: J4fQTRN13MKpXhVE74t99msKJLbrjegjEgLBnzEv2YH1, Notional: 2635.663892423349
-		{chain: 1, addr: "fe41912ceb0b2cb23badaac80e3b41d42cbe0e0c999ccdec5cf0d70bc3e2ccd1", symbol: "", coinGeckoId: "mongoosecoin", decimals: 9, price: 3.4275e-8},                                          // Addr: J7WYVzFNynk9D28eBCccw2EYkygygiLDCVCabV7CupWL, Notional: 0.0000068550000000000004
-		{chain: 2, addr: "0000000000000000000000000001a500a6b18995b03f44bb040a5ffc28e45cb0", symbol: "OLAS", coinGeckoId: "autonolas", decimals: 18, price: 0.277724},                                         // Addr: 0x0001a500a6b18995b03f44bb040a5ffc28e45cb0, Notional: 363820.3894454282
-		{chain: 2, addr: "000000000000000000000000009178997aff09a67d4caccfeb897fb79d036214", symbol: "1SOL", coinGeckoId: "1sol", decimals: 18, price: 0.00325698},                                            // Addr: 0x009178997aff09a67d4caccfeb897fb79d036214, Notional: 303967.22820087796
-		{chain: 2, addr: "00000000000000000000000000a8b738e453ffd858a7edf03bccfe20412f0eb0", symbol: "ALBT", coinGeckoId: "allianceblock", decimals: 18, price: 0.00020896},                                   // Addr: 0x00a8b738e453ffd858a7edf03bccfe20412f0eb0, Notional: 0.0304931729374464
-		{chain: 2, addr: "00000000000000000000000000c5ca160a968f47e7272a0cfcda36428f386cb6", symbol: "USDEBT", coinGeckoId: "usdebt", decimals: 18, price: 2.674e-9},                                          // Addr: 0x00c5ca160a968f47e7272a0cfcda36428f386cb6, Notional: 28.57472378604017
-		{chain: 2, addr: "00000000000000000000000000e679ba63b509182c349f5614f0a07cdd0ce0c5", symbol: "DAMEX", coinGeckoId: "damex-token", decimals: 18, price: 0.00007997},                                    // Addr: 0x00e679ba63b509182c349f5614f0a07cdd0ce0c5, Notional: 0.047982
-		{chain: 2, addr: "000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e", symbol: "aWETH", coinGeckoId: "aave-weth", decimals: 18, price: 2588.46},                                         // Addr: 0x030ba81f1c18d280636f32af80b9aad02cf0854e, Notional: 776.5717535184
-		{chain: 2, addr: "0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d380", symbol: "HBTC", coinGeckoId: "huobi-btc", decimals: 18, price: 3364.25},                                          // Addr: 0x0316eb71485b0ab14103307bf65a021042c6d380, Notional: 364.5622076575
-		{chain: 2, addr: "00000000000000000000000003ab458634910aad20ef5f1c8ee96f1d6ac54919", symbol: "RAI", coinGeckoId: "rai", decimals: 18, price: 2.95},                                                    // Addr: 0x03ab458634910aad20ef5f1c8ee96f1d6ac54919, Notional: 8.850000000000001
-		{chain: 2, addr: "00000000000000000000000003be5c903c727ee2c8c4e9bc0acc860cca4715e2", symbol: "CAPS", coinGeckoId: "coin-capsule", decimals: 18, price: 0.00110793},                                    // Addr: 0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2, Notional: 215.16099410782476
-		{chain: 2, addr: "000000000000000000000000046eee2cc3188071c02bfc1745a6b17c656e3f3d", symbol: "RLB", coinGeckoId: "rollbit-coin", decimals: 18, price: 0.059749},                                       // Addr: 0x046eee2cc3188071c02bfc1745a6b17c656e3f3d, Notional: 204.34158
-		{chain: 2, addr: "00000000000000000000000004815313e9329e8905a77251a1781cfa7934259a", symbol: "HOOD", coinGeckoId: "wagmicatgirlkanye420etfmoon1000x", decimals: 18, price: 0.00000421},                // Addr: 0x04815313e9329e8905a77251a1781cfa7934259a, Notional: 13277.488804724366
-		{chain: 2, addr: "00000000000000000000000004969cd041c0cafb6ac462bd65b536a5bdb3a670", symbol: "wOMI", coinGeckoId: "wrapped-ecomi", decimals: 18, price: 0.00042912},                                   // Addr: 0x04969cd041c0cafb6ac462bd65b536a5bdb3a670, Notional: 8.056597330938846
-		{chain: 2, addr: "00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6", symbol: "pxETH", coinGeckoId: "dinero-staked-eth", decimals: 18, price: 2582.58},                                 // Addr: 0x04c154b66cb340f3ae24111cc767e0184ed00cc6, Notional: 14412.730494161999
-		{chain: 2, addr: "000000000000000000000000054d64b73d3d8a21af3d764efd76bcaa774f3bb2", symbol: "PPAY", coinGeckoId: "plasma-finance", decimals: 18, price: 0.00025769},                                  // Addr: 0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2, Notional: 2536.494511688232
-		{chain: 2, addr: "00000000000000000000000005d3606d5c81eb9b7b18530995ec9b29da05faba", symbol: "TOMOE", coinGeckoId: "tomoe", decimals: 18, price: 0.177856},                                            // Addr: 0x05d3606d5c81eb9b7b18530995ec9b29da05faba, Notional: 17785.6
-		{chain: 2, addr: "00000000000000000000000006450dee7fd2fb8e39061434babcfc05599a6fb8", symbol: "XEN", coinGeckoId: "xen-crypto", decimals: 18, price: 4.242e-8},                                         // Addr: 0x06450dee7fd2fb8e39061434babcfc05599a6fb8, Notional: 0.0004246242
-		{chain: 2, addr: "00000000000000000000000006af07097c9eeb7fd685c692751d5c66db49c215", symbol: "CHAI", coinGeckoId: "chai", decimals: 18, price: 1.17},                                                  // Addr: 0x06af07097c9eeb7fd685c692751d5c66db49c215, Notional: 8964450.88153504
-		{chain: 2, addr: "00000000000000000000000006e0feb0d74106c7ada8497754074d222ec6bcdf", symbol: "BTB", coinGeckoId: "bitball", decimals: 18, price: 0.00008804},                                          // Addr: 0x06e0feb0d74106c7ada8497754074d222ec6bcdf, Notional: 792.36
-		{chain: 2, addr: "0000000000000000000000000763fdccf1ae541a5961815c0872a8c5bc6de4d7", symbol: "SUKU", coinGeckoId: "suku", decimals: 18, price: 0.03008133},                                            // Addr: 0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7, Notional: 0.7080793798244526
-		{chain: 2, addr: "000000000000000000000000081131434f93063751813c619ecca9c4dc7862a3", symbol: "DAR", coinGeckoId: "mines-of-dalarnia", decimals: 6, price: 0.03441202},                                 // Addr: 0x081131434f93063751813c619ecca9c4dc7862a3, Notional: 36.66253207451222
-		{chain: 2, addr: "00000000000000000000000008389495d7456e1951ddf7c3a1314a4bfb646d8b", symbol: "CRPT", coinGeckoId: "crypterium", decimals: 18, price: 0.00336054},                                      // Addr: 0x08389495d7456e1951ddf7c3a1314a4bfb646d8b, Notional: 0.11425836
-		{chain: 2, addr: "00000000000000000000000008d967bb0134f2d07f7cfb6e246680c53927dd30", symbol: "MATH", coinGeckoId: "math", decimals: 18, price: 0.105831},                                              // Addr: 0x08d967bb0134f2d07f7cfb6e246680c53927dd30, Notional: 527941.5583732061
-		{chain: 2, addr: "000000000000000000000000090185f2135308bad17527004364ebcc2d37e5f6", symbol: "SPELL", coinGeckoId: "spell-token", decimals: 18, price: 0.00053216},                                    // Addr: 0x090185f2135308bad17527004364ebcc2d37e5f6, Notional: 0.00053216
-		{chain: 2, addr: "00000000000000000000000009a3ecafa817268f77be1283176b946c4ff2e608", symbol: "MIR", coinGeckoId: "mirror-protocol", decimals: 18, price: 0.02046236},                                  // Addr: 0x09a3ecafa817268f77be1283176b946c4ff2e608, Notional: 179.0975352973967
-		{chain: 2, addr: "0000000000000000000000000a638f07acc6969abf392bb009f216d22adea36d", symbol: "BKN", coinGeckoId: "brickken", decimals: 18, price: 0.285515},                                           // Addr: 0x0a638f07acc6969abf392bb009f216d22adea36d, Notional: 1457122.3772648035
-		{chain: 2, addr: "0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f", symbol: "gOHM", coinGeckoId: "governance-ohm", decimals: 18, price: 5267.74},                                     // Addr: 0x0ab87046fbb341d058f17cbc4c1133f25a20a52f, Notional: 880.9657226685999
-		{chain: 2, addr: "0000000000000000000000000b61c4f33bcdef83359ab97673cb5961c6435f4e", symbol: "EARN", coinGeckoId: "hold-2", decimals: 18, price: 0.0029567},                                           // Addr: 0x0b61c4f33bcdef83359ab97673cb5961c6435f4e, Notional: 17.279171122550018
-		{chain: 2, addr: "0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e", symbol: "YFI", coinGeckoId: "yearn-finance", decimals: 18, price: 5273.72},                                       // Addr: 0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e, Notional: 174917.53864928722
-		{chain: 2, addr: "0000000000000000000000000c572544a4ee47904d54aaa6a970af96b6f00e1b", symbol: "WAS", coinGeckoId: "wasder", decimals: 18, price: 0.00027772},                                           // Addr: 0x0c572544a4ee47904d54aaa6a970af96b6f00e1b, Notional: 240.82077872451535
-		{chain: 2, addr: "0000000000000000000000000d505c03d30e65f6e9b4ef88855a47a89e4b7676", symbol: "ZOOMER", coinGeckoId: "zoomer", decimals: 18, price: 0.00001269},                                        // Addr: 0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676, Notional: 22751.149204065103
-		{chain: 2, addr: "0000000000000000000000000d5639a1442730372e2a650a2900ba07937854f4", symbol: "CHUB", coinGeckoId: "callhub", decimals: 18, price: 0.00531538},                                         // Addr: 0x0d5639a1442730372e2a650a2900ba07937854f4, Notional: 31.89228
-		{chain: 2, addr: "0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", symbol: "BAT", coinGeckoId: "basic-attention-token", decimals: 18, price: 0.135288},                              // Addr: 0x0d8775f648430679a709e98d2b0cb6250d2887ef, Notional: 191440.71287450235
-		{chain: 2, addr: "0000000000000000000000000e186357c323c806c1efdad36d217f7a54b63d18", symbol: "CGT2.0", coinGeckoId: "curio-gas-token", decimals: 18, price: 0.00243962},                               // Addr: 0x0e186357c323c806c1efdad36d217f7a54b63d18, Notional: 56468.98929311945
-		{chain: 2, addr: "0000000000000000000000000f3adc247e91c3c50bc08721355a41037e89bc20", symbol: "ANC", coinGeckoId: "anchor-protocol", decimals: 18, price: 0.00314273},                                  // Addr: 0x0f3adc247e91c3c50bc08721355a41037e89bc20, Notional: 8.569615252376328
-		{chain: 2, addr: "0000000000000000000000000f51bb10119727a7e5ea3538074fb341f56b09ad", symbol: "DAO", coinGeckoId: "dao-maker", decimals: 18, price: 0.130032},                                          // Addr: 0x0f51bb10119727a7e5ea3538074fb341f56b09ad, Notional: 1080.0785435811438
-		{chain: 2, addr: "0000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc942", symbol: "MANA", coinGeckoId: "decentraland", decimals: 18, price: 0.284862},                                      // Addr: 0x0f5d2fb29fb7d3cfee444a200298f468908cc942, Notional: 26228.933873417165
-		{chain: 2, addr: "000000000000000000000000102c776ddb30c754ded4fdcc77a19230a60d4e4f", symbol: "FLC", coinGeckoId: "flooring-lab-credit", decimals: 18, price: 0.00011005},                              // Addr: 0x102c776ddb30c754ded4fdcc77a19230a60d4e4f, Notional: 2677.4069864608605
-		{chain: 2, addr: "0000000000000000000000001045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0", symbol: "DFIAT", coinGeckoId: "defiato", decimals: 18, price: 0.0009003},                                         // Addr: 0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0, Notional: 1598.691463229444
-		{chain: 2, addr: "00000000000000000000000010633216e7e8281e33c86f02bf8e565a635d9770", symbol: "DVI", coinGeckoId: "dvision-network", decimals: 18, price: 0.01010061},                                  // Addr: 0x10633216e7e8281e33c86f02bf8e565a635d9770, Notional: 1.0100609999999999
-		{chain: 2, addr: "000000000000000000000000111111111117dc0aa78b770fa6a738034120c302", symbol: "1INCH", coinGeckoId: "1inch", decimals: 18, price: 0.209226},                                            // Addr: 0x111111111117dc0aa78b770fa6a738034120c302, Notional: 94141.80100810646
-		{chain: 2, addr: "000000000000000000000000112b08621e27e10773ec95d250604a041f36c582", symbol: "KAS", coinGeckoId: "wrapped-kaspa", decimals: 8, price: 0.01465366},                                     // Addr: 0x112b08621e27e10773ec95d250604a041f36c582, Notional: 2.455497546059254
-		{chain: 2, addr: "00000000000000000000000012970e6868f88f6557b76120662c1b3e50a646bf", symbol: "LADYS", coinGeckoId: "milady-meme-coin", decimals: 18, price: 4.3894e-8},                                // Addr: 0x12970e6868f88f6557b76120662c1b3e50a646bf, Notional: 4.617632105304344
-		{chain: 2, addr: "00000000000000000000000012bb890508c125661e03b09ec06e404bc9289040", symbol: "RACA", coinGeckoId: "radio-caca", decimals: 18, price: 0.00007078},                                      // Addr: 0x12bb890508c125661e03b09ec06e404bc9289040, Notional: 17.082961194688608
-		{chain: 2, addr: "000000000000000000000000138c2f1123cf3f82e4596d097c118eac6684940b", symbol: "ALPHA", coinGeckoId: "alphacoin", decimals: 18, price: 0.02541058},                                      // Addr: 0x138c2f1123cf3f82e4596d097c118eac6684940b, Notional: 0.025156474199999997
-		{chain: 2, addr: "0000000000000000000000001494ca1f11d487c2bbe4543e90080aeba4ba3c2b", symbol: "DPI", coinGeckoId: "defipulse-index", decimals: 18, price: 93.14},                                       // Addr: 0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b, Notional: 2.8452817016
-		{chain: 2, addr: "000000000000000000000000152649ea73beab28c5b49b26eb48f7ead6d4c898", symbol: "Cake", coinGeckoId: "pancakeswap-token", decimals: 18, price: 2.41},                                     // Addr: 0x152649ea73beab28c5b49b26eb48f7ead6d4c898, Notional: 4.853059729300001
-		{chain: 2, addr: "00000000000000000000000015d4c048f83bd7e37d49ea4c83a07267ec4203da", symbol: "GALA", coinGeckoId: "gala", decimals: 8, price: 0.01673087},                                             // Addr: 0x15d4c048f83bd7e37d49ea4c83a07267ec4203da, Notional: 10.30621592
-		{chain: 2, addr: "000000000000000000000000170dec83c7753aaad20c01a0016b5a2e143990d4", symbol: "WIGGER", coinGeckoId: "wigger", decimals: 18, price: 0.00002919},                                        // Addr: 0x170dec83c7753aaad20c01a0016b5a2e143990d4, Notional: 570.2257192762156
-		{chain: 2, addr: "0000000000000000000000001796ae0b0fa4862485106a0de9b654efe301d0b2", symbol: "PMON", coinGeckoId: "polychain-monsters", decimals: 18, price: 0.04947109},                              // Addr: 0x1796ae0b0fa4862485106a0de9b654efe301d0b2, Notional: 1.9541131787207915
-		{chain: 2, addr: "00000000000000000000000018084fba666a33d37592fa2633fd49a74dd93a88", symbol: "tBTC", coinGeckoId: "tbtc", decimals: 18, price: 108503},                                                // Addr: 0x18084fba666a33d37592fa2633fd49a74dd93a88, Notional: 31472784.03359115
-		{chain: 2, addr: "0000000000000000000000001864ce27e9f7517047933caae530674e8c70b8a7", symbol: "PIB", coinGeckoId: "pibble", decimals: 18, price: 0.00044828},                                           // Addr: 0x1864ce27e9f7517047933caae530674e8c70b8a7, Notional: 4.93108
-		{chain: 2, addr: "00000000000000000000000018aaa7115705e8be94bffebde57af9bfc265b998", symbol: "AUDIO", coinGeckoId: "audius", decimals: 18, price: 0.068568},                                           // Addr: 0x18aaa7115705e8be94bffebde57af9bfc265b998, Notional: 2643326.208463888
-		{chain: 2, addr: "00000000000000000000000019062190b1925b5b6689d7073fdfc8c2976ef8cb", symbol: "BZZ", coinGeckoId: "swarm-bzz", decimals: 16, price: 0.165659},                                          // Addr: 0x19062190b1925b5b6689d7073fdfc8c2976ef8cb, Notional: 1.65659e-9
-		{chain: 2, addr: "0000000000000000000000001a11ea9d61588d756d9f1014c3cf0d226aedd279", symbol: "MILEI", coinGeckoId: "milei-token", decimals: 18, price: 0.01419415},                                    // Addr: 0x1a11ea9d61588d756d9f1014c3cf0d226aedd279, Notional: 2092.9481379619056
-		{chain: 2, addr: "0000000000000000000000001a3496c18d558bd9c6c8f609e1b129f67ab08163", symbol: "DEP", coinGeckoId: "deapcoin", decimals: 18, price: 0.00118359},                                         // Addr: 0x1a3496c18d558bd9c6c8f609e1b129f67ab08163, Notional: 0.00118359
-		{chain: 2, addr: "0000000000000000000000001a6658f40e51b372e593b7d2144c1402d5cf33e8", symbol: "PUBLX", coinGeckoId: "publc", decimals: 18, price: 0.00016884},                                          // Addr: 0x1a6658f40e51b372e593b7d2144c1402d5cf33e8, Notional: 3746.7703651587153
-		{chain: 2, addr: "0000000000000000000000001a7e4e63778b4f12a199c062f3efdd288afcbce8", symbol: "agEUR", coinGeckoId: "ageur", decimals: 18, price: 1.14},                                                // Addr: 0x1a7e4e63778b4f12a199c062f3efdd288afcbce8, Notional: 22158.809017264197
-		{chain: 2, addr: "0000000000000000000000001abaea1f7c830bd89acc67ec4af516284b1bc33c", symbol: "EUROC", coinGeckoId: "euro-coin", decimals: 6, price: 1.14},                                             // Addr: 0x1abaea1f7c830bd89acc67ec4af516284b1bc33c, Notional: 1.7243411999999998
-		{chain: 2, addr: "0000000000000000000000001c4853ec0d55e420002c5efabc7ed8e0ba7a4121", symbol: "Okinami", coinGeckoId: "kanagawa-nami", decimals: 9, price: 0.00060964},                                 // Addr: 0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121, Notional: 7.398673831190873
-		{chain: 2, addr: "0000000000000000000000001c48f86ae57291f7686349f12601910bd8d470bb", symbol: "USDK", coinGeckoId: "usdk", decimals: 18, price: 0.999286},                                              // Addr: 0x1c48f86ae57291f7686349f12601910bd8d470bb, Notional: 2824.6273340508883
-		{chain: 2, addr: "0000000000000000000000001c98b54d673c026c8286badca3e840aaf72931a3", symbol: "STSW", coinGeckoId: "stackswap", decimals: 6, price: 0.00928604},                                        // Addr: 0x1c98b54d673c026c8286badca3e840aaf72931a3, Notional: 464.3948604
-		{chain: 2, addr: "0000000000000000000000001cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a", symbol: "WAVES", coinGeckoId: "waves", decimals: 18, price: 1.095},                                               // Addr: 0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a, Notional: 1.12347
-		{chain: 2, addr: "0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c", symbol: "BNT", coinGeckoId: "bancor", decimals: 18, price: 0.65659},                                              // Addr: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c, Notional: 6.5659
-		{chain: 2, addr: "0000000000000000000000001f7e5118521b550bb1a9b435727c003eb033fc51", symbol: "AGLA", coinGeckoId: "angola", decimals: 18, price: 0.00111459},                                          // Addr: 0x1f7e5118521b550bb1a9b435727c003eb033fc51, Notional: 1616.1554999999998
-		{chain: 2, addr: "0000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f984", symbol: "UNI", coinGeckoId: "uniswap", decimals: 18, price: 6.64},                                                // Addr: 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984, Notional: 412108.9871947936
-		{chain: 2, addr: "0000000000000000000000001fee5588cb1de19c70b6ad5399152d8c643fae7b", symbol: "PHTK", coinGeckoId: "phuntoken", decimals: 18, price: 0.0012749},                                        // Addr: 0x1fee5588cb1de19c70b6ad5399152d8c643fae7b, Notional: 1.2749000000000001
-		{chain: 2, addr: "00000000000000000000000020a62aca58526836165ca53fe67dd884288c8abf", symbol: "RNB", coinGeckoId: "rentible", decimals: 18, price: 0.03536039},                                         // Addr: 0x20a62aca58526836165ca53fe67dd884288c8abf, Notional: 3274.952482458028
-		{chain: 2, addr: "00000000000000000000000020e7125677311fca903a8897042b9983f22ea295", symbol: "FWT", coinGeckoId: "freeway", decimals: 18, price: 0.00000367},                                          // Addr: 0x20e7125677311fca903a8897042b9983f22ea295, Notional: 0.0002133044214759
-		{chain: 2, addr: "00000000000000000000000021381e026ad6d8266244f2a583b35f9e4413fa2a", symbol: "FORM", coinGeckoId: "formation-fi", decimals: 18, price: 0.00013867},                                    // Addr: 0x21381e026ad6d8266244f2a583b35f9e4413fa2a, Notional: 48.44154661175332
-		{chain: 2, addr: "00000000000000000000000021bfbda47a0b4b5b1248c767ee49f7caa9b23697", symbol: "OVR", coinGeckoId: "ovr", decimals: 18, price: 0.106057},                                                // Addr: 0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697, Notional: 15.90855
-		{chain: 2, addr: "000000000000000000000000221657776846890989a759ba2973e427dff5c9bb", symbol: "REPv2", coinGeckoId: "augur", decimals: 18, price: 0.764708},                                            // Addr: 0x221657776846890989a759ba2973e427dff5c9bb, Notional: 0.764708
-		{chain: 2, addr: "0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599", symbol: "WBTC", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                      // Addr: 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599, Notional: 395428219.6978308
-		{chain: 2, addr: "00000000000000000000000022c5543d1a35178cb03b33f929a959145e538532", symbol: "WAL", coinGeckoId: "the-wasted-lands", decimals: 18, price: 0.00001332},                                 // Addr: 0x22c5543d1a35178cb03b33f929a959145e538532, Notional: 0.0175809584688408
-		{chain: 2, addr: "00000000000000000000000022fc5a29bd3d6cce19a06f844019fd506fce4455", symbol: "ePendle", coinGeckoId: "equilibria-finance-ependle", decimals: 18, price: 2.61},                         // Addr: 0x22fc5a29bd3d6cce19a06f844019fd506fce4455, Notional: 5194.557357705899
-		{chain: 2, addr: "0000000000000000000000002370f9d504c7a6e775bf6e14b3f12846b594cd53", symbol: "JPYC", coinGeckoId: "jpyc", decimals: 18, price: 0.00705277},                                            // Addr: 0x2370f9d504c7a6e775bf6e14b3f12846b594cd53, Notional: 7.05277
-		{chain: 2, addr: "00000000000000000000000024249b5a869a445c9b0ce269a08d73c618df9d21", symbol: "ETHEREUM", coinGeckoId: "harrypottertrumphomersimpson777inu", decimals: 8, price: 0.00014102},           // Addr: 0x24249b5a869a445c9b0ce269a08d73c618df9d21, Notional: 0.690998
-		{chain: 2, addr: "000000000000000000000000249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b", symbol: "UFO", coinGeckoId: "ufo-gaming", decimals: 18, price: 2.69473e-7},                                       // Addr: 0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b, Notional: 8.206126324218681
-		{chain: 2, addr: "000000000000000000000000255f1b39172f65dc6406b8bee8b08155c45fe1b6", symbol: "HARAMBE", coinGeckoId: "harambecoin", decimals: 18, price: 1.9964e-7},                                   // Addr: 0x255f1b39172f65dc6406b8bee8b08155c45fe1b6, Notional: 34356.09402978447
-		{chain: 2, addr: "00000000000000000000000025722cd432d02895d9be45f5deb60fc479c8781e", symbol: "SPONGE", coinGeckoId: "sponge-f08b2fe4-9d9c-47c3-b5a0-84c2ac3bbbff", decimals: 18, price: 0.00000857},   // Addr: 0x25722cd432d02895d9be45f5deb60fc479c8781e, Notional: 0.30148099655937194
-		{chain: 2, addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 161416.88837215846
-		{chain: 2, addr: "00000000000000000000000025cbb21a9da7c3c63bb77ccca5b2e2482aedb710", symbol: "HOBA", coinGeckoId: "honey-badger-2", decimals: 9, price: 0.08294},                                      // Addr: 0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710, Notional: 16872.093279250494
-		{chain: 2, addr: "00000000000000000000000027702a26126e0b3702af63ee09ac4d1a084ef628", symbol: "ALEPH", coinGeckoId: "aleph", decimals: 18, price: 0.058575},                                            // Addr: 0x27702a26126e0b3702af63ee09ac4d1a084ef628, Notional: 407809.91345583944
-		{chain: 2, addr: "0000000000000000000000002781246fe707bb15cee3e5ea354e2154a2877b16", symbol: "EL", coinGeckoId: "elysia", decimals: 18, price: 0.00426188},                                            // Addr: 0x2781246fe707bb15cee3e5ea354e2154a2877b16, Notional: 74069.09083632007
-		{chain: 2, addr: "0000000000000000000000002ad9addd0d97ec3cdba27f92bf6077893b76ab0b", symbol: "PLANET", coinGeckoId: "planet-token", decimals: 18, price: 8.22746e-7},                                  // Addr: 0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b, Notional: 30293.020265458716
-		{chain: 2, addr: "0000000000000000000000002b591e99afe9f32eaa6214f7b7629768c40eeb39", symbol: "HEX", coinGeckoId: "hex", decimals: 8, price: 0.00199475},                                               // Addr: 0x2b591e99afe9f32eaa6214f7b7629768c40eeb39, Notional: 55.7752811991927
-		{chain: 2, addr: "0000000000000000000000002ba592f78db6436527729929aaf6c908497cb200", symbol: "CREAM", coinGeckoId: "cream-2", decimals: 18, price: 1.21},                                              // Addr: 0x2ba592f78db6436527729929aaf6c908497cb200, Notional: 12.015931983
-		{chain: 2, addr: "0000000000000000000000002c537e5624e4af88a7ae4060c022609376c8d0eb", symbol: "TRYB", coinGeckoId: "bilira", decimals: 6, price: 0.02546433},                                           // Addr: 0x2c537e5624e4af88a7ae4060c022609376c8d0eb, Notional: 170.94641182523335
-		{chain: 2, addr: "0000000000000000000000002c8ea636345a231e4b1a28f6eeb2072ed909c406", symbol: "MemElon", coinGeckoId: "meme-elon-doge-floki-2", decimals: 18, price: 2.1008e-11},                       // Addr: 0x2c8ea636345a231e4b1a28f6eeb2072ed909c406, Notional: 3.78144
-		{chain: 2, addr: "0000000000000000000000002c95d751da37a5c1d9c5a7fd465c1d50f3d96160", symbol: "WASSIE", coinGeckoId: "wassie", decimals: 18, price: 0.00000114},                                        // Addr: 0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160, Notional: 66718.8422725826
-		{chain: 2, addr: "0000000000000000000000002cb5d9fd89d48c516f11904117c57e3934f39524", symbol: "CUTE", coinGeckoId: "pepe-uwu", decimals: 18, price: 7.4528e-8},                                         // Addr: 0x2cb5d9fd89d48c516f11904117c57e3934f39524, Notional: 8607.459347780838
-		{chain: 2, addr: "0000000000000000000000002e95cea14dd384429eb3c4331b776c4cfbb6fcd9", symbol: "THN", coinGeckoId: "throne", decimals: 18, price: 0.0011378},                                            // Addr: 0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9, Notional: 0.0204804
-		{chain: 2, addr: "000000000000000000000000309627af60f0926daa6041b8279484312f2bf060", symbol: "USDB", coinGeckoId: "usd-bancor", decimals: 18, price: 4.827e-9},                                        // Addr: 0x309627af60f0926daa6041b8279484312f2bf060, Notional: 0.00000254145380547909
-		{chain: 2, addr: "00000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f", symbol: "SD", coinGeckoId: "stader", decimals: 18, price: 0.505725},                                              // Addr: 0x30d20208d987713f46dfd34ef128bb16c404d10f, Notional: 298472.4432355795
-		{chain: 2, addr: "00000000000000000000000031429d1856ad1377a8a0079410b297e1a9e214c2", symbol: "ANGLE", coinGeckoId: "angle-protocol", decimals: 18, price: 0.01506577},                                 // Addr: 0x31429d1856ad1377a8a0079410b297e1a9e214c2, Notional: 1147.6433267282182
-		{chain: 2, addr: "00000000000000000000000032353a6c91143bfd6c7d363b546e62a9a2489a20", symbol: "AGLD", coinGeckoId: "adventure-gold", decimals: 18, price: 0.815622},                                    // Addr: 0x32353a6c91143bfd6c7d363b546e62a9a2489a20, Notional: 1239.4483858511794
-		{chain: 2, addr: "00000000000000000000000032e7c8a6e920a3cf224b678112ac78fdc0fb09d1", symbol: "BOO", coinGeckoId: "boo-2", decimals: 18, price: 0.00002857},                                            // Addr: 0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1, Notional: 1.8898629731675907
-		{chain: 2, addr: "0000000000000000000000003301ee63fb29f863f2333bd4466acb46cd8323e6", symbol: "AKITA", coinGeckoId: "akita-inu", decimals: 18, price: 5.1887e-8},                                       // Addr: 0x3301ee63fb29f863f2333bd4466acb46cd8323e6, Notional: 13.020246150555776
-		{chain: 2, addr: "00000000000000000000000033349b282065b0284d756f0577fb39c158f935e6", symbol: "MPL", coinGeckoId: "maple", decimals: 18, price: 3.32},                                                  // Addr: 0x33349b282065b0284d756f0577fb39c158f935e6, Notional: 1394.9921674508
-		{chain: 2, addr: "00000000000000000000000033d0568941c0c64ff7e0fb4fba0b11bd37deed9f", symbol: "RAMP", coinGeckoId: "ramp", decimals: 18, price: 0.04574279},                                            // Addr: 0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f, Notional: 0.4574279
-		{chain: 2, addr: "00000000000000000000000033e80a92a9ea73dd02f6e732d1702d58c68388ca", symbol: "XB", coinGeckoId: "xbanking", decimals: 2, price: 0.04120913},                                           // Addr: 0x33e80a92a9ea73dd02f6e732d1702d58c68388ca, Notional: 547.0512007499999
-		{chain: 2, addr: "00000000000000000000000033f391f4c4fe802b70b77ae37670037a92114a7c", symbol: "BURP", coinGeckoId: "burp", decimals: 18, price: 0.00013519},                                            // Addr: 0x33f391f4c4fe802b70b77ae37670037a92114a7c, Notional: 0.21550065435646773
-		{chain: 2, addr: "0000000000000000000000003432b6a60d23ca0dfca7761b7ab56459d9c964d0", symbol: "FXS", coinGeckoId: "frax-share", decimals: 18, price: 2.75},                                             // Addr: 0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0, Notional: 280135.66473730747
-		{chain: 2, addr: "0000000000000000000000003506424f91fd33084466f402d5d97f05f8e3b4af", symbol: "CHZ", coinGeckoId: "chiliz", decimals: 18, price: 0.03863906},                                           // Addr: 0x3506424f91fd33084466f402d5d97f05f8e3b4af, Notional: 13807.233126385298
-		{chain: 2, addr: "000000000000000000000000354c8cda7e3b737d360513a0dc5abcee8ee1cea3", symbol: "BABYTRUMP", coinGeckoId: "babytrump", decimals: 18, price: 0.0032246},                                   // Addr: 0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3, Notional: 25462.195097680527
-		{chain: 2, addr: "0000000000000000000000003593d125a4f7849a1b059e64f4517a86dd60c95d", symbol: "OM", coinGeckoId: "mantra-dao", decimals: 18, price: 0.300949},                                          // Addr: 0x3593d125a4f7849a1b059e64f4517a86dd60c95d, Notional: 4611.867645958717
-		{chain: 2, addr: "000000000000000000000000362bc847a3a9637d3af6624eec853618a43ed7d2", symbol: "PRQ", coinGeckoId: "parsiq", decimals: 18, price: 0.02290444},                                           // Addr: 0x362bc847a3a9637d3af6624eec853618a43ed7d2, Notional: 27.96983986588168
-		{chain: 2, addr: "000000000000000000000000368c5290b13caa10284db58b4ad4f3e9ee8bf4c9", symbol: "KKO", coinGeckoId: "kineko", decimals: 18, price: 0.0001405},                                            // Addr: 0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9, Notional: 0.142672203142895
-		{chain: 2, addr: "000000000000000000000000383518188c0c6d7730d91b2c03a03c837814a899", symbol: "OHM", coinGeckoId: "olympus-v1", decimals: 9, price: 113.46},                                            // Addr: 0x383518188c0c6d7730d91b2c03a03c837814a899, Notional: 5.673
-		{chain: 2, addr: "0000000000000000000000003845badade8e6dff049820680d1f14bd3903a5d0", symbol: "SAND", coinGeckoId: "the-sandbox", decimals: 18, price: 0.282032},                                       // Addr: 0x3845badade8e6dff049820680d1f14bd3903a5d0, Notional: 27206.695685878698
-		{chain: 2, addr: "000000000000000000000000389999216860ab8e0175387a0c90e5c52522c945", symbol: "FEG", coinGeckoId: "feg-token", decimals: 9, price: 4.3253e-11},                                         // Addr: 0x389999216860ab8e0175387a0c90e5c52522c945, Notional: 0.4065782008477598
-		{chain: 2, addr: "00000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de93", symbol: "MUBI", coinGeckoId: "multibit", decimals: 18, price: 0.00499869},                                        // Addr: 0x38e382f74dfb84608f3c1f10187f6bef5951de93, Notional: 223.55921811773248
-		{chain: 2, addr: "000000000000000000000000394a16744dcd805bb0ca7252e70691f0dcac56aa", symbol: "TRZ", coinGeckoId: "trazable", decimals: 18, price: 0.00049245},                                         // Addr: 0x394a16744dcd805bb0ca7252e70691f0dcac56aa, Notional: 22.968633936800547
-		{chain: 2, addr: "0000000000000000000000003a856d4effa670c54585a5d523e96513e148e95d", symbol: "TRIAS", coinGeckoId: "trias-token", decimals: 18, price: 1.082},                                         // Addr: 0x3a856d4effa670c54585a5d523e96513e148e95d, Notional: 74.89161374358001
-		{chain: 2, addr: "0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0", symbol: "SOS", coinGeckoId: "opendao", decimals: 18, price: 2.889e-9},                                            // Addr: 0x3b484b82567a09e2588a13d54d032153f0c0aee0, Notional: 2.4079712362343746
-		{chain: 2, addr: "0000000000000000000000003d2b66bc4f9d6388bd2d97b95b565be1686aefb3", symbol: "LAMBO", coinGeckoId: "lambo-0fcbf0f7-1a8f-470d-ba09-797d5e95d836", decimals: 18, price: 1e-18},          // Addr: 0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3, Notional: 1.62256681646345e-12
-		{chain: 2, addr: "0000000000000000000000003d371413dd5489f3a04c07c0c2ce369c20986ceb", symbol: "YOUC", coinGeckoId: "youcash", decimals: 10, price: 0.088049},                                           // Addr: 0x3d371413dd5489f3a04c07c0c2ce369c20986ceb, Notional: 2175.3365802163526
-		{chain: 2, addr: "0000000000000000000000003e70f6806171873d17d4bfc984a6f9d20f5a9018", symbol: "COIN", coinGeckoId: "brianarmstrongtrumpyellen", decimals: 18, price: 0.00007689},                       // Addr: 0x3e70f6806171873d17d4bfc984a6f9d20f5a9018, Notional: 130.06461530583718
-		{chain: 2, addr: "0000000000000000000000003e9bc21c9b189c09df3ef1b824798658d5011937", symbol: "LINA", coinGeckoId: "linear", decimals: 18, price: 0.00009202},                                          // Addr: 0x3e9bc21c9b189c09df3ef1b824798658d5011937, Notional: 0.180530417192439
-		{chain: 2, addr: "00000000000000000000000040d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817", symbol: "GOLD", coinGeckoId: "golden-goose", decimals: 18, price: 0.00006201},                                    // Addr: 0x40d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817, Notional: 0.000045419224500000004
-		{chain: 2, addr: "00000000000000000000000041e5560054824ea6b0732e656e3ad64e20e94e45", symbol: "CVC", coinGeckoId: "civic", decimals: 8, price: 0.112553},                                               // Addr: 0x41e5560054824ea6b0732e656e3ad64e20e94e45, Notional: 22.5106
-		{chain: 2, addr: "000000000000000000000000420412e765bfa6d85aaac94b4f7b708c89be2e2b", symbol: "BRZ", coinGeckoId: "brz", decimals: 4, price: 0.178599},                                                 // Addr: 0x420412e765bfa6d85aaac94b4f7b708c89be2e2b, Notional: 18.217098
-		{chain: 2, addr: "00000000000000000000000042069d11a2cc72388a2e06210921e839cfbd3280", symbol: "GNOME", coinGeckoId: "gnomeland", decimals: 18, price: 0.00016284},                                      // Addr: 0x42069d11a2cc72388a2e06210921e839cfbd3280, Notional: 182.5150802607524
-		{chain: 2, addr: "000000000000000000000000423f4e6138e475d85cf7ea071ac92097ed631eea", symbol: "PNDC", coinGeckoId: "pond-coin", decimals: 18, price: 3.9983e-8},                                        // Addr: 0x423f4e6138e475d85cf7ea071ac92097ed631eea, Notional: 3.109450546140026
-		{chain: 2, addr: "000000000000000000000000427a03fb96d9a94a6727fbcfbba143444090dd64", symbol: "PIXL", coinGeckoId: "sappy-seals-pixl", decimals: 18, price: 0.0442364},                                 // Addr: 0x427a03fb96d9a94a6727fbcfbba143444090dd64, Notional: 0.48660040000000004
-		{chain: 2, addr: "0000000000000000000000004295c8556afee00264c0789dde2ddd2dba71acfe", symbol: "BISC", coinGeckoId: "bidao-smart-chain", decimals: 18, price: 0.00009483},                               // Addr: 0x4295c8556afee00264c0789dde2ddd2dba71acfe, Notional: 95358.50079885812
-		{chain: 2, addr: "0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e", symbol: "HOTCROSS", coinGeckoId: "hot-cross", decimals: 18, price: 0.00701938},                                   // Addr: 0x4297394c20800e8a38a619a243e9bbe7681ff24e, Notional: 7.019380000000001
-		{chain: 2, addr: "000000000000000000000000436da116249044e8b4464f0cf21dd93311d88190", symbol: "ZEUM", coinGeckoId: "colizeum", decimals: 18, price: 0.00127786},                                        // Addr: 0x436da116249044e8b4464f0cf21dd93311d88190, Notional: 1277.8600000000001
-		{chain: 2, addr: "00000000000000000000000043d4a3cd90ddd2f8f4f693170c9c8098163502ad", symbol: "D2D", coinGeckoId: "prime", decimals: 18, price: 0.00348348},                                            // Addr: 0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad, Notional: 282.8991835744963
-		{chain: 2, addr: "00000000000000000000000043fe2b0c5485c10e772a1843e32a7642ace5b88c", symbol: "RPILL", coinGeckoId: "red-pill-2", decimals: 18, price: 2.01909e-7},                                     // Addr: 0x43fe2b0c5485c10e772a1843e32a7642ace5b88c, Notional: 2750.0345067553385
-		{chain: 2, addr: "0000000000000000000000004507cef57c46789ef8d1a19ea45f4216bae2b528", symbol: "TOKEN", coinGeckoId: "tokenfi", decimals: 9, price: 0.01681208},                                         // Addr: 0x4507cef57c46789ef8d1a19ea45f4216bae2b528, Notional: 1120.0608101505193
-		{chain: 2, addr: "00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf78", symbol: "PAXG", coinGeckoId: "pax-gold", decimals: 18, price: 3344.24},                                           // Addr: 0x45804880de22913dafe09f4980848ece6ecbaf78, Notional: 18907.3809886416
-		{chain: 2, addr: "000000000000000000000000464fdb8affc9bac185a7393fd4298137866dcfb8", symbol: "REALM", coinGeckoId: "realm", decimals: 18, price: 0.00016198},                                          // Addr: 0x464fdb8affc9bac185a7393fd4298137866dcfb8, Notional: 0.16197999999999999
-		{chain: 2, addr: "0000000000000000000000004674672bcddda2ea5300f5207e1158185c944bc0", symbol: "GXT", coinGeckoId: "gem-exchange-and-trading", decimals: 18, price: 0.0037661},                          // Addr: 0x4674672bcddda2ea5300f5207e1158185c944bc0, Notional: 1602257.994178785
-		{chain: 2, addr: "0000000000000000000000004691937a7508860f876c9c0a2a617e7d9e945d4b", symbol: "WOO", coinGeckoId: "woo-network", decimals: 18, price: 0.079828},                                        // Addr: 0x4691937a7508860f876c9c0a2a617e7d9e945d4b, Notional: 10.37764
-		{chain: 2, addr: "00000000000000000000000046cca329970b33e1a007dd4ef0594a1cedb3e72a", symbol: "YESP", coinGeckoId: "yesports", decimals: 18, price: 0.00008032},                                        // Addr: 0x46cca329970b33e1a007dd4ef0594a1cedb3e72a, Notional: 13.133150797952
-		{chain: 2, addr: "000000000000000000000000471ea49dd8e60e697f4cac262b5fafcc307506e4", symbol: "xcRMRK", coinGeckoId: "rmrk", decimals: 10, price: 0.093246},                                            // Addr: 0x471ea49dd8e60e697f4cac262b5fafcc307506e4, Notional: 0.09328263355602
-		{chain: 2, addr: "0000000000000000000000004730fb1463a6f1f44aeb45f6c5c422427f37f4d0", symbol: "FOUR", coinGeckoId: "the-4th-pillar", decimals: 18, price: 0.0002352},                                   // Addr: 0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0, Notional: 1098.0429201152779
-		{chain: 2, addr: "0000000000000000000000004740735aa98dc8aa232bd049f8f0210458e7fca3", symbol: "RDT", coinGeckoId: "ridotto", decimals: 18, price: 0.00702535},                                          // Addr: 0x4740735aa98dc8aa232bd049f8f0210458e7fca3, Notional: 0.6355834145
-		{chain: 2, addr: "000000000000000000000000476c5e26a75bd202a9683ffd34359c0cc15be0ff", symbol: "SRM", coinGeckoId: "serum", decimals: 6, price: 0.01616937},                                             // Addr: 0x476c5e26a75bd202a9683ffd34359c0cc15be0ff, Notional: 50447.06813447939
-		{chain: 2, addr: "000000000000000000000000485d17a6f1b8780392d53d64751824253011a260", symbol: "TIME", coinGeckoId: "chronobank", decimals: 8, price: 12},                                               // Addr: 0x485d17a6f1b8780392d53d64751824253011a260, Notional: 10.8
-		{chain: 2, addr: "000000000000000000000000490e3f4af13e1616ec97a8c6600c1061a8d0253e", symbol: "TRR", coinGeckoId: "terran-coin", decimals: 18, price: 0.00086435},                                      // Addr: 0x490e3f4af13e1616ec97a8c6600c1061a8d0253e, Notional: 2.2905275
-		{chain: 2, addr: "0000000000000000000000004a220e6096b25eadb88358cb44068a3248254675", symbol: "QNT", coinGeckoId: "quant-network", decimals: 18, price: 124.68},                                        // Addr: 0x4a220e6096b25eadb88358cb44068a3248254675, Notional: 6.234000000000001
-		{chain: 2, addr: "0000000000000000000000004b1e80cac91e2216eeb63e29b957eb91ae9c2be8", symbol: "JUP", coinGeckoId: "jupiter", decimals: 18, price: 0.0006665},                                           // Addr: 0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8, Notional: 26.12784747429261
-		{chain: 2, addr: "0000000000000000000000004bd70556ae3f8a6ec6c4080a0c327b24325438f3", symbol: "HXRO", coinGeckoId: "hxro", decimals: 18, price: 0.00214018},                                            // Addr: 0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3, Notional: 1484974.1344998456
-		{chain: 2, addr: "0000000000000000000000004c9edd5852cd905f086c759e8383e09bff1e68b3", symbol: "USDe", coinGeckoId: "ethena-usde", decimals: 18, price: 1.001},                                          // Addr: 0x4c9edd5852cd905f086c759e8383e09bff1e68b3, Notional: 25.025
-		{chain: 2, addr: "0000000000000000000000004d224452801aced8b2f0aebe155379bb5d594381", symbol: "APE", coinGeckoId: "apecoin", decimals: 18, price: 0.715966},                                            // Addr: 0x4d224452801aced8b2f0aebe155379bb5d594381, Notional: 59.71087738050538
-		{chain: 2, addr: "0000000000000000000000004da34f8264cb33a5c9f17081b9ef5ff6091116f4", symbol: "ELFI", coinGeckoId: "elyfi", decimals: 18, price: 0.00679054},                                           // Addr: 0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4, Notional: 121764.37943608206
-		{chain: 2, addr: "0000000000000000000000004e15361fd6b4bb609fa63c81a2be19d873717870", symbol: "FTM", coinGeckoId: "wrapped-fantom", decimals: 18, price: 0.386855},                                     // Addr: 0x4e15361fd6b4bb609fa63c81a2be19d873717870, Notional: 4229.014020447004
-		{chain: 2, addr: "0000000000000000000000004ec1b60b96193a64acae44778e51f7bff2007831", symbol: "EDGE", coinGeckoId: "edge", decimals: 18, price: 0.747511},                                              // Addr: 0x4ec1b60b96193a64acae44778e51f7bff2007831, Notional: 9.168719315462141
-		{chain: 2, addr: "0000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c53", symbol: "BUSD", coinGeckoId: "binance-usd", decimals: 18, price: 0.992597},                                       // Addr: 0x4fabb145d64652a948d72533023f6e7a623c7c53, Notional: 15084.169951590588
-		{chain: 2, addr: "00000000000000000000000050b806c5fe274c07e46b96be8c68d2fd2d9597b4", symbol: "$TUCKER", coinGeckoId: "tucker-carlson", decimals: 18, price: 3.58926e-7},                               // Addr: 0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4, Notional: 162.0390598917068
-		{chain: 2, addr: "00000000000000000000000050d1c9771902476076ecfc8b2a83ad6b9355a4c9", symbol: "FTX Token", coinGeckoId: "ftx-token", decimals: 18, price: 0.965896},                                    // Addr: 0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9, Notional: 231201.29433206373
-		{chain: 2, addr: "000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", symbol: "LINK", coinGeckoId: "chainlink", decimals: 18, price: 14.06},                                            // Addr: 0x514910771af9ca656af840dff83e8264ecf986ca, Notional: 279518.09198434796
-		{chain: 2, addr: "00000000000000000000000051fe2e572e97bfeb1d719809d743ec2675924edc", symbol: "VPAD", coinGeckoId: "vlaunch", decimals: 18, price: 0.08336},                                            // Addr: 0x51fe2e572e97bfeb1d719809d743ec2675924edc, Notional: 8.119264000000001
-		{chain: 2, addr: "00000000000000000000000052284158e02425290f6b627aeb5fff65edf058ad", symbol: "FMB", coinGeckoId: "flappymoonbird", decimals: 18, price: 0.00813124},                                   // Addr: 0x52284158e02425290f6b627aeb5fff65edf058ad, Notional: 25052.908871576405
-		{chain: 2, addr: "00000000000000000000000054012cdf4119de84218f7eb90eeb87e25ae6ebd7", symbol: "LUFFY", coinGeckoId: "luffy-inu", decimals: 9, price: 0.00003458},                                       // Addr: 0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7, Notional: 61951.12843266858
-		{chain: 2, addr: "0000000000000000000000005483dc6abda5f094865120b2d251b5744fc2ecb5", symbol: "TPAD", coinGeckoId: "taopad", decimals: 18, price: 0.04584361},                                          // Addr: 0x5483dc6abda5f094865120b2d251b5744fc2ecb5, Notional: 16.472379220892453
-		{chain: 2, addr: "0000000000000000000000005488eff1976e4a56b4255e926d419a7054df196a", symbol: "CITTY", coinGeckoId: "citty-meme-coin", decimals: 18, price: 0.00332339},                                // Addr: 0x5488eff1976e4a56b4255e926d419a7054df196a, Notional: 831.2264061060487
-		{chain: 2, addr: "00000000000000000000000056015bbe3c01fe05bc30a8a9a9fd9a88917e7db3", symbol: "CAT", coinGeckoId: "cat-token", decimals: 18, price: 0.01905896},                                        // Addr: 0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3, Notional: 38.11792
-		{chain: 2, addr: "000000000000000000000000569d0e52c3dbe95983bcc2434cb9f69d905be919", symbol: "roar", coinGeckoId: "roaring-kitty", decimals: 9, price: 0.00004778},                                    // Addr: 0x569d0e52c3dbe95983bcc2434cb9f69d905be919, Notional: 617.1255583788598
-		{chain: 2, addr: "00000000000000000000000056b4f8c39e07d4d5d91692acf9d0f6d4d3493763", symbol: "TRISM", coinGeckoId: "trism", decimals: 18, price: 0.00052052},                                          // Addr: 0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763, Notional: 34.40442272422356
-		{chain: 2, addr: "000000000000000000000000576e2bed8f7b46d34016198911cdf9886f78bea7", symbol: "TRUMP", coinGeckoId: "maga", decimals: 9, price: 0.160301},                                              // Addr: 0x576e2bed8f7b46d34016198911cdf9886f78bea7, Notional: 1144790.2328934213
-		{chain: 2, addr: "000000000000000000000000582d872a1b094fc48f5de31d3b73f2d9be47def1", symbol: "TONCOIN", coinGeckoId: "the-open-network", decimals: 9, price: 3.3},                                     // Addr: 0x582d872a1b094fc48f5de31d3b73f2d9be47def1, Notional: 51539.934697086
-		{chain: 2, addr: "00000000000000000000000058b6a8a3302369daec383334672404ee733ab239", symbol: "LPT", coinGeckoId: "livepeer", decimals: 18, price: 7.7},                                                // Addr: 0x58b6a8a3302369daec383334672404ee733ab239, Notional: 15.855896903000001
-		{chain: 2, addr: "00000000000000000000000058cb30368ceb2d194740b144eab4c2da8a917dcb", symbol: "ZYN", coinGeckoId: "zyncoin-2", decimals: 18, price: 0.00749971},                                        // Addr: 0x58cb30368ceb2d194740b144eab4c2da8a917dcb, Notional: 648818.6555154728
-		{chain: 2, addr: "000000000000000000000000594daad7d77592a2b97b725a7ad59d7e188b5bfa", symbol: "APU", coinGeckoId: "apu-s-club", decimals: 18, price: 0.00021503},                                       // Addr: 0x594daad7d77592a2b97b725a7ad59d7e188b5bfa, Notional: 420123.60953533766
-		{chain: 2, addr: "000000000000000000000000595832f8fc6bf59c85c527fec3740a1b7a361269", symbol: "POWR", coinGeckoId: "power-ledger", decimals: 6, price: 0.167266},                                       // Addr: 0x595832f8fc6bf59c85c527fec3740a1b7a361269, Notional: 1589.027
-		{chain: 2, addr: "00000000000000000000000059f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", symbol: "CAT", coinGeckoId: "catcoin-cash", decimals: 9, price: 8.6928e-11},                                      // Addr: 0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a, Notional: 10.839418539616055
-		{chain: 2, addr: "0000000000000000000000005a98fcbea516cf06857215779fd812ca3bef1b32", symbol: "LDO", coinGeckoId: "lido-dao", decimals: 18, price: 0.838962},                                           // Addr: 0x5a98fcbea516cf06857215779fd812ca3bef1b32, Notional: 390566.0858406615
-		{chain: 2, addr: "0000000000000000000000005b52bfb8062ce664d74bbcd4cd6dc7df53fd7233", symbol: "ZENIQ", coinGeckoId: "zeniq", decimals: 18, price: 0.00345158},                                          // Addr: 0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233, Notional: 0.9407455272412427
-		{chain: 2, addr: "0000000000000000000000005de8ab7e27f6e7a1fff3e5b337584aa43961beef", symbol: "SDEX", coinGeckoId: "smardex", decimals: 18, price: 0.00550218},                                         // Addr: 0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef, Notional: 4954957.881326053
-		{chain: 2, addr: "0000000000000000000000005eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e", symbol: "VPP", coinGeckoId: "virtue-poker", decimals: 18, price: 0.00041972},                                     // Addr: 0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e, Notional: 0.041972
-		{chain: 2, addr: "0000000000000000000000005f48d1fd6814cd1cd38aeb895755e57d519196d1", symbol: "WINS", coinGeckoId: "wins", decimals: 18, price: 0.02993747},                                            // Addr: 0x5f48d1fd6814cd1cd38aeb895755e57d519196d1, Notional: 2984938.82751407
-		{chain: 2, addr: "0000000000000000000000005f944b0c4315cb7c3a846b025ab4045da44abf6c", symbol: "GCAKE", coinGeckoId: "pancake-games", decimals: 18, price: 4.2708e-8},                                   // Addr: 0x5f944b0c4315cb7c3a846b025ab4045da44abf6c, Notional: 0.03193552388908669
-		{chain: 2, addr: "0000000000000000000000005f98805a4e8be255a32880fdec7f6728c6568ba0", symbol: "LUSD", coinGeckoId: "liquity-usd", decimals: 18, price: 1.001},                                          // Addr: 0x5f98805a4e8be255a32880fdec7f6728c6568ba0, Notional: 2.002
-		{chain: 2, addr: "0000000000000000000000005fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b", symbol: "DIMO", coinGeckoId: "dimo", decimals: 18, price: 0.060256},                                              // Addr: 0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b, Notional: 0.662816
-		{chain: 2, addr: "0000000000000000000000006149c26cd2f7b5ccdb32029af817123f6e37df5b", symbol: "LPOOL", coinGeckoId: "launchpool", decimals: 18, price: 0.00262392},                                     // Addr: 0x6149c26cd2f7b5ccdb32029af817123f6e37df5b, Notional: 0.00262392
-		{chain: 2, addr: "000000000000000000000000614da3b37b6f66f7ce69b4bbbcf9a55ce6168707", symbol: "MMX", coinGeckoId: "m2-global-wealth-limited-mmx", decimals: 18, price: 0.171239},                       // Addr: 0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707, Notional: 32138.6078691406
-		{chain: 2, addr: "00000000000000000000000062d0a8458ed7719fdaf978fe5929c6d342b0bfce", symbol: "BEAM", coinGeckoId: "beam-2", decimals: 18, price: 0.00651586},                                          // Addr: 0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce, Notional: 6.722242916530787
-		{chain: 2, addr: "00000000000000000000000064df3aab3b21cc275bb76c4a581cf8b726478ee0", symbol: "CRAMER", coinGeckoId: "cramer-coin", decimals: 18, price: 0.00018529},                                   // Addr: 0x64df3aab3b21cc275bb76c4a581cf8b726478ee0, Notional: 8186.739028787548
-		{chain: 2, addr: "00000000000000000000000065e6b60ea01668634d68d0513fe814679f925bad", symbol: "PIXEL", coinGeckoId: "pixelverse", decimals: 18, price: 0.00010577},                                     // Addr: 0x65e6b60ea01668634d68d0513fe814679f925bad, Notional: 13814.904789760658
-		{chain: 2, addr: "00000000000000000000000065ef703f5594d2573eb71aaf55bc0cb548492df4", symbol: "MULTI", coinGeckoId: "multichain", decimals: 18, price: 0.603485},                                       // Addr: 0x65ef703f5594d2573eb71aaf55bc0cb548492df4, Notional: 1034.4925574164533
-		{chain: 2, addr: "000000000000000000000000667102bd3413bfeaa3dffb48fa8288819e480a88", symbol: "TKX", coinGeckoId: "tokenize-xchange", decimals: 8, price: 31.34},                                       // Addr: 0x667102bd3413bfeaa3dffb48fa8288819e480a88, Notional: 59769.4495823644
-		{chain: 2, addr: "000000000000000000000000667210a731447f8b385e068205759be2311b86d4", symbol: "ETF", coinGeckoId: "etf-the-token", decimals: 18, price: 0.00303291},                                    // Addr: 0x667210a731447f8b385e068205759be2311b86d4, Notional: 1794.7913399078777
-		{chain: 2, addr: "00000000000000000000000066c0dded8433c9ea86c8cf91237b14e10b4d70b7", symbol: "Mars", coinGeckoId: "mars", decimals: 18, price: 0.00001099},                                            // Addr: 0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7, Notional: 1.6091451120982851
-		{chain: 2, addr: "0000000000000000000000006731827cb6879a2091ce3ab3423f7bf20539b579", symbol: "MPWR", coinGeckoId: "clubrare-empower", decimals: 18, price: 0.00002283},                                // Addr: 0x6731827cb6879a2091ce3ab3423f7bf20539b579, Notional: 0.00004566
-		{chain: 2, addr: "0000000000000000000000006781a0f84c7e9e846dcb84a9a5bd49333067b104", symbol: "ZAP", coinGeckoId: "zap", decimals: 18, price: 0.00105042},                                              // Addr: 0x6781a0f84c7e9e846dcb84a9a5bd49333067b104, Notional: 400.24670218710355
-		{chain: 2, addr: "00000000000000000000000067f4c72a50f8df6487720261e188f2abe83f57d7", symbol: "wPOKT", coinGeckoId: "wrapped-pokt", decimals: 6, price: 0.04657028},                                    // Addr: 0x67f4c72a50f8df6487720261e188f2abe83f57d7, Notional: 0.97797588
-		{chain: 2, addr: "00000000000000000000000068bbed6a47194eff1cf514b50ea91895597fc91e", symbol: "ANDY", coinGeckoId: "andy-the-wisguy", decimals: 18, price: 0.00005446},                                 // Addr: 0x68bbed6a47194eff1cf514b50ea91895597fc91e, Notional: 95.25800685844747
-		{chain: 2, addr: "0000000000000000000000006911f552842236bd9e8ea8ddbb3fb414e2c5fa9d", symbol: "SNP", coinGeckoId: "synapse-network", decimals: 18, price: 0.00531536},                                  // Addr: 0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d, Notional: 21.5857098436341
-		{chain: 2, addr: "0000000000000000000000006982508145454ce325ddbe47a25d4ec3d2311933", symbol: "PEPE", coinGeckoId: "pepe", decimals: 18, price: 0.00001198},                                            // Addr: 0x6982508145454ce325ddbe47a25d4ec3d2311933, Notional: 49625.59699390448
-		{chain: 2, addr: "00000000000000000000000069a95185ee2a045cdc4bcd1b1df10710395e4e23", symbol: "POOLZ", coinGeckoId: "poolz-finance", decimals: 18, price: 0.01530995},                                  // Addr: 0x69a95185ee2a045cdc4bcd1b1df10710395e4e23, Notional: 0.1347581799
-		{chain: 2, addr: "00000000000000000000000069b14e8d3cebfdd8196bfe530954a0c226e5008e", symbol: "SpacePi", coinGeckoId: "spacepi-token", decimals: 9, price: 9.25369e-10},                                // Addr: 0x69b14e8d3cebfdd8196bfe530954a0c226e5008e, Notional: 147.85526816700275
-		{chain: 2, addr: "0000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f", symbol: "ShibDoge", coinGeckoId: "shibadoge", decimals: 9, price: 2.1e-17},                                       // Addr: 0x6adb2e268de2aa1abf6578e4a8119b960e02928f, Notional: 4.944393038129999e-7
-		{chain: 2, addr: "0000000000000000000000006b0b3a982b4634ac68dd83a4dbf02311ce324181", symbol: "ALI", coinGeckoId: "alethea-artificial-liquid-intelligence-token", decimals: 18, price: 0.00603798},     // Addr: 0x6b0b3a982b4634ac68dd83a4dbf02311ce324181, Notional: 199143.54499974925
-		{chain: 2, addr: "0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                                // Addr: 0x6b175474e89094c44da98b954eedeac495271d0f, Notional: 2239799.3533751965
-		{chain: 2, addr: "0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2", symbol: "SUSHI", coinGeckoId: "sushi", decimals: 18, price: 0.671409},                                            // Addr: 0x6b3595068778dd592e39a122f4f5a5cf09c90fe2, Notional: 22369.439568367306
-		{chain: 2, addr: "0000000000000000000000006b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611", symbol: "MM", coinGeckoId: "million", decimals: 18, price: 1.042},                                                // Addr: 0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611, Notional: 19827.8725992467
-		{chain: 2, addr: "0000000000000000000000006b66ccd1340c479b07b390d326eadcbb84e726ba", symbol: "SEAM", coinGeckoId: "seamless-protocol", decimals: 18, price: 0.43519},                                  // Addr: 0x6b66ccd1340c479b07b390d326eadcbb84e726ba, Notional: 4.3519000000000005
-		{chain: 2, addr: "0000000000000000000000006b89b97169a797d94f057f4a0b01e2ca303155e4", symbol: "CHAD", coinGeckoId: "chad-coin", decimals: 18, price: 0.00000149},                                       // Addr: 0x6b89b97169a797d94f057f4a0b01e2ca303155e4, Notional: 13105.942937190226
-		{chain: 2, addr: "0000000000000000000000006c5ba91642f10282b576d91922ae6448c9d52f4e", symbol: "PHA", coinGeckoId: "pha", decimals: 18, price: 0.123873},                                                // Addr: 0x6c5ba91642f10282b576d91922ae6448c9d52f4e, Notional: 109962.48163624383
-		{chain: 2, addr: "0000000000000000000000006de037ef9ad2725eb40118bb1702ebb27e4aeb24", symbol: "RNDR", coinGeckoId: "render-token", decimals: 18, price: 3.99},                                          // Addr: 0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24, Notional: 1469822496.1326406
-		{chain: 2, addr: "0000000000000000000000006e9730ecffbed43fd876a264c982e254ef05a0de", symbol: "NORD", coinGeckoId: "nord-finance", decimals: 18, price: 0.00430416},                                    // Addr: 0x6e9730ecffbed43fd876a264c982e254ef05a0de, Notional: 0.0430416
-		{chain: 2, addr: "0000000000000000000000006ec8a24cabdc339a06a172f8223ea557055adaa5", symbol: "GNX", coinGeckoId: "genaro-network", decimals: 9, price: 0.00006251},                                    // Addr: 0x6ec8a24cabdc339a06a172f8223ea557055adaa5, Notional: 0.10689209999999999
-		{chain: 2, addr: "0000000000000000000000006fc13eace26590b80cccab1ba5d51890577d83b2", symbol: "UMB", coinGeckoId: "umbrella-network", decimals: 18, price: 0.0021467},                                  // Addr: 0x6fc13eace26590b80cccab1ba5d51890577d83b2, Notional: 0.285040851905191
-		{chain: 2, addr: "0000000000000000000000006fe2506d1ddd77c43a3eaf4c4e0f7aeb14f26765", symbol: "ORBT", coinGeckoId: "orbitt-pro", decimals: 18, price: 0.268324},                                        // Addr: 0x6fe2506d1ddd77c43a3eaf4c4e0f7aeb14f26765, Notional: 139.11928469522525
-		{chain: 2, addr: "00000000000000000000000070401dfd142a16dc7031c56e862fc88cb9537ce0", symbol: "BIRD", coinGeckoId: "bird-money", decimals: 18, price: 0.768407},                                        // Addr: 0x70401dfd142a16dc7031c56e862fc88cb9537ce0, Notional: 8.452477
-		{chain: 2, addr: "00000000000000000000000070bef3bb2f001da2fddb207dae696cd9faff3f5d", symbol: "NST", coinGeckoId: "ninja-squad", decimals: 18, price: 2.82},                                            // Addr: 0x70bef3bb2f001da2fddb207dae696cd9faff3f5d, Notional: 13152668.332464501
-		{chain: 2, addr: "00000000000000000000000070e8de73ce538da2beed35d14187f6959a8eca96", symbol: "XSGD", coinGeckoId: "xsgd", decimals: 6, price: 0.779723},                                               // Addr: 0x70e8de73ce538da2beed35d14187f6959a8eca96, Notional: 43.142599903025
-		{chain: 2, addr: "00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d57", symbol: "RAIN", coinGeckoId: "rainmaker-games", decimals: 18, price: 0.00004316},                                 // Addr: 0x71fc1f555a39e0b698653ab0b475488ec3c34d57, Notional: 5.565867097214408
-		{chain: 2, addr: "000000000000000000000000721a1b990699ee9d90b6327faad0a3e840ae8335", symbol: "LOOT", coinGeckoId: "loot", decimals: 18, price: 0.00162865},                                            // Addr: 0x721a1b990699ee9d90b6327faad0a3e840ae8335, Notional: 1.175070975
-		{chain: 2, addr: "000000000000000000000000725c263e32c72ddc3a19bea12c5a0479a81ee688", symbol: "BMI", coinGeckoId: "bridge-mutual", decimals: 18, price: 0.00333233},                                    // Addr: 0x725c263e32c72ddc3a19bea12c5a0479a81ee688, Notional: 6597.405198801448
-		{chain: 2, addr: "000000000000000000000000727f064a78dc734d33eec18d5370aef32ffd46e4", symbol: "ORION", coinGeckoId: "orion-money", decimals: 18, price: 0.00081933},                                    // Addr: 0x727f064a78dc734d33eec18d5370aef32ffd46e4, Notional: 69885.7121688999
-		{chain: 2, addr: "00000000000000000000000072b886d09c117654ab7da13a14d603001de0b777", symbol: "XDEFI", coinGeckoId: "xdefi", decimals: 18, price: 0.01496151},                                          // Addr: 0x72b886d09c117654ab7da13a14d603001de0b777, Notional: 41149.11935707381
-		{chain: 2, addr: "00000000000000000000000072e364f2abdc788b7e918bc238b21f109cd634d7", symbol: "MVI", coinGeckoId: "metaverse-index", decimals: 18, price: 17.45},                                       // Addr: 0x72e364f2abdc788b7e918bc238b21f109cd634d7, Notional: 17.6244614355
-		{chain: 2, addr: "00000000000000000000000072e4f9f808c49a2a61de9c5896298920dc4eeea9", symbol: "BITCOIN", coinGeckoId: "harrypotterobamasonic10in", decimals: 8, price: 0.071239},                       // Addr: 0x72e4f9f808c49a2a61de9c5896298920dc4eeea9, Notional: 2511972.36232702
-		{chain: 2, addr: "00000000000000000000000072e5390edb7727e3d4e3436451dadaff675dbcc0", symbol: "HANU", coinGeckoId: "hanu-yokia", decimals: 12, price: 1.41456e-7},                                      // Addr: 0x72e5390edb7727e3d4e3436451dadaff675dbcc0, Notional: 26093.87836564909
-		{chain: 2, addr: "0000000000000000000000007495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4", symbol: "ARNC", coinGeckoId: "arnoya-classic", decimals: 18, price: 0.00863912},                                  // Addr: 0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4, Notional: 2247.0264728800003
-		{chain: 2, addr: "0000000000000000000000007616113782aadab041d7b10d474f8a0c04eff258", symbol: "VEE", coinGeckoId: "zeeverse", decimals: 18, price: 0.00024779},                                         // Addr: 0x7616113782aadab041d7b10d474f8a0c04eff258, Notional: 1.23895
-		{chain: 2, addr: "000000000000000000000000761d38e5ddf6ccf6cf7c55759d5210750b5d60f3", symbol: "ELON", coinGeckoId: "dogelon-mars", decimals: 18, price: 1.27901e-7},                                    // Addr: 0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3, Notional: 23354.385790682576
-		{chain: 2, addr: "000000000000000000000000762fcf5183ae366c0629d0bcd30b40f331496d0f", symbol: "DICE", coinGeckoId: "dice-bot", decimals: 18, price: 0.00007637},                                        // Addr: 0x762fcf5183ae366c0629d0bcd30b40f331496d0f, Notional: 0.07637000000000001
-		{chain: 2, addr: "0000000000000000000000007659ce147d0e714454073a5dd7003544234b6aa0", symbol: "XCAD", coinGeckoId: "xcad-network", decimals: 18, price: 0.03980405},                                    // Addr: 0x7659ce147d0e714454073a5dd7003544234b6aa0, Notional: 993844.132269037
-		{chain: 2, addr: "000000000000000000000000766d2fcece1e3eef32aae8711ab886ee95fd5b2a", symbol: "MVP", coinGeckoId: "maga-vp", decimals: 18, price: 0.01640981},                                          // Addr: 0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a, Notional: 72656.1251883997
-		{chain: 2, addr: "000000000000000000000000767fe9edc9e0df98e07454847909b5e959d7ca0e", symbol: "ILV", coinGeckoId: "illuvium", decimals: 18, price: 12.61},                                              // Addr: 0x767fe9edc9e0df98e07454847909b5e959d7ca0e, Notional: 1.2610000000000001
-		{chain: 2, addr: "0000000000000000000000007697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a", symbol: "SARCO", coinGeckoId: "sarcophagus", decimals: 18, price: 0.00153949},                                    // Addr: 0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a, Notional: 0.1635337148244638
-		{chain: 2, addr: "00000000000000000000000076e222b07c53d28b89b0bac18602810fc22b49a8", symbol: "JOE", coinGeckoId: "joe-coin", decimals: 18, price: 0.02292823},                                         // Addr: 0x76e222b07c53d28b89b0bac18602810fc22b49a8, Notional: 710.7134665293423
-		{chain: 2, addr: "0000000000000000000000007777777777697cfeecf846a76326da79cc606517", symbol: "SIG", coinGeckoId: "xsigma", decimals: 18, price: 0.00212419},                                           // Addr: 0x7777777777697cfeecf846a76326da79cc606517, Notional: 0.21241900000000002
-		{chain: 2, addr: "00000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a44", symbol: "wTAO", coinGeckoId: "wrapped-tao", decimals: 9, price: 411.28},                                          // Addr: 0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44, Notional: 5809.511703504
-		{chain: 2, addr: "00000000000000000000000078a0a62fba6fb21a83fe8a3433d44c73a4017a6f", symbol: "OX", coinGeckoId: "open-exchange-token", decimals: 18, price: 0.00305853},                               // Addr: 0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f, Notional: 198164.11030058362
-		{chain: 2, addr: "0000000000000000000000007968bc6a03017ea2de509aaa816f163db0f35148", symbol: "HGET", coinGeckoId: "hedget", decimals: 6, price: 0.0398157},                                            // Addr: 0x7968bc6a03017ea2de509aaa816f163db0f35148, Notional: 644.4799288170847
-		{chain: 2, addr: "0000000000000000000000007a58c0be72be218b41c608b7fe7c5bb630736c71", symbol: "PEOPLE", coinGeckoId: "constitutiondao", decimals: 18, price: 0.02138422},                               // Addr: 0x7a58c0be72be218b41c608b7fe7c5bb630736c71, Notional: 16177.464316054755
-		{chain: 2, addr: "0000000000000000000000007d1afa7b718fb893db30a3abc0cfc608aacfebb0", symbol: "MATIC", coinGeckoId: "matic-network", decimals: 18, price: 0.213435},                                    // Addr: 0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0, Notional: 6005.090403853704
-		{chain: 2, addr: "0000000000000000000000007da2641000cbb407c329310c461b2cb9c70c3046", symbol: "AGI", coinGeckoId: "delysium", decimals: 18, price: 0.056002},                                           // Addr: 0x7da2641000cbb407c329310c461b2cb9c70c3046, Notional: 373402.67109453003
-		{chain: 2, addr: "0000000000000000000000007ddc52c4de30e94be3a6a0a2b259b2850f421989", symbol: "GMT", coinGeckoId: "gmt-token", decimals: 18, price: 0.425071},                                          // Addr: 0x7ddc52c4de30e94be3a6a0a2b259b2850f421989, Notional: 613.3379428800883
-		{chain: 2, addr: "0000000000000000000000007e9c15c43f0d6c4a12e6bdff7c7d55d0f80e3e23", symbol: "ASTRADAO", coinGeckoId: "astra-dao", decimals: 18, price: 1.94569e-7},                                   // Addr: 0x7e9c15c43f0d6c4a12e6bdff7c7d55d0f80e3e23, Notional: 59.538077756201176
-		{chain: 2, addr: "0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", symbol: "wstETH", coinGeckoId: "wrapped-steth", decimals: 18, price: 3114.69},                                    // Addr: 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, Notional: 3688046.1166459336
-		{chain: 2, addr: "0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", symbol: "AAVE", coinGeckoId: "aave", decimals: 18, price: 269.32},                                                // Addr: 0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9, Notional: 2917.0908276936
-		{chain: 2, addr: "0000000000000000000000007fd4d7737597e7b4ee22acbf8d94362343ae0a79", symbol: "WMC", coinGeckoId: "wrapped-mistcoin", decimals: 2, price: 6.58},                                        // Addr: 0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79, Notional: 15.989400000000002
-		{chain: 2, addr: "000000000000000000000000808507121b80c02388fad14726482e061b8da827", symbol: "PENDLE", coinGeckoId: "pendle", decimals: 18, price: 4.24},                                              // Addr: 0x808507121b80c02388fad14726482e061b8da827, Notional: 13818453.266849045
-		{chain: 2, addr: "00000000000000000000000080d55c03180349fff4a229102f62328220a96444", symbol: "OPUL", coinGeckoId: "opulous", decimals: 18, price: 0.03156293},                                         // Addr: 0x80d55c03180349fff4a229102f62328220a96444, Notional: 3.351456222568021
-		{chain: 2, addr: "000000000000000000000000814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26", symbol: "MDT", coinGeckoId: "measurable-data-token", decimals: 18, price: 0.02098909},                            // Addr: 0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26, Notional: 39840.766282210534
-		{chain: 2, addr: "0000000000000000000000008287c7b963b405b7b8d467db9d79eec40625b13a", symbol: "SWINGBY", coinGeckoId: "swingby", decimals: 18, price: 0.00009214},                                      // Addr: 0x8287c7b963b405b7b8d467db9d79eec40625b13a, Notional: 1.031968
-		{chain: 2, addr: "00000000000000000000000082f13ab56cc0d1b727e8253a943f0de75b048b0b", symbol: "PLAYFI", coinGeckoId: "playfi", decimals: 18, price: 0.00600403},                                        // Addr: 0x82f13ab56cc0d1b727e8253a943f0de75b048b0b, Notional: 1716.2407309713542
-		{chain: 2, addr: "0000000000000000000000008353b92201f19b4812eee32efd325f7ede123718", symbol: "SCM", coinGeckoId: "scamfari", decimals: 18, price: 0.00000532},                                         // Addr: 0x8353b92201f19b4812eee32efd325f7ede123718, Notional: 106.45852
-		{chain: 2, addr: "0000000000000000000000008390a1da07e376ef7add4be859ba74fb83aa02d5", symbol: "GROK", coinGeckoId: "grok-2", decimals: 9, price: 0.00239127},                                           // Addr: 0x8390a1da07e376ef7add4be859ba74fb83aa02d5, Notional: 75.10857656187882
-		{chain: 2, addr: "00000000000000000000000083e6f1e41cdd28eaceb20cb649155049fac3d5aa", symbol: "POLS", coinGeckoId: "polkastarter", decimals: 18, price: 0.219331},                                      // Addr: 0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa, Notional: 0.438662
-		{chain: 2, addr: "0000000000000000000000008457ca5040ad67fdebbcc8edce889a335bc0fbfb", symbol: "ALT", coinGeckoId: "altlayer", decimals: 18, price: 0.02731039},                                         // Addr: 0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb, Notional: 9.5868676212912
-		{chain: 2, addr: "0000000000000000000000008530b66ca3ddf50e0447eae8ad7ea7d5e62762ed", symbol: "METADOGE", coinGeckoId: "meta-doge", decimals: 18, price: 1.7691e-11},                                   // Addr: 0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed, Notional: 0.44227500000000003
-		{chain: 2, addr: "000000000000000000000000853d955acef822db058eb8505911ed77f175b99e", symbol: "FRAX", coinGeckoId: "frax", decimals: 18, price: 0.999384},                                              // Addr: 0x853d955acef822db058eb8505911ed77f175b99e, Notional: 59616.42769688391
-		{chain: 2, addr: "00000000000000000000000085eee30c52b0b379b046fb0f85f4f3dc3009afec", symbol: "KEEP", coinGeckoId: "keep-network", decimals: 18, price: 0.0706},                                        // Addr: 0x85eee30c52b0b379b046fb0f85f4f3dc3009afec, Notional: 0.141431568
-		{chain: 2, addr: "000000000000000000000000875773784af8135ea0ef43b5a374aad105c5d39e", symbol: "IDLE", coinGeckoId: "idle", decimals: 18, price: 0.00571255},                                            // Addr: 0x875773784af8135ea0ef43b5a374aad105c5d39e, Notional: 0.28562750000000003
-		{chain: 2, addr: "0000000000000000000000008770b7dd89e5f759ee3b226e0c45e890f87ddc48", symbol: "MIRL", coinGeckoId: "made-in-real-life", decimals: 18, price: 0.0000265},                                // Addr: 0x8770b7dd89e5f759ee3b226e0c45e890f87ddc48, Notional: 1916.9208993289617
-		{chain: 2, addr: "00000000000000000000000087edffde3e14c7a66c9b9724747a1c5696b742e6", symbol: "SWAG", coinGeckoId: "swag-finance", decimals: 18, price: 0.00139443},                                    // Addr: 0x87edffde3e14c7a66c9b9724747a1c5696b742e6, Notional: 13.945694430000001
-		{chain: 2, addr: "000000000000000000000000888888888889c00c67689029d7856aac1065ec11", symbol: "OPIUM", coinGeckoId: "opium", decimals: 18, price: 0.02952707},                                          // Addr: 0x888888888889c00c67689029d7856aac1065ec11, Notional: 0.2952707
-		{chain: 2, addr: "0000000000000000000000008a854288a5976036a725879164ca3e91d30c6a1b", symbol: "GET", coinGeckoId: "get-token", decimals: 18, price: 0.452311},                                          // Addr: 0x8a854288a5976036a725879164ca3e91d30c6a1b, Notional: 9.04622
-		{chain: 2, addr: "0000000000000000000000008a9c67fee641579deba04928c4bc45f66e26343a", symbol: "JRT", coinGeckoId: "jarvis-reward-token", decimals: 18, price: 0.0017131},                               // Addr: 0x8a9c67fee641579deba04928c4bc45f66e26343a, Notional: 78725.41566888838
-		{chain: 2, addr: "0000000000000000000000008ab7404063ec4dbcfd4598215992dc3f8ec853d7", symbol: "AKRO", coinGeckoId: "akropolis", decimals: 18, price: 0.00017177},                                       // Addr: 0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7, Notional: 5.877353123593999
-		{chain: 2, addr: "0000000000000000000000008acee0fcee91cedad1c5013f031762c814740587", symbol: "SAUDIPEPE", coinGeckoId: "saudi-pepe", decimals: 18, price: 0.00000179},                                 // Addr: 0x8acee0fcee91cedad1c5013f031762c814740587, Notional: 8.112185285803031
-		{chain: 2, addr: "0000000000000000000000008bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd", symbol: "PACE", coinGeckoId: "3space-art", decimals: 18, price: 0.01551619},                                      // Addr: 0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd, Notional: 15.51619
-		{chain: 2, addr: "0000000000000000000000008c223a82e07fecb49d602150d7c2b3a4c9630310", symbol: "NFTE", coinGeckoId: "nftearth", decimals: 18, price: 0.00001511},                                        // Addr: 0x8c223a82e07fecb49d602150d7c2b3a4c9630310, Notional: 0.0107438647632921
-		{chain: 2, addr: "0000000000000000000000008cb1d155a5a1d5d667611b7710920fd9d1cd727f", symbol: "AIRx", coinGeckoId: "aircoins", decimals: 8, price: 0.0000034},                                          // Addr: 0x8cb1d155a5a1d5d667611b7710920fd9d1cd727f, Notional: 0.00034
-		{chain: 2, addr: "0000000000000000000000008cc0f052fff7ead7f2edcccac895502e884a8a71", symbol: "ARTH", coinGeckoId: "arth", decimals: 18, price: 1.49},                                                  // Addr: 0x8cc0f052fff7ead7f2edcccac895502e884a8a71, Notional: 7.45
-		{chain: 2, addr: "0000000000000000000000008ce9137d39326ad0cd6491fb5cc0cba0e089b6a9", symbol: "SXP", coinGeckoId: "swipe", decimals: 18, price: 0.182122},                                              // Addr: 0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9, Notional: 18247.59009428928
-		{chain: 2, addr: "0000000000000000000000008db1d28ee0d822367af8d220c0dc7cb6fe9dc442", symbol: "ETHPAD", coinGeckoId: "ethpad", decimals: 18, price: 0.00095323},                                        // Addr: 0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442, Notional: 7.722907792192
-		{chain: 2, addr: "0000000000000000000000008ed97a637a790be1feff5e888d43629dc05408f6", symbol: "NPC", coinGeckoId: "non-playable-coin", decimals: 18, price: 0.01347979},                                // Addr: 0x8ed97a637a790be1feff5e888d43629dc05408f6, Notional: 5101879.487431287
-		{chain: 2, addr: "0000000000000000000000008f006d1e1d9dc6c98996f50a4c810f17a47fbf19", symbol: "NSFW", coinGeckoId: "pleasure-coin", decimals: 18, price: 0.00002964},                                   // Addr: 0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19, Notional: 0.00022172779298280002
-		{chain: 2, addr: "000000000000000000000000900db999074d9277c5da2a43f252d74366230da0", symbol: "GIV", coinGeckoId: "giveth", decimals: 18, price: 0.00225785},                                           // Addr: 0x900db999074d9277c5da2a43f252d74366230da0, Notional: 22.578500000000002
-		{chain: 2, addr: "0000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad", symbol: "PUSSY", coinGeckoId: "pussy-financial", decimals: 18, price: 0.00000409},                                // Addr: 0x9196e18bc349b1f64bc08784eae259525329a1ad, Notional: 3425.3979715549503
-		{chain: 2, addr: "00000000000000000000000092d6c1e31e14520e676a687f0a93788b716beff5", symbol: "DYDX", coinGeckoId: "dydx", decimals: 18, price: 0.547017},                                              // Addr: 0x92d6c1e31e14520e676a687f0a93788b716beff5, Notional: 42262.98998457182
-		{chain: 2, addr: "000000000000000000000000949d48eca67b17269629c7194f4b727d4ef9e5d6", symbol: "MC", coinGeckoId: "merit-circle", decimals: 18, price: 0.094853},                                        // Addr: 0x949d48eca67b17269629c7194f4b727d4ef9e5d6, Notional: 6.0800773
-		{chain: 2, addr: "000000000000000000000000958a03181806cb8807bef40e864e55f89b3393d3", symbol: "UTX", coinGeckoId: "utix", decimals: 18, price: 0.01391177},                                             // Addr: 0x958a03181806cb8807bef40e864e55f89b3393d3, Notional: 5764.857735529118
-		{chain: 2, addr: "00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", symbol: "SHIB", coinGeckoId: "shiba-inu", decimals: 18, price: 0.00001267},                                       // Addr: 0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce, Notional: 80010.65887705442
-		{chain: 2, addr: "0000000000000000000000009609b540e5dedddb147abbf9812ade06b1e61b2c", symbol: "MICKEY", coinGeckoId: "steamboat-willie", decimals: 18, price: 0.00019653},                              // Addr: 0x9609b540e5dedddb147abbf9812ade06b1e61b2c, Notional: 23367.088256458028
-		{chain: 2, addr: "0000000000000000000000009625ce7753ace1fa1865a47aae2c5c2ce4418569", symbol: "KAP", coinGeckoId: "kapital-dao", decimals: 18, price: 0.00117695},                                      // Addr: 0x9625ce7753ace1fa1865a47aae2c5c2ce4418569, Notional: 11.769499999999999
-		{chain: 2, addr: "00000000000000000000000096543ef8d2c75c26387c1a319ae69c0bee6f3fe7", symbol: "KUJI", coinGeckoId: "kujira", decimals: 6, price: 0.375506},                                             // Addr: 0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7, Notional: 0.375506
-		{chain: 2, addr: "000000000000000000000000965697b4ef02f0de01384d0d4f9f782b1670c163", symbol: "OXY", coinGeckoId: "oxygen", decimals: 6, price: 0.02767079},                                            // Addr: 0x965697b4ef02f0de01384d0d4f9f782b1670c163, Notional: 4150.730790334825
-		{chain: 2, addr: "000000000000000000000000965b85d4674f64422c4898c8f8083187f02b32c0", symbol: "SFIL", coinGeckoId: "filecoin-standard-full-hashrate", decimals: 8, price: 0.00513081},                  // Addr: 0x965b85d4674f64422c4898c8f8083187f02b32c0, Notional: 0.038272764114
-		{chain: 2, addr: "000000000000000000000000967fb0d760ed3ce53afe2f0a071674cccae73550", symbol: "XETA", coinGeckoId: "xana", decimals: 18, price: 0.00078411},                                            // Addr: 0x967fb0d760ed3ce53afe2f0a071674cccae73550, Notional: 0.00078411
-		{chain: 2, addr: "000000000000000000000000968cbe62c830a0ccf4381614662398505657a2a9", symbol: "TPY", coinGeckoId: "thrupenny", decimals: 8, price: 0.00207482},                                         // Addr: 0x968cbe62c830a0ccf4381614662398505657a2a9, Notional: 493.94523151625646
-		{chain: 2, addr: "000000000000000000000000968f6f898a6df937fc1859b323ac2f14643e3fed", symbol: "NWC", coinGeckoId: "newscrypto-coin", decimals: 18, price: 0.02473985},                                  // Addr: 0x968f6f898a6df937fc1859b323ac2f14643e3fed, Notional: 0.02473985
-		{chain: 2, addr: "00000000000000000000000096f6ef951840721adbf46ac996b59e0235cb985c", symbol: "USDY", coinGeckoId: "ondo-us-dollar-yield", decimals: 18, price: 1.096},                                 // Addr: 0x96f6ef951840721adbf46ac996b59e0235cb985c, Notional: 1.514205652
-		{chain: 2, addr: "000000000000000000000000970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d", symbol: "FUSE", coinGeckoId: "fuse-network-token", decimals: 18, price: 0.01041974},                              // Addr: 0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d, Notional: 0.2083948
-		{chain: 2, addr: "00000000000000000000000097a9bac06f90940bce9caec2b880ff17707519e4", symbol: "MNTO", coinGeckoId: "minato", decimals: 18, price: 0.572417},                                            // Addr: 0x97a9bac06f90940bce9caec2b880ff17707519e4, Notional: 33.17338231638735
-		{chain: 2, addr: "00000000000000000000000098585dfc8d9e7d48f0b1ae47ce33332cf4237d96", symbol: "NEWO", coinGeckoId: "new-order", decimals: 18, price: 0.00157669},                                       // Addr: 0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96, Notional: 285276.51082215493
-		{chain: 2, addr: "00000000000000000000000099d8a9c45b2eca8864373a26d1459e3dff1e17f3", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                  // Addr: 0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3, Notional: 473.86748215806995
-		{chain: 2, addr: "0000000000000000000000009b83f827928abdf18cf1f7e67053572b9bceff3a", symbol: "ARTEM", coinGeckoId: "artem", decimals: 18, price: 0.00215086},                                          // Addr: 0x9b83f827928abdf18cf1f7e67053572b9bceff3a, Notional: 23583.39704588769
-		{chain: 2, addr: "0000000000000000000000009be89d2a4cd102d8fecc6bf9da793be995c22541", symbol: "BBTC", coinGeckoId: "binance-wrapped-btc", decimals: 8, price: 106442},                                  // Addr: 0x9be89d2a4cd102d8fecc6bf9da793be995c22541, Notional: 2266.1555021
-		{chain: 2, addr: "0000000000000000000000009d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804", symbol: "Nvir", coinGeckoId: "nvirworld", decimals: 18, price: 0.00031535},                                       // Addr: 0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804, Notional: 1.5767499999999999
-		{chain: 2, addr: "0000000000000000000000009dfad1b7102d46b1b197b90095b5c4e9f5845bba", symbol: "BOTTO", coinGeckoId: "botto", decimals: 18, price: 0.246855},                                            // Addr: 0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba, Notional: 52537.51077483873
-		{chain: 2, addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", symbol: "OMNI", coinGeckoId: "omnicat", decimals: 18, price: 0.00001466},                                         // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 160588.20611752162
-		{chain: 2, addr: "0000000000000000000000009f52c8ecbee10e00d9faaac5ee9ba0ff6550f511", symbol: "SIPHER", coinGeckoId: "sipher", decimals: 18, price: 0.03945509},                                        // Addr: 0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511, Notional: 3.945509
-		{chain: 2, addr: "0000000000000000000000009fa69536d1cda4a04cfb50688294de75b505a9ae", symbol: "DERC", coinGeckoId: "derace", decimals: 18, price: 0.03239622},                                          // Addr: 0x9fa69536d1cda4a04cfb50688294de75b505a9ae, Notional: 3.2396220000000002
-		{chain: 2, addr: "0000000000000000000000009fda7ceec4c18008096c2fe2b85f05dc300f94d0", symbol: "GAJ", coinGeckoId: "gaj", decimals: 18, price: 0.00364659},                                              // Addr: 0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0, Notional: 21.10834770861408
-		{chain: 2, addr: "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, Notional: 59122184.96661945
-		{chain: 2, addr: "000000000000000000000000a150db9b1fa65b44799d4dd949d922c0a33ee606", symbol: "DRC", coinGeckoId: "digital-reserve-currency", decimals: 0, price: 0.00014987},                          // Addr: 0xa150db9b1fa65b44799d4dd949d922c0a33ee606, Notional: 4.59126745
-		{chain: 2, addr: "000000000000000000000000a1d6df714f91debf4e0802a542e13067f31b8262", symbol: "RFOX", coinGeckoId: "redfox-labs-2", decimals: 18, price: 0.0008149},                                    // Addr: 0xa1d6df714f91debf4e0802a542e13067f31b8262, Notional: 44.8203149
-		{chain: 2, addr: "000000000000000000000000a21af1050f7b26e0cff45ee51548254c41ed6b5c", symbol: "OSAK", coinGeckoId: "osaka-protocol", decimals: 18, price: 9.3047e-8},                                   // Addr: 0xa21af1050f7b26e0cff45ee51548254c41ed6b5c, Notional: 1200.4326664067062
-		{chain: 2, addr: "000000000000000000000000a2cd3d43c775978a96bdbf12d733d5a1ed94fb18", symbol: "XCN", coinGeckoId: "chain-2", decimals: 18, price: 0.01553457},                                          // Addr: 0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18, Notional: 7107711.224414096
-		{chain: 2, addr: "000000000000000000000000a31b1767e09f842ecfd4bc471fe44f830e3891aa", symbol: "ROOBEE", coinGeckoId: "roobee", decimals: 18, price: 0.00011558},                                        // Addr: 0xa31b1767e09f842ecfd4bc471fe44f830e3891aa, Notional: 5.1842636324584
-		{chain: 2, addr: "000000000000000000000000a35923162c49cf95e6bf26623385eb431ad920d3", symbol: "TURBO", coinGeckoId: "turbo", decimals: 18, price: 0.00429588},                                          // Addr: 0xa35923162c49cf95e6bf26623385eb431ad920d3, Notional: 631284.4244263859
-		{chain: 2, addr: "000000000000000000000000a3a80559bbc1989654e6b8385f5001fa1333332f", symbol: "RZR", coinGeckoId: "raiser-token", decimals: 18, price: 0.00212146},                                     // Addr: 0xa3a80559bbc1989654e6b8385f5001fa1333332f, Notional: 0.015112128620498799
-		{chain: 2, addr: "000000000000000000000000a406844323f1603701e6ad95adc8a082213a68ce", symbol: "PBT", coinGeckoId: "polybet", decimals: 18, price: 0.00086603},                                          // Addr: 0xa406844323f1603701e6ad95adc8a082213a68ce, Notional: 12.028194367464
-		{chain: 2, addr: "000000000000000000000000a462bde22d98335e18a21555b6752db93a937cff", symbol: "BOBBY", coinGeckoId: "independence-token", decimals: 18, price: 0.00000185},                             // Addr: 0xa462bde22d98335e18a21555b6752db93a937cff, Notional: 9009.26897490032
-		{chain: 2, addr: "000000000000000000000000a47c8bf37f92abed4a126bda807a7b7498661acd", symbol: "UST", coinGeckoId: "wrapped-ust", decimals: 18, price: 0.01263232},                                      // Addr: 0xa47c8bf37f92abed4a126bda807a7b7498661acd, Notional: 4.335731019164711
-		{chain: 2, addr: "000000000000000000000000a5ef74068d04ba0809b7379dd76af5ce34ab7c57", symbol: "LUCHOW", coinGeckoId: "lunachow", decimals: 18, price: 7.3029e-8},                                       // Addr: 0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57, Notional: 111.69763291897344
-		{chain: 2, addr: "000000000000000000000000a9e8acf069c58aec8825542845fd754e41a9489a", symbol: "pepecoin", coinGeckoId: "pepecoin-2", decimals: 18, price: 0.46529},                                     // Addr: 0xa9e8acf069c58aec8825542845fd754e41a9489a, Notional: 164572.48432919028
-		{chain: 2, addr: "000000000000000000000000aa2ce7ae64066175e0b90497ce7d9c190c315db4", symbol: "Suter", coinGeckoId: "suterusu", decimals: 18, price: 0.00002117},                                       // Addr: 0xaa2ce7ae64066175e0b90497ce7d9c190c315db4, Notional: 1.723911385945
-		{chain: 2, addr: "000000000000000000000000aa7a9ca87d3694b5755f213b5d04094b8d0f0a6f", symbol: "TRAC", coinGeckoId: "origintrail", decimals: 18, price: 0.385064},                                       // Addr: 0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f, Notional: 32176.053586056194
-		{chain: 2, addr: "000000000000000000000000aaaebe6fe48e54f431b0c390cfaf0b017d09d42d", symbol: "CEL", coinGeckoId: "celsius-degree-token", decimals: 4, price: 0.087542},                                // Addr: 0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d, Notional: 2756.1026970932
-		{chain: 2, addr: "000000000000000000000000aaee1a9723aadb7afa2810263653a34ba2c21c7a", symbol: "Mog", coinGeckoId: "mog-coin", decimals: 18, price: 0.00000101},                                         // Addr: 0xaaee1a9723aadb7afa2810263653a34ba2c21c7a, Notional: 880.0257296999879
-		{chain: 2, addr: "000000000000000000000000ab2a7b5876d707e0126b3a75ef7781c77c8877ee", symbol: "QUAD", coinGeckoId: "quadency", decimals: 18, price: 0.00223337},                                        // Addr: 0xab2a7b5876d707e0126b3a75ef7781c77c8877ee, Notional: 5327.5188659551995
-		{chain: 2, addr: "000000000000000000000000ac51066d7bec65dc4589368da368b212745d63e8", symbol: "ALICE", coinGeckoId: "my-neighbor-alice", decimals: 6, price: 0.432288},                                 // Addr: 0xac51066d7bec65dc4589368da368b212745d63e8, Notional: 0.864576
-		{chain: 2, addr: "000000000000000000000000ac57de9c1a09fec648e93eb98875b212db0d460b", symbol: "BabyDoge", coinGeckoId: "baby-doge-coin", decimals: 9, price: 1.395e-9},                                 // Addr: 0xac57de9c1a09fec648e93eb98875b212db0d460b, Notional: 213.23626053750758
-		{chain: 2, addr: "000000000000000000000000ac6db8954b73ebf10e84278ac8b9b22a781615d9", symbol: "BWB", coinGeckoId: "bitget-wallet-token", decimals: 18, price: 0.470073},                                // Addr: 0xac6db8954b73ebf10e84278ac8b9b22a781615d9, Notional: 44621285.09161152
-		{chain: 2, addr: "000000000000000000000000ae1eaae3f627aaca434127644371b67b18444051", symbol: "YOP", coinGeckoId: "yield-optimization-platform", decimals: 8, price: 0.00009227},                       // Addr: 0xae1eaae3f627aaca434127644371b67b18444051, Notional: 0.006920249999999999
-		{chain: 2, addr: "000000000000000000000000ae6e307c3fe9e922e5674dbd7f830ed49c014c6b", symbol: "CREDI", coinGeckoId: "credefi", decimals: 18, price: 0.00649156},                                        // Addr: 0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b, Notional: 48710.21719647977
-		{chain: 2, addr: "000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", symbol: "rETH", coinGeckoId: "rocket-pool-eth", decimals: 18, price: 2943.39},                                    // Addr: 0xae78736cd615f374d3085123a210448e74fc6393, Notional: 1030.1864999999998
-		{chain: 2, addr: "000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84", symbol: "stETH", coinGeckoId: "staked-ether", decimals: 18, price: 2582.32},                                      // Addr: 0xae7ab96520de3a18e5e111b5eaab095312d7fe84, Notional: 5839.037141808
-		{chain: 2, addr: "000000000000000000000000aee433adebe0fbb88daa47ef0c1a513caa52ef02", symbol: "TOON", coinGeckoId: "pontoon", decimals: 18, price: 0.00001961},                                         // Addr: 0xaee433adebe0fbb88daa47ef0c1a513caa52ef02, Notional: 0.39987508240404934
-		{chain: 2, addr: "000000000000000000000000b0ffa8000886e57f86dd5264b9582b2ad87b2b91", symbol: "W", coinGeckoId: "wormhole", decimals: 18, price: 0.074222},                                             // Addr: 0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91, Notional: 0.148445558662
-		{chain: 2, addr: "000000000000000000000000b131f337c45d386ceec234e194b2663d5c3d9dcf", symbol: "ICOM", coinGeckoId: "icommunity", decimals: 18, price: 0.00350145},                                      // Addr: 0xb131f337c45d386ceec234e194b2663d5c3d9dcf, Notional: 38845.0963841128
-		{chain: 2, addr: "000000000000000000000000b19dd661f076998e3b0456935092a233e12c2280", symbol: "UM", coinGeckoId: "continuum-world", decimals: 18, price: 0.00016795},                                   // Addr: 0xb19dd661f076998e3b0456935092a233e12c2280, Notional: 0.449323116025909
-		{chain: 2, addr: "000000000000000000000000b1f66997a5760428d3a87d68b90bfe0ae64121cc", symbol: "LUA", coinGeckoId: "lua-token", decimals: 18, price: 0.03879681},                                        // Addr: 0xb1f66997a5760428d3a87d68b90bfe0ae64121cc, Notional: 99555.87339204
-		{chain: 2, addr: "000000000000000000000000b2617246d0c6c0087f18703d576831899ca94f01", symbol: "ZIG", coinGeckoId: "zignaly", decimals: 18, price: 0.095405},                                            // Addr: 0xb2617246d0c6c0087f18703d576831899ca94f01, Notional: 195315.5764279528
-		{chain: 2, addr: "000000000000000000000000b369daca21ee035312176eb8cf9d88ce97e0aa95", symbol: "SKOL", coinGeckoId: "skol", decimals: 18, price: 0.084189},                                              // Addr: 0xb369daca21ee035312176eb8cf9d88ce97e0aa95, Notional: 102585.08259752623
-		{chain: 2, addr: "000000000000000000000000b50721bcf8d664c30412cfbc6cf7a15145234ad1", symbol: "ARB", coinGeckoId: "arbitrum", decimals: 18, price: 0.354061},                                           // Addr: 0xb50721bcf8d664c30412cfbc6cf7a15145234ad1, Notional: 95.15271790279718
-		{chain: 2, addr: "000000000000000000000000b5ce43fe2fcffffb2eece95ec413d08def28046f", symbol: "PELO", coinGeckoId: "pepelon-token", decimals: 18, price: 2.69112e-10},                                  // Addr: 0xb5ce43fe2fcffffb2eece95ec413d08def28046f, Notional: 2.6911199999999997
-		{chain: 2, addr: "000000000000000000000000b62e24b747eaa41454857cf6011832117df59cb8", symbol: "EPIKO", coinGeckoId: "epiko", decimals: 18, price: 0.00086816},                                          // Addr: 0xb62e24b747eaa41454857cf6011832117df59cb8, Notional: 18040.920875421933
-		{chain: 2, addr: "000000000000000000000000b69753c06bb5c366be51e73bfc0cc2e3dc07e371", symbol: "POOH", coinGeckoId: "pooh", decimals: 18, price: 8.229e-9},                                              // Addr: 0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371, Notional: 699.69635808403
-		{chain: 2, addr: "000000000000000000000000b7cfe05915ef0c040c6dde2007c9ddab26259e04", symbol: "MOLLY", coinGeckoId: "molly-gateway", decimals: 18, price: 0.00027056},                                  // Addr: 0xb7cfe05915ef0c040c6dde2007c9ddab26259e04, Notional: 0.0000680744814816
-		{chain: 2, addr: "000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52", symbol: "BNB", coinGeckoId: "binancecoin", decimals: 18, price: 662.05},                                          // Addr: 0xb8c77482e45f1f44de1745f52c74426c631bdd52, Notional: 19170.1332806535
-		{chain: 2, addr: "000000000000000000000000b8e2e2101ed11e9138803cd3e06e16dd19910647", symbol: "ARDX", coinGeckoId: "ardcoin", decimals: 2, price: 0.00379947},                                          // Addr: 0xb8e2e2101ed11e9138803cd3e06e16dd19910647, Notional: 4563.9993534000005
-		{chain: 2, addr: "000000000000000000000000b9f599ce614feb2e1bbe58f180f370d05b39344e", symbol: "PORK", coinGeckoId: "pepefork", decimals: 18, price: 2.2364e-8},                                         // Addr: 0xb9f599ce614feb2e1bbe58f180f370d05b39344e, Notional: 32.94911248737982
-		{chain: 2, addr: "000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d", symbol: "BAL", coinGeckoId: "balancer", decimals: 18, price: 1.079},                                              // Addr: 0xba100000625a3754423978a60c9317c58a424e3d, Notional: 11.864795223319998
-		{chain: 2, addr: "000000000000000000000000ba25b2281214300e4e649fead9a6d6acd25f1c0a", symbol: "TREE", coinGeckoId: "tree-capital", decimals: 18, price: 0.339534},                                      // Addr: 0xba25b2281214300e4e649fead9a6d6acd25f1c0a, Notional: 3657683.0808588634
-		{chain: 2, addr: "000000000000000000000000ba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70", symbol: "JESUS", coinGeckoId: "jesus-coin", decimals: 18, price: 3.8598e-8},                                      // Addr: 0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70, Notional: 1809.8752007233993
-		{chain: 2, addr: "000000000000000000000000ba5bde662c17e2adff1075610382b9b691296350", symbol: "RARE", coinGeckoId: "superrare", decimals: 18, price: 0.057987},                                         // Addr: 0xba5bde662c17e2adff1075610382b9b691296350, Notional: 204.0140074577712
-		{chain: 2, addr: "000000000000000000000000baac2b4491727d78d2b78815144570b9f2fe8899", symbol: "DOG", coinGeckoId: "the-doge-nft", decimals: 18, price: 0.00109697},                                     // Addr: 0xbaac2b4491727d78d2b78815144570b9f2fe8899, Notional: 621747.0048094187
-		{chain: 2, addr: "000000000000000000000000bb0e17ef65f82ab018d8edd776e8dd940327b28b", symbol: "AXS", coinGeckoId: "axie-infinity", decimals: 18, price: 2.48},                                          // Addr: 0xbb0e17ef65f82ab018d8edd776e8dd940327b28b, Notional: 3390.4552959064
-		{chain: 2, addr: "000000000000000000000000bba39fd2935d5769116ce38d46a71bde9cf03099", symbol: "CHO", coinGeckoId: "choise", decimals: 18, price: 0.00566232},                                           // Addr: 0xbba39fd2935d5769116ce38d46a71bde9cf03099, Notional: 88717.69628020296
-		{chain: 2, addr: "000000000000000000000000bc396689893d065f41bc2c6ecbee5e0085233447", symbol: "PERP", coinGeckoId: "perpetual-protocol", decimals: 18, price: 0.250492},                                // Addr: 0xbc396689893d065f41bc2c6ecbee5e0085233447, Notional: 4413.486041528874
-		{chain: 2, addr: "000000000000000000000000bcca60bb61934080951369a648fb03df4f96263c", symbol: "aUSDC", coinGeckoId: "aave-usdc", decimals: 6, price: 1.002},                                            // Addr: 0xbcca60bb61934080951369a648fb03df4f96263c, Notional: 7.022453874
-		{chain: 2, addr: "000000000000000000000000bd2f0cd039e0bfcf88901c98c0bfac5ab27566e3", symbol: "DSD", coinGeckoId: "dynamic-set-dollar", decimals: 18, price: 3.531e-8},                                 // Addr: 0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3, Notional: 13.453689879628266
-		{chain: 2, addr: "000000000000000000000000bd6323a83b613f668687014e8a5852079494fb68", symbol: "BTC", coinGeckoId: "blackrocktradingcurrency", decimals: 18, price: 0.188829},                           // Addr: 0xbd6323a83b613f668687014e8a5852079494fb68, Notional: 0.94414499811171
-		{chain: 2, addr: "000000000000000000000000bd8fdda057de7e0162b7a386bec253844b5e07a5", symbol: "JARVIS", coinGeckoId: "jarvis-2", decimals: 18, price: 0.02853384},                                      // Addr: 0xbd8fdda057de7e0162b7a386bec253844b5e07a5, Notional: 693840.0331856624
-		{chain: 2, addr: "000000000000000000000000be33f57f41a20b2f00dec91dcc1169597f36221f", symbol: "RUG", coinGeckoId: "rug-rugged-art", decimals: 18, price: 9.68},                                         // Addr: 0xbe33f57f41a20b2f00dec91dcc1169597f36221f, Notional: 25670.7855885096
-		{chain: 2, addr: "000000000000000000000000bededdf2ef49e87037c4fb2ca34d1ff3d3992a11", symbol: "FEG", coinGeckoId: "feg-token-2", decimals: 18, price: 0.00010539},                                      // Addr: 0xbededdf2ef49e87037c4fb2ca34d1ff3d3992a11, Notional: 23.01923452561583
-		{chain: 2, addr: "000000000000000000000000beef01060047522408756e0000a90ce195a70000", symbol: "APTR", coinGeckoId: "aperture-finance", decimals: 6, price: 0.00132492},                                 // Addr: 0xbeef01060047522408756e0000a90ce195a70000, Notional: 474066.74844929064
-		{chain: 2, addr: "000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888", symbol: "COMP", coinGeckoId: "compound-governance-token", decimals: 18, price: 47.25},                            // Addr: 0xc00e94cb662c3520282e6f5717214004a7f26888, Notional: 235439.3755899675
-		{chain: 2, addr: "000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", symbol: "SNX", coinGeckoId: "havven", decimals: 18, price: 0.66506},                                              // Addr: 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, Notional: 81.506038541587
-		{chain: 2, addr: "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                               // Addr: 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, Notional: 203164554.80539295
-		{chain: 2, addr: "000000000000000000000000c0a4df35568f116c370e6a6a6022ceb908eeddac", symbol: "UMEE", coinGeckoId: "umee", decimals: 6, price: 0.00021082},                                             // Addr: 0xc0a4df35568f116c370e6a6a6022ceb908eeddac, Notional: 0.21081999999999998
-		{chain: 2, addr: "000000000000000000000000c18360217d8f7ab5e7c516566761ea12ce7f9d72", symbol: "ENS", coinGeckoId: "ethereum-name-service", decimals: 18, price: 21.2},                                  // Addr: 0xc18360217d8f7ab5e7c516566761ea12ce7f9d72, Notional: 515.619898172
-		{chain: 2, addr: "000000000000000000000000c28eb2250d1ae32c7e74cfb6d6b86afc9beb6509", symbol: "OPN", coinGeckoId: "open-ticketing-ecosystem", decimals: 18, price: 0.00039846},                         // Addr: 0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509, Notional: 13108.790441749523
-		{chain: 2, addr: "000000000000000000000000c4170fd71eced3c80badca77f4e12e8aac1e3436", symbol: "KMON", coinGeckoId: "kryptomon", decimals: 18, price: 0.00001347},                                       // Addr: 0xc4170fd71eced3c80badca77f4e12e8aac1e3436, Notional: 1935.1618704876382
-		{chain: 2, addr: "000000000000000000000000c477d038d5420c6a9e0b031712f61c5120090de9", symbol: "BOSON", coinGeckoId: "boson-protocol", decimals: 18, price: 0.104768},                                   // Addr: 0xc477d038d5420c6a9e0b031712f61c5120090de9, Notional: 103.78903465018688
-		{chain: 2, addr: "000000000000000000000000c4c2614e694cf534d407ee49f8e44d125e4681c4", symbol: "CHAIN", coinGeckoId: "chain-games", decimals: 18, price: 0.02568917},                                    // Addr: 0xc4c2614e694cf534d407ee49f8e44d125e4681c4, Notional: 111.16176344875646
-		{chain: 2, addr: "000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc", symbol: "HOP", coinGeckoId: "hop-protocol", decimals: 18, price: 0.00965908},                                     // Addr: 0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc, Notional: 0.28977240000000004
-		{chain: 2, addr: "000000000000000000000000c5ba042bf8832999b17c9036e8212f49dce0501a", symbol: "YOURAI", coinGeckoId: "your-ai", decimals: 18, price: 0.00147559},                                       // Addr: 0xc5ba042bf8832999b17c9036e8212f49dce0501a, Notional: 146963.60252078006
-		{chain: 2, addr: "000000000000000000000000c6c9448a86882d73164a984fa52285ab51c823bc", symbol: "RPILL", coinGeckoId: "red-pill-2", decimals: 18, price: 2.01909e-7},                                     // Addr: 0xc6c9448a86882d73164a984fa52285ab51c823bc, Notional: 1356.9190781375999
-		{chain: 2, addr: "000000000000000000000000c8168d5665f4418353728ac970713e09c0b7c20e", symbol: "MONKE", coinGeckoId: "monke-coin", decimals: 18, price: 3.2245e-8},                                      // Addr: 0xc8168d5665f4418353728ac970713e09c0b7c20e, Notional: 4421.88960105293
-		{chain: 2, addr: "000000000000000000000000c86d054809623432210c107af2e3f619dcfbf652", symbol: "UPP", coinGeckoId: "sentinel-protocol", decimals: 18, price: 0.04605828},                                // Addr: 0xc86d054809623432210c107af2e3f619dcfbf652, Notional: 0.4605828
-		{chain: 2, addr: "000000000000000000000000c944e90c64b2c07662a292be6244bdf05cda44a7", symbol: "GRT", coinGeckoId: "the-graph", decimals: 18, price: 0.094888},                                          // Addr: 0xc944e90c64b2c07662a292be6244bdf05cda44a7, Notional: 223.47964855666402
-		{chain: 2, addr: "000000000000000000000000c97d6c52f3add91fa1c5287a453d7444aecbca83", symbol: "DZOO", coinGeckoId: "degen-zoo", decimals: 18, price: 0.00101583},                                       // Addr: 0xc97d6c52f3add91fa1c5287a453d7444aecbca83, Notional: 328.21688060669294
-		{chain: 2, addr: "000000000000000000000000caabcaa4ca42e1d86de1a201c818639def0ba7a7", symbol: "TALK", coinGeckoId: "talken", decimals: 18, price: 0.00800042},                                          // Addr: 0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7, Notional: 5272.081272822012
-		{chain: 2, addr: "000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5", symbol: "PSP", coinGeckoId: "paraswap", decimals: 18, price: 0.01879275},                                         // Addr: 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, Notional: 0.01698636305673
-		{chain: 2, addr: "000000000000000000000000cb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e", symbol: "VEGA", coinGeckoId: "vega-protocol", decimals: 18, price: 0.00196412},                                   // Addr: 0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e, Notional: 0.05695948000000001
-		{chain: 2, addr: "000000000000000000000000cb8fb2438a805664cd8c3e640b85ac473da5be87", symbol: "CTI", coinGeckoId: "clintex-cti", decimals: 18, price: 0.00230083},                                      // Addr: 0xcb8fb2438a805664cd8c3e640b85ac473da5be87, Notional: 17123.7307083666
-		{chain: 2, addr: "000000000000000000000000cbd55d4ffc43467142761a764763652b48b969ff", symbol: "ASTRO", coinGeckoId: "astrotools", decimals: 18, price: 0.04692197},                                     // Addr: 0xcbd55d4ffc43467142761a764763652b48b969ff, Notional: 7.049536848793098
-		{chain: 2, addr: "000000000000000000000000cc503242b574bc01145da7e2a743b43fb395ec91", symbol: "ROVI", coinGeckoId: "rovi-protocol", decimals: 18, price: 0.02260218},                                   // Addr: 0xcc503242b574bc01145da7e2a743b43fb395ec91, Notional: 3.4127031582000003
-		{chain: 2, addr: "000000000000000000000000cc8fa225d80b9c7d42f96e9570156c65d6caaa25", symbol: "SLP", coinGeckoId: "smooth-love-potion", decimals: 0, price: 0.00144776},                                // Addr: 0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25, Notional: 2910.50576376
-		{chain: 2, addr: "000000000000000000000000ccdb064a41afcd432bcea6f6d0d1e7c371d0b002", symbol: "QR", coinGeckoId: "qrolli", decimals: 9, price: 0.00026195},                                             // Addr: 0xccdb064a41afcd432bcea6f6d0d1e7c371d0b002, Notional: 0.0005239
-		{chain: 2, addr: "000000000000000000000000cd1faff6e578fa5cac469d2418c95671ba1a62fe", symbol: "XTM", coinGeckoId: "torum", decimals: 18, price: 0.00489403},                                            // Addr: 0xcd1faff6e578fa5cac469d2418c95671ba1a62fe, Notional: 0.2447015
-		{chain: 2, addr: "000000000000000000000000cd5fe23c85820f7b72d0926fc9b05b43e359b7ee", symbol: "weETH", coinGeckoId: "wrapped-eeth", decimals: 18, price: 2765.97},                                      // Addr: 0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee, Notional: 17001.5703457293
-		{chain: 2, addr: "000000000000000000000000cdf7028ceab81fa0c6971208e83fa7872994bee5", symbol: "T", coinGeckoId: "threshold-network-token", decimals: 18, price: 0.01477466},                            // Addr: 0xcdf7028ceab81fa0c6971208e83fa7872994bee5, Notional: 1566.149785042848
-		{chain: 2, addr: "000000000000000000000000ce246eea10988c495b4a90a905ee9237a0f91543", symbol: "VCX", coinGeckoId: "vaultcraft", decimals: 18, price: 0.00785975},                                       // Addr: 0xce246eea10988c495b4a90a905ee9237a0f91543, Notional: 0.7859750000000001
-		{chain: 2, addr: "000000000000000000000000cf0c122c6b73ff809c693db761e7baebe62b6a2e", symbol: "FLOKI", coinGeckoId: "floki", decimals: 9, price: 0.00008564},                                           // Addr: 0xcf0c122c6b73ff809c693db761e7baebe62b6a2e, Notional: 13195.475638460524
-		{chain: 2, addr: "000000000000000000000000cfa0885131f602d11d4da248d2c65a62063567a9", symbol: "TORG", coinGeckoId: "torg", decimals: 18, price: 1.9398e-8},                                             // Addr: 0xcfa0885131f602d11d4da248d2c65a62063567a9, Notional: 0.77592184281
-		{chain: 2, addr: "000000000000000000000000cfd16933cb1579eee9fe6031686534e87353b148", symbol: "AIMR", coinGeckoId: "meromai", decimals: 18, price: 0.00102986},                                         // Addr: 0xcfd16933cb1579eee9fe6031686534e87353b148, Notional: 55998.163002356734
-		{chain: 2, addr: "000000000000000000000000d084b83c305dafd76ae3e1b4e1f1fe2ecccb3988", symbol: "TVK", coinGeckoId: "the-virtua-kolect", decimals: 18, price: 0.03314373},                                // Addr: 0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988, Notional: 0.1669946269292217
-		{chain: 2, addr: "000000000000000000000000d0d56273290d339aaf1417d9bfa1bb8cfe8a0933", symbol: "FOOM", coinGeckoId: "foom", decimals: 18, price: 9.2073e-8},                                             // Addr: 0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933, Notional: 2397.5383979677144
-		{chain: 2, addr: "000000000000000000000000d13c7342e1ef687c5ad21b27c2b65d772cab5c8c", symbol: "UOS", coinGeckoId: "ultra", decimals: 4, price: 0.053418},                                               // Addr: 0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c, Notional: 535.24836
-		{chain: 2, addr: "000000000000000000000000d13cfd3133239a3c73a9e535a5c4dadee36b395c", symbol: "VAI", coinGeckoId: "vaiot", decimals: 18, price: 0.03080303},                                            // Addr: 0xd13cfd3133239a3c73a9e535a5c4dadee36b395c, Notional: 16.23319681
-		{chain: 2, addr: "000000000000000000000000d1ba9bac957322d6e8c07a160a3a8da11a0d2867", symbol: "HMT", coinGeckoId: "human-protocol", decimals: 18, price: 0.03333637},                                   // Addr: 0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867, Notional: 40.036980369999995
-		{chain: 2, addr: "000000000000000000000000d1d2eb1b1e90b638588728b4130137d262c87cae", symbol: "GALA", coinGeckoId: "gala", decimals: 8, price: 0.01673087},                                             // Addr: 0xd1d2eb1b1e90b638588728b4130137d262c87cae, Notional: 13.451600247697625
-		{chain: 2, addr: "000000000000000000000000d2877702675e6ceb975b4a1dff9fb7baf4c91ea9", symbol: "LUNA", coinGeckoId: "wrapped-terra", decimals: 18, price: 0.00001547},                                   // Addr: 0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9, Notional: 2.9240781229472717
-		{chain: 2, addr: "000000000000000000000000d2be3722b17b616c51ed9b8944a227d1ce579c24", symbol: "DTUBE", coinGeckoId: "dtube-coin", decimals: 2, price: 0.02974105},                                      // Addr: 0xd2be3722b17b616c51ed9b8944a227d1ce579c24, Notional: 0.02974105
-		{chain: 2, addr: "000000000000000000000000d373576a9e738f37dc6882328358ff69c4caf4c6", symbol: "ZAM", coinGeckoId: "zam-io", decimals: 18, price: 0.00004189},                                           // Addr: 0xd373576a9e738f37dc6882328358ff69c4caf4c6, Notional: 0.0004189
-		{chain: 2, addr: "000000000000000000000000d38e031f4529a07996aab977d2b79f0e00656c56", symbol: "wTBT", coinGeckoId: "wtbt", decimals: 18, price: 1.18},                                                  // Addr: 0xd38e031f4529a07996aab977d2b79f0e00656c56, Notional: 475.495094923
-		{chain: 2, addr: "000000000000000000000000d3e4ba569045546d09cf021ecc5dfe42b1d7f6e4", symbol: "MNW", coinGeckoId: "morpheus-network", decimals: 18, price: 0.071187},                                   // Addr: 0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4, Notional: 2.13561
-		{chain: 2, addr: "000000000000000000000000d3fb8597d260efb2e693efd500d62a330a00f1eb", symbol: "TRUMP INU", coinGeckoId: "t-inu", decimals: 18, price: 7.99821e-7},                                      // Addr: 0xd3fb8597d260efb2e693efd500d62a330a00f1eb, Notional: 645.6398156698708
-		{chain: 2, addr: "000000000000000000000000d417144312dbf50465b1c641d016962017ef6240", symbol: "CQT", coinGeckoId: "covalent", decimals: 18, price: 0.00317164},                                         // Addr: 0xd417144312dbf50465b1c641d016962017ef6240, Notional: 17969.322221341612
-		{chain: 2, addr: "000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161", symbol: "AMPL", coinGeckoId: "ampleforth", decimals: 9, price: 1.3},                                              // Addr: 0xd46ba6d942050d489dbd938a2c909a5d5039a161, Notional: 12.943962460000002
-		{chain: 2, addr: "000000000000000000000000d49efa7bc0d339d74f487959c573d518ba3f8437", symbol: "COLI", coinGeckoId: "shield-finance", decimals: 18, price: 0.00035629},                                  // Addr: 0xd49efa7bc0d339d74f487959c573d518ba3f8437, Notional: 61484.09891498043
-		{chain: 2, addr: "000000000000000000000000d4c435f5b09f855c3317c8524cb1f586e42795fa", symbol: "CND", coinGeckoId: "cindicator", decimals: 18, price: 0.00023121},                                       // Addr: 0xd4c435f5b09f855c3317c8524cb1f586e42795fa, Notional: 0.00092484
-		{chain: 2, addr: "000000000000000000000000d533a949740bb3306d119cc777fa900ba034cd52", symbol: "CRV", coinGeckoId: "curve-dao-token", decimals: 18, price: 0.6725},                                      // Addr: 0xd533a949740bb3306d119cc777fa900ba034cd52, Notional: 25636.916555358122
-		{chain: 2, addr: "000000000000000000000000d69f306549e9d96f183b1aeca30b8f4353c2ecc3", symbol: "MCHC", coinGeckoId: "mch-coin", decimals: 18, price: 0.02589926},                                        // Addr: 0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3, Notional: 217.65369877308362
-		{chain: 2, addr: "000000000000000000000000d6c7bb8531295e88d364ea67d5d1acc7d3f87454", symbol: "FTR", coinGeckoId: "fautor", decimals: 18, price: 0.00796183},                                           // Addr: 0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454, Notional: 0.00796183
-		{chain: 2, addr: "000000000000000000000000d7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f", symbol: "B2M", coinGeckoId: "bit2me", decimals: 18, price: 0.01310904},                                           // Addr: 0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f, Notional: 0.0068894707852152
-		{chain: 2, addr: "000000000000000000000000d7dcd9b99787c619b4d57979521258d1a7267ad7", symbol: "EVRY", coinGeckoId: "evrynet", decimals: 18, price: 0.00140897},                                         // Addr: 0xd7dcd9b99787c619b4d57979521258d1a7267ad7, Notional: 0.18034816
-		{chain: 2, addr: "000000000000000000000000d96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea", symbol: "GMAC", coinGeckoId: "gemach", decimals: 18, price: 0.00141788},                                          // Addr: 0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea, Notional: 42554.490507993105
-		{chain: 2, addr: "000000000000000000000000d979c468a68062e7bdff4ba6df7842dfd3492e0f", symbol: "BBL", coinGeckoId: "beoble", decimals: 18, price: 0.00016194},                                           // Addr: 0xd979c468a68062e7bdff4ba6df7842dfd3492e0f, Notional: 1012.0945959414289
-		{chain: 2, addr: "000000000000000000000000d9c2d319cd7e6177336b0a9c93c21cb48d84fb54", symbol: "HAPI", coinGeckoId: "hapi", decimals: 18, price: 3.24},                                                  // Addr: 0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54, Notional: 3.24
-		{chain: 2, addr: "000000000000000000000000da31d0d1bc934fc34f7189e38a413ca0a5e8b44f", symbol: "BSSB", coinGeckoId: "bitstable-finance", decimals: 18, price: 0.02773312},                               // Addr: 0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f, Notional: 0.2773312
-		{chain: 2, addr: "000000000000000000000000da9fdab21bc4a5811134a6e0ba6ca06624e67c07", symbol: "QUIDD", coinGeckoId: "quidd", decimals: 18, price: 0.00134726},                                          // Addr: 0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07, Notional: 72.43812842
-		{chain: 2, addr: "000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                    // Addr: 0xdac17f958d2ee523a2206206994597c13d831ec7, Notional: 17200836.425639
-		{chain: 2, addr: "000000000000000000000000db0170e2d0c1cc1b2e7a90313d9b9afa4f250289", symbol: "ADAPAD", coinGeckoId: "adapad", decimals: 18, price: 0.00268922},                                        // Addr: 0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289, Notional: 6.969022793204133
-		{chain: 2, addr: "000000000000000000000000db726152680ece3c9291f1016f1d36f3995f6941", symbol: "MEDIA", coinGeckoId: "media-network", decimals: 6, price: 0.755892},                                     // Addr: 0xdb726152680ece3c9291f1016f1d36f3995f6941, Notional: 0.755892
-		{chain: 2, addr: "000000000000000000000000db82c0d91e057e05600c8f8dc836beb41da6df14", symbol: "SLN", coinGeckoId: "smart-layer-network", decimals: 18, price: 0.0421123},                               // Addr: 0xdb82c0d91e057e05600c8f8dc836beb41da6df14, Notional: 9490.721985163038
-		{chain: 2, addr: "000000000000000000000000dbdb4d16eda451d0503b854cf79d55697f90c8df", symbol: "ALCX", coinGeckoId: "alchemix", decimals: 18, price: 9.07},                                              // Addr: 0xdbdb4d16eda451d0503b854cf79d55697f90c8df, Notional: 0.00907
-		{chain: 2, addr: "000000000000000000000000dd69db25f6d620a7bad3023c5d32761d353d3de9", symbol: "GETH", coinGeckoId: "goerli-eth", decimals: 18, price: 0.00532954},                                      // Addr: 0xdd69db25f6d620a7bad3023c5d32761d353d3de9, Notional: 0.3997155
-		{chain: 2, addr: "000000000000000000000000de30da39c46104798bb5aa3fe8b9e0e1f348163f", symbol: "GTC", coinGeckoId: "gitcoin", decimals: 18, price: 0.270909},                                            // Addr: 0xde30da39c46104798bb5aa3fe8b9e0e1f348163f, Notional: 5.689089
-		{chain: 2, addr: "000000000000000000000000de342a3e269056fc3305f9e315f4c40d917ba521", symbol: "BYTE", coinGeckoId: "byte", decimals: 9, price: 0.00000303},                                             // Addr: 0xde342a3e269056fc3305f9e315f4c40d917ba521, Notional: 104899.72773015148
-		{chain: 2, addr: "000000000000000000000000de4ee8057785a7e8e800db58f9784845a5c2cbd6", symbol: "DEXE", coinGeckoId: "dexe", decimals: 18, price: 8.91},                                                  // Addr: 0xde4ee8057785a7e8e800db58f9784845a5c2cbd6, Notional: 207242335.10566336
-		{chain: 2, addr: "000000000000000000000000de5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02", symbol: "GERA", coinGeckoId: "gera-coin", decimals: 18, price: 0.00004141},                                       // Addr: 0xde5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02, Notional: 0.18361989746941587
-		{chain: 2, addr: "000000000000000000000000defb0b264032e4e128b00d02b3fd0aa00331237b", symbol: "Buddha", coinGeckoId: "buddha", decimals: 18, price: 4.82833e-7},                                        // Addr: 0xdefb0b264032e4e128b00d02b3fd0aa00331237b, Notional: 2312.3734262740463
-		{chain: 2, addr: "000000000000000000000000df09a216fac5adc3e640db418c0b956076509503", symbol: "PKN", coinGeckoId: "poken", decimals: 18, price: 0.00006353},                                            // Addr: 0xdf09a216fac5adc3e640db418c0b956076509503, Notional: 4.5425754252
-		{chain: 2, addr: "000000000000000000000000df3ac4f479375802a821f7b7b46cd7eb5e4262cc", symbol: "eUSD", coinGeckoId: "eusd-new", decimals: 18, price: 0.978265},                                          // Addr: 0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc, Notional: 4.89132499021735
-		{chain: 2, addr: "000000000000000000000000df574c24545e5ffecb9a659c229253d4111d87e1", symbol: "HUSD", coinGeckoId: "husd", decimals: 8, price: 0.03048033},                                             // Addr: 0xdf574c24545e5ffecb9a659c229253d4111d87e1, Notional: 235.0530983015702
-		{chain: 2, addr: "000000000000000000000000dfdb7f72c1f195c5951a234e8db9806eb0635346", symbol: "NFD", coinGeckoId: "feisty-doge-nft", decimals: 18, price: 0.00006942},                                  // Addr: 0xdfdb7f72c1f195c5951a234e8db9806eb0635346, Notional: 75435.43743128936
-		{chain: 2, addr: "000000000000000000000000e020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf", symbol: "ARCD", coinGeckoId: "arcade-protocol", decimals: 18, price: 0.00240919},                                 // Addr: 0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf, Notional: 0.722757
-		{chain: 2, addr: "000000000000000000000000e0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112", symbol: "GS", coinGeckoId: "genesis-shards", decimals: 18, price: 0.00481299},                                    // Addr: 0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112, Notional: 0.44748185867445056
-		{chain: 2, addr: "000000000000000000000000e0f63a424a4439cbe457d80e4f4b51ad25b2c56c", symbol: "SPX", coinGeckoId: "spx6900", decimals: 8, price: 1.36},                                                 // Addr: 0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c, Notional: 206927923.52856892
-		{chain: 2, addr: "000000000000000000000000e1c7e30c42c24582888c758984f6e382096786bd", symbol: "XCUR", coinGeckoId: "curate", decimals: 8, price: 0.0010096},                                            // Addr: 0xe1c7e30c42c24582888c758984f6e382096786bd, Notional: 0.0020192
-		{chain: 2, addr: "000000000000000000000000e28b3b32b6c345a34ff64674606124dd5aceca30", symbol: "INJ", coinGeckoId: "injective-protocol", decimals: 18, price: 13.61},                                    // Addr: 0xe28b3b32b6c345a34ff64674606124dd5aceca30, Notional: 117197.7627100126
-		{chain: 2, addr: "000000000000000000000000e3818504c1b32bf1557b16c238b2e01fd3149c17", symbol: "PLR", coinGeckoId: "pillar", decimals: 18, price: 0.00234533},                                           // Addr: 0xe3818504c1b32bf1557b16c238b2e01fd3149c17, Notional: 2.529414608507861
-		{chain: 2, addr: "000000000000000000000000e3c408bd53c31c085a1746af401a4042954ff740", symbol: "GMT", coinGeckoId: "stepn", decimals: 8, price: 0.051683},                                               // Addr: 0xe3c408bd53c31c085a1746af401a4042954ff740, Notional: 5.70955826402627
-		{chain: 2, addr: "000000000000000000000000e4ab0be415e277d82c38625b72bd7dea232c2e7d", symbol: "XRP20", coinGeckoId: "xrp20", decimals: 18, price: 0.00001324},                                          // Addr: 0xe4ab0be415e277d82c38625b72bd7dea232c2e7d, Notional: 0.5327433831539669
-		{chain: 2, addr: "000000000000000000000000e4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903", symbol: "XEND", coinGeckoId: "xend-finance", decimals: 18, price: 0.01573795},                                    // Addr: 0xe4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903, Notional: 91.12133382618448
-		{chain: 2, addr: "000000000000000000000000e516d78d784c77d479977be58905b3f2b1111126", symbol: "SPWN", coinGeckoId: "bitspawn", decimals: 18, price: 0.000012},                                          // Addr: 0xe516d78d784c77d479977be58905b3f2b1111126, Notional: 16.90809937193028
-		{chain: 2, addr: "000000000000000000000000e53ec727dbdeb9e2d5456c3be40cff031ab40a55", symbol: "SUPER", coinGeckoId: "superfarm", decimals: 18, price: 0.696464},                                        // Addr: 0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55, Notional: 69.6464
-		{chain: 2, addr: "000000000000000000000000e66747a101bff2dba3697199dcce5b743b454759", symbol: "GT", coinGeckoId: "gatechain-token", decimals: 18, price: 18.34},                                        // Addr: 0xe66747a101bff2dba3697199dcce5b743b454759, Notional: 3.618184892
-		{chain: 2, addr: "000000000000000000000000e6f47303032a09c8c0f8ebb713c00e6ed345e8c3", symbol: "RISITA", coinGeckoId: "risitas", decimals: 18, price: 0.00000172},                                       // Addr: 0xe6f47303032a09c8c0f8ebb713c00e6ed345e8c3, Notional: 0.2847044577892508
-		{chain: 2, addr: "000000000000000000000000e74dc43867e0cbeb208f1a012fc60dcbbf0e3044", symbol: "CWAP", coinGeckoId: "defire", decimals: 18, price: 0.00516272},                                          // Addr: 0xe74dc43867e0cbeb208f1a012fc60dcbbf0e3044, Notional: 0.01032544
-		{chain: 2, addr: "000000000000000000000000e7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd", symbol: "NFTL", coinGeckoId: "nftlaunch", decimals: 18, price: 0.00104422},                                       // Addr: 0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd, Notional: 1.0546622
-		{chain: 2, addr: "000000000000000000000000e831f96a7a1dce1aa2eb760b1e296c6a74caa9d5", symbol: "NEXM", coinGeckoId: "nexum", decimals: 8, price: 0.00452156},                                            // Addr: 0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5, Notional: 2935.0231970589175
-		{chain: 2, addr: "000000000000000000000000e939f011a3d8fc0aa874c97e8156053a903d7176", symbol: "DOLZ", coinGeckoId: "dolz-io", decimals: 18, price: 0.00643153},                                         // Addr: 0xe939f011a3d8fc0aa874c97e8156053a903d7176, Notional: 229.96085253765693
-		{chain: 2, addr: "000000000000000000000000e9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5", symbol: "ZENF", coinGeckoId: "zenland", decimals: 18, price: 0.00139139},                                         // Addr: 0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5, Notional: 18323.54814535227
-		{chain: 2, addr: "000000000000000000000000ea068fba19ce95f12d252ad8cb2939225c4ea02d", symbol: "FIEF", coinGeckoId: "fief", decimals: 18, price: 0.01982615},                                            // Addr: 0xea068fba19ce95f12d252ad8cb2939225c4ea02d, Notional: 156048.07930857898
-		{chain: 2, addr: "000000000000000000000000eaa63125dd63f10874f99cdbbb18410e7fc79dd3", symbol: "HEMULE", coinGeckoId: "hemule", decimals: 18, price: 0.00135531},                                        // Addr: 0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3, Notional: 3001.92572279077
-		{chain: 2, addr: "000000000000000000000000eb4c2781e4eba804ce9a9803c67d0893436bb27d", symbol: "renBTC", coinGeckoId: "renbtc", decimals: 8, price: 24581},                                              // Addr: 0xeb4c2781e4eba804ce9a9803c67d0893436bb27d, Notional: 24.581
-		{chain: 2, addr: "000000000000000000000000ebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", symbol: "ID", coinGeckoId: "everid", decimals: 18, price: 0.01389116},                                            // Addr: 0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83, Notional: 359.9833758878177
-		{chain: 2, addr: "000000000000000000000000ed35af169af46a02ee13b9d79eb57d6d68c1749e", symbol: "OMI", coinGeckoId: "ecomi", decimals: 18, price: 0.00021611},                                            // Addr: 0xed35af169af46a02ee13b9d79eb57d6d68c1749e, Notional: 4.3222
-		{chain: 2, addr: "000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935", symbol: "NTX", coinGeckoId: "nunet", decimals: 6, price: 0.01329238},                                             // Addr: 0xf0d33beda4d734c72684b5f9abbebf715d0a7935, Notional: 3.1254373093999996
-		{chain: 2, addr: "000000000000000000000000f1182229b71e79e504b1d2bf076c15a277311e05", symbol: "LBR", coinGeckoId: "lybra-finance", decimals: 18, price: 0.04172701},                                    // Addr: 0xf1182229b71e79e504b1d2bf076c15a277311e05, Notional: 0.004172701
-		{chain: 2, addr: "000000000000000000000000f16e81dce15b08f326220742020379b855b87df9", symbol: "ICE", coinGeckoId: "ice-token", decimals: 18, price: 0.16271},                                           // Addr: 0xf16e81dce15b08f326220742020379b855b87df9, Notional: 120.6434517558178
-		{chain: 2, addr: "000000000000000000000000f17a3fe536f8f7847f1385ec1bc967b2ca9cae8d", symbol: "AMKT", coinGeckoId: "alongside-crypto-market-index", decimals: 18, price: 285.7},                        // Addr: 0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d, Notional: 28.57
-		{chain: 2, addr: "000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2", symbol: "BICO", coinGeckoId: "biconomy", decimals: 18, price: 0.104492},                                          // Addr: 0xf17e65822b568b3903685a7c9f496cf7656cc6c2, Notional: 11142.227502392427
-		{chain: 2, addr: "000000000000000000000000f19308f923582a6f7c465e5ce7a9dc1bec6665b1", symbol: "TITANX", coinGeckoId: "titanx", decimals: 18, price: 1.32219e-7},                                        // Addr: 0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1, Notional: 230.92201915794908
-		{chain: 2, addr: "000000000000000000000000f1f955016ecbcd7321c7266bccfb96c68ea5e49b", symbol: "RLY", coinGeckoId: "rally-2", decimals: 18, price: 0.00125748},                                          // Addr: 0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b, Notional: 50547.78886457924
-		{chain: 2, addr: "000000000000000000000000f21661d0d1d76d3ecb8e1b9f1c923dbfffae4097", symbol: "RIO", coinGeckoId: "realio-network", decimals: 18, price: 0.260276},                                     // Addr: 0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097, Notional: 4.148530749276921
-		{chain: 2, addr: "000000000000000000000000f2fdd9c25d7bc8002ce89716d1be484b2d976944", symbol: "𝕏PAY", coinGeckoId: "payments", decimals: 18, price: 0.00021002},                                        // Addr: 0xf2fdd9c25d7bc8002ce89716d1be484b2d976944, Notional: 5.2505
-		{chain: 2, addr: "000000000000000000000000f3ae5d769e153ef72b4e3591ac004e89f48107a1", symbol: "DPR", coinGeckoId: "deeper-network", decimals: 18, price: 0.00119401},                                   // Addr: 0xf3ae5d769e153ef72b4e3591ac004e89f48107a1, Notional: 22.69734782545926
-		{chain: 2, addr: "000000000000000000000000f418588522d5dd018b425e472991e52ebbeeeeee", symbol: "PUSH", coinGeckoId: "ethereum-push-notification-service", decimals: 18, price: 0.03470062},              // Addr: 0xf418588522d5dd018b425e472991e52ebbeeeeee, Notional: 0.03470062
-		{chain: 2, addr: "000000000000000000000000f629cbd94d3791c9250152bd8dfbdf380e2a3b9c", symbol: "ENJ", coinGeckoId: "enjincoin", decimals: 18, price: 0.076267},                                          // Addr: 0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c, Notional: 145.23480346339
-		{chain: 2, addr: "000000000000000000000000f64265e65c4529879a7abf467e00d39e39c0b0da", symbol: "RFKJ", coinGeckoId: "independence-token", decimals: 18, price: 0.00000185},                              // Addr: 0xf64265e65c4529879a7abf467e00d39e39c0b0da, Notional: 2974.225207343221
-		{chain: 2, addr: "000000000000000000000000f6e06b54855eff198a2d9a8686113665499a6134", symbol: "Celt", coinGeckoId: "celestial", decimals: 18, price: 0.00001329},                                       // Addr: 0xf6e06b54855eff198a2d9a8686113665499a6134, Notional: 0.01997487
-		{chain: 2, addr: "000000000000000000000000f70ce9ee486106882d3dc43ddbd84e0fa71ac2a5", symbol: "DUCKER", coinGeckoId: "ducker", decimals: 18, price: 8.76292e-7},                                        // Addr: 0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5, Notional: 441.06331336290583
-		{chain: 2, addr: "000000000000000000000000f7413489c474ca4399eee604716c72879eea3615", symbol: "APYS", coinGeckoId: "apyswap", decimals: 18, price: 0.00233419},                                         // Addr: 0xf7413489c474ca4399eee604716c72879eea3615, Notional: 0.35917828044284095
-		{chain: 2, addr: "000000000000000000000000f819d9cb1c2a819fd991781a822de3ca8607c3c9", symbol: "UNIBOT", coinGeckoId: "unibot", decimals: 18, price: 3.74},                                              // Addr: 0xf819d9cb1c2a819fd991781a822de3ca8607c3c9, Notional: 366.02442430620005
-		{chain: 2, addr: "000000000000000000000000f831938caf837cd505de196bbb408d81a06376ab", symbol: "JEFF", coinGeckoId: "jeff", decimals: 18, price: 0.00253905},                                            // Addr: 0xf831938caf837cd505de196bbb408d81a06376ab, Notional: 2113.4295447447034
-		{chain: 2, addr: "000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f", symbol: "FRONT", coinGeckoId: "frontier-token", decimals: 18, price: 0.18354},                                    // Addr: 0xf8c3527cc04340b208c854e985240c02f7b7793f, Notional: 681.8438128856844
-		{chain: 2, addr: "000000000000000000000000f99d58e463a2e07e5692127302c20a191861b4d6", symbol: "ANY", coinGeckoId: "anyswap", decimals: 18, price: 0.641778},                                            // Addr: 0xf99d58e463a2e07e5692127302c20a191861b4d6, Notional: 3.7856375016603
-		{chain: 2, addr: "000000000000000000000000fa3e941d1f6b7b10ed84a0c211bfa8aee907965e", symbol: "HAY", coinGeckoId: "haycoin", decimals: 18, price: 99681},                                               // Addr: 0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e, Notional: 10945.7413437
-		{chain: 2, addr: "000000000000000000000000faba6f8e4a5e8ab82f62fe7c39859fa577269be3", symbol: "ONDO", coinGeckoId: "ondo-finance", decimals: 18, price: 0.849821},                                      // Addr: 0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3, Notional: 607378.966194
-		{chain: 2, addr: "000000000000000000000000fad45e47083e4607302aa43c65fb3106f1cd7607", symbol: "HOGE", coinGeckoId: "hoge-finance", decimals: 9, price: 0.00000667},                                     // Addr: 0xfad45e47083e4607302aa43c65fb3106f1cd7607, Notional: 9485.561741631236
-		{chain: 2, addr: "000000000000000000000000fb5c6815ca3ac72ce9f5006869ae67f18bf77006", symbol: "PSTAKE", coinGeckoId: "pstake-finance", decimals: 18, price: 0.051344},                                  // Addr: 0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006, Notional: 1061.0638298413512
-		{chain: 2, addr: "000000000000000000000000fc05987bd2be489accf0f509e44b0145d68240f7", symbol: "ESS", coinGeckoId: "essentia", decimals: 18, price: 0.00022657},                                         // Addr: 0xfc05987bd2be489accf0f509e44b0145d68240f7, Notional: 0.00022657
-		{chain: 2, addr: "000000000000000000000000fc5e4ed56153b57aa8ef769eba3e79e58e19be93", symbol: "SOLAV", coinGeckoId: "solav", decimals: 18, price: 9.80223e-7},                                          // Addr: 0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93, Notional: 0.000985124115
-		{chain: 2, addr: "000000000000000000000000fcaf0e4498e78d65526a507360f755178b804ba8", symbol: "SHIB", coinGeckoId: "niccagewaluigielmo42069inu", decimals: 18, price: 0.00003299},                      // Addr: 0xfcaf0e4498e78d65526a507360f755178b804ba8, Notional: 7.582233964773884
-		{chain: 2, addr: "000000000000000000000000fd09911130e6930bf87f2b0554c44f400bd80d3e", symbol: "ETHIX", coinGeckoId: "ethichub", decimals: 18, price: 0.17463},                                          // Addr: 0xfd09911130e6930bf87f2b0554c44f400bd80d3e, Notional: 3817261.4854207016
-		{chain: 2, addr: "000000000000000000000000fe80d611c6403f70e5b1b9b722d2b3510b740b2b", symbol: "EQB", coinGeckoId: "equilibria-finance", decimals: 18, price: 0.3896},                                   // Addr: 0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b, Notional: 376202.11417268176
-		{chain: 2, addr: "000000000000000000000000ff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa", symbol: "ORBS", coinGeckoId: "orbs", decimals: 18, price: 0.01933224},                                            // Addr: 0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa, Notional: 7268.724023429437
-		{chain: 2, addr: "000000000000000000000000ff836a5821e69066c87e268bc51b849fab94240c", symbol: "шайлушай", coinGeckoId: "real-smurf-cat", decimals: 18, price: 0.00002656},                              // Addr: 0xff836a5821e69066c87e268bc51b849fab94240c, Notional: 57652.65477678875
-		{chain: 2, addr: "000000000000000000000000ffbf315f70e458e49229654dea4ce192d26f9b25", symbol: "VOLT", coinGeckoId: "voltage", decimals: 18, price: 0.00155692},                                         // Addr: 0xffbf315f70e458e49229654dea4ce192d26f9b25, Notional: 0.155692
-		{chain: 3, addr: "0000000000000000000000002c71557d2edfedd8330e52be500058a014d329e7", symbol: "BTL", coinGeckoId: "bitlocus", decimals: 6, price: 0.00005985},                                          // Addr: terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl, Notional: 29616.631339222808
-		{chain: 3, addr: "00000000000000000000000034aa51100370594b15479392149157eeb479b9a8", symbol: "ASTRO", coinGeckoId: "astroport", decimals: 6, price: 0.00020221},                                       // Addr: terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3, Notional: 0.14135292652598
-		{chain: 3, addr: "0000000000000000000000005b7d58fe96a636927960029ea47996db5808d015", symbol: "XRUNE", coinGeckoId: "thorstarter", decimals: 6, price: 0.00265434},                                     // Addr: terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm, Notional: 20.391137969555338
-		{chain: 3, addr: "0000000000000000000000008f5cd460d57ac54e111646fc569179144c7f0c28", symbol: "PLY", coinGeckoId: "playnity", decimals: 6, price: 0.00025219},                                          // Addr: terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu, Notional: 22775.057525339213
-		{chain: 3, addr: "000000000000000000000000a21d626429c68c8c768ba0b2913895571703fd5b", symbol: "MIR", coinGeckoId: "mirror-protocol", decimals: 6, price: 0.02046236},                                   // Addr: terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6, Notional: 460.4472385382616
-		{chain: 3, addr: "000000000000000000000000a8a9afbd2157e093e8448dd6450abec8ad79aeeb", symbol: "ANC", coinGeckoId: "anchor-protocol", decimals: 6, price: 0.00314273},                                   // Addr: terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76, Notional: 379.3356897379766
-		{chain: 3, addr: "000000000000000000000000ab05561fadecc41babc73132847ff55a5cef2f37", symbol: "TNS", coinGeckoId: "terra-name-service", decimals: 6, price: 0.0010459},                                 // Addr: terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y, Notional: 0.826261
-		{chain: 3, addr: "0100000000000000000000000000000000000000000000000000000075757364", symbol: "UST", coinGeckoId: "terrausd", decimals: 6, price: 0.01216763},                                          // Addr: uusd, Notional: 1703638.1211902797
-		{chain: 3, addr: "010000000000000000000000000000000000000000000000000000756c756e61", symbol: "LUNA", coinGeckoId: "terra-luna", decimals: 6, price: 0.00006074},                                       // Addr: uluna, Notional: 4819576.881343387
-		{chain: 4, addr: "0000000000000000000000000231f91e02debd20345ae8ab7d71a41f8e140ce7", symbol: "bwJUP", coinGeckoId: "jupiter", decimals: 18, price: 0.0006665},                                         // Addr: 0x0231f91e02debd20345ae8ab7d71a41f8e140ce7, Notional: 18.219083107159104
-		{chain: 4, addr: "000000000000000000000000027a9d301fb747cd972cfb29a63f3bda551dfc5c", symbol: "mWOM", coinGeckoId: "magpie-wom", decimals: 18, price: 0.00270813},                                      // Addr: 0x027a9d301fb747cd972cfb29a63f3bda551dfc5c, Notional: 1.3192875179719659
-		{chain: 4, addr: "000000000000000000000000031b41e504677879370e9dbcf937283a8691fa7f", symbol: "FET", coinGeckoId: "fetch-ai", decimals: 18, price: 0.777723},                                           // Addr: 0x031b41e504677879370e9dbcf937283a8691fa7f, Notional: 0.15554460000000003
-		{chain: 4, addr: "000000000000000000000000039cb485212f996a9dbb85a9a75d898f94d38da6", symbol: "DEXE", coinGeckoId: "dexe", decimals: 18, price: 8.91},                                                  // Addr: 0x039cb485212f996a9dbb85a9a75d898f94d38da6, Notional: 18.711000000000002
-		{chain: 4, addr: "00000000000000000000000003ff0ff224f904be3118461335064bb48df47938", symbol: "ONE", coinGeckoId: "wrapped-one", decimals: 18, price: 0.01204436},                                      // Addr: 0x03ff0ff224f904be3118461335064bb48df47938, Notional: 205.21577051517272
-		{chain: 4, addr: "0000000000000000000000000782b6d8c4551b9760e74c0545a9bcd90bdc41e5", symbol: "HAY", coinGeckoId: "helio-protocol-hay", decimals: 18, price: 0.999434},                                 // Addr: 0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5, Notional: 17.47763838443722
-		{chain: 4, addr: "00000000000000000000000008b450e4a48c04cdf6db2bd4cf24057f7b9563ff", symbol: "QUO", coinGeckoId: "quo", decimals: 18, price: 0.00043327},                                              // Addr: 0x08b450e4a48c04cdf6db2bd4cf24057f7b9563ff, Notional: 8061.428352659088
-		{chain: 4, addr: "0000000000000000000000000a356f512f6fce740111ee04ab1699017a908680", symbol: "UFARM", coinGeckoId: "unifarm", decimals: 18, price: 0.00023343},                                        // Addr: 0x0a356f512f6fce740111ee04ab1699017a908680, Notional: 0.1589361606221574
-		{chain: 4, addr: "0000000000000000000000000b15ddf19d47e6a86a56148fb4afffc6929bcb89", symbol: "IDIA", coinGeckoId: "idia", decimals: 18, price: 0.02829531},                                            // Addr: 0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89, Notional: 3753235.1119032856
-		{chain: 4, addr: "0000000000000000000000000b33542240d6fa323c796749f6d6869fdb7f13ca", symbol: "ETHM", coinGeckoId: "ethereum-meta", decimals: 18, price: 3.6581e-14},                                   // Addr: 0x0b33542240d6fa323c796749f6d6869fdb7f13ca, Notional: 0.0007743894856432907
-		{chain: 4, addr: "0000000000000000000000000c7d31befe4945089a3b8f835d6e8c1d4df6d952", symbol: "POKO", coinGeckoId: "poko", decimals: 9, price: 0.00000395},                                             // Addr: 0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952, Notional: 17869.22621099765
-		{chain: 4, addr: "0000000000000000000000000cf8e180350253271f4b917ccfb0accc4862f262", symbol: "BTCBR", coinGeckoId: "bitcoin-br", decimals: 18, price: 2.2727e-14},                                     // Addr: 0x0cf8e180350253271f4b917ccfb0accc4862f262, Notional: 0.00115907722727
-		{chain: 4, addr: "0000000000000000000000000d8ce2a99bb6e3b7db580ed848240e4a0f9ae153", symbol: "FIL", coinGeckoId: "binance-peg-filecoin", decimals: 18, price: 2.52},                                   // Addr: 0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153, Notional: 179.32319999999999
-		{chain: 4, addr: "0000000000000000000000000e09fabb73bd3ade0a17ecc321fd13a19e81ce82", symbol: "Cake", coinGeckoId: "pancakeswap-token", decimals: 18, price: 2.41},                                     // Addr: 0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82, Notional: 447.4087582124001
-		{chain: 4, addr: "0000000000000000000000000eb3a705fc54725037cc9e008bdede697f62f335", symbol: "ATOM", coinGeckoId: "cosmos", decimals: 18, price: 4.37},                                                // Addr: 0x0eb3a705fc54725037cc9e008bdede697f62f335, Notional: 435.8176100177
-		{chain: 4, addr: "0000000000000000000000000ebd9537a25f56713e34c45b38f421a1e7191469", symbol: "MOOV", coinGeckoId: "dotmoovs", decimals: 18, price: 0.0010922},                                         // Addr: 0x0ebd9537a25f56713e34c45b38f421a1e7191469, Notional: 243.90546505636604
-		{chain: 4, addr: "00000000000000000000000010c9524dbf934b3b625dce3bdc0efdc367f4e84b", symbol: "MVX", coinGeckoId: "mavaverse-token", decimals: 8, price: 1.00838e-7},                                   // Addr: 0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b, Notional: 0.016067383492629032
-		{chain: 4, addr: "00000000000000000000000010f6f2b97f3ab29583d9d38babf2994df7220c21", symbol: "TEDDY", coinGeckoId: "teddy-doge", decimals: 18, price: 1.50024e-10},                                    // Addr: 0x10f6f2b97f3ab29583d9d38babf2994df7220c21, Notional: 0.30783698513606866
-		{chain: 4, addr: "000000000000000000000000111111111117dc0aa78b770fa6a738034120c302", symbol: "1INCH", coinGeckoId: "1inch", decimals: 18, price: 0.209226},                                            // Addr: 0x111111111117dc0aa78b770fa6a738034120c302, Notional: 16.32715156401078
-		{chain: 4, addr: "000000000000000000000000114597f4260caf4cde1eeb0b9d9865b0b7b9a46a", symbol: "AGF", coinGeckoId: "augmented-finance", decimals: 18, price: 0.00006308},                                // Addr: 0x114597f4260caf4cde1eeb0b9d9865b0b7b9a46a, Notional: 0.0012615999999999999
-		{chain: 4, addr: "00000000000000000000000011a38e06699b238d6d9a0c7a01f3ac63a07ad318", symbol: "USDFI", coinGeckoId: "usdfi", decimals: 18, price: 0.724382},                                            // Addr: 0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318, Notional: 0.724382
-		{chain: 4, addr: "000000000000000000000000129385c4acd0075e45a0c9a5177bdfec9678a138", symbol: "MTK", coinGeckoId: "metakings", decimals: 18, price: 0.00010591},                                        // Addr: 0x129385c4acd0075e45a0c9a5177bdfec9678a138, Notional: 0.0042363999999999995
-		{chain: 4, addr: "00000000000000000000000012bb890508c125661e03b09ec06e404bc9289040", symbol: "RACA", coinGeckoId: "radio-caca", decimals: 18, price: 0.00007078},                                      // Addr: 0x12bb890508c125661e03b09ec06e404bc9289040, Notional: 126.20534065547938
-		{chain: 4, addr: "00000000000000000000000012e34cdf6a031a10fe241864c32fb03a4fdad739", symbol: "FREE", coinGeckoId: "freedom-coin", decimals: 18, price: 5.5463e-8},                                     // Addr: 0x12e34cdf6a031a10fe241864c32fb03a4fdad739, Notional: 0.00001275649
-		{chain: 4, addr: "00000000000000000000000012f31b73d812c6bb0d735a218c086d44d5fe5f89", symbol: "agEUR", coinGeckoId: "ageur", decimals: 18, price: 1.14},                                                // Addr: 0x12f31b73d812c6bb0d735a218c086d44d5fe5f89, Notional: 17.8777950048
-		{chain: 4, addr: "0000000000000000000000001446f3cedf4d86a9399e49f7937766e6de2a3aab", symbol: "KRW", coinGeckoId: "krown", decimals: 18, price: 0.00000405},                                            // Addr: 0x1446f3cedf4d86a9399e49f7937766e6de2a3aab, Notional: 0.1614617230357395
-		{chain: 4, addr: "00000000000000000000000014778860e937f509e651192a90589de711fb88a9", symbol: "CYBER", coinGeckoId: "cyberconnect", decimals: 18, price: 1.16},                                         // Addr: 0x14778860e937f509e651192a90589de711fb88a9, Notional: 15.222959293199999
-		{chain: 4, addr: "000000000000000000000000154a9f9cbd3449ad22fdae23044319d6ef2a1fab", symbol: "SKILL", coinGeckoId: "cryptoblades", decimals: 18, price: 0.074377},                                     // Addr: 0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab, Notional: 0.000074377
-		{chain: 4, addr: "0000000000000000000000001591e923e0836a3949b59637fbe8959f000894b9", symbol: "MAI", coinGeckoId: "multi-ai", decimals: 18, price: 0.00036258},                                         // Addr: 0x1591e923e0836a3949b59637fbe8959f000894b9, Notional: 2.3772793609123717
-		{chain: 4, addr: "0000000000000000000000001613957159e9b0ac6c80e824f7eea748a32a0ae2", symbol: "CGG", coinGeckoId: "chain-guardians", decimals: 18, price: 0.00120178},                                  // Addr: 0x1613957159e9b0ac6c80e824f7eea748a32a0ae2, Notional: 0.9985835479118413
-		{chain: 4, addr: "00000000000000000000000016faf9daa401aa42506af503aa3d80b871c467a3", symbol: "DCK", coinGeckoId: "dexcheck", decimals: 18, price: 0.00870273},                                         // Addr: 0x16faf9daa401aa42506af503aa3d80b871c467a3, Notional: 94675.44069089113
-		{chain: 4, addr: "0000000000000000000000001796ae0b0fa4862485106a0de9b654efe301d0b2", symbol: "PMON", coinGeckoId: "polychain-monsters", decimals: 18, price: 0.04947109},                              // Addr: 0x1796ae0b0fa4862485106a0de9b654efe301d0b2, Notional: 0.018041516827607202
-		{chain: 4, addr: "00000000000000000000000019b99162adaab85134e781ac0048c275c31b205a", symbol: "TAUR", coinGeckoId: "marnotaur", decimals: 18, price: 0.00085954},                                       // Addr: 0x19b99162adaab85134e781ac0048c275c31b205a, Notional: 3.506640231541423
-		{chain: 4, addr: "00000000000000000000000019c018e13cff682e729cc7b5fb68c8a641bf98a4", symbol: "burn", coinGeckoId: "burnedfi", decimals: 18, price: 1.84},                                              // Addr: 0x19c018e13cff682e729cc7b5fb68c8a641bf98a4, Notional: 68.609667552
-		{chain: 4, addr: "0000000000000000000000001a131f7b106d58f33eaf0fe5b47db2f2045e5732", symbol: "DEGEN", coinGeckoId: "degenreborn", decimals: 18, price: 3.301e-9},                                      // Addr: 0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732, Notional: 597.9909584753752
-		{chain: 4, addr: "0000000000000000000000001a28ed8472f644e8898a169a644503b779748d6e", symbol: "SOFI", coinGeckoId: "rai-finance", decimals: 18, price: 0.01213801},                                     // Addr: 0x1a28ed8472f644e8898a169a644503b779748d6e, Notional: 40.73604386527099
-		{chain: 4, addr: "0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                                // Addr: 0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3, Notional: 1526.7160142802352
-		{chain: 4, addr: "0000000000000000000000001cb9ca00538265a22e56b758026948608ba5d86f", symbol: "LSR", coinGeckoId: "lasereyes", decimals: 8, price: 0.00072701},                                         // Addr: 0x1cb9ca00538265a22e56b758026948608ba5d86f, Notional: 0.11341356000000001
-		{chain: 4, addr: "0000000000000000000000001ce0c2827e2ef14d5c4f29a091d735a204794041", symbol: "AVAX", coinGeckoId: "binance-peg-avalanche", decimals: 18, price: 21.24},                                // Addr: 0x1ce0c2827e2ef14d5c4f29a091d735a204794041, Notional: 2683.8184307255997
-		{chain: 4, addr: "0000000000000000000000001d1cb8997570e73949930c01fe5796c88d7336c6", symbol: "PBR", coinGeckoId: "polkabridge", decimals: 18, price: 0.00038419},                                      // Addr: 0x1d1cb8997570e73949930c01fe5796c88d7336c6, Notional: 0.00038419
-		{chain: 4, addr: "0000000000000000000000001d2f0da169ceb9fc7b3144628db156f3f6c60dbe", symbol: "XRP", coinGeckoId: "binance-peg-xrp", decimals: 18, price: 2.3},                                         // Addr: 0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe, Notional: 3086.6288420459996
-		{chain: 4, addr: "0000000000000000000000001da87b114f35e1dc91f72bf57fc07a768ad40bb0", symbol: "EQZ", coinGeckoId: "equalizer", decimals: 18, price: 0.00090513},                                        // Addr: 0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0, Notional: 0.0090513
-		{chain: 4, addr: "0000000000000000000000001ee098cbaf1f846d5df1993f7e2d10afb35a878d", symbol: "SABLE", coinGeckoId: "sable", decimals: 18, price: 0.00391217},                                          // Addr: 0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d, Notional: 4181.116784915732
-		{chain: 4, addr: "0000000000000000000000001fa4a73a3f0133f0025378af00236f3abdee5d63", symbol: "NEAR", coinGeckoId: "wrapped-near", decimals: 18, price: 2.47},                                          // Addr: 0x1fa4a73a3f0133f0025378af00236f3abdee5d63, Notional: 61.888814
-		{chain: 4, addr: "000000000000000000000000200c234721b5e549c3693ccc93cf191f90dc2af9", symbol: "METAL", coinGeckoId: "drunk-robots", decimals: 18, price: 0.00057635},                                   // Addr: 0x200c234721b5e549c3693ccc93cf191f90dc2af9, Notional: 2.343649015983816
-		{chain: 4, addr: "0000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8", symbol: "ETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                                // Addr: 0x2170ed0880ac9a755fd29b2688956bd959f933f8, Notional: 162710.124881629
-		{chain: 4, addr: "00000000000000000000000021f9b5b2626603e3f40bfc13d01afb8c431d382f", symbol: "ZINU", coinGeckoId: "zombie-inu", decimals: 9, price: 2.14988e-10},                                      // Addr: 0x21f9b5b2626603e3f40bfc13d01afb8c431d382f, Notional: 1.4877980460076683
-		{chain: 4, addr: "00000000000000000000000022168882276e5d5e1da694343b41dd7726eeb288", symbol: "WSB", coinGeckoId: "wall-street-bets-dapp", decimals: 18, price: 0.00019742},                            // Addr: 0x22168882276e5d5e1da694343b41dd7726eeb288, Notional: 0.8781078145143643
-		{chain: 4, addr: "0000000000000000000000002222227e22102fe3322098e4cbfe18cfebd57c95", symbol: "TLM", coinGeckoId: "alien-worlds", decimals: 4, price: 0.00485928},                                      // Addr: 0x2222227e22102fe3322098e4cbfe18cfebd57c95, Notional: 4.384042416
-		{chain: 4, addr: "0000000000000000000000002235e79086dd23135119366da45851c741874e5b", symbol: "CREDI", coinGeckoId: "credefi", decimals: 18, price: 0.00649156},                                        // Addr: 0x2235e79086dd23135119366da45851c741874e5b, Notional: 16.94323668317718
-		{chain: 4, addr: "0000000000000000000000002326c7395d02a8c89a9d7a0b0c1cf159d49ce51c", symbol: "TBAC", coinGeckoId: "blockaura", decimals: 8, price: 0.00414222},                                        // Addr: 0x2326c7395d02a8c89a9d7a0b0c1cf159d49ce51c, Notional: 0.0021953766000000004
-		{chain: 4, addr: "00000000000000000000000023396cf899ca06c4472205fc903bdb4de249d6fc", symbol: "UST", coinGeckoId: "wrapped-ust", decimals: 18, price: 0.01263232},                                      // Addr: 0x23396cf899ca06c4472205fc903bdb4de249d6fc, Notional: 0.7008265023007488
-		{chain: 4, addr: "00000000000000000000000023e8a70534308a4aaf76fb8c32ec13d17a3bd89e", symbol: "lUSD", coinGeckoId: "lusd", decimals: 18, price: 0.00000676},                                            // Addr: 0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e, Notional: 47.86246519400106
-		{chain: 4, addr: "0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5", symbol: "ezETH", coinGeckoId: "renzo-restaked-eth", decimals: 18, price: 2716.88},                                // Addr: 0x2416092f143378750bb29b79ed961ab195cceea5, Notional: 47.1401501792
-		{chain: 4, addr: "000000000000000000000000245d9f531757f83064ad808b4c9b220c703a4934", symbol: "GODE", coinGeckoId: "gode-chain", decimals: 6, price: 0.00023452},                                       // Addr: 0x245d9f531757f83064ad808b4c9b220c703a4934, Notional: 0.00012898600000000001
-		{chain: 4, addr: "000000000000000000000000250632378e573c6be1ac2f97fcdf00515d0aa91b", symbol: "BETH", coinGeckoId: "binance-eth", decimals: 18, price: 2765.22},                                        // Addr: 0x250632378e573c6be1ac2f97fcdf00515d0aa91b, Notional: 548.5139612915999
-		{chain: 4, addr: "0000000000000000000000002541be91fe0d220ffcbe65f11d88217a87a43bda", symbol: "$Lordz", coinGeckoId: "meme-lordz", decimals: 9, price: 0.00243802},                                     // Addr: 0x2541be91fe0d220ffcbe65f11d88217a87a43bda, Notional: 0.00243802
-		{chain: 4, addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 1157.815190843234
-		{chain: 4, addr: "00000000000000000000000025a528af62e56512a19ce8c3cab427807c28cc19", symbol: "FORM", coinGeckoId: "formation-fi", decimals: 18, price: 0.00013867},                                    // Addr: 0x25a528af62e56512a19ce8c3cab427807c28cc19, Notional: 0.2333729222246576
-		{chain: 4, addr: "00000000000000000000000025b24b3c47918b7962b3e49c4f468367f73cc0e0", symbol: "AXL", coinGeckoId: "axl-inu", decimals: 18, price: 0.00000354},                                          // Addr: 0x25b24b3c47918b7962b3e49c4f468367f73cc0e0, Notional: 0.0354
-		{chain: 4, addr: "00000000000000000000000025d887ce7a35172c62febfd67a1856f20faebb00", symbol: "PEPE", coinGeckoId: "pepe", decimals: 18, price: 0.00001198},                                            // Addr: 0x25d887ce7a35172c62febfd67a1856f20faebb00, Notional: 59.9470637001841
-		{chain: 4, addr: "00000000000000000000000027ae27110350b98d564b9a3eed31baebc82d878d", symbol: "CUMMIES", coinGeckoId: "cumrocket", decimals: 18, price: 0.00302542},                                    // Addr: 0x27ae27110350b98d564b9a3eed31baebc82d878d, Notional: 3.7675543594585563
-		{chain: 4, addr: "0000000000000000000000002859e4544c4bb03966803b044a93563bd2d0dd4d", symbol: "SHIB", coinGeckoId: "binance-peg-shib", decimals: 18, price: 0.00001266},                                // Addr: 0x2859e4544c4bb03966803b044a93563bd2d0dd4d, Notional: 1737.0145163905852
-		{chain: 4, addr: "0000000000000000000000002a48ece377b87ce941406657b9278b4459595e06", symbol: "LunaT", coinGeckoId: "lunatics", decimals: 9, price: 2.48842e-7},                                        // Addr: 0x2a48ece377b87ce941406657b9278b4459595e06, Notional: 0.3601637771928285
-		{chain: 4, addr: "0000000000000000000000002ab0e9e4ee70fff1fb9d67031e44f6410170d00e", symbol: "bXEN", coinGeckoId: "xen-crypto-bsc", decimals: 18, price: 2.52777e-10},                                 // Addr: 0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e, Notional: 0.5576017224208353
-		{chain: 4, addr: "0000000000000000000000002c717059b366714d267039af8f59125cadce6d8c", symbol: "MHUNT", coinGeckoId: "metashooter", decimals: 18, price: 0.00021239},                                    // Addr: 0x2c717059b366714d267039af8f59125cadce6d8c, Notional: 0.0075520417038921995
-		{chain: 4, addr: "0000000000000000000000002cd96e8c3ff6b5e01169f6e3b61d28204e7810bb", symbol: "LBlock", coinGeckoId: "lucky-block", decimals: 9, price: 0.00005039},                                    // Addr: 0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb, Notional: 2571.5555590738877
-		{chain: 4, addr: "0000000000000000000000002d6f3dc5b202ccd91db114b592872bca32a7e292", symbol: "SAUDISHIB", coinGeckoId: "saudi-shiba-inu", decimals: 8, price: 8.955e-12},                              // Addr: 0x2d6f3dc5b202ccd91db114b592872bca32a7e292, Notional: 1.284845077682733
-		{chain: 4, addr: "0000000000000000000000002d94172436d869c1e3c094bead272508fab0d9e3", symbol: "RCG", coinGeckoId: "recharge", decimals: 18, price: 0.00950839},                                         // Addr: 0x2d94172436d869c1e3c094bead272508fab0d9e3, Notional: 0.0093182222
-		{chain: 4, addr: "0000000000000000000000002dff88a56767223a5529ea5960da7a3f5f766406", symbol: "ID", coinGeckoId: "space-id", decimals: 18, price: 0.182742},                                            // Addr: 0x2dff88a56767223a5529ea5960da7a3f5f766406, Notional: 608.6031125319599
-		{chain: 4, addr: "0000000000000000000000002f25d402829ca4085b8ea4d3bc68bf203f5a9fab", symbol: "Eagon", coinGeckoId: "eagonswap-token", decimals: 18, price: 0.00007782},                                // Addr: 0x2f25d402829ca4085b8ea4d3bc68bf203f5a9fab, Notional: 1.6413002011647486
-		{chain: 4, addr: "0000000000000000000000002f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840", symbol: "DOLA", coinGeckoId: "dola-usd", decimals: 18, price: 0.999268},                                          // Addr: 0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840, Notional: 298.40199814927655
-		{chain: 4, addr: "0000000000000000000000002ff0b946a6782190c4fe5d4971cfe79f0b6e4df2", symbol: "MYST", coinGeckoId: "mysterium", decimals: 18, price: 0.232532},                                         // Addr: 0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2, Notional: 0.23259583700995998
-		{chain: 4, addr: "0000000000000000000000003019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1", symbol: "GMT", coinGeckoId: "stepn", decimals: 8, price: 0.051683},                                               // Addr: 0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1, Notional: 86.35798792962237
-		{chain: 4, addr: "00000000000000000000000030842a9c941d9de3af582c41ad12b11d776ba69e", symbol: "GPT", coinGeckoId: "qna3-ai", decimals: 18, price: 0.00119685},                                          // Addr: 0x30842a9c941d9de3af582c41ad12b11d776ba69e, Notional: 2328.220582636511
-		{chain: 4, addr: "00000000000000000000000031471e0791fcdbe82fbf4c44943255e923f1b794", symbol: "PVU", coinGeckoId: "plant-vs-undead-token", decimals: 18, price: 0.00093748},                            // Addr: 0x31471e0791fcdbe82fbf4c44943255e923f1b794, Notional: 0.0000093748
-		{chain: 4, addr: "000000000000000000000000317eb4ad9cfac6232f0046831322e895507bcbeb", symbol: "TDX", coinGeckoId: "tidex-token", decimals: 18, price: 0.00969256},                                      // Addr: 0x317eb4ad9cfac6232f0046831322e895507bcbeb, Notional: 9.041189687473304
-		{chain: 4, addr: "00000000000000000000000031d0a7ada4d4c131eb612db48861211f63e57610", symbol: "START", coinGeckoId: "bscstarter", decimals: 18, price: 0.01325918},                                     // Addr: 0x31d0a7ada4d4c131eb612db48861211f63e57610, Notional: 0.0013259180000000001
-		{chain: 4, addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", symbol: "USDV", coinGeckoId: "verified-usd-foundation-usdv", decimals: 6, price: 0.131685},                       // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 2.81489856
-		{chain: 4, addr: "0000000000000000000000003419875b4d3bca7f3fdda2db7a476a79fd31b4fe", symbol: "DZHV", coinGeckoId: "dizzyhavoc", decimals: 18, price: 0.00018483},                                      // Addr: 0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe, Notional: 0.25176032100483237
-		{chain: 4, addr: "000000000000000000000000352cb5e19b12fc216548a2677bd0fce83bae434b", symbol: "BTT", coinGeckoId: "bittorrent", decimals: 18, price: 7.04693e-7},                                       // Addr: 0x352cb5e19b12fc216548a2677bd0fce83bae434b, Notional: 0.031616051445
-		{chain: 4, addr: "00000000000000000000000035bedbf9291b22218a0da863170dcc9329ef2563", symbol: "TAP", coinGeckoId: "tap-fantasy", decimals: 18, price: 0.00037027},                                      // Addr: 0x35bedbf9291b22218a0da863170dcc9329ef2563, Notional: 17.185219651158622
-		{chain: 4, addr: "000000000000000000000000368eb5efdca39126e8e76aae5187166de7c2766c", symbol: "CST", coinGeckoId: "cryptoskates", decimals: 18, price: 0.00015159},                                     // Addr: 0x368eb5efdca39126e8e76aae5187166de7c2766c, Notional: 0.08264202399612239
-		{chain: 4, addr: "000000000000000000000000371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", symbol: "JOE", coinGeckoId: "joe", decimals: 18, price: 0.161424},                                                // Addr: 0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07, Notional: 2.11023121774752
-		{chain: 4, addr: "000000000000000000000000373e768f79c820aa441540d254dca6d045c6d25b", symbol: "DERC", coinGeckoId: "derace", decimals: 18, price: 0.03239622},                                          // Addr: 0x373e768f79c820aa441540d254dca6d045c6d25b, Notional: 0.1623822076426482
-		{chain: 4, addr: "00000000000000000000000037fe635d1e25b2f7276c1b9dbbcc7b087f80c050", symbol: "OciCat", coinGeckoId: "ocicat-token", decimals: 18, price: 6.7695e-10},                                  // Addr: 0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050, Notional: 96.54591072607501
-		{chain: 4, addr: "00000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de93", symbol: "MUBI", coinGeckoId: "multibit", decimals: 18, price: 0.00499869},                                        // Addr: 0x38e382f74dfb84608f3c1f10187f6bef5951de93, Notional: 0.9686192330036295
-		{chain: 4, addr: "00000000000000000000000039ae8eefb05138f418bb27659c21632dc1ddab10", symbol: "KAI", coinGeckoId: "kardiachain", decimals: 18, price: 0.00099467},                                      // Addr: 0x39ae8eefb05138f418bb27659c21632dc1ddab10, Notional: 66.13320214358623
-		{chain: 4, addr: "0000000000000000000000003c1748d647e6a56b37b66fcd2b5626d0461d3aa0", symbol: "DNXC", coinGeckoId: "dinox", decimals: 18, price: 0.00011285},                                           // Addr: 0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0, Notional: 3.1076224571790383
-		{chain: 4, addr: "0000000000000000000000003ee2200efb3400fabb9aacf31297cbdd1d435d47", symbol: "ADA", coinGeckoId: "binance-peg-cardano", decimals: 18, price: 0.683617},                                // Addr: 0x3ee2200efb3400fabb9aacf31297cbdd1d435d47, Notional: 1326.6885623247758
-		{chain: 4, addr: "00000000000000000000000040c8225329bd3e28a043b029e0d07a5344d2c27c", symbol: "AOG", coinGeckoId: "ageofgods", decimals: 18, price: 0.00156667},                                        // Addr: 0x40c8225329bd3e28a043b029e0d07a5344d2c27c, Notional: 0.5199996194141483
-		{chain: 4, addr: "00000000000000000000000040e51e0ec04283e300f12f6bb98da157bb22036e", symbol: "BLXM", coinGeckoId: "bloxmove-erc20", decimals: 18, price: 0.00793991},                                  // Addr: 0x40e51e0ec04283e300f12f6bb98da157bb22036e, Notional: 174.8820557655276
-		{chain: 4, addr: "00000000000000000000000041065e3428188ba6eb27fbdde8526ae3af8e3830", symbol: "SWASH", coinGeckoId: "swash", decimals: 18, price: 0.00393283},                                          // Addr: 0x41065e3428188ba6eb27fbdde8526ae3af8e3830, Notional: 55.56744984805508
-		{chain: 4, addr: "0000000000000000000000004268b8f0b87b6eae5d897996e6b845ddbd99adf3", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                         // Addr: 0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3, Notional: 24.594830509801998
-		{chain: 4, addr: "00000000000000000000000042981d0bfbaf196529376ee702f2a9eb9092fcb5", symbol: "SFM", coinGeckoId: "safemoon-2", decimals: 9, price: 0.00001651},                                        // Addr: 0x42981d0bfbaf196529376ee702f2a9eb9092fcb5, Notional: 0.1092822219536229
-		{chain: 4, addr: "00000000000000000000000042c95788f791a2be3584446854c8d9bb01be88a9", symbol: "HBR", coinGeckoId: "harbor-3", decimals: 18, price: 0.00003795},                                         // Addr: 0x42c95788f791a2be3584446854c8d9bb01be88a9, Notional: 393.9597165039135
-		{chain: 4, addr: "0000000000000000000000004338665cbb7b2485a8855a139b75d5e34ab0db94", symbol: "LTC", coinGeckoId: "binance-peg-litecoin", decimals: 18, price: 88.73},                                  // Addr: 0x4338665cbb7b2485a8855a139b75d5e34ab0db94, Notional: 894.6669138387
-		{chain: 4, addr: "00000000000000000000000044c99ca267c2b2646ceec72e898273085ab87ca5", symbol: "RPTR", coinGeckoId: "raptor-finance-2", decimals: 18, price: 0.00010501},                                // Addr: 0x44c99ca267c2b2646ceec72e898273085ab87ca5, Notional: 318.5889591442828
-		{chain: 4, addr: "00000000000000000000000044ec807ce2f4a6f2737a92e985f318d035883e47", symbol: "HFT", coinGeckoId: "hashflow", decimals: 18, price: 0.062586},                                           // Addr: 0x44ec807ce2f4a6f2737a92e985f318d035883e47, Notional: 0.23970438000000002
-		{chain: 4, addr: "00000000000000000000000045f7967926e95fd161e56ed66b663c9114c5226f", symbol: "TOKO", coinGeckoId: "toko", decimals: 18, price: 0.0002853},                                             // Addr: 0x45f7967926e95fd161e56ed66b663c9114c5226f, Notional: 0.140092214842602
-		{chain: 4, addr: "0000000000000000000000004691937a7508860f876c9c0a2a617e7d9e945d4b", symbol: "WOO", coinGeckoId: "woo-network", decimals: 18, price: 0.079828},                                        // Addr: 0x4691937a7508860f876c9c0a2a617e7d9e945d4b, Notional: 0.8321456958723998
-		{chain: 4, addr: "00000000000000000000000046d502fac9aea7c5bc7b13c8ec9d02378c33d36f", symbol: "WSPP", coinGeckoId: "wolfsafepoorpeople", decimals: 0, price: 9.97e-12},                                 // Addr: 0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f, Notional: 15.138349511614221
-		{chain: 4, addr: "000000000000000000000000477bc8d23c634c154061869478bce96be6045d12", symbol: "SFUND", coinGeckoId: "seedify-fund", decimals: 18, price: 0.823429},                                     // Addr: 0x477bc8d23c634c154061869478bce96be6045d12, Notional: 0.01646858
-		{chain: 4, addr: "00000000000000000000000047bead2563dcbf3bf2c9407fea4dc236faba485a", symbol: "SXP", coinGeckoId: "swipe", decimals: 18, price: 0.182122},                                              // Addr: 0x47bead2563dcbf3bf2c9407fea4dc236faba485a, Notional: 598.211806073828
-		{chain: 4, addr: "000000000000000000000000482e6bd0a178f985818c5dfb9ac77918e8412fba", symbol: "ZEUM", coinGeckoId: "colizeum", decimals: 18, price: 0.00127786},                                        // Addr: 0x482e6bd0a178f985818c5dfb9ac77918e8412fba, Notional: 0.154418216209394
-		{chain: 4, addr: "0000000000000000000000004841181ae4079072ebe83a29b718388a387169e3", symbol: "SUI", coinGeckoId: "salmonation", decimals: 9, price: 0.00391361},                                       // Addr: 0x4841181ae4079072ebe83a29b718388a387169e3, Notional: 47.606875480271036
-		{chain: 4, addr: "000000000000000000000000489580eb70a50515296ef31e8179ff3e77e24965", symbol: "RADAR", coinGeckoId: "dappradar", decimals: 18, price: 0.00325235},                                      // Addr: 0x489580eb70a50515296ef31e8179ff3e77e24965, Notional: 9.346436787749399
-		{chain: 4, addr: "0000000000000000000000004a2c860cec6471b9f5f5a336eb4f38bb21683c98", symbol: "GST", coinGeckoId: "green-satoshi-token-bsc", decimals: 8, price: 0.00319339},                           // Addr: 0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98, Notional: 326.26397801363595
-		{chain: 4, addr: "0000000000000000000000004aac18de824ec1b553dbf342829834e4ff3f7a9f", symbol: "ANCHOR", coinGeckoId: "anchorswap", decimals: 18, price: 8.0019e-8},                                     // Addr: 0x4aac18de824ec1b553dbf342829834e4ff3f7a9f, Notional: 0.00002465861886901143
-		{chain: 4, addr: "0000000000000000000000004afc8c2be6a0783ea16e16066fde140d15979296", symbol: "HARE", coinGeckoId: "hare-token", decimals: 9, price: 2.9e-17},                                          // Addr: 0x4afc8c2be6a0783ea16e16066fde140d15979296, Notional: 2.6100000000000005e-13
-		{chain: 4, addr: "0000000000000000000000004b0f1812e5df2a09796481ff14017e6005508003", symbol: "TWT", coinGeckoId: "trust-wallet-token", decimals: 18, price: 0.804037},                                 // Addr: 0x4b0f1812e5df2a09796481ff14017e6005508003, Notional: 7920.21127531111
-		{chain: 4, addr: "0000000000000000000000004b5c23cac08a567ecf0c1ffca8372a45a5d33743", symbol: "FARM", coinGeckoId: "harvest-finance", decimals: 18, price: 29.71},                                      // Addr: 0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743, Notional: 0.4881641187
-		{chain: 4, addr: "0000000000000000000000004b5decb9327b4d511a58137a1ade61434aacdd43", symbol: "PKN", coinGeckoId: "poken", decimals: 18, price: 0.00006353},                                            // Addr: 0x4b5decb9327b4d511a58137a1ade61434aacdd43, Notional: 3.1992320672716144
-		{chain: 4, addr: "0000000000000000000000004b8285ab433d8f69cb48d5ad62b415ed1a221e4f", symbol: "MCRT", coinGeckoId: "magiccraft", decimals: 9, price: 0.00057245},                                       // Addr: 0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f, Notional: 13044.566884857839
-		{chain: 4, addr: "0000000000000000000000004ba0057f784858a48fe351445c672ff2a3d43515", symbol: "KALM", coinGeckoId: "kalmar", decimals: 18, price: 0.00158776},                                          // Addr: 0x4ba0057f784858a48fe351445c672ff2a3d43515, Notional: 96.98138718695746
-		{chain: 4, addr: "0000000000000000000000004d2d32d8652058bf98c772953e1df5c5c85d9f45", symbol: "DAO", coinGeckoId: "dao-maker", decimals: 18, price: 0.130032},                                          // Addr: 0x4d2d32d8652058bf98c772953e1df5c5c85d9f45, Notional: 966059.9671845379
-		{chain: 4, addr: "0000000000000000000000004da996c5fe84755c80e108cf96fe705174c5e36a", symbol: "WOW", coinGeckoId: "wowswap", decimals: 18, price: 0.0319526},                                           // Addr: 0x4da996c5fe84755c80e108cf96fe705174c5e36a, Notional: 0.23179623081417597
-		{chain: 4, addr: "0000000000000000000000004f39c3319188a723003670c3f9b9e7ef991e52f3", symbol: "FIGHT", coinGeckoId: "crypto-fight-club", decimals: 18, price: 0.00013742},                              // Addr: 0x4f39c3319188a723003670c3f9b9e7ef991e52f3, Notional: 0.00041226
-		{chain: 4, addr: "0000000000000000000000005012c90f14d190607662ca8344120812aaa2639d", symbol: "PNP", coinGeckoId: "penpie", decimals: 18, price: 2.92},                                                 // Addr: 0x5012c90f14d190607662ca8344120812aaa2639d, Notional: 283.3451301032
-		{chain: 4, addr: "00000000000000000000000050d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1", symbol: "CUB", coinGeckoId: "cub-finance", decimals: 18, price: 0.00112613},                                      // Addr: 0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1, Notional: 0.0000138536625213
-		{chain: 4, addr: "000000000000000000000000524df384bffb18c0c8f3f43d012011f8f9795579", symbol: "YAY", coinGeckoId: "yay-games", decimals: 18, price: 0.00050779},                                        // Addr: 0x524df384bffb18c0c8f3f43d012011f8f9795579, Notional: 0.005077900000000001
-		{chain: 4, addr: "00000000000000000000000052f24a5e03aee338da5fd9df68d2b6fae1178827", symbol: "ankrBNB", coinGeckoId: "ankr-staked-bnb", decimals: 18, price: 724.9},                                   // Addr: 0x52f24a5e03aee338da5fd9df68d2b6fae1178827, Notional: 1.4036528659999998
-		{chain: 4, addr: "0000000000000000000000005512014efa6cd57764fa743756f7a6ce3358cc83", symbol: "EZ", coinGeckoId: "easyfi", decimals: 18, price: 0.00138751},                                            // Addr: 0x5512014efa6cd57764fa743756f7a6ce3358cc83, Notional: 0.008857285428706299
-		{chain: 4, addr: "000000000000000000000000552594612f935441c01c6854edf111f343c1ca07", symbol: "GWT", coinGeckoId: "galaxy-war", decimals: 18, price: 0.00011302},                                       // Addr: 0x552594612f935441c01c6854edf111f343c1ca07, Notional: 2.0766120137886124
-		{chain: 4, addr: "00000000000000000000000055d398326f99059ff775485246999027b3197955", symbol: "USDT", coinGeckoId: "tether", decimals: 18, price: 1},                                                   // Addr: 0x55d398326f99059ff775485246999027b3197955, Notional: 341366.14532391
-		{chain: 4, addr: "000000000000000000000000570a5d26f7765ecb712c0924e4de545b89fd43df", symbol: "SOL", coinGeckoId: "wrapped-solana", decimals: 18, price: 156.53},                                       // Addr: 0x570a5d26f7765ecb712c0924e4de545b89fd43df, Notional: 36985.2809946202
-		{chain: 4, addr: "00000000000000000000000059c49b54d4425c7ff1e49f40958a14d48cc87c26", symbol: "MC", coinGeckoId: "tap-fantasy-mc", decimals: 18, price: 0.086592},                                      // Addr: 0x59c49b54d4425c7ff1e49f40958a14d48cc87c26, Notional: 0.6151737098496001
-		{chain: 4, addr: "00000000000000000000000059f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", symbol: "CAT", coinGeckoId: "catcoin-cash", decimals: 9, price: 8.6928e-11},                                      // Addr: 0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a, Notional: 12.364343757069422
-		{chain: 4, addr: "0000000000000000000000005b65cd9feb54f1df3d0c60576003344079f8dc06", symbol: "UNW", coinGeckoId: "uniwhale", decimals: 18, price: 0.00177014},                                         // Addr: 0x5b65cd9feb54f1df3d0c60576003344079f8dc06, Notional: 3842.1200014292917
-		{chain: 4, addr: "0000000000000000000000005b6dcf557e2abe2323c48445e8cc948910d8c2c9", symbol: "MIR", coinGeckoId: "mirror-protocol", decimals: 18, price: 0.02046236},                                  // Addr: 0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9, Notional: 141.61937891674592
-		{chain: 4, addr: "0000000000000000000000005de3939b2f811a61d830e6f52d13b066881412ab", symbol: "XPR", coinGeckoId: "proton", decimals: 4, price: 0.0035465},                                             // Addr: 0x5de3939b2f811a61d830e6f52d13b066881412ab, Notional: 232.35035581515
-		{chain: 4, addr: "0000000000000000000000005e7f472b9481c80101b22d0ba4ef4253aa61dabc", symbol: "MUDOL2", coinGeckoId: "hero-blaze-three-kingdoms", decimals: 18, price: 0.00091424},                     // Addr: 0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc, Notional: 26537.419681996624
-		{chain: 4, addr: "0000000000000000000000005e95a952a7f79f978585afd54a053af0f51372fa", symbol: "SBG", coinGeckoId: "sb-group", decimals: 9, price: 3.67439e-7},                                          // Addr: 0x5e95a952a7f79f978585afd54a053af0f51372fa, Notional: 0.000367439
-		{chain: 4, addr: "0000000000000000000000005fb4968fc85868df3ad2d6e59883a10570f01d18", symbol: "SHR", coinGeckoId: "sharering", decimals: 18, price: 0.00166124},                                        // Addr: 0x5fb4968fc85868df3ad2d6e59883a10570f01d18, Notional: 74.58303104
-		{chain: 4, addr: "000000000000000000000000603c7f932ed1fc6575303d8fb018fdcbb0f39a95", symbol: "BANANA", coinGeckoId: "apeswap-finance", decimals: 18, price: 1.0003e-8},                                // Addr: 0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95, Notional: 0.00047446269585502056
-		{chain: 4, addr: "00000000000000000000000062823659d09f9f9d2222058878f89437425eb261", symbol: "ERTHA", coinGeckoId: "ertha", decimals: 18, price: 0.00055977},                                          // Addr: 0x62823659d09f9f9d2222058878f89437425eb261, Notional: 0.01175517
-		{chain: 4, addr: "00000000000000000000000063eaeb6e33e11252b10553900a9f38a9ed172871", symbol: "TUP", coinGeckoId: "tenup", decimals: 18, price: 0.00781119},                                            // Addr: 0x63eaeb6e33e11252b10553900a9f38a9ed172871, Notional: 0.388216143
-		{chain: 4, addr: "00000000000000000000000064619f611248256f7f4b72fe83872f89d5d60d64", symbol: "QUINT", coinGeckoId: "quint", decimals: 18, price: 0.00028771},                                          // Addr: 0x64619f611248256f7f4b72fe83872f89d5d60d64, Notional: 67.51859043355265
-		{chain: 4, addr: "00000000000000000000000065c8743a5a266c3512eabd34e65ade42d4355ef1", symbol: "BPLC", coinGeckoId: "blackpearl-chain", decimals: 18, price: 1.761e-9},                                  // Addr: 0x65c8743a5a266c3512eabd34e65ade42d4355ef1, Notional: 0.4710776086457592
-		{chain: 4, addr: "000000000000000000000000678e840c640f619e17848045d23072844224dd37", symbol: "CRTS", coinGeckoId: "cratos", decimals: 18, price: 0.00022528},                                          // Addr: 0x678e840c640f619e17848045d23072844224dd37, Notional: 4276.564712819361
-		{chain: 4, addr: "00000000000000000000000067ee3cb086f8a16f34bee3ca72fad36f7db929e2", symbol: "DODO", coinGeckoId: "dodo", decimals: 18, price: 0.04436955},                                            // Addr: 0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2, Notional: 0.4436955
-		{chain: 4, addr: "00000000000000000000000068784ffaa6ff05e3e04575df77960dc1d9f42b4a", symbol: "ABR", coinGeckoId: "allbridge", decimals: 18, price: 0.081603},                                          // Addr: 0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a, Notional: 1.8400742538137098
-		{chain: 4, addr: "0000000000000000000000006ae9701b9c423f40d54556c9a443409d79ce170a", symbol: "POLC", coinGeckoId: "polka-city", decimals: 18, price: 0.00211648},                                      // Addr: 0x6ae9701b9c423f40d54556c9a443409d79ce170a, Notional: 0.6561088
-		{chain: 4, addr: "0000000000000000000000006bff4fb161347ad7de4a625ae5aa3a1ca7077819", symbol: "ADX", coinGeckoId: "adex", decimals: 18, price: 0.09564},                                                // Addr: 0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819, Notional: 1.24332
-		{chain: 4, addr: "0000000000000000000000006d106c0b8d2f47c5465bdbd58d1be253762cbbc1", symbol: "DEFI", coinGeckoId: "de-fi", decimals: 18, price: 0.00270398},                                           // Addr: 0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1, Notional: 0.860501834577584
-		{chain: 4, addr: "0000000000000000000000006d1dc3928604b00180bb570bdae94b9698d33b79", symbol: "UCT", coinGeckoId: "unitedcrowd", decimals: 18, price: 0.00146549},                                      // Addr: 0x6d1dc3928604b00180bb570bdae94b9698d33b79, Notional: 0.146549
-		{chain: 4, addr: "0000000000000000000000006d57f5c286e04850c2c085350f2e60aaa7b7c15b", symbol: "GrokGirl", coinGeckoId: "grok-girl", decimals: 9, price: 6.841e-14},                                     // Addr: 0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b, Notional: 0.012619417605308776
-		{chain: 4, addr: "0000000000000000000000006d86f0a41c3966cef8ea139648db707e912563c9", symbol: "MCOIN", coinGeckoId: "mcoin1", decimals: 18, price: 0.087514},                                           // Addr: 0x6d86f0a41c3966cef8ea139648db707e912563c9, Notional: 0.0087514
-		{chain: 4, addr: "0000000000000000000000006e2a5ea25b161befa6a8444c71ae3a89c39933c6", symbol: "B2M", coinGeckoId: "bit2me", decimals: 18, price: 0.01310904},                                           // Addr: 0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6, Notional: 119.292264
-		{chain: 4, addr: "0000000000000000000000006f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e", symbol: "ARPA", coinGeckoId: "arpa", decimals: 18, price: 0.02209258},                                            // Addr: 0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e, Notional: 9.485449223000002
-		{chain: 4, addr: "0000000000000000000000006ff1bfa14a57594a5874b37ff6ac5efbd9f9599a", symbol: "TOTM", coinGeckoId: "totemfi", decimals: 18, price: 0.00250259},                                         // Addr: 0x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a, Notional: 0.24759651677205097
-		{chain: 4, addr: "0000000000000000000000007083609fce4d1d8dc0c979aab8c869ea2c873402", symbol: "DOT", coinGeckoId: "binance-peg-polkadot", decimals: 18, price: 4.07},                                   // Addr: 0x7083609fce4d1d8dc0c979aab8c869ea2c873402, Notional: 4339.1096245409
-		{chain: 4, addr: "0000000000000000000000007130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c", symbol: "BTCB", coinGeckoId: "binance-bitcoin", decimals: 18, price: 108654},                                     // Addr: 0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c, Notional: 860390.41439442
-		{chain: 4, addr: "000000000000000000000000715d400f88c167884bbcc41c5fea407ed4d2f8a0", symbol: "AXS", coinGeckoId: "axie-infinity", decimals: 18, price: 2.48},                                          // Addr: 0x715d400f88c167884bbcc41c5fea407ed4d2f8a0, Notional: 251.7129988112
-		{chain: 4, addr: "00000000000000000000000071be881e9c5d4465b3fff61e89c6f3651e69b5bb", symbol: "BRZ", coinGeckoId: "brz", decimals: 4, price: 0.178599},                                                 // Addr: 0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb, Notional: 58.017885150000005
-		{chain: 4, addr: "0000000000000000000000007269d98af4aa705e0b1a5d8512fadb4d45817d5a", symbol: "SHI", coinGeckoId: "shirtum", decimals: 18, price: 0.0002542},                                           // Addr: 0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a, Notional: 0.025419999999999998
-		{chain: 4, addr: "00000000000000000000000072b7d61e8fc8cf971960dd9cfa59b8c829d91991", symbol: "AQUA", coinGeckoId: "planet-finance", decimals: 18, price: 1.65},                                        // Addr: 0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991, Notional: 0.1650011385
-		{chain: 4, addr: "00000000000000000000000072eb7ca07399ec402c5b7aa6a65752b6a1dc0c27", symbol: "ASTRO", coinGeckoId: "astroswap", decimals: 18, price: 0.00001865},                                      // Addr: 0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27, Notional: 0.0009325
-		{chain: 4, addr: "000000000000000000000000734c5f3f8f6ad9697b26ecc6388678aafd3db3b2", symbol: "METAMUSK", coinGeckoId: "musk-metaverse", decimals: 18, price: 3.40371e-10},                             // Addr: 0x734c5f3f8f6ad9697b26ecc6388678aafd3db3b2, Notional: 0.000011070447011338354
-		{chain: 4, addr: "0000000000000000000000007559c49c3aec50e763a486bb232fa8d0d76078e4", symbol: "ATR", coinGeckoId: "artrade", decimals: 9, price: 0.01651613},                                           // Addr: 0x7559c49c3aec50e763a486bb232fa8d0d76078e4, Notional: 3280406.0408269484
-		{chain: 4, addr: "000000000000000000000000766afcf83fd5eaf884b3d529b432ca27a6d84617", symbol: "BLID", coinGeckoId: "bolide", decimals: 18, price: 0.00097788},                                          // Addr: 0x766afcf83fd5eaf884b3d529b432ca27a6d84617, Notional: 31.61519786257427
-		{chain: 4, addr: "00000000000000000000000077edfae59a7948d66e9911a30cc787d2172343d4", symbol: "LBL", coinGeckoId: "label-foundation", decimals: 18, price: 0.00144272},                                 // Addr: 0x77edfae59a7948d66e9911a30cc787d2172343d4, Notional: 22.122486940335037
-		{chain: 4, addr: "00000000000000000000000079ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936", symbol: "CATGIRL", coinGeckoId: "catgirl", decimals: 9, price: 1.1985e-11},                                       // Addr: 0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936, Notional: 2.397e-9
-		{chain: 4, addr: "0000000000000000000000007af173f350d916358af3e218bdf2178494beb748", symbol: "TRADE", coinGeckoId: "unitrade", decimals: 18, price: 0.00343684},                                       // Addr: 0x7af173f350d916358af3e218bdf2178494beb748, Notional: 1.894729255153548
-		{chain: 4, addr: "0000000000000000000000007b610012bdc4d6deba2c2d91684e408f40863429", symbol: "OSEA", coinGeckoId: "omnisea", decimals: 18, price: 0.00165386},                                         // Addr: 0x7b610012bdc4d6deba2c2d91684e408f40863429, Notional: 0.2205480107280034
-		{chain: 4, addr: "0000000000000000000000007b65b489fe53fce1f6548db886c08ad73111ddd8", symbol: "IRON", coinGeckoId: "iron-bsc", decimals: 18, price: 0.0161403},                                         // Addr: 0x7b65b489fe53fce1f6548db886c08ad73111ddd8, Notional: 1.936836
-		{chain: 4, addr: "0000000000000000000000007dc6dc21ce07e6499fdcc30dcdb943a8ee4db802", symbol: "GPTG", coinGeckoId: "gpt-guru", decimals: 18, price: 0.00004669},                                        // Addr: 0x7dc6dc21ce07e6499fdcc30dcdb943a8ee4db802, Notional: 710.22014465269
-		{chain: 4, addr: "0000000000000000000000007ddc52c4de30e94be3a6a0a2b259b2850f421989", symbol: "GMT", coinGeckoId: "gmt-token", decimals: 18, price: 0.425071},                                          // Addr: 0x7ddc52c4de30e94be3a6a0a2b259b2850f421989, Notional: 114.76916999999999
-		{chain: 4, addr: "0000000000000000000000007e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", symbol: "OVR", coinGeckoId: "ovr", decimals: 18, price: 0.106057},                                                // Addr: 0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe, Notional: 19.80836554433891
-		{chain: 4, addr: "0000000000000000000000007e624fa0e1c4abfd309cc15719b7e2580887f570", symbol: "POLS", coinGeckoId: "polkastarter", decimals: 18, price: 0.219331},                                      // Addr: 0x7e624fa0e1c4abfd309cc15719b7e2580887f570, Notional: 1.535317
-		{chain: 4, addr: "0000000000000000000000007e8db69dcff9209e486a100e611b0af300c3374e", symbol: "TRDC", coinGeckoId: "traders-coin", decimals: 18, price: 0.00021106},                                    // Addr: 0x7e8db69dcff9209e486a100e611b0af300c3374e, Notional: 0.36923260516627604
-		{chain: 4, addr: "0000000000000000000000007eefb6aeb8bc2c1ba6be1d4273ec0758a1321272", symbol: "ENG", coinGeckoId: "endless-battlefield", decimals: 18, price: 0.00006497},                              // Addr: 0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272, Notional: 0.06497
-		{chain: 4, addr: "0000000000000000000000008076c74c5e3f5852037f31ff0093eeb8c8add8d3", symbol: "SAFEMOON", coinGeckoId: "safemoon", decimals: 9, price: 8.149e-9},                                       // Addr: 0x8076c74c5e3f5852037f31ff0093eeb8c8add8d3, Notional: 3.6670500008149e-7
-		{chain: 4, addr: "000000000000000000000000818835503f55283cd51a4399f595e295a9338753", symbol: "AGI", coinGeckoId: "delysium", decimals: 18, price: 0.056002},                                           // Addr: 0x818835503f55283cd51a4399f595e295a9338753, Notional: 56.0188006
-		{chain: 4, addr: "00000000000000000000000082443a77684a7da92fdcb639c8d2bd068a596245", symbol: "SWAP", coinGeckoId: "trustswap", decimals: 18, price: 0.086337},                                         // Addr: 0x82443a77684a7da92fdcb639c8d2bd068a596245, Notional: 0.259011
-		{chain: 4, addr: "0000000000000000000000008263cd1601fe73c066bf49cc09841f35348e3be0", symbol: "ALU", coinGeckoId: "altura", decimals: 18, price: 0.01987491},                                           // Addr: 0x8263cd1601fe73c066bf49cc09841f35348e3be0, Notional: 318.012251825499
-		{chain: 4, addr: "00000000000000000000000082d2f8e02afb160dd5a480a617692e62de9038c4", symbol: "ALEPH", coinGeckoId: "aleph", decimals: 18, price: 0.058575},                                            // Addr: 0x82d2f8e02afb160dd5a480a617692e62de9038c4, Notional: 24.406489617048
-		{chain: 4, addr: "000000000000000000000000833f307ac507d47309fd8cdd1f835bef8d702a93", symbol: "REVV", coinGeckoId: "revv", decimals: 18, price: 0.00113577},                                            // Addr: 0x833f307ac507d47309fd8cdd1f835bef8d702a93, Notional: 0.023851169999999998
-		{chain: 4, addr: "00000000000000000000000083adb07bb91ddde95a24982f1b2d343963ba3995", symbol: "Fwcl", coinGeckoId: "legends", decimals: 9, price: 0.02347393},                                          // Addr: 0x83adb07bb91ddde95a24982f1b2d343963ba3995, Notional: 0.11736965
-		{chain: 4, addr: "00000000000000000000000083d8ea5a4650b68cd2b57846783d86df940f7458", symbol: "HUDI", coinGeckoId: "hudi", decimals: 18, price: 0.0213436},                                             // Addr: 0x83d8ea5a4650b68cd2b57846783d86df940f7458, Notional: 0.581081099671328
-		{chain: 4, addr: "000000000000000000000000842668e2b9a73240abf6532dedc89c9c3e050c98", symbol: "LIGHT", coinGeckoId: "light-defi", decimals: 9, price: 0.00007386},                                      // Addr: 0x842668e2b9a73240abf6532dedc89c9c3e050c98, Notional: 0.66592176745986
-		{chain: 4, addr: "00000000000000000000000084e9a6f9d240fdd33801f7135908bfa16866939a", symbol: "GMEE", coinGeckoId: "gamee", decimals: 18, price: 0.00209308},                                           // Addr: 0x84e9a6f9d240fdd33801f7135908bfa16866939a, Notional: 4.019538586309876
-		{chain: 4, addr: "00000000000000000000000084f4f7cdb4574c9556a494dab18ffc1d1d22316c", symbol: "KINGSHIB", coinGeckoId: "king-shiba", decimals: 9, price: 0.0020107},                                    // Addr: 0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c, Notional: 2.2009122202412836
-		{chain: 4, addr: "0000000000000000000000008519ea49c997f50ceffa444d240fb655e89248aa", symbol: "RAMP", coinGeckoId: "ramp", decimals: 18, price: 0.04574279},                                            // Addr: 0x8519ea49c997f50ceffa444d240fb655e89248aa, Notional: 64.43080129189087
-		{chain: 4, addr: "000000000000000000000000854a63b35b70a7becbed508ff0b6ff5038d0c917", symbol: "MNTO", coinGeckoId: "minato", decimals: 18, price: 0.572417},                                            // Addr: 0x854a63b35b70a7becbed508ff0b6ff5038d0c917, Notional: 16.71883199411731
-		{chain: 4, addr: "0000000000000000000000008578eb576e126f67913a8bc0622e0a22eba0989a", symbol: "PANDA", coinGeckoId: "hashpanda", decimals: 9, price: 8.40021e-10},                                      // Addr: 0x8578eb576e126f67913a8bc0622e0a22eba0989a, Notional: 0.06082168908101033
-		{chain: 4, addr: "0000000000000000000000008595f9da7b868b1822194faed312235e43007b49", symbol: "BTT", coinGeckoId: "bittorrent-old", decimals: 18, price: 0.00084344},                                   // Addr: 0x8595f9da7b868b1822194faed312235e43007b49, Notional: 0.00084344
-		{chain: 4, addr: "000000000000000000000000872d068c25511be88c1f5990c53eeffcdf46c9b4", symbol: "VENT", coinGeckoId: "vent-finance", decimals: 18, price: 0.00067303},                                    // Addr: 0x872d068c25511be88c1f5990c53eeffcdf46c9b4, Notional: 0.20325506000000002
-		{chain: 4, addr: "000000000000000000000000885c5fb8f0e67b2b0cf3a437e6cc6ebc0f9f9014", symbol: "GEMG", coinGeckoId: "gemguardian", decimals: 18, price: 0.00344796},                                     // Addr: 0x885c5fb8f0e67b2b0cf3a437e6cc6ebc0f9f9014, Notional: 0.1352950244266644
-		{chain: 4, addr: "00000000000000000000000088d7e9b65dc24cf54f5edef929225fc3e1580c25", symbol: "JMPT", coinGeckoId: "jumptoken", decimals: 18, price: 1.031},                                            // Addr: 0x88d7e9b65dc24cf54f5edef929225fc3e1580c25, Notional: 714013.872594576
-		{chain: 4, addr: "0000000000000000000000008929e9dbd2785e3ba16175e596cdd61520fee0d1", symbol: "ALTD", coinGeckoId: "altitude", decimals: 18, price: 0.00089463},                                        // Addr: 0x8929e9dbd2785e3ba16175e596cdd61520fee0d1, Notional: 0.037085474566008
-		{chain: 4, addr: "0000000000000000000000008a5d7fcd4c90421d21d30fcc4435948ac3618b2f", symbol: "MONSTA", coinGeckoId: "cake-monster", decimals: 18, price: 0.0000019},                                   // Addr: 0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f, Notional: 0.0000018049999999999999
-		{chain: 4, addr: "0000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 18, price: 0.999705},                                          // Addr: 0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d, Notional: 330500.3622956615
-		{chain: 4, addr: "0000000000000000000000008bd778b12b15416359a227f0533ce2d91844e1ed", symbol: "SAKE", coinGeckoId: "sake-token", decimals: 18, price: 0.001337},                                        // Addr: 0x8bd778b12b15416359a227f0533ce2d91844e1ed, Notional: 2.6002616850572604
-		{chain: 4, addr: "0000000000000000000000008bfca09e5877ea59f85883d13a6873334b937d41", symbol: "MADPEPE", coinGeckoId: "mad-pepe", decimals: 18, price: 6.1944e-11},                                     // Addr: 0x8bfca09e5877ea59f85883d13a6873334b937d41, Notional: 0.0009293458320000001
-		{chain: 4, addr: "0000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", symbol: "KEX", coinGeckoId: "kira-network", decimals: 6, price: 0.01802587},                                      // Addr: 0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e, Notional: 0.0001802587
-		{chain: 4, addr: "0000000000000000000000008da443f84fea710266c8eb6bc34b71702d033ef2", symbol: "CTSI", coinGeckoId: "cartesi", decimals: 18, price: 0.063691},                                           // Addr: 0x8da443f84fea710266c8eb6bc34b71702d033ef2, Notional: 1.38145779
-		{chain: 4, addr: "0000000000000000000000008ebc361536094fd5b4ffb8521e31900614c9f55d", symbol: "DARC", coinGeckoId: "darcmatter-coin", decimals: 18, price: 0.0001726},                                  // Addr: 0x8ebc361536094fd5b4ffb8521e31900614c9f55d, Notional: 1145.0949026416592
-		{chain: 4, addr: "0000000000000000000000008f36cc333f55b09bb71091409a3d7ade399e3b1c", symbol: "CHER", coinGeckoId: "cherry-network", decimals: 18, price: 0.00042127},                                  // Addr: 0x8f36cc333f55b09bb71091409a3d7ade399e3b1c, Notional: 0.3269382661512146
-		{chain: 4, addr: "0000000000000000000000008ff795a6f4d97e7887c79bea79aba5cc76444adf", symbol: "BCH", coinGeckoId: "binance-peg-bitcoin-cash", decimals: 18, price: 423.27},                             // Addr: 0x8ff795a6f4d97e7887c79bea79aba5cc76444adf, Notional: 0.001566099
-		{chain: 4, addr: "0000000000000000000000009029fdfae9a03135846381c7ce16595c3554e10a", symbol: "OOE", coinGeckoId: "openocean", decimals: 18, price: 0.00492637},                                        // Addr: 0x9029fdfae9a03135846381c7ce16595c3554e10a, Notional: 0.00492637
-		{chain: 4, addr: "00000000000000000000000092868a5255c628da08f550a858a802f5351c5223", symbol: "BRIDGE", coinGeckoId: "cross-chain-bridge", decimals: 18, price: 0.0009657},                             // Addr: 0x92868a5255c628da08f550a858a802f5351c5223, Notional: 0.0782217
-		{chain: 4, addr: "000000000000000000000000928e55dab735aa8260af3cedada18b5f70c72f1b", symbol: "FRONT", coinGeckoId: "frontier-token", decimals: 18, price: 0.18354},                                    // Addr: 0x928e55dab735aa8260af3cedada18b5f70c72f1b, Notional: 1.2868264563168001
-		{chain: 4, addr: "000000000000000000000000935a544bf5816e3a7c13db2efe3009ffda0acda2", symbol: "BLZ", coinGeckoId: "bluzelle", decimals: 18, price: 0.03660723},                                         // Addr: 0x935a544bf5816e3a7c13db2efe3009ffda0acda2, Notional: 16.88325861298306
-		{chain: 4, addr: "00000000000000000000000093c27727e72ec7510a06ea450366c1418c4ce547", symbol: "PXP", coinGeckoId: "pirate-x-pirate", decimals: 18, price: 0.00009937},                                  // Addr: 0x93c27727e72ec7510a06ea450366c1418c4ce547, Notional: 0.00019874
-		{chain: 4, addr: "000000000000000000000000947950bcc74888a40ffa2593c5798f11fc9124c4", symbol: "SUSHI", coinGeckoId: "sushi", decimals: 18, price: 0.671409},                                            // Addr: 0x947950bcc74888a40ffa2593c5798f11fc9124c4, Notional: 3.10180265811675
-		{chain: 4, addr: "0000000000000000000000009573c88ae3e37508f87649f87c4dd5373c9f31e0", symbol: "MONI", coinGeckoId: "monsta-infinite", decimals: 18, price: 0.0024957},                                  // Addr: 0x9573c88ae3e37508f87649f87c4dd5373c9f31e0, Notional: 0.0027969557723010003
-		{chain: 4, addr: "000000000000000000000000959229d94c9060552daea25ac17193bca65d7884", symbol: "IOI", coinGeckoId: "ioi-token", decimals: 6, price: 0.00039005},                                         // Addr: 0x959229d94c9060552daea25ac17193bca65d7884, Notional: 0.00990669077575
-		{chain: 4, addr: "000000000000000000000000961c8c0b1aad0c0b10a51fef6a867e3091bcef17", symbol: "DYP", coinGeckoId: "defi-yield-protocol", decimals: 18, price: 0.04119439},                              // Addr: 0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17, Notional: 643.3161916813281
-		{chain: 4, addr: "000000000000000000000000965f527d9159dce6288a2219db51fc6eef120dd1", symbol: "BSW", coinGeckoId: "biswap", decimals: 18, price: 0.0263524},                                            // Addr: 0x965f527d9159dce6288a2219db51fc6eef120dd1, Notional: 0.0527048
-		{chain: 4, addr: "0000000000000000000000009678e42cebeb63f23197d726b29b1cb20d0064e5", symbol: "IOTX", coinGeckoId: "binance-peg-iotex", decimals: 18, price: 0.02105095},                               // Addr: 0x9678e42cebeb63f23197d726b29b1cb20d0064e5, Notional: 117.07611930322666
-		{chain: 4, addr: "0000000000000000000000009767c8e438aa18f550208e6d1fdf5f43541cc2c8", symbol: "MMIT", coinGeckoId: "mangoman-intelligent", decimals: 18, price: 3.11143e-10},                           // Addr: 0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8, Notional: 3.11143e-8
-		{chain: 4, addr: "00000000000000000000000098f8669f6481ebb341b522fcd3663f79a3d1a6a7", symbol: "NEST", coinGeckoId: "nest", decimals: 18, price: 0.00014605},                                            // Addr: 0x98f8669f6481ebb341b522fcd3663f79a3d1a6a7, Notional: 0.010369550067182999
-		{chain: 4, addr: "000000000000000000000000998305efdc264b9674178899fffbb44a47134a76", symbol: "GMRX", coinGeckoId: "gaimin", decimals: 18, price: 0.00013872},                                          // Addr: 0x998305efdc264b9674178899fffbb44a47134a76, Notional: 80271.44598985295
-		{chain: 4, addr: "0000000000000000000000009b17baadf0f21f03e35249e0e59723f34994f806", symbol: "SURE", coinGeckoId: "insure", decimals: 18, price: 0.00163092},                                          // Addr: 0x9b17baadf0f21f03e35249e0e59723f34994f806, Notional: 0.489276
-		{chain: 4, addr: "0000000000000000000000009bf543d8460583ff8a669aae01d9cdbee4defe3c", symbol: "SKO", coinGeckoId: "sugar-kingdom-odyssey", decimals: 18, price: 0.00078126},                            // Addr: 0x9bf543d8460583ff8a669aae01d9cdbee4defe3c, Notional: 959.7624566771999
-		{chain: 4, addr: "0000000000000000000000009d7107c8e30617cadc11f9692a19c82ae8bba938", symbol: "ROO", coinGeckoId: "lucky-roo", decimals: 18, price: 2.3906e-8},                                         // Addr: 0x9d7107c8e30617cadc11f9692a19c82ae8bba938, Notional: 0.23425291084606253
-		{chain: 4, addr: "0000000000000000000000009df465460938f9ebdf51c38cc87d72184471f8f0", symbol: "GENE", coinGeckoId: "genopets", decimals: 18, price: 0.065715},                                          // Addr: 0x9df465460938f9ebdf51c38cc87d72184471f8f0, Notional: 5.52419997468495
-		{chain: 4, addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", symbol: "OMNI", coinGeckoId: "omnicat", decimals: 18, price: 0.00001466},                                         // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 29.729173866045688
-		{chain: 4, addr: "0000000000000000000000009e24415d1e549ebc626a13a482bb117a2b43e9cf", symbol: "LOVELY", coinGeckoId: "lovely-inu-finance", decimals: 8, price: 0.00000601},                             // Addr: 0x9e24415d1e549ebc626a13a482bb117a2b43e9cf, Notional: 200700.91777788202
-		{chain: 4, addr: "0000000000000000000000009e3a9f1612028eee48f85ca85f8bed2f37d76848", symbol: "QDX", coinGeckoId: "quidax", decimals: 18, price: 0.04817222},                                           // Addr: 0x9e3a9f1612028eee48f85ca85f8bed2f37d76848, Notional: 24.08611
-		{chain: 4, addr: "0000000000000000000000009e6b3e35c8f563b45d864f9ff697a144ad28a371", symbol: "DOGO", coinGeckoId: "dogemon-go", decimals: 18, price: 8.00285e-7},                                      // Addr: 0x9e6b3e35c8f563b45d864f9ff697a144ad28a371, Notional: 13.587901282838232
-		{chain: 4, addr: "0000000000000000000000009eb6935aea6afb5bc6d1a74be0c2f78280ab6448", symbol: "ACA", coinGeckoId: "aca-token", decimals: 9, price: 0.00026033},                                         // Addr: 0x9eb6935aea6afb5bc6d1a74be0c2f78280ab6448, Notional: 1.678586978663714
-		{chain: 4, addr: "0000000000000000000000009ed7e4b1bff939ad473da5e7a218c771d1569456", symbol: "REUNI", coinGeckoId: "reunit-wallet", decimals: 6, price: 0.02307287},                                   // Addr: 0x9ed7e4b1bff939ad473da5e7a218c771d1569456, Notional: 0.4326163125
-		{chain: 4, addr: "0000000000000000000000009f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435", symbol: " BTCPAY", coinGeckoId: "bitcoin-pay", decimals: 18, price: 0.00544746},                                  // Addr: 0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435, Notional: 0.0000233316346038
-		{chain: 4, addr: "0000000000000000000000009fb9a33956351cf4fa040f65a13b835a3c8764e3", symbol: "MULTI", coinGeckoId: "multichain", decimals: 18, price: 0.603485},                                       // Addr: 0x9fb9a33956351cf4fa040f65a13b835a3c8764e3, Notional: 12904.253907460194
-		{chain: 4, addr: "000000000000000000000000a0d96fd642156fc7e964949642257b3572f10cd6", symbol: "BLOK", coinGeckoId: "bloktopia", decimals: 18, price: 0.00029531},                                       // Addr: 0xa0d96fd642156fc7e964949642257b3572f10cd6, Notional: 23.00224744327553
-		{chain: 4, addr: "000000000000000000000000a2120b9e674d3fc3875f415a7df52e382f141225", symbol: "ATA", coinGeckoId: "automata", decimals: 18, price: 0.04708697},                                         // Addr: 0xa2120b9e674d3fc3875f415a7df52e382f141225, Notional: 1.002952461
-		{chain: 4, addr: "000000000000000000000000a260e12d2b924cb899ae80bb58123ac3fee1e2f0", symbol: "HOOK", coinGeckoId: "hooked-protocol", decimals: 18, price: 0.11292},                                    // Addr: 0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0, Notional: 0.22584
-		{chain: 4, addr: "000000000000000000000000a2b726b1145a4773f68593cf171187d8ebe4d495", symbol: "INJ", coinGeckoId: "injective-protocol", decimals: 18, price: 13.61},                                    // Addr: 0xa2b726b1145a4773f68593cf171187d8ebe4d495, Notional: 2232.1364523007
-		{chain: 4, addr: "000000000000000000000000a38898a4ae982cb0131104a6746f77fa0da57aaa", symbol: "QBIT", coinGeckoId: "project-quantum", decimals: 2, price: 0.00000173},                                  // Addr: 0xa38898a4ae982cb0131104a6746f77fa0da57aaa, Notional: 0.00001557
-		{chain: 4, addr: "000000000000000000000000a5496935a247fa81b1462e553ad139d2fd0af795", symbol: "FLAG", coinGeckoId: "flag-network", decimals: 18, price: 0.00000897},                                    // Addr: 0xa5496935a247fa81b1462e553ad139d2fd0af795, Notional: 4.137014479358604
-		{chain: 4, addr: "000000000000000000000000a58950f05fea2277d2608748412bf9f802ea4901", symbol: "WSG", coinGeckoId: "wall-street-games", decimals: 18, price: 1.28179e-10},                               // Addr: 0xa58950f05fea2277d2608748412bf9f802ea4901, Notional: 0.19803576945670032
-		{chain: 4, addr: "000000000000000000000000a6168c7e5eb7c5c379f3a1d7cf1073e09b2f031e", symbol: "GRAV", coinGeckoId: "graviton-zero", decimals: 18, price: 0.00008058},                                   // Addr: 0xa6168c7e5eb7c5c379f3a1d7cf1073e09b2f031e, Notional: 0.000015858144
-		{chain: 4, addr: "000000000000000000000000a67b8e40111a0edd30c3210b77aadb86ad234c43", symbol: "Bandex", coinGeckoId: "banana-index", decimals: 9, price: 1.2007e-8},                                    // Addr: 0xa67b8e40111a0edd30c3210b77aadb86ad234c43, Notional: 4.967892563718809
-		{chain: 4, addr: "000000000000000000000000a719b8ab7ea7af0ddb4358719a34631bb79d15dc", symbol: "FRM", coinGeckoId: "ferrum-network", decimals: 18, price: 0.00074829},                                   // Addr: 0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc, Notional: 0.07444046444793749
-		{chain: 4, addr: "000000000000000000000000a75d9ca2a0a1d547409d82e1b06618ec284a2ced", symbol: "WMX", coinGeckoId: "wombex", decimals: 18, price: 0.00024996},                                           // Addr: 0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced, Notional: 2267.304663033472
-		{chain: 4, addr: "000000000000000000000000a7bd657c5838472ddf85ff0797a2e6fce8fd4833", symbol: "ARBI", coinGeckoId: "arbipad", decimals: 18, price: 0.00000213},                                         // Addr: 0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833, Notional: 14.307287554444384
-		{chain: 4, addr: "000000000000000000000000aa076b62efc6f357882e07665157a271ab46a063", symbol: "NSFW", coinGeckoId: "pleasure-coin", decimals: 18, price: 0.00002964},                                   // Addr: 0xaa076b62efc6f357882e07665157a271ab46a063, Notional: 45505.65399195587
-		{chain: 4, addr: "000000000000000000000000aa2ded323944b25c0b6f1f891bc96f010b65622c", symbol: "TheRadio", coinGeckoId: "radioreum", decimals: 18, price: 0.00047533},                                   // Addr: 0xaa2ded323944b25c0b6f1f891bc96f010b65622c, Notional: 0.0027513133387156
-		{chain: 4, addr: "000000000000000000000000aa9826732f3a4973ff8b384b3f4e3c70c2984651", symbol: "XPRESS", coinGeckoId: "cryptoexpress", decimals: 18, price: 0.01249521},                                 // Addr: 0xaa9826732f3a4973ff8b384b3f4e3c70c2984651, Notional: 2.148867216042374
-		{chain: 4, addr: "000000000000000000000000ac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f", symbol: "ANI", coinGeckoId: "anime-token", decimals: 18, price: 0.00127477},                                      // Addr: 0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f, Notional: 3848.799594823
-		{chain: 4, addr: "000000000000000000000000ac51066d7bec65dc4589368da368b212745d63e8", symbol: "ALICE", coinGeckoId: "my-neighbor-alice", decimals: 6, price: 0.432288},                                 // Addr: 0xac51066d7bec65dc4589368da368b212745d63e8, Notional: 0.2593728
-		{chain: 4, addr: "000000000000000000000000ace8c5e6e492aa7aebf31a8053f8a487f62ceb84", symbol: "NADA", coinGeckoId: "nothing", decimals: 18, price: 6.71115e-7},                                         // Addr: 0xace8c5e6e492aa7aebf31a8053f8a487f62ceb84, Notional: 0.268446
-		{chain: 4, addr: "000000000000000000000000ad29abb318791d579433d831ed122afeaf29dcfe", symbol: "FTM", coinGeckoId: "wrapped-fantom", decimals: 18, price: 0.386855},                                     // Addr: 0xad29abb318791d579433d831ed122afeaf29dcfe, Notional: 1319.912169305869
-		{chain: 4, addr: "000000000000000000000000ad6742a35fb341a9cc6ad674738dd8da98b94fb1", symbol: "WOM", coinGeckoId: "wombat-exchange", decimals: 18, price: 0.00330808},                                  // Addr: 0xad6742a35fb341a9cc6ad674738dd8da98b94fb1, Notional: 232276.79432057132
-		{chain: 4, addr: "000000000000000000000000ad86d0e9764ba90ddd68747d64bffbd79879a238", symbol: "PAID", coinGeckoId: "paid-network", decimals: 18, price: 0.02128385},                                    // Addr: 0xad86d0e9764ba90ddd68747d64bffbd79879a238, Notional: 0.1268284189004
-		{chain: 4, addr: "000000000000000000000000ae9269f27437f0fcbc232d39ec814844a51d6b8f", symbol: "BURGER", coinGeckoId: "burger-swap", decimals: 18, price: 0.00815518},                                   // Addr: 0xae9269f27437f0fcbc232d39ec814844a51d6b8f, Notional: 0.0010673965244778
-		{chain: 4, addr: "000000000000000000000000aec945e04baf28b135fa7c640f624f8d90f1c3a6", symbol: "C98", coinGeckoId: "coin98", decimals: 18, price: 0.051361},                                             // Addr: 0xaec945e04baf28b135fa7c640f624f8d90f1c3a6, Notional: 21.60055949001582
-		{chain: 4, addr: "000000000000000000000000aef0d72a118ce24fee3cd1d43d383897d05b4e99", symbol: "WIN", coinGeckoId: "winklink-bsc", decimals: 18, price: 0.00005221},                                     // Addr: 0xaef0d72a118ce24fee3cd1d43d383897d05b4e99, Notional: 10.142216452338674
-		{chain: 4, addr: "000000000000000000000000af20f5f19698f1d19351028cd7103b63d30de7d7", symbol: "WAGMI", coinGeckoId: "wagmi-2", decimals: 18, price: 0.00736235},                                        // Addr: 0xaf20f5f19698f1d19351028cd7103b63d30de7d7, Notional: 0.7840902750000001
-		{chain: 4, addr: "000000000000000000000000af7bfa6240745fd41d1ed4b5fade9dcaf369ba6c", symbol: "Mverse", coinGeckoId: "maticverse", decimals: 18, price: 1.33214e-7},                                    // Addr: 0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c, Notional: 14.810228927360843
-		{chain: 4, addr: "000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                   // Addr: 0xb0d502e938ed5f4df2e681fe6e419ff29631d62b, Notional: 14.07809106197025
-		{chain: 4, addr: "000000000000000000000000b46584e0efde3092e04010a13f2eae62adb3b9f0", symbol: "PEPE", coinGeckoId: "pepe-coin-bsc-c45e8b31-8ae1-43f4-bd34-e75551d97285", decimals: 18, price: 1.31e-9}, // Addr: 0xb46584e0efde3092e04010a13f2eae62adb3b9f0, Notional: 241.62628452077215
-		{chain: 4, addr: "000000000000000000000000b6c53431608e626ac81a9776ac3e999c5556717c", symbol: "TLOS", coinGeckoId: "wrapped-telos", decimals: 18, price: 0.05208},                                      // Addr: 0xb6c53431608e626ac81a9776ac3e999c5556717c, Notional: 0.5120542675752
-		{chain: 4, addr: "000000000000000000000000b8501a9a9aaae239a2490f44e00b284baa0b131a", symbol: "CREMAT", coinGeckoId: "cremation-coin", decimals: 18, price: 1.2641e-8},                                 // Addr: 0xb8501a9a9aaae239a2490f44e00b284baa0b131a, Notional: 0.15430458016233248
-		{chain: 4, addr: "000000000000000000000000b955b4cab9aa3b49e23aeb5204ebc5ff6678e86d", symbol: "Afin", coinGeckoId: "afin-coin", decimals: 18, price: 0.00121705},                                       // Addr: 0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d, Notional: 10.722338795520477
-		{chain: 4, addr: "000000000000000000000000ba2ae424d960c26247dd6c32edc70b295c744c43", symbol: "DOGE", coinGeckoId: "binance-peg-dogecoin", decimals: 8, price: 0.187108},                               // Addr: 0xba2ae424d960c26247dd6c32edc70b295c744c43, Notional: 41077.514449959075
-		{chain: 4, addr: "000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c", symbol: "WBNB", coinGeckoId: "wbnb", decimals: 18, price: 661.74},                                                // Addr: 0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c, Notional: 4163417.4259970696
-		{chain: 4, addr: "000000000000000000000000bd100d061e120b2c67a24453cf6368e63f1be056", symbol: "iDYP", coinGeckoId: "idefiyieldprotocol", decimals: 18, price: 0.00035127},                              // Addr: 0xbd100d061e120b2c67a24453cf6368e63f1be056, Notional: 0.9877852908
-		{chain: 4, addr: "000000000000000000000000bd83010eb60f12112908774998f65761cf9f6f9a", symbol: "STARS", coinGeckoId: "mogul-productions", decimals: 18, price: 0.00001504},                              // Addr: 0xbd83010eb60f12112908774998f65761cf9f6f9a, Notional: 0.0062752896
-		{chain: 4, addr: "000000000000000000000000bdeae1ca48894a1759a8374d63925f21f2ee2639", symbol: "EDU", coinGeckoId: "edu-coin", decimals: 18, price: 0.147429},                                           // Addr: 0xbdeae1ca48894a1759a8374d63925f21f2ee2639, Notional: 7.37292429
-		{chain: 4, addr: "000000000000000000000000bf05279f9bf1ce69bbfed670813b7e431142afa4", symbol: "MM", coinGeckoId: "million", decimals: 18, price: 1.042},                                                // Addr: 0xbf05279f9bf1ce69bbfed670813b7e431142afa4, Notional: 188.10924593164
-		{chain: 4, addr: "000000000000000000000000bf0cf158e84ebacca1b7746e794d507073e5adfe", symbol: "BEPR", coinGeckoId: "blockchain-euro-project", decimals: 9, price: 0.006188},                            // Addr: 0xbf0cf158e84ebacca1b7746e794d507073e5adfe, Notional: 1358.5347248593812
-		{chain: 4, addr: "000000000000000000000000bf37f781473f3b50e82c668352984865eac9853f", symbol: "MILK", coinGeckoId: "the-crypto-you", decimals: 18, price: 3.2174e-8},                                   // Addr: 0xbf37f781473f3b50e82c668352984865eac9853f, Notional: 3.2174e-8
-		{chain: 4, addr: "000000000000000000000000bf5140a22578168fd562dccf235e5d43a02ce9b1", symbol: "UNI", coinGeckoId: "uniswap", decimals: 18, price: 6.64},                                                // Addr: 0xbf5140a22578168fd562dccf235e5d43a02ce9b1, Notional: 25.052573322399997
-		{chain: 4, addr: "000000000000000000000000bf7c81fff98bbe61b40ed186e4afd6ddd01337fe", symbol: "EGLD", coinGeckoId: "wrapped-elrond", decimals: 18, price: 15.36},                                       // Addr: 0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe, Notional: 137.6114829312
-		{chain: 4, addr: "000000000000000000000000bfbee3dac982148ac793161f7362344925506903", symbol: "CATZ", coinGeckoId: "catzcoin", decimals: 18, price: 0.00000126},                                        // Addr: 0xbfbee3dac982148ac793161f7362344925506903, Notional: 0.15260112
-		{chain: 4, addr: "000000000000000000000000bfea674ce7d16e26e39e3c088810367a708ef94c", symbol: "APRIL", coinGeckoId: "april", decimals: 18, price: 0.00039064},                                          // Addr: 0xbfea674ce7d16e26e39e3c088810367a708ef94c, Notional: 1.1719199999999999
-		{chain: 4, addr: "000000000000000000000000c0366a104b429f0806bfa98d0008daa9555b2bed", symbol: "SMARS", coinGeckoId: "safemars-protocol", decimals: 9, price: 4.225e-9},                                 // Addr: 0xc0366a104b429f0806bfa98d0008daa9555b2bed, Notional: 0.001630894628834747
-		{chain: 4, addr: "000000000000000000000000c0c6e4c6e70c6231b20979bda581a66f062a7967", symbol: "bATRI", coinGeckoId: "atari", decimals: 0, price: 0.00018727},                                           // Addr: 0xc0c6e4c6e70c6231b20979bda581a66f062a7967, Notional: 0.43147008
-		{chain: 4, addr: "000000000000000000000000c0ecb8499d8da2771abcbf4091db7f65158f1468", symbol: "SWTH", coinGeckoId: "switcheo", decimals: 8, price: 0.00108346},                                         // Addr: 0xc0ecb8499d8da2771abcbf4091db7f65158f1468, Notional: 0.00108346
-		{chain: 4, addr: "000000000000000000000000c146b7cdbaff065090077151d391f4c96aa09e0c", symbol: "MCC", coinGeckoId: "multi-chain-capital-2", decimals: 9, price: 1.12958e-7},                             // Addr: 0xc146b7cdbaff065090077151d391f4c96aa09e0c, Notional: 0.00000169437
-		{chain: 4, addr: "000000000000000000000000c14a7747cfec02cfea62e72bb93538de6b2078e6", symbol: "GBL", coinGeckoId: "waweswaps-global-token", decimals: 18, price: 23.63},                                // Addr: 0xc14a7747cfec02cfea62e72bb93538de6b2078e6, Notional: 11265.4177727113
-		{chain: 4, addr: "000000000000000000000000c19fe21b4ef356f2f65894392dde4252aa083605", symbol: "WSO", coinGeckoId: "widi-soul", decimals: 18, price: 0.00001221},                                        // Addr: 0xc19fe21b4ef356f2f65894392dde4252aa083605, Notional: 0.0008631623108294999
-		{chain: 4, addr: "000000000000000000000000c27a719105a987b4c34116223cae8bd8f4b5def4", symbol: "ACE", coinGeckoId: "endurance", decimals: 18, price: 0.591557},                                          // Addr: 0xc27a719105a987b4c34116223cae8bd8f4b5def4, Notional: 2505.138381977104
-		{chain: 4, addr: "000000000000000000000000c335df7c25b72eec661d5aa32a7c2b7b2a1d1874", symbol: "ICE", coinGeckoId: "ice", decimals: 18, price: 0.00502176},                                              // Addr: 0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874, Notional: 491530.2342086346
-		{chain: 4, addr: "000000000000000000000000c342774492b54ce5f8ac662113ed702fc1b34972", symbol: "BGEO", coinGeckoId: "geodb", decimals: 18, price: 0.0001376},                                            // Addr: 0xc342774492b54ce5f8ac662113ed702fc1b34972, Notional: 137.60000000000002
-		{chain: 4, addr: "000000000000000000000000c3d912863152e1afc935ad0d42d469e7c6b05b77", symbol: "LUCKY", coinGeckoId: "lucky-lion", decimals: 18, price: 0.00010776},                                     // Addr: 0xc3d912863152e1afc935ad0d42d469e7c6b05b77, Notional: 0.0030499748355144
-		{chain: 4, addr: "000000000000000000000000c49dde62b4a0810074721faca54aab52369f486a", symbol: "PKR", coinGeckoId: "polker", decimals: 18, price: 0.00100631},                                           // Addr: 0xc49dde62b4a0810074721faca54aab52369f486a, Notional: 0.7949849
-		{chain: 4, addr: "000000000000000000000000c5326b32e8baef125acd68f8bc646fd646104f1c", symbol: "ZAP", coinGeckoId: "zap", decimals: 18, price: 0.00105042},                                              // Addr: 0xc5326b32e8baef125acd68f8bc646fd646104f1c, Notional: 4392.30120320386
-		{chain: 4, addr: "000000000000000000000000c598275452fa319d75ee5f176fd3b8384925b425", symbol: "STRM", coinGeckoId: "streamcoin", decimals: 18, price: 0.00136763},                                      // Addr: 0xc598275452fa319d75ee5f176fd3b8384925b425, Notional: 0.00273526
-		{chain: 4, addr: "000000000000000000000000c5e6689c9c8b02be7c49912ef19e79cf24977f03", symbol: "ALPA", coinGeckoId: "alpaca", decimals: 18, price: 0.0071577},                                           // Addr: 0xc5e6689c9c8b02be7c49912ef19e79cf24977f03, Notional: 10.231272234324603
-		{chain: 4, addr: "000000000000000000000000c6f509274fcc1f485644167cb911fd0c61545e6c", symbol: "OBS", coinGeckoId: "obsidium", decimals: 18, price: 0.00253105},                                         // Addr: 0xc6f509274fcc1f485644167cb911fd0c61545e6c, Notional: 2.784155
-		{chain: 4, addr: "000000000000000000000000c703da39ae3b9db67c207c7bad8100e1afdc0f9c", symbol: "FRGX", coinGeckoId: "frgx-finance", decimals: 18, price: 0.0086139},                                     // Addr: 0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c, Notional: 3683.880381992119
-		{chain: 4, addr: "000000000000000000000000c732b6586a93b6b7cf5fed3470808bc74998224d", symbol: "KMON", coinGeckoId: "kryptomon", decimals: 18, price: 0.00001347},                                       // Addr: 0xc732b6586a93b6b7cf5fed3470808bc74998224d, Notional: 91.0362661592344
-		{chain: 4, addr: "000000000000000000000000c748673057861a797275cd8a068abb95a902e8de", symbol: "BabyDoge", coinGeckoId: "baby-doge-coin", decimals: 9, price: 1.395e-9},                                 // Addr: 0xc748673057861a797275cd8a068abb95a902e8de, Notional: 15.95961280519153
-		{chain: 4, addr: "000000000000000000000000c74cd0042c837ce59210857504ebb0859e06aa22", symbol: "SAFUYIELD", coinGeckoId: "safu-protocol", decimals: 9, price: 5.53874e-10},                              // Addr: 0xc74cd0042c837ce59210857504ebb0859e06aa22, Notional: 0.00050336069120108
-		{chain: 4, addr: "000000000000000000000000c864019047b864b6ab609a968ae2725dfaee808a", symbol: "BIT", coinGeckoId: "biconomy-exchange-token", decimals: 9, price: 0.00001069},                           // Addr: 0xc864019047b864b6ab609a968ae2725dfaee808a, Notional: 23149.46452309903
-		{chain: 4, addr: "000000000000000000000000c8a11f433512c16ed895245f34bcc2ca44eb06bd", symbol: "KSN", coinGeckoId: "kissan", decimals: 18, price: 0.04442481},                                           // Addr: 0xc8a11f433512c16ed895245f34bcc2ca44eb06bd, Notional: 131340.87132632645
-		{chain: 4, addr: "000000000000000000000000c94595b56e301f3ffedb8ccc2d672882d623e53a", symbol: "ACY", coinGeckoId: "acy-finance", decimals: 18, price: 0.00365938},                                      // Addr: 0xc94595b56e301f3ffedb8ccc2d672882d623e53a, Notional: 0.036593799999999996
-		{chain: 4, addr: "000000000000000000000000c9ad37e9baf41377540df5a77831db98c1915128", symbol: "GINUX", coinGeckoId: "green-shiba-inu", decimals: 18, price: 5.6089e-8},                                 // Addr: 0xc9ad37e9baf41377540df5a77831db98c1915128, Notional: 23.727250851169735
-		{chain: 4, addr: "000000000000000000000000ca3f508b8e4dd382ee878a314789373d80a5190a", symbol: "BIFI", coinGeckoId: "beefy-finance", decimals: 18, price: 145.24},                                       // Addr: 0xca3f508b8e4dd382ee878a314789373d80a5190a, Notional: 1.7467041692
-		{chain: 4, addr: "000000000000000000000000ca830317146bfdde71e7c0b880e2ec1f66e273ee", symbol: "GULL", coinGeckoId: "polygod", decimals: 18, price: 0.00302048},                                         // Addr: 0xca830317146bfdde71e7c0b880e2ec1f66e273ee, Notional: 3.02048
-		{chain: 4, addr: "000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5", symbol: "PSP", coinGeckoId: "paraswap", decimals: 18, price: 0.01879275},                                         // Addr: 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, Notional: 0.1346813750626425
-		{chain: 4, addr: "000000000000000000000000cbd9f6d748dd3d19416f8914528a65c7838e27d8", symbol: "RGAME", coinGeckoId: "r-games", decimals: 18, price: 0.00017427},                                        // Addr: 0xcbd9f6d748dd3d19416f8914528a65c7838e27d8, Notional: 0.0282386083362108
-		{chain: 4, addr: "000000000000000000000000cc42724c6683b7e57334c4e856f4c9965ed682bd", symbol: "MATIC", coinGeckoId: "matic-network", decimals: 18, price: 0.213435},                                    // Addr: 0xcc42724c6683b7e57334c4e856f4c9965ed682bd, Notional: 1542.3230854575334
-		{chain: 4, addr: "000000000000000000000000ce355300b9d7909f577640a3fb179cf911a23fbb", symbol: "PPP", coinGeckoId: "playposeidon-nft", decimals: 18, price: 0.00024635},                                 // Addr: 0xce355300b9d7909f577640a3fb179cf911a23fbb, Notional: 2.4635
-		{chain: 4, addr: "000000000000000000000000ce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", symbol: "TRX", coinGeckoId: "tron-bsc", decimals: 6, price: 0.287786},                                            // Addr: 0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3, Notional: 427528.41941832256
-		{chain: 4, addr: "000000000000000000000000d06716e1ff2e492cc5034c2e81805562dd3b45fa", symbol: "MGP", coinGeckoId: "magpie", decimals: 18, price: 0.04863448},                                           // Addr: 0xd06716e1ff2e492cc5034c2e81805562dd3b45fa, Notional: 5553692.2048638975
-		{chain: 4, addr: "000000000000000000000000d069599e718f963bd84502b49ba8f8657faf5b3a", symbol: "PLAY", coinGeckoId: "xcad-network-play", decimals: 18, price: 0.00022962},                               // Addr: 0xd069599e718f963bd84502b49ba8f8657faf5b3a, Notional: 575.783441817958
-		{chain: 4, addr: "000000000000000000000000d17479997f34dd9156deef8f95a52d81d265be9c", symbol: "USDD", coinGeckoId: "usdd", decimals: 18, price: 1.001},                                                 // Addr: 0xd17479997f34dd9156deef8f95a52d81d265be9c, Notional: 0.004042778739999999
-		{chain: 4, addr: "000000000000000000000000d32d01a43c869edcd1117c640fbdcfcfd97d9d65", symbol: "NMX", coinGeckoId: "nominex", decimals: 18, price: 0.00288823},                                          // Addr: 0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65, Notional: 0.0057636196514775
-		{chain: 4, addr: "000000000000000000000000d3b71117e6c1558c1553305b44988cd944e97300", symbol: "YEL", coinGeckoId: "yel-finance", decimals: 18, price: 0.00361491},                                      // Addr: 0xd3b71117e6c1558c1553305b44988cd944e97300, Notional: 0.171370533482967
-		{chain: 4, addr: "000000000000000000000000d691d9a68c887bdf34da8c36f63487333acfd103", symbol: "MAV", coinGeckoId: "maverick-protocol", decimals: 18, price: 0.054174},                                  // Addr: 0xd691d9a68c887bdf34da8c36f63487333acfd103, Notional: 0.67734928155018
-		{chain: 4, addr: "000000000000000000000000d74b782e05aa25c50e7330af541d46e18f36661c", symbol: "QUACK", coinGeckoId: "richquack", decimals: 9, price: 3.15281e-10},                                      // Addr: 0xd74b782e05aa25c50e7330af541d46e18f36661c, Notional: 38.26334796016399
-		{chain: 4, addr: "000000000000000000000000d9907fcda91ac644f70477b8fc1607ad15b2d7a8", symbol: "multiBTC", coinGeckoId: "multibtc", decimals: 8, price: 1586.64},                                        // Addr: 0xd9907fcda91ac644f70477b8fc1607ad15b2d7a8, Notional: 0.031732800000000005
-		{chain: 4, addr: "000000000000000000000000dd325c38b12903b727d16961e61333f4871a70e0", symbol: "TRUNK", coinGeckoId: "elephant-money-trunk", decimals: 18, price: 0.04923914},                           // Addr: 0xdd325c38b12903b727d16961e61333f4871a70e0, Notional: 1421225.6906451648
-		{chain: 4, addr: "000000000000000000000000de7d1ce109236b12809c45b23d22f30dba0ef424", symbol: "USDS", coinGeckoId: "spiceusd", decimals: 18, price: 0.117148},                                          // Addr: 0xde7d1ce109236b12809c45b23d22f30dba0ef424, Notional: 0.117148
-		{chain: 4, addr: "000000000000000000000000e2604c9561d490624aa35e156e65e590eb749519", symbol: "GM", coinGeckoId: "goldminer", decimals: 18, price: 2.55872e-7},                                         // Addr: 0xe2604c9561d490624aa35e156e65e590eb749519, Notional: 13.757940663120891
-		{chain: 4, addr: "000000000000000000000000e29142e14e52bdfbb8108076f66f49661f10ec10", symbol: "SEILOR", coinGeckoId: "kryptonite", decimals: 18, price: 0.00091257},                                    // Addr: 0xe29142e14e52bdfbb8108076f66f49661f10ec10, Notional: 915.0143057722609
-		{chain: 4, addr: "000000000000000000000000e2e7329499e8ddb1f2b04ee4b35a8d7f6881e4ea", symbol: "$ANRX", coinGeckoId: "anrkey-x", decimals: 18, price: 0.00006427},                                       // Addr: 0xe2e7329499e8ddb1f2b04ee4b35a8d7f6881e4ea, Notional: 16.0996986273
-		{chain: 4, addr: "000000000000000000000000e4ca1f75eca6214393fce1c1b316c237664eaa8e", symbol: "ORN", coinGeckoId: "orion-protocol", decimals: 8, price: 0.28231},                                       // Addr: 0xe4ca1f75eca6214393fce1c1b316c237664eaa8e, Notional: 156.1369599743058
-		{chain: 4, addr: "000000000000000000000000e4cc45bb5dbda06db6183e8bf016569f40497aa5", symbol: "GAL", coinGeckoId: "project-galaxy", decimals: 18, price: 0.816756},                                     // Addr: 0xe4cc45bb5dbda06db6183e8bf016569f40497aa5, Notional: 8.112837348000001
-		{chain: 4, addr: "000000000000000000000000e4e11e02aa14c7f24db749421986eaec1369e8c9", symbol: "MNTC", coinGeckoId: "minativerse", decimals: 18, price: 1.78},                                           // Addr: 0xe4e11e02aa14c7f24db749421986eaec1369e8c9, Notional: 3.5778
-		{chain: 4, addr: "000000000000000000000000e4fae3faa8300810c835970b9187c268f55d998f", symbol: "CATE", coinGeckoId: "catecoin", decimals: 9, price: 9.8069e-8},                                          // Addr: 0xe4fae3faa8300810c835970b9187c268f55d998f, Notional: 0.000661791954456165
-		{chain: 4, addr: "000000000000000000000000e552fb52a4f19e44ef5a967632dbc320b0820639", symbol: "Metis", coinGeckoId: "metis-token", decimals: 18, price: 17.94},                                         // Addr: 0xe552fb52a4f19e44ef5a967632dbc320b0820639, Notional: 151859.61127762622
-		{chain: 4, addr: "000000000000000000000000e60eaf5a997dfae83739e035b005a33afdcc6df5", symbol: "DERI", coinGeckoId: "deri-protocol", decimals: 18, price: 0.00487729},                                   // Addr: 0xe60eaf5a997dfae83739e035b005a33afdcc6df5, Notional: 0.002438645
-		{chain: 4, addr: "000000000000000000000000e7c9c6bc87b86f9e5b57072f907ee6460b593924", symbol: "TOWER", coinGeckoId: "tower", decimals: 18, price: 0.00040559},                                          // Addr: 0xe7c9c6bc87b86f9e5b57072f907ee6460b593924, Notional: 0.6108292655882519
-		{chain: 4, addr: "000000000000000000000000e8670901e86818745b28c8b30b17986958fce8cc", symbol: "XCT", coinGeckoId: "citadel-one", decimals: 6, price: 0.00042801},                                       // Addr: 0xe8670901e86818745b28c8b30b17986958fce8cc, Notional: 0.00042801
-		{chain: 4, addr: "000000000000000000000000e9c803f48dffe50180bd5b01dc04da939e3445fc", symbol: "VLX", coinGeckoId: "velas", decimals: 18, price: 0.00286492},                                            // Addr: 0xe9c803f48dffe50180bd5b01dc04da939e3445fc, Notional: 29.727049425236412
-		{chain: 4, addr: "000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d56", symbol: "BUSD", coinGeckoId: "binance-usd", decimals: 18, price: 0.992597},                                       // Addr: 0xe9e7cea3dedca5984780bafc599bd69add087d56, Notional: 103621.01127664669
-		{chain: 4, addr: "000000000000000000000000ebbaeff6217d22e7744394061d874015709b8141", symbol: "WAM", coinGeckoId: "wam", decimals: 18, price: 0.00113947},                                              // Addr: 0xebbaeff6217d22e7744394061d874015709b8141, Notional: 22270.940382590496
-		{chain: 4, addr: "000000000000000000000000eca41281c24451168a37211f0bc2b8645af45092", symbol: "TPT", coinGeckoId: "token-pocket", decimals: 4, price: 0.00995549},                                      // Addr: 0xeca41281c24451168a37211f0bc2b8645af45092, Notional: 1.9910980000000003
-		{chain: 4, addr: "000000000000000000000000ed28a457a5a76596ac48d87c0f577020f6ea1c4c", symbol: "pBTC", coinGeckoId: "ptokens-btc", decimals: 18, price: 673.02},                                         // Addr: 0xed28a457a5a76596ac48d87c0f577020f6ea1c4c, Notional: 0.1346511114
-		{chain: 4, addr: "000000000000000000000000f16e81dce15b08f326220742020379b855b87df9", symbol: "ICE", coinGeckoId: "ice-token", decimals: 18, price: 0.16271},                                           // Addr: 0xf16e81dce15b08f326220742020379b855b87df9, Notional: 0.9737203279482
-		{chain: 4, addr: "000000000000000000000000f21768ccbc73ea5b6fd3c687208a7c2def2d966e", symbol: "REEF", coinGeckoId: "reef", decimals: 18, price: 0.00037335},                                            // Addr: 0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e, Notional: 148.3522377527372
-		{chain: 4, addr: "000000000000000000000000f218184af829cf2b0019f8e6f0b2423498a36983", symbol: "MATH", coinGeckoId: "math", decimals: 18, price: 0.105831},                                              // Addr: 0xf218184af829cf2b0019f8e6f0b2423498a36983, Notional: 96.21024725181077
-		{chain: 4, addr: "000000000000000000000000f2c9c8e016a511eb0bf4823e340c3567d6de1390", symbol: "LAIKA", coinGeckoId: "laikaverse", decimals: 18, price: 0.00000686},                                     // Addr: 0xf2c9c8e016a511eb0bf4823e340c3567d6de1390, Notional: 6.86e-14
-		{chain: 4, addr: "000000000000000000000000f486ad071f3bee968384d2e39e2d8af0fcf6fd46", symbol: "VELO", coinGeckoId: "velo", decimals: 18, price: 0.01330744},                                            // Addr: 0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46, Notional: 66.1797845180992
-		{chain: 4, addr: "000000000000000000000000f585b5b4f22816baf7629aea55b701662630397b", symbol: "VOW", coinGeckoId: "vow", decimals: 18, price: 0.068439},                                                // Addr: 0xf585b5b4f22816baf7629aea55b701662630397b, Notional: 3.73294200915132
-		{chain: 4, addr: "000000000000000000000000f64ed9ad397a1ae657f31131d4b189220a7f1cc7", symbol: "DFIAT", coinGeckoId: "defiato", decimals: 18, price: 0.0009003},                                         // Addr: 0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7, Notional: 0.412922595
-		{chain: 4, addr: "000000000000000000000000f7844cb890f4c339c497aeab599abdc3c874b67a", symbol: "NFTART", coinGeckoId: "nft-art-finance", decimals: 9, price: 1.1482e-11},                                // Addr: 0xf7844cb890f4c339c497aeab599abdc3c874b67a, Notional: 7.3376335287e-12
-		{chain: 4, addr: "000000000000000000000000f7de7e8a6bd59ed41a4b5fe50278b3b7f31384df", symbol: "RDNT", coinGeckoId: "radiant-capital", decimals: 18, price: 0.02413825},                                 // Addr: 0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df, Notional: 2.6036299420001425
-		{chain: 4, addr: "000000000000000000000000f915fdda4c882731c0456a4214548cd13a822886", symbol: "UNV", coinGeckoId: "unvest", decimals: 18, price: 0.00108215},                                           // Addr: 0xf915fdda4c882731c0456a4214548cd13a822886, Notional: 12.620033300000001
-		{chain: 4, addr: "000000000000000000000000f92d62ed69242d655e685c96b98f32f1409c3262", symbol: "A4M", coinGeckoId: "alienform", decimals: 9, price: 0.00001377},                                         // Addr: 0xf92d62ed69242d655e685c96b98f32f1409c3262, Notional: 0.5534327706163263
-		{chain: 4, addr: "000000000000000000000000f952fc3ca7325cc27d15885d37117676d25bfda6", symbol: "EGG", coinGeckoId: "goose-finance", decimals: 18, price: 0.00887314},                                    // Addr: 0xf952fc3ca7325cc27d15885d37117676d25bfda6, Notional: 0.1774628
-		{chain: 4, addr: "000000000000000000000000fa40d8fc324bcdd6bbae0e086de886c571c225d4", symbol: "WZRD", coinGeckoId: "wizardia", decimals: 18, price: 0.00064372},                                        // Addr: 0xfa40d8fc324bcdd6bbae0e086de886c571c225d4, Notional: 1971.0010434527198
-		{chain: 4, addr: "000000000000000000000000fafd4cb703b25cb22f43d017e7e0d75febc26743", symbol: "WEYU", coinGeckoId: "weyu", decimals: 18, price: 0.00004538},                                            // Addr: 0xfafd4cb703b25cb22f43d017e7e0d75febc26743, Notional: 172423.10197421524
-		{chain: 4, addr: "000000000000000000000000fb288d60d3b66f9c3e231a9a39ed3f158a4269aa", symbol: "PPAY", coinGeckoId: "plasma-finance", decimals: 18, price: 0.00025769},                                  // Addr: 0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa, Notional: 0.0132826079223225
-		{chain: 4, addr: "000000000000000000000000fb5b838b6cfeedc2873ab27866079ac55363d37e", symbol: "FLOKI", coinGeckoId: "floki", decimals: 9, price: 0.00008564},                                           // Addr: 0xfb5b838b6cfeedc2873ab27866079ac55363d37e, Notional: 681.0228212218906
-		{chain: 4, addr: "000000000000000000000000fb6115445bff7b52feb98650c87f44907e58f802", symbol: "AAVE", coinGeckoId: "aave", decimals: 18, price: 269.32},                                                // Addr: 0xfb6115445bff7b52feb98650c87f44907e58f802, Notional: 176.006760496
-		{chain: 4, addr: "000000000000000000000000fb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe", symbol: "SHILL", coinGeckoId: "shill-token", decimals: 18, price: 0.00033394},                                    // Addr: 0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe, Notional: 1.9454207958367071
-		{chain: 4, addr: "000000000000000000000000fbc4f3f645c4003a2e4f4e9b51077d2daa9a9341", symbol: "ZEDXION", coinGeckoId: "zedxion", decimals: 18, price: 0.421832},                                        // Addr: 0xfbc4f3f645c4003a2e4f4e9b51077d2daa9a9341, Notional: 122209.35957824721
-		{chain: 4, addr: "000000000000000000000000fce146bf3146100cfe5db4129cf6c82b0ef4ad8c", symbol: "renBTC", coinGeckoId: "renbtc", decimals: 8, price: 24581},                                              // Addr: 0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c, Notional: 19.93740329
-		{chain: 4, addr: "000000000000000000000000fd7b3a77848f1c2d67e05e54d78d174a0c850335", symbol: "ONT", coinGeckoId: "binance-peg-ontology", decimals: 18, price: 0.137598},                               // Addr: 0xfd7b3a77848f1c2d67e05e54d78d174a0c850335, Notional: 0.0137598
-		{chain: 4, addr: "000000000000000000000000fdfd27ae39cebefdbaac8615f18aa68ddd0f15f5", symbol: "GHD", coinGeckoId: "giftedhands", decimals: 18, price: 0.00000397},                                      // Addr: 0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5, Notional: 0.00039303
-		{chain: 4, addr: "000000000000000000000000fe19f0b51438fd612f6fd59c1dbb3ea319f433ba", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                  // Addr: 0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba, Notional: 1006.4597964420999
-		{chain: 4, addr: "000000000000000000000000fe56d5892bdffc7bf58f2e84be1b2c32d21c308b", symbol: "KNC", coinGeckoId: "kyber-network-crystal", decimals: 18, price: 0.346574},                              // Addr: 0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b, Notional: 1.40731731080614
-		{chain: 4, addr: "000000000000000000000000ffba7529ac181c2ee1844548e6d7061c9a597df4", symbol: "CAPS", coinGeckoId: "coin-capsule", decimals: 18, price: 0.00110793},                                    // Addr: 0xffba7529ac181c2ee1844548e6d7061c9a597df4, Notional: 0.01661895
-		{chain: 5, addr: "000000000000000000000000011734f6ed20e8d011d85cf7894814b897420acf", symbol: "ACRE", coinGeckoId: "arable-protocol", decimals: 18, price: 0.000037},                                   // Addr: 0x011734f6ed20e8d011d85cf7894814b897420acf, Notional: 0.0012903437901299998
-		{chain: 5, addr: "0000000000000000000000000308a3a9c433256ad7ef24dbef9c49c8cb01300a", symbol: "GPO", coinGeckoId: "goldpesa-option", decimals: 18, price: 0.799578},                                    // Addr: 0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a, Notional: 19.189872
-		{chain: 5, addr: "000000000000000000000000039d2e8f097331278bd6c1415d839310e0d5ece4", symbol: "LINDA", coinGeckoId: "linda-2", decimals: 18, price: 0.00000443},                                        // Addr: 0x039d2e8f097331278bd6c1415d839310e0d5ece4, Notional: 5.024799030397095
-		{chain: 5, addr: "00000000000000000000000003b54a6e9a984069379fae1a4fc4dbae93b3bccd", symbol: "wstETH", coinGeckoId: "wrapped-steth", decimals: 18, price: 3114.69},                                    // Addr: 0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd, Notional: 28.990350937800002
-		{chain: 5, addr: "00000000000000000000000004429fbb948bbd09327763214b45e505a5293346", symbol: "ABR", coinGeckoId: "allbridge", decimals: 18, price: 0.081603},                                          // Addr: 0x04429fbb948bbd09327763214b45e505a5293346, Notional: 29.82556820378673
-		{chain: 5, addr: "00000000000000000000000008e175a1eac9744a0f1ccaeb8f669af6a2bda3ce", symbol: "E8", coinGeckoId: "energy8", decimals: 9, price: 3.752e-9},                                              // Addr: 0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce, Notional: 47.977376566829655
-		{chain: 5, addr: "0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a", symbol: "SUSHI", coinGeckoId: "sushi", decimals: 18, price: 0.671409},                                            // Addr: 0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a, Notional: 252.44389907997274
-		{chain: 5, addr: "0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270", symbol: "WPOL", coinGeckoId: "wmatic", decimals: 18, price: 0.213487},                                            // Addr: 0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, Notional: 140014.8767337275
-		{chain: 5, addr: "0000000000000000000000000d6ae2a429df13e44a07cd2969e085e4833f64a0", symbol: "PBR", coinGeckoId: "polkabridge", decimals: 18, price: 0.00038419},                                      // Addr: 0x0d6ae2a429df13e44a07cd2969e085e4833f64a0, Notional: 4.035064882392215
-		{chain: 5, addr: "0000000000000000000000000df0f72ee0e5c9b7ca761ecec42754992b2da5bf", symbol: "ATA", coinGeckoId: "automata", decimals: 18, price: 0.04708697},                                         // Addr: 0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf, Notional: 2309.4119089347655
-		{chain: 5, addr: "000000000000000000000000111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", symbol: "ICHI", coinGeckoId: "ichi-farm", decimals: 18, price: 0.392478},                                         // Addr: 0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6, Notional: 0.00972655071198
-		{chain: 5, addr: "0000000000000000000000001379e8886a944d2d9d440b3d88df536aea08d9f3", symbol: "MYST", coinGeckoId: "mysterium", decimals: 18, price: 0.232532},                                         // Addr: 0x1379e8886a944d2d9d440b3d88df536aea08d9f3, Notional: 0.37623281830536
-		{chain: 5, addr: "00000000000000000000000018e73a5333984549484348a94f4d219f4fab7b81", symbol: "DUCKIES", coinGeckoId: "duckies", decimals: 8, price: 0.00344149},                                       // Addr: 0x18e73a5333984549484348a94f4d219f4fab7b81, Notional: 0.0344149
-		{chain: 5, addr: "00000000000000000000000018ec0a6e18e5bc3784fdd3a3634b31245ab704f6", symbol: "EURe", coinGeckoId: "monerium-eur-money", decimals: 18, price: 1.14},                                    // Addr: 0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6, Notional: 0.34199999999999997
-		{chain: 5, addr: "0000000000000000000000001a13f4ca1d028320a707d99520abfefca3998b7f", symbol: "amUSDC", coinGeckoId: "aave-polygon-usdc", decimals: 6, price: 0.998776},                                // Addr: 0x1a13f4ca1d028320a707d99520abfefca3998b7f, Notional: 19.552286672448
-		{chain: 5, addr: "0000000000000000000000001b815d120b3ef02039ee11dc2d33de7aa4a8c603", symbol: "WOO", coinGeckoId: "woo-network", decimals: 18, price: 0.079828},                                        // Addr: 0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603, Notional: 5.53527352
-		{chain: 5, addr: "0000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd6", symbol: "WBTC", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                      // Addr: 0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6, Notional: 41027.44160944
-		{chain: 5, addr: "0000000000000000000000001d734a02ef1e1f5886e66b0673b71af5b53ffa94", symbol: "SD", coinGeckoId: "stader", decimals: 18, price: 0.505725},                                              // Addr: 0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94, Notional: 76.79013877133775
-		{chain: 5, addr: "000000000000000000000000200c234721b5e549c3693ccc93cf191f90dc2af9", symbol: "METAL", coinGeckoId: "drunk-robots", decimals: 18, price: 0.00057635},                                   // Addr: 0x200c234721b5e549c3693ccc93cf191f90dc2af9, Notional: 0.0668041867598175
-		{chain: 5, addr: "000000000000000000000000229b1b6c23ff8953d663c4cbb519717e323a0a84", symbol: "BLOK", coinGeckoId: "bloktopia", decimals: 18, price: 0.00029531},                                       // Addr: 0x229b1b6c23ff8953d663c4cbb519717e323a0a84, Notional: 0.0232863255059168
-		{chain: 5, addr: "00000000000000000000000022e3f02f86bc8ea0d73718a2ae8851854e62adc5", symbol: "FLAME", coinGeckoId: "firestarter", decimals: 18, price: 0.00413405},                                    // Addr: 0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5, Notional: 603.1350920813709
-		{chain: 5, addr: "000000000000000000000000236aa50979d5f3de3bd1eeb40e81137f22ab794b", symbol: "tBTC", coinGeckoId: "tbtc", decimals: 18, price: 108503},                                                // Addr: 0x236aa50979d5f3de3bd1eeb40e81137f22ab794b, Notional: 0.029295810000000002
-		{chain: 5, addr: "00000000000000000000000023d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c", symbol: "HEX", coinGeckoId: "hex", decimals: 8, price: 0.00199475},                                               // Addr: 0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c, Notional: 1.23328091826706
-		{chain: 5, addr: "00000000000000000000000023e8b6a3f6891254988b84da3738d2bfe5e703b9", symbol: "WELT", coinGeckoId: "fabwelt", decimals: 18, price: 0.00055983},                                         // Addr: 0x23e8b6a3f6891254988b84da3738d2bfe5e703b9, Notional: 0.27431669999999997
-		{chain: 5, addr: "00000000000000000000000024834bbec7e39ef42f4a75eaf8e5b6486d3f0e57", symbol: "LUNA", coinGeckoId: "wrapped-terra", decimals: 18, price: 0.00001547},                                   // Addr: 0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57, Notional: 5.452282832676971
-		{chain: 5, addr: "00000000000000000000000025788a1a171ec66da6502f9975a15b609ff54cf6", symbol: "POOL", coinGeckoId: "pooltogether", decimals: 18, price: 0.263616},                                      // Addr: 0x25788a1a171ec66da6502f9975a15b609ff54cf6, Notional: 4.481472
-		{chain: 5, addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 2.3
-		{chain: 5, addr: "0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: 0x2791bca1f2de4661ed88a30c99a7a9449aa84174, Notional: 3831432.255606813
-		{chain: 5, addr: "0000000000000000000000002ab0e9e4ee70fff1fb9d67031e44f6410170d00e", symbol: "mXEN", coinGeckoId: "xen-crypto-matic", decimals: 18, price: 5.2404e-11},                                // Addr: 0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e, Notional: 5.436646390151747
-		{chain: 5, addr: "0000000000000000000000002ab4f9ac80f33071211729e45cfc346c1f8446d5", symbol: "CGG", coinGeckoId: "chain-guardians", decimals: 18, price: 0.00120178},                                  // Addr: 0x2ab4f9ac80f33071211729e45cfc346c1f8446d5, Notional: 0.00120178
-		{chain: 5, addr: "0000000000000000000000002ad2934d5bfb7912304754479dd1f096d5c807da", symbol: "AGC", coinGeckoId: "argocoin", decimals: 18, price: 0.059188},                                           // Addr: 0x2ad2934d5bfb7912304754479dd1f096d5c807da, Notional: 5.9188
-		{chain: 5, addr: "0000000000000000000000002c89bbc92bd86f8075d1decc58c7f4e0107f286b", symbol: "AVAX", coinGeckoId: "wrapped-avax", decimals: 18, price: 21.28},                                         // Addr: 0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b, Notional: 2031.8060544096002
-		{chain: 5, addr: "0000000000000000000000002d66953fc2eb650f0fd992dbe1e71d743a4e9fee", symbol: "NOTES", coinGeckoId: "backstage-pass-notes", decimals: 9, price: 0.00067453},                            // Addr: 0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee, Notional: 0.067453
-		{chain: 5, addr: "0000000000000000000000002e1ad108ff1d8c782fcbbb89aad783ac49586756", symbol: "TUSD", coinGeckoId: "true-usd", decimals: 18, price: 0.998935},                                          // Addr: 0x2e1ad108ff1d8c782fcbbb89aad783ac49586756, Notional: 4.730352094016149
-		{chain: 5, addr: "0000000000000000000000002f25d402829ca4085b8ea4d3bc68bf203f5a9fab", symbol: "Eagon", coinGeckoId: "eagonswap-token", decimals: 18, price: 0.00007782},                                // Addr: 0x2f25d402829ca4085b8ea4d3bc68bf203f5a9fab, Notional: 0.2225516283530874
-		{chain: 5, addr: "0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                   // Addr: 0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590, Notional: 41.12922628105548
-		{chain: 5, addr: "00000000000000000000000030ea765d4dda26e0f89e1b23a7c7b2526b7d29ec", symbol: "POLYPAD", coinGeckoId: "polypad", decimals: 18, price: 0.00029092},                                      // Addr: 0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec, Notional: 45.661996604293435
-		{chain: 5, addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", symbol: "USDV", coinGeckoId: "verified-usd-foundation-usdv", decimals: 6, price: 0.131685},                       // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 0.395398566165
-		{chain: 5, addr: "00000000000000000000000034c1b299a74588d6abdc1b85a53345a48428a521", symbol: "EZ", coinGeckoId: "easyfi", decimals: 18, price: 0.00138751},                                            // Addr: 0x34c1b299a74588d6abdc1b85a53345a48428a521, Notional: 0.00555004
-		{chain: 5, addr: "0000000000000000000000003a9a81d576d83ff21f26f325066054540720fc34", symbol: "DATA", coinGeckoId: "streamr", decimals: 18, price: 0.01400043},                                         // Addr: 0x3a9a81d576d83ff21f26f325066054540720fc34, Notional: 0.11200344
-		{chain: 5, addr: "0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: 0x3c499c542cef5e3811e1192ce70d8cc03d5c3359, Notional: 56768.984972654325
-		{chain: 5, addr: "0000000000000000000000003c69d114664d48357d820dbdd121a8071eac99bf", symbol: "GALAXIS", coinGeckoId: "galaxis-token", decimals: 18, price: 0.00037737},                                // Addr: 0x3c69d114664d48357d820dbdd121a8071eac99bf, Notional: 56.66669220841864
-		{chain: 5, addr: "000000000000000000000000411bc96881a62572ff33c9d8ce60df99e3d96cd8", symbol: "MRST", coinGeckoId: "the-mars", decimals: 18, price: 0.00036894},                                        // Addr: 0x411bc96881a62572ff33c9d8ce60df99e3d96cd8, Notional: 0.06050616
-		{chain: 5, addr: "00000000000000000000000042d61d766b85431666b39b89c43011f24451bff6", symbol: "PSP", coinGeckoId: "paraswap", decimals: 18, price: 0.01879275},                                         // Addr: 0x42d61d766b85431666b39b89c43011f24451bff6, Notional: 0.0375855
-		{chain: 5, addr: "000000000000000000000000430ef9263e76dae63c84292c3409d61c598e9682", symbol: "PYR", coinGeckoId: "vulcan-forged", decimals: 18, price: 1.042},                                         // Addr: 0x430ef9263e76dae63c84292c3409d61c598e9682, Notional: 11.431782
-		{chain: 5, addr: "000000000000000000000000431d5dff03120afa4bdf332c61a6e1766ef37bdb", symbol: "JPYC", coinGeckoId: "jpy-coin", decimals: 18, price: 0.00709666},                                        // Addr: 0x431d5dff03120afa4bdf332c61a6e1766ef37bdb, Notional: 0.7806326
-		{chain: 5, addr: "000000000000000000000000444444444444c1a66f394025ac839a535246fcc8", symbol: "GENI", coinGeckoId: "genius", decimals: 9, price: 8.04002e-7},                                           // Addr: 0x444444444444c1a66f394025ac839a535246fcc8, Notional: 1.9281241415910055
-		{chain: 5, addr: "00000000000000000000000045c32fa6df82ead1e2ef74d17b76547eddfaff89", symbol: "FRAX", coinGeckoId: "frax", decimals: 18, price: 0.999384},                                              // Addr: 0x45c32fa6df82ead1e2ef74d17b76547eddfaff89, Notional: 10.001937428909281
-		{chain: 5, addr: "00000000000000000000000046d502fac9aea7c5bc7b13c8ec9d02378c33d36f", symbol: "WSPP", coinGeckoId: "wolfsafepoorpeople-polygon", decimals: 18, price: 1.3101e-8},                       // Addr: 0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f, Notional: 0.39303
-		{chain: 5, addr: "00000000000000000000000049a0400587a7f65072c87c4910449fdcc5c47242", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                  // Addr: 0x49a0400587a7f65072c87c4910449fdcc5c47242, Notional: 51.561409899999994
-		{chain: 5, addr: "0000000000000000000000004a81f8796e0c6ad4877a51c86693b0de8093f2ef", symbol: "ICE", coinGeckoId: "iron-finance", decimals: 18, price: 0.00000328},                                     // Addr: 0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef, Notional: 0.4314348
-		{chain: 5, addr: "0000000000000000000000004c9f66b2806538cf00ef596e09fb05bcb0d17dc8", symbol: "MNTO", coinGeckoId: "minato", decimals: 18, price: 0.572417},                                            // Addr: 0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8, Notional: 1.144834
-		{chain: 5, addr: "0000000000000000000000004e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59", symbol: "ICE", coinGeckoId: "ice-token", decimals: 18, price: 0.16271},                                           // Addr: 0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59, Notional: 16.8481187039871
-		{chain: 5, addr: "0000000000000000000000004e78011ce80ee02d2c3e649fb657e45898257815", symbol: "KLIMA", coinGeckoId: "klima-dao", decimals: 9, price: 0.151445},                                         // Addr: 0x4e78011ce80ee02d2c3e649fb657e45898257815, Notional: 0.1023849101919
-		{chain: 5, addr: "0000000000000000000000004fb71290ac171e1d144f7221d882becac7196eb5", symbol: "TRYB", coinGeckoId: "bilira", decimals: 6, price: 0.02546433},                                           // Addr: 0x4fb71290ac171e1d144f7221d882becac7196eb5, Notional: 7.99506466850754
-		{chain: 5, addr: "00000000000000000000000050b728d8d964fd00c2d0aad81718b71311fef68a", symbol: "SNX", coinGeckoId: "havven", decimals: 18, price: 0.66506},                                              // Addr: 0x50b728d8d964fd00c2d0aad81718b71311fef68a, Notional: 1.1946507895168
-		{chain: 5, addr: "00000000000000000000000052ede6bba83b7b4ba1d738df0df713d6a2036b71", symbol: "0xMR", coinGeckoId: "0xmonero", decimals: 18, price: 0.0253346},                                         // Addr: 0x52ede6bba83b7b4ba1d738df0df713d6a2036b71, Notional: 0.9022484735548358
-		{chain: 5, addr: "00000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39", symbol: "LINK", coinGeckoId: "chainlink", decimals: 18, price: 14.06},                                            // Addr: 0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39, Notional: 869.0849407414
-		{chain: 5, addr: "000000000000000000000000554cd6bdd03214b10aafa3e0d4d42de0c5d2937b", symbol: "IDRT", coinGeckoId: "rupiah-token", decimals: 6, price: 0.00006133},                                     // Addr: 0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b, Notional: 3.32061551248237
-		{chain: 5, addr: "000000000000000000000000590eb2920486486c2d9bb3eb651f73b81df87bcf", symbol: "BOBC", coinGeckoId: "bobcoin", decimals: 18, price: 1.2},                                                // Addr: 0x590eb2920486486c2d9bb3eb651f73b81df87bcf, Notional: 1.2
-		{chain: 5, addr: "000000000000000000000000596ebe76e2db4470966ea395b0d063ac6197a8c5", symbol: "JRT", coinGeckoId: "jarvis-reward-token", decimals: 18, price: 0.0017131},                               // Addr: 0x596ebe76e2db4470966ea395b0d063ac6197a8c5, Notional: 171.3117131
-		{chain: 5, addr: "0000000000000000000000005d47baba0d66083c52009271faf3f50dcc01023c", symbol: "BANANA", coinGeckoId: "apeswap-finance", decimals: 18, price: 1.0003e-8},                                // Addr: 0x5d47baba0d66083c52009271faf3f50dcc01023c, Notional: 0.000071129892568
-		{chain: 5, addr: "0000000000000000000000005f0197ba06860dac7e31258bdf749f92b6a636d4", symbol: "1FLR", coinGeckoId: "flare-token", decimals: 18, price: 0.00000312},                                     // Addr: 0x5f0197ba06860dac7e31258bdf749f92b6a636d4, Notional: 0.156
-		{chain: 5, addr: "00000000000000000000000061299774020da444af134c82fa83e3810b309991", symbol: "RNDR", coinGeckoId: "render-token", decimals: 18, price: 3.99},                                          // Addr: 0x61299774020da444af134c82fa83e3810b309991, Notional: 122.70772548090001
-		{chain: 5, addr: "000000000000000000000000613a489785c95afeb3b404cc41565ccff107b6e0", symbol: "RADIO", coinGeckoId: "radioshack", decimals: 18, price: 0.00004824},                                     // Addr: 0x613a489785c95afeb3b404cc41565ccff107b6e0, Notional: 0.0018870860937888
-		{chain: 5, addr: "00000000000000000000000065a05db8322701724c197af82c9cae41195b0aa8", symbol: "FOX", coinGeckoId: "shapeshift-fox-token", decimals: 18, price: 0.02935515},                             // Addr: 0x65a05db8322701724c197af82c9cae41195b0aa8, Notional: 0.014677575
-		{chain: 5, addr: "000000000000000000000000692597b009d13c4049a947cab2239b7d6517875f", symbol: "UST", coinGeckoId: "wrapped-ust", decimals: 18, price: 0.01263232},                                      // Addr: 0x692597b009d13c4049a947cab2239b7d6517875f, Notional: 201.18227123909355
-		{chain: 5, addr: "0000000000000000000000006a3e7c3c6ef65ee26975b12293ca1aad7e1daed2", symbol: "ALPHA", coinGeckoId: "aavegotchi-alpha", decimals: 18, price: 0.00059249},                               // Addr: 0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2, Notional: 0.0002488458
-		{chain: 5, addr: "0000000000000000000000006ae7dfc73e0dde2aa99ac063dcf7e8a63265108c", symbol: "JPYC", coinGeckoId: "jpyc", decimals: 18, price: 0.00705277},                                            // Addr: 0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c, Notional: 5.6422159999999995
-		{chain: 5, addr: "0000000000000000000000006ccf12b480a99c54b23647c995f4525d544a7e72", symbol: "START", coinGeckoId: "bscstarter", decimals: 18, price: 0.01325918},                                     // Addr: 0x6ccf12b480a99c54b23647c995f4525d544a7e72, Notional: 36.615406992575515
-		{chain: 5, addr: "000000000000000000000000709a4b6217584188ddb93c82f5d716d969acce1c", symbol: "HANU", coinGeckoId: "hanu-yokia", decimals: 12, price: 1.41456e-7},                                      // Addr: 0x709a4b6217584188ddb93c82f5d716d969acce1c, Notional: 0.5348080669396069
-		{chain: 5, addr: "00000000000000000000000070c006878a5a50ed185ac4c87d837633923de296", symbol: "REVV", coinGeckoId: "revv", decimals: 18, price: 0.00113577},                                            // Addr: 0x70c006878a5a50ed185ac4c87d837633923de296, Notional: 1.012439616955409
-		{chain: 5, addr: "000000000000000000000000714db550b574b3e927af3d93e26127d15721d4c2", symbol: "GMT", coinGeckoId: "stepn", decimals: 8, price: 0.051683},                                               // Addr: 0x714db550b574b3e927af3d93e26127d15721d4c2, Notional: 9.09916957699459
-		{chain: 5, addr: "000000000000000000000000723b17718289a91af252d616de2c77944962d122", symbol: "GAIA", coinGeckoId: "gaia-everworld", decimals: 18, price: 0.00093097},                                  // Addr: 0x723b17718289a91af252d616de2c77944962d122, Notional: 0.0090104428960368
-		{chain: 5, addr: "000000000000000000000000750e4c4984a9e0f12978ea6742bc1c5d248f40ed", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                         // Addr: 0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed, Notional: 81.54909757510299
-		{chain: 5, addr: "0000000000000000000000007844f79fc841e4f92d974c417031c76f8578c2d5", symbol: "OPN", coinGeckoId: "open-ticketing-ecosystem", decimals: 18, price: 0.00039846},                         // Addr: 0x7844f79fc841e4f92d974c417031c76f8578c2d5, Notional: 0.84951672
-		{chain: 5, addr: "00000000000000000000000078a0a62fba6fb21a83fe8a3433d44c73a4017a6f", symbol: "OX", coinGeckoId: "open-exchange-token", decimals: 18, price: 0.00305853},                               // Addr: 0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f, Notional: 0.20871281124245458
-		{chain: 5, addr: "0000000000000000000000007bebd226154e865954a87650faefa8f485d36081", symbol: "ZIG", coinGeckoId: "zignaly", decimals: 18, price: 0.095405},                                            // Addr: 0x7bebd226154e865954a87650faefa8f485d36081, Notional: 1.2883796324271
-		{chain: 5, addr: "0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                               // Addr: 0x7ceb23fd6bc0add59e62ac25578270cff1b9f619, Notional: 151750.1482476265
-		{chain: 5, addr: "0000000000000000000000007e4c577ca35913af564ee2a24d882a4946ec492b", symbol: "MOONED", coinGeckoId: "moonedge", decimals: 18, price: 0.00201835},                                      // Addr: 0x7e4c577ca35913af564ee2a24d882a4946ec492b, Notional: 0.0256128631752305
-		{chain: 5, addr: "00000000000000000000000081382e9693de2afc33f69b70a6c12ca9b3a73f47", symbol: "DOSE", coinGeckoId: "dose-token", decimals: 18, price: 0.00006937},                                      // Addr: 0x81382e9693de2afc33f69b70a6c12ca9b3a73f47, Notional: 0.006243299999999999
-		{chain: 5, addr: "00000000000000000000000082617aa52dddf5ed9bb7b370ed777b3182a30fd1", symbol: "YGG", coinGeckoId: "yield-guild-games", decimals: 18, price: 0.184956},                                  // Addr: 0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1, Notional: 55.583357668819566
-		{chain: 5, addr: "000000000000000000000000831753dd7087cac61ab5644b308642cc1c33dc13", symbol: "QUICK", coinGeckoId: "quick", decimals: 18, price: 24.56},                                               // Addr: 0x831753dd7087cac61ab5644b308642cc1c33dc13, Notional: 3.8293561496
-		{chain: 5, addr: "0000000000000000000000008765f05adce126d70bcdf1b0a48db573316662eb", symbol: "PLA", coinGeckoId: "playdapp", decimals: 18, price: 0.00690315},                                         // Addr: 0x8765f05adce126d70bcdf1b0a48db573316662eb, Notional: 10.73439825
-		{chain: 5, addr: "00000000000000000000000088c949b4eb85a90071f2c0bef861bddee1a7479d", symbol: "mSHEESHA", coinGeckoId: "sheesha-finance-polygon", decimals: 18, price: 0.00011139},                     // Addr: 0x88c949b4eb85a90071f2c0bef861bddee1a7479d, Notional: 0.0055695
-		{chain: 5, addr: "0000000000000000000000008d1566569d5b695d44a9a234540f68d393cdc40d", symbol: "GAME", coinGeckoId: "gamecredits", decimals: 18, price: 0.00125442},                                     // Addr: 0x8d1566569d5b695d44a9a234540f68d393cdc40d, Notional: 0.01003536
-		{chain: 5, addr: "0000000000000000000000008eef5a82e6aa222a60f009ac18c24ee12dbf4b41", symbol: "TXL", coinGeckoId: "autobahn-network", decimals: 18, price: 0.00085596},                                 // Addr: 0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41, Notional: 0.0000085596
-		{chain: 5, addr: "0000000000000000000000008f36cc333f55b09bb71091409a3d7ade399e3b1c", symbol: "CHER", coinGeckoId: "cherry-network", decimals: 18, price: 0.00042127},                                  // Addr: 0x8f36cc333f55b09bb71091409a3d7ade399e3b1c, Notional: 0.0042127
-		{chain: 5, addr: "0000000000000000000000008f3cf7ad23cd3cadbd9735aff958023239c6a063", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                                // Addr: 0x8f3cf7ad23cd3cadbd9735aff958023239c6a063, Notional: 2479.068857822384
-		{chain: 5, addr: "0000000000000000000000009085b4d52c3e0b8b6f9af6213e85a433c7d76f19", symbol: "OWL", coinGeckoId: "owldao", decimals: 18, price: 0.00608358},                                           // Addr: 0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19, Notional: 1.3118638820513449
-		{chain: 5, addr: "00000000000000000000000091c5a5488c0decde1eacd8a4f10e0942fb925067", symbol: "AUDT", coinGeckoId: "auditchain", decimals: 18, price: 0.01031894},                                      // Addr: 0x91c5a5488c0decde1eacd8a4f10e0942fb925067, Notional: 103.1894
-		{chain: 5, addr: "000000000000000000000000930a7dc10ae084fbbddc6537d7df7d4c65a40944", symbol: "UNLOCK", coinGeckoId: "unlock", decimals: 18, price: 0.00176187},                                        // Addr: 0x930a7dc10ae084fbbddc6537d7df7d4c65a40944, Notional: 0.176187
-		{chain: 5, addr: "0000000000000000000000009c2c5fd7b07e95ee044ddeba0e97a665f142394f", symbol: "1INCH", coinGeckoId: "1inch", decimals: 18, price: 0.209226},                                            // Addr: 0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f, Notional: 0.65693820797802
-		{chain: 5, addr: "0000000000000000000000009c891326fd8b1a713974f73bb604677e1e63396d", symbol: "ISLAMI", coinGeckoId: "islamicoin", decimals: 7, price: 0.00007913},                                     // Addr: 0x9c891326fd8b1a713974f73bb604677e1e63396d, Notional: 0.07912999999999999
-		{chain: 5, addr: "0000000000000000000000009c9e5fd8bbc25984b178fdce6117defa39d2db39", symbol: "BUSD", coinGeckoId: "binance-peg-busd", decimals: 18, price: 0.999305},                                  // Addr: 0x9c9e5fd8bbc25984b178fdce6117defa39d2db39, Notional: 8.0917107098398
-		{chain: 5, addr: "0000000000000000000000009ca6a77c8b38159fd2da9bd25bc3e259c33f5e39", symbol: "SPORK", coinGeckoId: "sporkdao", decimals: 18, price: 0.00914394},                                       // Addr: 0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39, Notional: 0.0914394
-		{chain: 5, addr: "0000000000000000000000009cb74c8032b007466865f060ad2c46145d45553d", symbol: "IDEX", coinGeckoId: "aurora-dao", decimals: 18, price: 0.02376906},                                      // Addr: 0x9cb74c8032b007466865f060ad2c46145d45553d, Notional: 0.14423039937415202
-		{chain: 5, addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", symbol: "OMNI", coinGeckoId: "omnicat", decimals: 18, price: 0.00001466},                                         // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 20.31994569171681
-		{chain: 5, addr: "0000000000000000000000009ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1", symbol: "FORT", coinGeckoId: "forta", decimals: 18, price: 0.069629},                                             // Addr: 0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1, Notional: 210.9468063241307
-		{chain: 5, addr: "000000000000000000000000a1c57f48f0deb89f569dfbe6e2b7f46d33606fd4", symbol: "MANA", coinGeckoId: "decentraland", decimals: 18, price: 0.284862},                                      // Addr: 0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4, Notional: 476.78775587545374
-		{chain: 5, addr: "000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f1", symbol: "miMATIC", coinGeckoId: "mimatic", decimals: 18, price: 0.995702},                                        // Addr: 0xa3fa99a148fa48d14ed51d610c367c61876997f1, Notional: 29.78532230128142
-		{chain: 5, addr: "000000000000000000000000a5eb60ca85898f8b26e18ff7c7e43623ccba772c", symbol: "COSMIC", coinGeckoId: "cosmicswap", decimals: 18, price: 0.0238228},                                     // Addr: 0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c, Notional: 17.087560626320897
-		{chain: 5, addr: "000000000000000000000000a649325aa7c5093d12d6f98eb4378deae68ce23f", symbol: "BNB", coinGeckoId: "wbnb", decimals: 18, price: 661.74},                                                 // Addr: 0xa649325aa7c5093d12d6f98eb4378deae68ce23f, Notional: 3589.2894595632
-		{chain: 5, addr: "000000000000000000000000a7051c5a22d963b81d71c2ba64d46a877fbc1821", symbol: "EROWAN", coinGeckoId: "sifchain", decimals: 18, price: 0.00000182},                                      // Addr: 0xa7051c5a22d963b81d71c2ba64d46a877fbc1821, Notional: 0.0000176913267986
-		{chain: 5, addr: "000000000000000000000000aa404804ba583c025fa64c9a276a6127ceb355c6", symbol: "CPR", coinGeckoId: "cipher-2", decimals: 2, price: 0.00062955},                                          // Addr: 0xaa404804ba583c025fa64c9a276a6127ceb355c6, Notional: 20952.721137411
-		{chain: 5, addr: "000000000000000000000000aaa5b9e6c589642f98a1cda99b9d024b8407285a", symbol: "TITAN", coinGeckoId: "iron-titanium-token", decimals: 18, price: 8.595e-9},                              // Addr: 0xaaa5b9e6c589642f98a1cda99b9d024b8407285a, Notional: 5.2013259629833835
-		{chain: 5, addr: "000000000000000000000000adbe0eac80f955363f4ff47b0f70189093908c04", symbol: "XMT", coinGeckoId: "metalswap", decimals: 18, price: 0.014588},                                          // Addr: 0xadbe0eac80f955363f4ff47b0f70189093908c04, Notional: 14.150360000000001
-		{chain: 5, addr: "000000000000000000000000b140665dde25c644c6b418e417c930de8a8a6ac9", symbol: "ATRI", coinGeckoId: "atari", decimals: 0, price: 0.00018727},                                            // Addr: 0xb140665dde25c644c6b418e417c930de8a8a6ac9, Notional: 0.01198528
-		{chain: 5, addr: "000000000000000000000000b25e20de2f2ebb4cffd4d16a55c7b395e8a94762", symbol: "REQ", coinGeckoId: "request-network", decimals: 18, price: 0.150383},                                    // Addr: 0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762, Notional: 9.67841262374856
-		{chain: 5, addr: "000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f", symbol: "UNI", coinGeckoId: "uniswap", decimals: 18, price: 6.64},                                                // Addr: 0xb33eaad8d922b1083446dc23f610c2567fb5180f, Notional: 3.630729092
-		{chain: 5, addr: "000000000000000000000000b6a5ae40e79891e4deadad06c8a7ca47396df21c", symbol: "CBY", coinGeckoId: "carbify", decimals: 18, price: 0.200883},                                            // Addr: 0xb6a5ae40e79891e4deadad06c8a7ca47396df21c, Notional: 0.1004415
-		{chain: 5, addr: "000000000000000000000000b7b31a6bc18e48888545ce79e83e06003be70930", symbol: "APE", coinGeckoId: "apecoin", decimals: 18, price: 0.715966},                                            // Addr: 0xb7b31a6bc18e48888545ce79e83e06003be70930, Notional: 0.13288151400432
-		{chain: 5, addr: "000000000000000000000000b87904db461005fc716a6bf9f2d451c33b10b80b", symbol: "AMKT", coinGeckoId: "alongside-crypto-market-index", decimals: 18, price: 285.7},                        // Addr: 0xb87904db461005fc716a6bf9f2d451c33b10b80b, Notional: 14.720392514999999
-		{chain: 5, addr: "000000000000000000000000ba777ae3a3c91fcd83ef85bfe65410592bdd0f7c", symbol: "CONE", coinGeckoId: "bitcone", decimals: 18, price: 5.09105e-7},                                         // Addr: 0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c, Notional: 2.6628075188499998
-		{chain: 5, addr: "000000000000000000000000bac3368b5110f3a3dda8b5a0f7b66edb37c47afe", symbol: "AIPEPE", coinGeckoId: "ai-pepe-king", decimals: 18, price: 1.37882e-10},                                 // Addr: 0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe, Notional: 0.000013788200000000001
-		{chain: 5, addr: "000000000000000000000000bbba073c31bf03b8acf7c28ef0738decf3695683", symbol: "SAND", coinGeckoId: "the-sandbox", decimals: 18, price: 0.282032},                                       // Addr: 0xbbba073c31bf03b8acf7c28ef0738decf3695683, Notional: 71.66981429410448
-		{chain: 5, addr: "000000000000000000000000bbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb", symbol: "CAW", coinGeckoId: "crow-with-knife", decimals: 18, price: 2.0024e-8},                                   // Addr: 0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb, Notional: 941.159704617551
-		{chain: 5, addr: "000000000000000000000000bbfe0b60de96a189bf09079de86a2db7bf0c7883", symbol: "eLunr", coinGeckoId: "lunr-token", decimals: 4, price: 0.00308821},                                      // Addr: 0xbbfe0b60de96a189bf09079de86a2db7bf0c7883, Notional: 6.301459461153
-		{chain: 5, addr: "000000000000000000000000bc5eb84c052fd012bb902c258c9fd241b17c0005", symbol: "XNET", coinGeckoId: "xnet-mobile", decimals: 18, price: 0.02744334},                                     // Addr: 0xbc5eb84c052fd012bb902c258c9fd241b17c0005, Notional: 1643434.6944175493
-		{chain: 5, addr: "000000000000000000000000bd1463f02f61676d53fd183c2b19282bff93d099", symbol: "jCHF", coinGeckoId: "jarvis-synthetic-swiss-franc", decimals: 18, price: 0.150331},                      // Addr: 0xbd1463f02f61676d53fd183c2b19282bff93d099, Notional: 2.82728897150496
-		{chain: 5, addr: "000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                    // Addr: 0xc2132d05d31c914a87c6611c10748aeb04b58e8f, Notional: 372681.322999
-		{chain: 5, addr: "000000000000000000000000c3c7d422809852031b44ab29eec9f1eff2a58756", symbol: "LDO", coinGeckoId: "lido-dao", decimals: 18, price: 0.838962},                                           // Addr: 0xc3c7d422809852031b44ab29eec9f1eff2a58756, Notional: 8.39800962
-		{chain: 5, addr: "000000000000000000000000cf32822ff397ef82425153a9dcb726e5ff61dca7", symbol: "GMEE", coinGeckoId: "gamee", decimals: 18, price: 0.00209308},                                           // Addr: 0xcf32822ff397ef82425153a9dcb726e5ff61dca7, Notional: 28.28164514291615
-		{chain: 5, addr: "000000000000000000000000d3b71117e6c1558c1553305b44988cd944e97300", symbol: "YEL", coinGeckoId: "yel-finance", decimals: 18, price: 0.00361491},                                      // Addr: 0xd3b71117e6c1558c1553305b44988cd944e97300, Notional: 3.6149099999999996
-		{chain: 5, addr: "000000000000000000000000d60deba014459f07bbcc077a5b817f31dafd5229", symbol: "VATRENI", coinGeckoId: "croatian-ff-fan-token", decimals: 18, price: 0.463485},                          // Addr: 0xd60deba014459f07bbcc077a5b817f31dafd5229, Notional: 0.463485
-		{chain: 5, addr: "000000000000000000000000d6df932a45c0f255f85145f286ea0b292b21c90b", symbol: "AAVE", coinGeckoId: "aave", decimals: 18, price: 269.32},                                                // Addr: 0xd6df932a45c0f255f85145f286ea0b292b21c90b, Notional: 1410.5799204404
-		{chain: 5, addr: "000000000000000000000000d838290e877e0188a4a44700463419ed96c16107", symbol: "NCT", coinGeckoId: "toucan-protocol-base-carbon-tonne", decimals: 18, price: 0.160652},                  // Addr: 0xd838290e877e0188a4a44700463419ed96c16107, Notional: 7.22934
-		{chain: 5, addr: "000000000000000000000000d86b5923f3ad7b585ed81b448170ae026c65ae9a", symbol: "IRON", coinGeckoId: "iron-stablecoin", decimals: 18, price: 0.00009311},                                 // Addr: 0xd86b5923f3ad7b585ed81b448170ae026c65ae9a, Notional: 18.742230804105013
-		{chain: 5, addr: "000000000000000000000000d8ca34fd379d9ca3c6ee3b3905678320f5b45195", symbol: "gOHM", coinGeckoId: "governance-ohm", decimals: 18, price: 5267.74},                                     // Addr: 0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195, Notional: 38.9470883674
-		{chain: 5, addr: "000000000000000000000000dab529f40e671a1d4bf91361c21bf9f0c9712ab7", symbol: "BUSD", coinGeckoId: "binance-usd", decimals: 18, price: 0.992597},                                       // Addr: 0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7, Notional: 352.0756500165602
-		{chain: 5, addr: "000000000000000000000000dc3326e71d45186f113a2f448984ca0e8d201995", symbol: "XSGD", coinGeckoId: "xsgd", decimals: 6, price: 0.779723},                                               // Addr: 0xdc3326e71d45186f113a2f448984ca0e8d201995, Notional: 1.563344615
-		{chain: 5, addr: "000000000000000000000000e0339c80ffde91f3e20494df88d4206d86024cdf", symbol: "ELON", coinGeckoId: "dogelon-mars", decimals: 18, price: 1.27901e-7},                                    // Addr: 0xe0339c80ffde91f3e20494df88d4206d86024cdf, Notional: 110.69745883530081
-		{chain: 5, addr: "000000000000000000000000e0bceef36f3a6efdd5eebfacd591423f8549b9d5", symbol: "FACTR", coinGeckoId: "defactor", decimals: 18, price: 0.01891814},                                       // Addr: 0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5, Notional: 1.0123959587391727
-		{chain: 5, addr: "000000000000000000000000e20b9e246db5a0d21bf9209e4858bc9a3ff7a034", symbol: "wBAN", coinGeckoId: "banano", decimals: 18, price: 0.00154673},                                          // Addr: 0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034, Notional: 16.47120586673326
-		{chain: 5, addr: "000000000000000000000000e261d618a959afffd53168cd07d12e37b26761db", symbol: "DIMO", coinGeckoId: "dimo", decimals: 18, price: 0.060256},                                              // Addr: 0xe261d618a959afffd53168cd07d12e37b26761db, Notional: 1464.5195959970151
-		{chain: 5, addr: "000000000000000000000000e4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78", symbol: "DODO", coinGeckoId: "dodo", decimals: 18, price: 0.04436955},                                            // Addr: 0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78, Notional: 0.000021769476012
-		{chain: 5, addr: "000000000000000000000000e5417af564e4bfda1c483642db72007871397896", symbol: "GNS", coinGeckoId: "gains-network", decimals: 18, price: 1.19},                                          // Addr: 0xe5417af564e4bfda1c483642db72007871397896, Notional: 27.37006664
-		{chain: 5, addr: "000000000000000000000000e613a914bbb433855378183c3ab13003285da40a", symbol: "B2M", coinGeckoId: "bit2me", decimals: 18, price: 0.01310904},                                           // Addr: 0xe613a914bbb433855378183c3ab13003285da40a, Notional: 26.24429808
-		{chain: 5, addr: "000000000000000000000000e78aee6ccb05471a69677fb74da80f5d251c042b", symbol: "TAKI", coinGeckoId: "taki", decimals: 18, price: 0.00028552},                                            // Addr: 0xe78aee6ccb05471a69677fb74da80f5d251c042b, Notional: 0.1100837382806112
-		{chain: 5, addr: "000000000000000000000000e8d17b127ba8b9899a160d9a07b69bca8e08bfc6", symbol: "NSDX", coinGeckoId: "nasdex-token", decimals: 18, price: 0.00793524},                                    // Addr: 0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6, Notional: 0.3570858
-		{chain: 5, addr: "000000000000000000000000e9993763e0b7f7d915a62a5f22a6e151f91d98a8", symbol: "TORG", coinGeckoId: "torg", decimals: 18, price: 1.9398e-8},                                             // Addr: 0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8, Notional: 0.00601684024485803
-		{chain: 5, addr: "000000000000000000000000e9e7c09e82328c3107d367f6c617cf9977e63ed0", symbol: "A51", coinGeckoId: "a51-finance", decimals: 18, price: 0.03000464},                                      // Addr: 0xe9e7c09e82328c3107d367f6c617cf9977e63ed0, Notional: 13879.780455082275
-		{chain: 5, addr: "000000000000000000000000edcfb6984a3c70501baa8b7f5421ae795ecc1496", symbol: "META", coinGeckoId: "abcmeta", decimals: 8, price: 3.63265e-7},                                          // Addr: 0xedcfb6984a3c70501baa8b7f5421ae795ecc1496, Notional: 0.011104647785000001
-		{chain: 5, addr: "000000000000000000000000ee327f889d5947c1dc1934bb208a1e792f953e96", symbol: "frxETH", coinGeckoId: "frax-ether", decimals: 18, price: 2576.06},                                       // Addr: 0xee327f889d5947c1dc1934bb208a1e792f953e96, Notional: 163.92695984559998
-		{chain: 5, addr: "000000000000000000000000ee7666aacaefaa6efeef62ea40176d3eb21953b9", symbol: "MCHC", coinGeckoId: "mch-coin", decimals: 18, price: 0.02589926},                                        // Addr: 0xee7666aacaefaa6efeef62ea40176d3eb21953b9, Notional: 15.86528622056336
-		{chain: 5, addr: "000000000000000000000000ee9801669c6138e84bd50deb500827b776777d28", symbol: "O3", coinGeckoId: "o3-swap", decimals: 18, price: 0.00216262},                                           // Addr: 0xee9801669c6138e84bd50deb500827b776777d28, Notional: 3.0787062152595164
-		{chain: 5, addr: "000000000000000000000000eee3371b89fc43ea970e908536fcddd975135d8a", symbol: "DOG", coinGeckoId: "the-doge-nft", decimals: 18, price: 0.00109697},                                     // Addr: 0xeee3371b89fc43ea970e908536fcddd975135d8a, Notional: 0.00109697
-		{chain: 5, addr: "000000000000000000000000eeeeeb57642040be42185f49c52f7e9b38f8eeee", symbol: "ELK", coinGeckoId: "elk-finance", decimals: 18, price: 0.03284014},                                      // Addr: 0xeeeeeb57642040be42185f49c52f7e9b38f8eeee, Notional: 0.06568028
-		{chain: 5, addr: "000000000000000000000000efee2de82343be622dcb4e545f75a3b9f50c272d", symbol: "TRY", coinGeckoId: "tryhards", decimals: 18, price: 0.00000727},                                         // Addr: 0xefee2de82343be622dcb4e545f75a3b9f50c272d, Notional: 0.0092141010449073
-		{chain: 5, addr: "000000000000000000000000f21441f9ec4c1fe69cb7cf186eceab31af2b658d", symbol: "VENT", coinGeckoId: "vent-finance", decimals: 18, price: 0.00067303},                                    // Addr: 0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d, Notional: 4.105483
-		{chain: 5, addr: "000000000000000000000000f28164a485b0b2c90639e47b0f377b4a438a16b1", symbol: "dQUICK", coinGeckoId: "dragons-quick", decimals: 18, price: 0.068364},                                   // Addr: 0xf28164a485b0b2c90639e47b0f377b4a438a16b1, Notional: 0.0001664253216
-		{chain: 5, addr: "000000000000000000000000fbdd194376de19a88118e84e279b977f165d01b8", symbol: "BIFI", coinGeckoId: "beefy-finance", decimals: 18, price: 145.24},                                       // Addr: 0xfbdd194376de19a88118e84e279b977f165d01b8, Notional: 11554.0974423024
-		{chain: 6, addr: "0000000000000000000000000da67235dd5787d67955420c84ca1cecd4e5bb3b", symbol: "wMEMO", coinGeckoId: "wrapped-memory", decimals: 18, price: 119.53},                                     // Addr: 0x0da67235dd5787d67955420c84ca1cecd4e5bb3b, Notional: 46.4719348264
-		{chain: 6, addr: "000000000000000000000000130966628846bfd36ff31a822705796e8cb8c18d", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                  // Addr: 0x130966628846bfd36ff31a822705796e8cb8c18d, Notional: 135.88739750585998
-		{chain: 6, addr: "000000000000000000000000152b9d0fdc40c096757f570a51e494bd4b943e50", symbol: "BTC.b", coinGeckoId: "bitcoin-avalanche-bridged-btc-b", decimals: 8, price: 108678},                     // Addr: 0x152b9d0fdc40c096757f570a51e494bd4b943e50, Notional: 1284.06426018
-		{chain: 6, addr: "0000000000000000000000001f1e7c893855525b303f99bdf5c3c05be09ca251", symbol: "SYN", coinGeckoId: "synapse-2", decimals: 18, price: 0.167259},                                          // Addr: 0x1f1e7c893855525b303f99bdf5c3c05be09ca251, Notional: 46.18821157055999
-		{chain: 6, addr: "00000000000000000000000020cf1b6e9d856321ed4686877cf4538f2c84b4de", symbol: "ANKR", coinGeckoId: "ankr", decimals: 18, price: 0.01626111},                                            // Addr: 0x20cf1b6e9d856321ed4686877cf4538f2c84b4de, Notional: 1.6261109999999999
-		{chain: 6, addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 11.011431926945992
-		{chain: 6, addr: "000000000000000000000000264c1383ea520f73dd837f915ef3a732e204a493", symbol: "BNB", coinGeckoId: "wbnb", decimals: 18, price: 661.74},                                                 // Addr: 0x264c1383ea520f73dd837f915ef3a732e204a493, Notional: 8341.532302784999
-		{chain: 6, addr: "0000000000000000000000002b2c81e08f1af8835a78bb2a90ae924ace0ea4be", symbol: "sAVAX", coinGeckoId: "benqi-liquid-staked-avax", decimals: 18, price: 25.75},                            // Addr: 0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be, Notional: 544286.08625144
-		{chain: 6, addr: "0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                   // Addr: 0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590, Notional: 2.40649825604265
-		{chain: 6, addr: "00000000000000000000000031c994ac062c1970c086260bc61babb708643fac", symbol: "XETA", coinGeckoId: "xana", decimals: 18, price: 0.00078411},                                            // Addr: 0x31c994ac062c1970c086260bc61babb708643fac, Notional: 0.0078411
-		{chain: 6, addr: "000000000000000000000000321e7092a180bb43555132ec53aaa65a5bf84251", symbol: "gOHM", coinGeckoId: "governance-ohm", decimals: 18, price: 5267.74},                                     // Addr: 0x321e7092a180bb43555132ec53aaa65a5bf84251, Notional: 23.602425134399997
-		{chain: 6, addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", symbol: "USDV", coinGeckoId: "verified-usd-foundation-usdv", decimals: 6, price: 0.131685},                       // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 0.9905640674399999
-		{chain: 6, addr: "0000000000000000000000003419875b4d3bca7f3fdda2db7a476a79fd31b4fe", symbol: "DZHV", coinGeckoId: "dizzyhavoc", decimals: 18, price: 0.00018483},                                      // Addr: 0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe, Notional: 0.1384924878388194
-		{chain: 6, addr: "0000000000000000000000003eefb18003d033661f84e48360ebecd181a84709", symbol: "ISA", coinGeckoId: "islander", decimals: 18, price: 0.00000863},                                         // Addr: 0x3eefb18003d033661f84e48360ebecd181a84709, Notional: 0.0006601261514997001
-		{chain: 6, addr: "000000000000000000000000420fca0121dc28039145009570975747295f2329", symbol: "COQ", coinGeckoId: "coq-inu", decimals: 18, price: 6.49991e-7},                                          // Addr: 0x420fca0121dc28039145009570975747295f2329, Notional: 6.49991e-15
-		{chain: 6, addr: "000000000000000000000000431d5dff03120afa4bdf332c61a6e1766ef37bdb", symbol: "JPYC", coinGeckoId: "jpy-coin", decimals: 18, price: 0.00709666},                                        // Addr: 0x431d5dff03120afa4bdf332c61a6e1766ef37bdb, Notional: 2.4441535877075204
-		{chain: 6, addr: "000000000000000000000000444444444444c1a66f394025ac839a535246fcc8", symbol: "GENI", coinGeckoId: "genius", decimals: 9, price: 8.04002e-7},                                           // Addr: 0x444444444444c1a66f394025ac839a535246fcc8, Notional: 0.4611647204774788
-		{chain: 6, addr: "000000000000000000000000491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f", symbol: "BRZ", coinGeckoId: "brz", decimals: 4, price: 0.178599},                                                 // Addr: 0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f, Notional: 0.178599
-		{chain: 6, addr: "00000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", symbol: "WETH.e", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                             // Addr: 0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab, Notional: 13892.689591462498
-		{chain: 6, addr: "0000000000000000000000004bfc90322dd638f81f034517359bd447f8e0235a", symbol: "NEWO", coinGeckoId: "new-order", decimals: 18, price: 0.00157669},                                       // Addr: 0x4bfc90322dd638f81f034517359bd447f8e0235a, Notional: 12912.823191858739
-		{chain: 6, addr: "000000000000000000000000502580fc390606b47fc3b741d6d49909383c28a9", symbol: "HATCHY", coinGeckoId: "hatchypocket", decimals: 18, price: 0.00052912},                                  // Addr: 0x502580fc390606b47fc3b741d6d49909383c28a9, Notional: 0.0026297264
-		{chain: 6, addr: "0000000000000000000000005085434227ab73151fad2de546210cbc8663df96", symbol: "DBY", coinGeckoId: "metaderby", decimals: 18, price: 0.00054153},                                        // Addr: 0x5085434227ab73151fad2de546210cbc8663df96, Notional: 4819.66790382
-		{chain: 6, addr: "00000000000000000000000050b7545627a5162f82a992c33b87adc75187b218", symbol: "WBTC.e", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                    // Addr: 0x50b7545627a5162f82a992c33b87adc75187b218, Notional: 3628.5470918
-		{chain: 6, addr: "000000000000000000000000564a341df6c126f90cf3ecb92120fd7190acb401", symbol: "TRYB", coinGeckoId: "bilira", decimals: 6, price: 0.02546433},                                           // Addr: 0x564a341df6c126f90cf3ecb92120fd7190acb401, Notional: 0.02546433
-		{chain: 6, addr: "0000000000000000000000005947bb275c521040051d82396192181b413227a3", symbol: "LINK.e", coinGeckoId: "chainlink", decimals: 18, price: 14.06},                                          // Addr: 0x5947bb275c521040051d82396192181b413227a3, Notional: 1.4060000000000001
-		{chain: 6, addr: "00000000000000000000000062edc0692bd897d2295872a9ffcac5425011c661", symbol: "GMX", coinGeckoId: "gmx", decimals: 18, price: 17.04},                                                   // Addr: 0x62edc0692bd897d2295872a9ffcac5425011c661, Notional: 61.909724591999996
-		{chain: 6, addr: "00000000000000000000000063682bdc5f875e9bf69e201550658492c9763f89", symbol: "BSGG", coinGeckoId: "betswap-gg", decimals: 18, price: 0.0007367},                                       // Addr: 0x63682bdc5f875e9bf69e201550658492c9763f89, Notional: 0.554274428656686
-		{chain: 6, addr: "00000000000000000000000063a72806098bd3d9520cc43356dd78afe5d386d9", symbol: "AAVE.e", coinGeckoId: "aave", decimals: 18, price: 269.32},                                              // Addr: 0x63a72806098bd3d9520cc43356dd78afe5d386d9, Notional: 2.5340695848
-		{chain: 6, addr: "00000000000000000000000068ee0d0aad9e1984af85ca224117e4d20eaf68be", symbol: "ROY", coinGeckoId: "crypto-royale", decimals: 18, price: 0.00062346},                                    // Addr: 0x68ee0d0aad9e1984af85ca224117e4d20eaf68be, Notional: 0.04301874000000001
-		{chain: 6, addr: "0000000000000000000000006e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd", symbol: "JOE", coinGeckoId: "joe", decimals: 18, price: 0.161424},                                                // Addr: 0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd, Notional: 0.01775664161424
-		{chain: 6, addr: "000000000000000000000000714f020c54cc9d104b6f4f6998c63ce2a31d1888", symbol: "FITFI", coinGeckoId: "step-app-fitfi", decimals: 18, price: 0.0015073},                                  // Addr: 0x714f020c54cc9d104b6f4f6998c63ce2a31d1888, Notional: 0.000150730015073
-		{chain: 6, addr: "000000000000000000000000820802fa8a99901f52e39acd21177b0be6ee2974", symbol: "EUROe", coinGeckoId: "euroe-stablecoin", decimals: 6, price: 1.14},                                      // Addr: 0x820802fa8a99901f52e39acd21177b0be6ee2974, Notional: 1.5038412599999997
-		{chain: 6, addr: "0000000000000000000000008729438eb15e2c8b576fcc6aecda6a148776c0f5", symbol: "QI", coinGeckoId: "benqi", decimals: 18, price: 0.00803733},                                             // Addr: 0x8729438eb15e2c8b576fcc6aecda6a148776c0f5, Notional: 0.00803733
-		{chain: 6, addr: "0000000000000000000000008929e9dbd2785e3ba16175e596cdd61520fee0d1", symbol: "ALTD", coinGeckoId: "altitude", decimals: 18, price: 0.00089463},                                        // Addr: 0x8929e9dbd2785e3ba16175e596cdd61520fee0d1, Notional: 0.0647059486788759
-		{chain: 6, addr: "0000000000000000000000008f47416cae600bccf9530e9f3aeaa06bdd1caa79", symbol: "THOR", coinGeckoId: "thor", decimals: 18, price: 0.01266575},                                            // Addr: 0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79, Notional: 0.056862887918095
-		{chain: 6, addr: "000000000000000000000000921f99719eb6c01b4b8f0ba7973a7c24891e740a", symbol: "MAGE", coinGeckoId: "metabrands", decimals: 18, price: 0.01934287},                                      // Addr: 0x921f99719eb6c01b4b8f0ba7973a7c24891e740a, Notional: 536.0410470152927
-		{chain: 6, addr: "000000000000000000000000961c8c0b1aad0c0b10a51fef6a867e3091bcef17", symbol: "DYP", coinGeckoId: "defi-yield-protocol", decimals: 18, price: 0.04119439},                              // Addr: 0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17, Notional: 249.78860415537616
-		{chain: 6, addr: "0000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", symbol: "USDt", coinGeckoId: "tether", decimals: 6, price: 1},                                                    // Addr: 0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7, Notional: 27458.566618
-		{chain: 6, addr: "00000000000000000000000098443b96ea4b0858fdf3219cd13e98c7a4690588", symbol: "BAT.e", coinGeckoId: "basic-attention-token", decimals: 18, price: 0.135288},                            // Addr: 0x98443b96ea4b0858fdf3219cd13e98c7a4690588, Notional: 6.698536131679919
-		{chain: 6, addr: "000000000000000000000000a4fb4f0ff2431262d236778495145ecbc975c38b", symbol: "INFRA.e", coinGeckoId: "bware-infra", decimals: 18, price: 0.132315},                                    // Addr: 0xa4fb4f0ff2431262d236778495145ecbc975c38b, Notional: 0.015877799999999997
-		{chain: 6, addr: "000000000000000000000000a7d7079b0fead91f3e65f86e8915cb59c1a4c664", symbol: "USDC.e", coinGeckoId: "usd-coin-avalanche-bridged-usdc-e", decimals: 6, price: 0.999716},                // Addr: 0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664, Notional: 30188.663875870676
-		{chain: 6, addr: "000000000000000000000000b279f8dd152b99ec1d84a489d32c35bc0c7f5674", symbol: "STEAK", coinGeckoId: "steakhut-finance", decimals: 18, price: 0.249477},                                 // Addr: 0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674, Notional: 1.37793822259905
-		{chain: 6, addr: "000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c7", symbol: "WAVAX", coinGeckoId: "wrapped-avax", decimals: 18, price: 21.28},                                        // Addr: 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7, Notional: 5708692.405210156
-		{chain: 6, addr: "000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: 0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e, Notional: 128738.50176720455
-		{chain: 6, addr: "000000000000000000000000bbaaa0420d474b34be197f95a323c2ff3829e811", symbol: "LODE", coinGeckoId: "lode-token", decimals: 18, price: 0.00082998},                                      // Addr: 0xbbaaa0420d474b34be197f95a323c2ff3829e811, Notional: 0.000029049300000000003
-		{chain: 6, addr: "000000000000000000000000bd100d061e120b2c67a24453cf6368e63f1be056", symbol: "iDYP", coinGeckoId: "idefiyieldprotocol", decimals: 18, price: 0.00035127},                              // Addr: 0xbd100d061e120b2c67a24453cf6368e63f1be056, Notional: 0.000035127
-		{chain: 6, addr: "000000000000000000000000c0c5aa69dbe4d6dddfbc89c0957686ec60f24389", symbol: "aXEN", coinGeckoId: "xen-crypto", decimals: 18, price: 4.242e-8},                                        // Addr: 0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389, Notional: 54.56592451574459
-		{chain: 6, addr: "000000000000000000000000c17c30e98541188614df99239cabd40280810ca3", symbol: "RISE", coinGeckoId: "everrise", decimals: 18, price: 0.00003096},                                        // Addr: 0xc17c30e98541188614df99239cabd40280810ca3, Notional: 0.6593277977622288
-		{chain: 6, addr: "000000000000000000000000c7198437980c041c805a1edcba50c1ce5db95118", symbol: "USDT.e", coinGeckoId: "tether-avalanche-bridged-usdt-e", decimals: 6, price: 1},                         // Addr: 0xc7198437980c041c805a1edcba50c1ce5db95118, Notional: 6488.663556
-		{chain: 6, addr: "000000000000000000000000ce1bffbd5374dac86a2893119683f4911a2f7814", symbol: "SPELL", coinGeckoId: "spell-token", decimals: 18, price: 0.00053216},                                    // Addr: 0xce1bffbd5374dac86a2893119683f4911a2f7814, Notional: 29.234950558356136
-		{chain: 6, addr: "000000000000000000000000d24c2ad096400b6fbcd2ad8b24e7acbc21a1da64", symbol: "FRAX", coinGeckoId: "frax", decimals: 18, price: 0.999384},                                              // Addr: 0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64, Notional: 7.49088339161808
-		{chain: 6, addr: "000000000000000000000000d402298a793948698b9a63311404fbbee944eafd", symbol: "SHRAP", coinGeckoId: "shrapnel-2", decimals: 18, price: 0.00489368},                                     // Addr: 0xd402298a793948698b9a63311404fbbee944eafd, Notional: 0.148131204232
-		{chain: 6, addr: "000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70", symbol: "DAI.e", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                              // Addr: 0xd586e7f844cea2f87f50152665bcbc2c279d8d70, Notional: 872.8221820709066
-		{chain: 6, addr: "000000000000000000000000e8385cecb013561b69beb63ff59f4d10734881f3", symbol: "GEC", coinGeckoId: "gecko-inu", decimals: 18, price: 7.221e-9},                                          // Addr: 0xe8385cecb013561b69beb63ff59f4d10734881f3, Notional: 0.7435490096305292
-		{chain: 6, addr: "000000000000000000000000ec3492a2508ddf4fdc0cd76f31f340b30d1793e6", symbol: "CLY", coinGeckoId: "colony", decimals: 18, price: 0.061198},                                             // Addr: 0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6, Notional: 0.061198
-		{chain: 6, addr: "000000000000000000000000ed2b42d3c9c6e97e11755bb37df29b6375ede3eb", symbol: "HON", coinGeckoId: "heroes-of-nft", decimals: 18, price: 0.0067914},                                     // Addr: 0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb, Notional: 0.020538080353098002
-		{chain: 6, addr: "000000000000000000000000fab550568c688d5d8a52c7d794cb93edc26ec0ec", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                         // Addr: 0xfab550568c688d5d8a52c7d794cb93edc26ec0ec, Notional: 0.5997857999999999
-		{chain: 6, addr: "000000000000000000000000fb98b335551a418cd0737375a2ea0ded62ea213b", symbol: "PENDLE", coinGeckoId: "pendle", decimals: 18, price: 4.24},                                              // Addr: 0xfb98b335551a418cd0737375a2ea0ded62ea213b, Notional: 449.43752850400006
-		{chain: 7, addr: "00000000000000000000000021c718c22d52d0f3a789b752d4c2fd5908a8a733", symbol: "wROSE", coinGeckoId: "oasis-network", decimals: 18, price: 0.02831149},                                  // Addr: 0x21c718c22d52d0f3a789b752d4c2fd5908a8a733, Notional: 49972.24628144279
-		{chain: 8, addr: "0000000000000000000000000000000000000000000000000000000000000000", symbol: "ALGO", coinGeckoId: "algorand", decimals: 6, price: 0.194342},                                           // Addr: 0, Notional: 811.7687469723538
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000000029fcf5", symbol: "RIO", coinGeckoId: "realio-network", decimals: 7, price: 0.260276},                                      // Addr: 2751733, Notional: 3057.4067249612513
-		{chain: 8, addr: "00000000000000000000000000000000000000000000000000000000019e8502", symbol: "Planets", coinGeckoId: "planetwatch", decimals: 6, price: 0.00001635},                                   // Addr: 27165954, Notional: 0.01635
-		{chain: 8, addr: "0000000000000000000000000000000000000000000000000000000001e1ab70", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: 31566704, Notional: 13397.323952187944
-		{chain: 8, addr: "0000000000000000000000000000000000000000000000000000000008338636", symbol: "HDL", coinGeckoId: "headline", decimals: 6, price: 0.0024618},                                           // Addr: 137594422, Notional: 91.3398607916388
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000000d83314a", symbol: "YLDY", coinGeckoId: "yieldly", decimals: 6, price: 0.0000055},                                           // Addr: 226701642, Notional: 3.749033431539
-		{chain: 8, addr: "00000000000000000000000000000000000000000000000000000000112883e4", symbol: "OPUL", coinGeckoId: "opulous", decimals: 8, price: 0.03156293},                                          // Addr: 287867876, Notional: 16.5077280193
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000001704d555", symbol: "goBTC", coinGeckoId: "gobtc", decimals: 8, price: 108381},                                               // Addr: 386192725, Notional: 224.13949467
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000001704e1e4", symbol: "goETH", coinGeckoId: "goeth", decimals: 8, price: 2559.73},                                              // Addr: 386195940, Notional: 80.86673418699999
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000001729723f", symbol: "chip", coinGeckoId: "algo-casino-chips", decimals: 1, price: 0.00100395},                                // Addr: 388592191, Notional: 0.43029297
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000001a777316", symbol: "ZONE", coinGeckoId: "zone", decimals: 6, price: 0.00061667},                                             // Addr: 444035862, Notional: 0.00555003
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000001dc164ef", symbol: "MCOIN", coinGeckoId: "maricoin", decimals: 3, price: 0.00089124},                                        // Addr: 499213551, Notional: 21888.195084711482
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000002f461f17", symbol: "gALGO", coinGeckoId: "governance-algo", decimals: 6, price: 0.193719},                                   // Addr: 793124631, Notional: 0.0387438
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000002f787b65", symbol: "COOP", coinGeckoId: "coop-coin", decimals: 6, price: 0.01530708},                                        // Addr: 796425061, Notional: 483.71556684773486
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000003717361a", symbol: "FRY", coinGeckoId: "fryscrypto", decimals: 6, price: 0.206031},                                          // Addr: 924268058, Notional: 8578520.739424603
-		{chain: 8, addr: "0000000000000000000000000000000000000000000000000000000043dc2404", symbol: "GORA", coinGeckoId: "goracle-network", decimals: 8, price: 0.02505356},                                  // Addr: 1138500612, Notional: 0.11199758191323798
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000009422e582", symbol: "FRY", coinGeckoId: "fry", decimals: 6, price: 0.117349},                                                 // Addr: 2485314946, Notional: 1173.49
-		{chain: 9, addr: "0000000000000000000000004988a896b1227218e4a686fde5eabdcabd91571f", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                    // Addr: 0x4988a896b1227218e4a686fde5eabdcabd91571f, Notional: 507.188226
-		{chain: 9, addr: "0000000000000000000000005ce9f0b6afb36135b5ddbf11705ceb65e634a9dc", symbol: "atUST", coinGeckoId: "wrapped-ust", decimals: 18, price: 0.01263232},                                    // Addr: 0x5ce9f0b6afb36135b5ddbf11705ceb65e634a9dc, Notional: 0.012545035974374402
-		{chain: 9, addr: "0000000000000000000000007ca1c28663b76cfde424a9494555b94846205585", symbol: "XNL", coinGeckoId: "chronicle", decimals: 18, price: 0.00103403},                                        // Addr: 0x7ca1c28663b76cfde424a9494555b94846205585, Notional: 0.16234271
-		{chain: 9, addr: "0000000000000000000000008bec47865ade3b172a928df8f990bc7f2a3b9f79", symbol: "AURORA", coinGeckoId: "aurora-near", decimals: 18, price: 0.080323},                                     // Addr: 0x8bec47865ade3b172a928df8f990bc7f2a3b9f79, Notional: 0.0000040161500000000005
-		{chain: 9, addr: "000000000000000000000000b12bfca5a55806aaf64e99521918a4bf0fc40802", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                           // Addr: 0xb12bfca5a55806aaf64e99521918a4bf0fc40802, Notional: 329.437000407165
-		{chain: 9, addr: "000000000000000000000000c4bdd27c33ec7daa6fcfd8532ddb524bf4038096", symbol: "atLUNA", coinGeckoId: "wrapped-terra", decimals: 18, price: 0.00001547},                                 // Addr: 0xc4bdd27c33ec7daa6fcfd8532ddb524bf4038096, Notional: 0.0129881149193523
-		{chain: 9, addr: "000000000000000000000000c9bdeed33cd01541e1eed10f90519d2c06fe3feb", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                               // Addr: 0xc9bdeed33cd01541e1eed10f90519d2c06fe3feb, Notional: 6841.5940645
-		{chain: 9, addr: "000000000000000000000000dcd6d4e2b3e1d1e1e6fa8c21c8a323dcbecff970", symbol: "ROSE", coinGeckoId: "rose", decimals: 18, price: 0.00007776},                                            // Addr: 0xdcd6d4e2b3e1d1e1e6fa8c21c8a323dcbecff970, Notional: 0.00785376
-		{chain: 10, addr: "00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0x04068da6c83afcfa0e13ba15a6696662335d5b75, Notional: 217736.56752846285
-		{chain: 10, addr: "000000000000000000000000049d68029688eabf473097a2fc38ef61633a3c7a", symbol: "fUSDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                  // Addr: 0x049d68029688eabf473097a2fc38ef61633a3c7a, Notional: 2466.550891
-		{chain: 10, addr: "0000000000000000000000000615dbba33fe61a31c7ed131bda6655ed76748b1", symbol: "ANKR", coinGeckoId: "ankr", decimals: 18, price: 0.01626111},                                           // Addr: 0x0615dbba33fe61a31c7ed131bda6655ed76748b1, Notional: 9.673074546738304
-		{chain: 10, addr: "000000000000000000000000174c7106aeecdc11389f7dd21342f05f46ccb40f", symbol: "DEVIL", coinGeckoId: "devil-finance", decimals: 18, price: 0.00005218},                                 // Addr: 0x174c7106aeecdc11389f7dd21342f05f46ccb40f, Notional: 0.11479600000104359
-		{chain: 10, addr: "0000000000000000000000001b6382dbdea11d97f24495c9a90b7c88469134a4", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                        // Addr: 0x1b6382dbdea11d97f24495c9a90b7c88469134a4, Notional: 11.080319913111
-		{chain: 10, addr: "0000000000000000000000001e4f97b9f9f913c46f1632781732927b9019c68b", symbol: "CRV", coinGeckoId: "curve-dao-token", decimals: 18, price: 0.6725},                                     // Addr: 0x1e4f97b9f9f913c46f1632781732927b9019c68b, Notional: 6714.538614747999
-		{chain: 10, addr: "0000000000000000000000002130d2a1e51112d349ccf78d2a1ee65843ba36e0", symbol: "UNIDX", coinGeckoId: "unidex", decimals: 18, price: 0.14695},                                           // Addr: 0x2130d2a1e51112d349ccf78d2a1ee65843ba36e0, Notional: 0.170085120274
-		{chain: 10, addr: "00000000000000000000000021ada0d2ac28c3a5fa3cd2ee30882da8812279b6", symbol: "OATH", coinGeckoId: "oath", decimals: 18, price: 0.00077744},                                           // Addr: 0x21ada0d2ac28c3a5fa3cd2ee30882da8812279b6, Notional: 0.07774400000000001
-		{chain: 10, addr: "00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83", symbol: "WFTM", coinGeckoId: "wrapped-fantom", decimals: 18, price: 0.386855},                                   // Addr: 0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83, Notional: 53634.79513516709
-		{chain: 10, addr: "000000000000000000000000248cb87dda803028dfead98101c9465a2fbda0d4", symbol: "CHARM", coinGeckoId: "charm", decimals: 18, price: 4.48257e-7},                                         // Addr: 0x248cb87dda803028dfead98101c9465a2fbda0d4, Notional: 0.001793028
-		{chain: 10, addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.0000023},                                           // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 0.018423
-		{chain: 10, addr: "000000000000000000000000260b3e40c714ce8196465ec824cd8bb915081812", symbol: "IronICE", coinGeckoId: "iron-bsc", decimals: 18, price: 0.0161403},                                     // Addr: 0x260b3e40c714ce8196465ec824cd8bb915081812, Notional: 36.837329496
-		{chain: 10, addr: "00000000000000000000000027e611fd27b276acbd5ffd632e5eaebec9761e40", symbol: "DAI+USDC", coinGeckoId: "curve-fi-dai-usdc", decimals: 18, price: 1},                                   // Addr: 0x27e611fd27b276acbd5ffd632e5eaebec9761e40, Notional: 17.51097737
-		{chain: 10, addr: "00000000000000000000000028a92dde19d9989f39a49905d7c9c2fac7799bdf", symbol: "USDC", coinGeckoId: "layerzero-usdc", decimals: 6, price: 0.914455},                                    // Addr: 0x28a92dde19d9989f39a49905d7c9c2fac7799bdf, Notional: 2305.645202733
-		{chain: 10, addr: "00000000000000000000000029b0da86e484e1c0029b56e817912d778ac0ec69", symbol: "YFI", coinGeckoId: "yearn-finance", decimals: 18, price: 5273.72},                                      // Addr: 0x29b0da86e484e1c0029b56e817912d778ac0ec69, Notional: 54.319316
-		{chain: 10, addr: "0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                  // Addr: 0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590, Notional: 2.56615148334393
-		{chain: 10, addr: "0000000000000000000000002f733095b80a04b38b0d10cc884524a3d09b836a", symbol: "USDC.e", coinGeckoId: "wormhole-bridged-usdc-fantom", decimals: 6, price: 0.921081},                    // Addr: 0x2f733095b80a04b38b0d10cc884524a3d09b836a, Notional: 5477.561582516458
-		{chain: 10, addr: "000000000000000000000000321162cd933e2be498cd2267a90534a804051b11", symbol: "BTC", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                      // Addr: 0x321162cd933e2be498cd2267a90534a804051b11, Notional: 117209.10397247999
-		{chain: 10, addr: "0000000000000000000000003dc57b391262e3aae37a08d91241f9ba9d58b570", symbol: "YOSHI", coinGeckoId: "yoshi-exchange", decimals: 18, price: 0.00717667},                                // Addr: 0x3dc57b391262e3aae37a08d91241f9ba9d58b570, Notional: 0.006459003
-		{chain: 10, addr: "00000000000000000000000040df1ae6074c35047bff66675488aa2f9f6384f3", symbol: "MATIC", coinGeckoId: "wmatic", decimals: 18, price: 0.213487},                                          // Addr: 0x40df1ae6074c35047bff66675488aa2f9f6384f3, Notional: 835.0782076330321
-		{chain: 10, addr: "00000000000000000000000042ae8468a1fddb965d420bd71368a87ec3a2b4b8", symbol: "Metti", coinGeckoId: "metti-inu", decimals: 18, price: 1.5292e-11},                                     // Addr: 0x42ae8468a1fddb965d420bd71368a87ec3a2b4b8, Notional: 0.000001743288
-		{chain: 10, addr: "00000000000000000000000044f7237df00e386af8e79b817d05ed9f6fe0f296", symbol: "SOL", coinGeckoId: "wrapped-solana", decimals: 18, price: 156.53},                                      // Addr: 0x44f7237df00e386af8e79b817d05ed9f6fe0f296, Notional: 1997.439540074
-		{chain: 10, addr: "000000000000000000000000468003b688943977e6130f4f68f23aad939a1040", symbol: "SPELL", coinGeckoId: "spell-token", decimals: 18, price: 0.00053216},                                   // Addr: 0x468003b688943977e6130f4f68f23aad939a1040, Notional: 0.10579708089381759
-		{chain: 10, addr: "000000000000000000000000511d35c52a3c244e7b8bd92c0c297755fbd89212", symbol: "AVAX", coinGeckoId: "wrapped-avax", decimals: 18, price: 21.28},                                        // Addr: 0x511d35c52a3c244e7b8bd92c0c297755fbd89212, Notional: 1012.5345489728
-		{chain: 10, addr: "000000000000000000000000526f1dc408cfe7fc5330ab9f1e78474ceff2a5dd", symbol: "VEMP", coinGeckoId: "vempire-ddao", decimals: 18, price: 0.000649},                                     // Addr: 0x526f1dc408cfe7fc5330ab9f1e78474ceff2a5dd, Notional: 1.066956
-		{chain: 10, addr: "00000000000000000000000056ee926bd8c72b2d5fa1af4d9e4cbb515a1e3adc", symbol: "SNX", coinGeckoId: "havven", decimals: 18, price: 0.66506},                                             // Addr: 0x56ee926bd8c72b2d5fa1af4d9e4cbb515a1e3adc, Notional: 0.11394622618499999
-		{chain: 10, addr: "0000000000000000000000005c4fdfc5233f935f20d2adba572f770c2e377ab0", symbol: "HEC", coinGeckoId: "hector-dao", decimals: 9, price: 0.01777726},                                       // Addr: 0x5c4fdfc5233f935f20d2adba572f770c2e377ab0, Notional: 7.346485577242277
-		{chain: 10, addr: "0000000000000000000000005d5530eb3147152fe78d5c4bfeede054c8d1442a", symbol: "FEED", coinGeckoId: "feeder-finance", decimals: 18, price: 0.00030381},                                 // Addr: 0x5d5530eb3147152fe78d5c4bfeede054c8d1442a, Notional: 1.1135932827648525
-		{chain: 10, addr: "000000000000000000000000657a1861c15a3ded9af0b6799a195a249ebdcbc6", symbol: "CREAM", coinGeckoId: "cream-2", decimals: 18, price: 1.21},                                             // Addr: 0x657a1861c15a3ded9af0b6799a195a249ebdcbc6, Notional: 0.00847
-		{chain: 10, addr: "0000000000000000000000006626c47c00f1d87902fc13eecfac3ed06d5e8d8a", symbol: "WOO", coinGeckoId: "woo-network", decimals: 18, price: 0.079828},                                       // Addr: 0x6626c47c00f1d87902fc13eecfac3ed06d5e8d8a, Notional: 7.3184506319131195
-		{chain: 10, addr: "000000000000000000000000695921034f0387eac4e11620ee91b1b15a6a09fe", symbol: "WETH", coinGeckoId: "bridged-wrapped-ether-stargate", decimals: 18, price: 2574.37},                    // Addr: 0x695921034f0387eac4e11620ee91b1b15a6a09fe, Notional: 292.44495660049995
-		{chain: 10, addr: "0000000000000000000000006a07a792ab2965c72a5b8088d3a069a7ac3a993b", symbol: "AAVE", coinGeckoId: "aave", decimals: 18, price: 269.32},                                               // Addr: 0x6a07a792ab2965c72a5b8088d3a069a7ac3a993b, Notional: 1197.4736674172
-		{chain: 10, addr: "00000000000000000000000074b23882a30290451a17c44f4f05243b6b58c76d", symbol: "ETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                               // Addr: 0x74b23882a30290451a17c44f4f05243b6b58c76d, Notional: 42495.886688267994
-		{chain: 10, addr: "00000000000000000000000074e23df9110aa9ea0b6ff2faee01e740ca1c642e", symbol: "TOR", coinGeckoId: "tor", decimals: 18, price: 0.01843365},                                             // Addr: 0x74e23df9110aa9ea0b6ff2faee01e740ca1c642e, Notional: 1.9693973878538265
-		{chain: 10, addr: "00000000000000000000000082f0b8b456c1a451378467398982d4834b6829c1", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                 // Addr: 0x82f0b8b456c1a451378467398982d4834b6829c1, Notional: 342.15693268756996
-		{chain: 10, addr: "000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe", symbol: "BOO", coinGeckoId: "spookyswap", decimals: 18, price: 0.129654},                                        // Addr: 0x841fad6eae12c286d1fd18d1d525dffa75c7effe, Notional: 0.0025057385828999995
-		{chain: 10, addr: "00000000000000000000000085dec8c4b2680793661bca91a8f129607571863d", symbol: "BRUSH", coinGeckoId: "paint-swap", decimals: 18, price: 0.01651998},                                    // Addr: 0x85dec8c4b2680793661bca91a8f129607571863d, Notional: 0.3699624227258622
-		{chain: 10, addr: "0000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                               // Addr: 0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e, Notional: 27145.654027579447
-		{chain: 10, addr: "000000000000000000000000904f51a2e7eeaf76aaf0418cbaf0b71149686f4a", symbol: "FAME", coinGeckoId: "fantom-maker", decimals: 18, price: 0.00001004},                                   // Addr: 0x904f51a2e7eeaf76aaf0418cbaf0b71149686f4a, Notional: 515.3810946655562
-		{chain: 10, addr: "00000000000000000000000097bdafe3830734acf12da25359674277fcc33729", symbol: "KIRBY", coinGeckoId: "blue-kirby", decimals: 18, price: 0.00000714},                                    // Addr: 0x97bdafe3830734acf12da25359674277fcc33729, Notional: 14.112931966488773
-		{chain: 10, addr: "0000000000000000000000009879abdea01a879644185341f7af7d8343556b7a", symbol: "TUSD", coinGeckoId: "true-usd", decimals: 18, price: 0.998935},                                         // Addr: 0x9879abdea01a879644185341f7af7d8343556b7a, Notional: 378.87593944577685
-		{chain: 10, addr: "0000000000000000000000009fb9a33956351cf4fa040f65a13b835a3c8764e3", symbol: "MULTI", coinGeckoId: "multichain", decimals: 18, price: 0.603485},                                      // Addr: 0x9fb9a33956351cf4fa040f65a13b835a3c8764e3, Notional: 387.35073782727227
-		{chain: 10, addr: "000000000000000000000000a23c4e69e5eaf4500f2f9301717f12b578b948fb", symbol: "PROTO", coinGeckoId: "protofi", decimals: 18, price: 0.0000271},                                        // Addr: 0xa23c4e69e5eaf4500f2f9301717f12b578b948fb, Notional: 0.004607
-		{chain: 10, addr: "000000000000000000000000ad996a45fd2373ed0b10efa4a8ecb9de445a4302", symbol: "ALPACA", coinGeckoId: "alpaca-finance", decimals: 18, price: 0.04213116},                               // Addr: 0xad996a45fd2373ed0b10efa4a8ecb9de445a4302, Notional: 3.0625245127440865
-		{chain: 10, addr: "000000000000000000000000ae75a438b2e0cb8bb01ec1e1e376de11d44477cc", symbol: "SUSHI", coinGeckoId: "sushi", decimals: 18, price: 0.671409},                                           // Addr: 0xae75a438b2e0cb8bb01ec1e1e376de11d44477cc, Notional: 45.08479596113811
-		{chain: 10, addr: "000000000000000000000000b3654dc3d10ea7645f8319668e8f54d2574fbdc8", symbol: "LINK", coinGeckoId: "chainlink", decimals: 18, price: 14.06},                                           // Addr: 0xb3654dc3d10ea7645f8319668e8f54d2574fbdc8, Notional: 3528.6382416175998
-		{chain: 10, addr: "000000000000000000000000b715f8dce2f0e9b894c753711bd55ee3c04dca4e", symbol: "CONK", coinGeckoId: "shibapoconk", decimals: 18, price: 5.1064e-11},                                    // Addr: 0xb715f8dce2f0e9b894c753711bd55ee3c04dca4e, Notional: 0.001685112
-		{chain: 10, addr: "000000000000000000000000be41772587872a92184873d55b09c6bb6f59f895", symbol: "MARS", coinGeckoId: "projectmars", decimals: 9, price: 5.2462e-8},                                      // Addr: 0xbe41772587872a92184873d55b09c6bb6f59f895, Notional: 0.00552397055110936
-		{chain: 10, addr: "000000000000000000000000cc1b99ddac1a33c201a742a1851662e87bc7f22c", symbol: "USDT", coinGeckoId: "bridged-tether-stargate", decimals: 6, price: 0.998639},                           // Addr: 0xcc1b99ddac1a33c201a742a1851662e87bc7f22c, Notional: 2661.870810468006
-		{chain: 10, addr: "000000000000000000000000d67de0e0a0fd7b15dc8348bb9be742f3c5850454", symbol: "BNB", coinGeckoId: "wbnb", decimals: 18, price: 661.74},                                                // Addr: 0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454, Notional: 13217.2845826098
-		{chain: 10, addr: "000000000000000000000000d8321aa83fb0a4ecd6348d4577431310a6e0814d", symbol: "GEIST", coinGeckoId: "geist-finance", decimals: 18, price: 0.00008337},                                 // Addr: 0xd8321aa83fb0a4ecd6348d4577431310a6e0814d, Notional: 0.0008336999999999999
-		{chain: 10, addr: "000000000000000000000000dc301622e621166bd8e82f2ca0a26c13ad0be355", symbol: "FRAX", coinGeckoId: "frax", decimals: 18, price: 0.999384},                                             // Addr: 0xdc301622e621166bd8e82f2ca0a26c13ad0be355, Notional: 144.5621269909956
-		{chain: 10, addr: "000000000000000000000000de5ed76e7c05ec5e4572cfc88d1acea165109e44", symbol: "DEUS", coinGeckoId: "deus-finance-2", decimals: 18, price: 11.01},                                      // Addr: 0xde5ed76e7c05ec5e4572cfc88d1acea165109e44, Notional: 1.0982195345999999
-		{chain: 10, addr: "000000000000000000000000e2d27f06f63d98b8e11b38b5b08a75d0c8dd62b9", symbol: "UST", coinGeckoId: "wrapped-ust", decimals: 6, price: 0.01263232},                                      // Addr: 0xe2d27f06f63d98b8e11b38b5b08a75d0c8dd62b9, Notional: 221.0565512923315
-		{chain: 10, addr: "000000000000000000000000e47d957f83f8887063150aaf7187411351643392", symbol: "CHILL", coinGeckoId: "chillpill", decimals: 18, price: 1.9588e-11},                                     // Addr: 0xe47d957f83f8887063150aaf7187411351643392, Notional: 0.0078665408
-		{chain: 10, addr: "000000000000000000000000e64b9fd040d1f9d4715c645e0d567ef69958d3d9", symbol: "MOD", coinGeckoId: "modefi", decimals: 18, price: 0.00405775},                                          // Addr: 0xe64b9fd040d1f9d4715c645e0d567ef69958d3d9, Notional: 0.06824491725789249
-		{chain: 10, addr: "000000000000000000000000e705af5f63fcabdcdf5016aa838eaaac35d12890", symbol: "MCRT", coinGeckoId: "magiccraft", decimals: 9, price: 0.00057245},                                      // Addr: 0xe705af5f63fcabdcdf5016aa838eaaac35d12890, Notional: 0.5014996282921684
-		{chain: 10, addr: "000000000000000000000000ee9801669c6138e84bd50deb500827b776777d28", symbol: "O3", coinGeckoId: "o3-swap", decimals: 18, price: 0.00216262},                                          // Addr: 0xee9801669c6138e84bd50deb500827b776777d28, Notional: 1.2585436873854685
-		{chain: 10, addr: "000000000000000000000000ef4b763385838fffc708000f884026b8c0434275", symbol: "fmXEN", coinGeckoId: "xen-crypto-fantom", decimals: 18, price: 1.552e-11},                              // Addr: 0xef4b763385838fffc708000f884026b8c0434275, Notional: 0.00029795202018957753
-		{chain: 10, addr: "000000000000000000000000fb98b335551a418cd0737375a2ea0ded62ea213b", symbol: "miMATIC", coinGeckoId: "mimatic", decimals: 18, price: 0.995702},                                       // Addr: 0xfb98b335551a418cd0737375a2ea0ded62ea213b, Notional: 25.83277578599264
-		{chain: 11, addr: "0000000000000000000000000000000000000000000100000000000000000081", symbol: "aUSD", coinGeckoId: "acala-dollar", decimals: 12, price: 0.51763},                                      // Addr: 0x0000000000000000000100000000000000000081, Notional: 5.1058603195018
-		{chain: 12, addr: "0000000000000000000000000000000000000000000100000000000000000001", symbol: "aUSD", coinGeckoId: "acala-dollar-acala", decimals: 12, price: 0.28254},                                // Addr: 0x0000000000000000000100000000000000000001, Notional: 115.2772313384208
-		{chain: 13, addr: "00000000000000000000000034d21b1e550d73cee41151c77f3c73359527a396", symbol: "oETH", coinGeckoId: "orbit-bridge-klaytn-ethereum", decimals: 18, price: 243.33},                       // Addr: 0x34d21b1e550d73cee41151c77f3c73359527a396, Notional: 0.48666000000000004
-		{chain: 13, addr: "0000000000000000000000005c74070fdea071359b86082bd9f9b3deaafbe32b", symbol: "KDAI", coinGeckoId: "klaytn-dai", decimals: 18, price: 0.104658},                                       // Addr: 0x5c74070fdea071359b86082bd9f9b3deaafbe32b, Notional: 0.00209316
-		{chain: 13, addr: "0000000000000000000000006270b58be569a7c0b8f47594f191631ae5b2c86c", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0x6270b58be569a7c0b8f47594f191631ae5b2c86c, Notional: 45558.11544507877
-		{chain: 13, addr: "000000000000000000000000754288077d0ff82af7a5317c7cb8c444d421d103", symbol: "oUSDC", coinGeckoId: "orbit-bridge-klaytn-usdc", decimals: 6, price: 0.316973},                         // Addr: 0x754288077d0ff82af7a5317c7cb8c444d421d103, Notional: 1.331658092356
-		{chain: 13, addr: "0000000000000000000000009eaefb09fe4aabfbe6b1ca316a3c36afc83a393f", symbol: "oXRP", coinGeckoId: "orbit-bridge-klaytn-ripple", decimals: 6, price: 2.3},                             // Addr: 0x9eaefb09fe4aabfbe6b1ca316a3c36afc83a393f, Notional: 0.11499999999999999
-		{chain: 13, addr: "000000000000000000000000c6a2ad8cc6e4a7e08fc37cc5954be07d499e7654", symbol: "KSP", coinGeckoId: "klayswap-protocol", decimals: 18, price: 0.077896},                                 // Addr: 0xc6a2ad8cc6e4a7e08fc37cc5954be07d499e7654, Notional: 0.10515960000000002
-		{chain: 13, addr: "000000000000000000000000cd670d77f3dcab82d43dff9bd2c4b87339fb3560", symbol: "KOKOS", coinGeckoId: "kokonut-swap", decimals: 18, price: 0.155415},                                    // Addr: 0xcd670d77f3dcab82d43dff9bd2c4b87339fb3560, Notional: 1862809.6498754409
-		{chain: 13, addr: "000000000000000000000000ce899f5fcf55b0c1d7478910f812cfe68c5bcf0f", symbol: "ABC", coinGeckoId: "angry-bulls-club", decimals: 18, price: 0.00138323},                                // Addr: 0xce899f5fcf55b0c1d7478910f812cfe68c5bcf0f, Notional: 1.9961951975052126
-		{chain: 13, addr: "000000000000000000000000cee8faf64bb97a73bb51e115aa89c17ffa8dd167", symbol: "oUSDT", coinGeckoId: "orbit-bridge-klaytn-usd-tether", decimals: 6, price: 0.134457},                   // Addr: 0xcee8faf64bb97a73bb51e115aa89c17ffa8dd167, Notional: 13.870786881155999
-		{chain: 13, addr: "000000000000000000000000d068c52d81f4409b9502da926ace3301cc41f623", symbol: "MBX", coinGeckoId: "marblex", decimals: 18, price: 0.196478},                                           // Addr: 0xd068c52d81f4409b9502da926ace3301cc41f623, Notional: 0.019647800000000003
-		{chain: 13, addr: "000000000000000000000000e4f05a66ec68b54a58b17c22107b02e0232cc817", symbol: "WKLAY", coinGeckoId: "wrapped-klay", decimals: 18, price: 0.132122},                                    // Addr: 0xe4f05a66ec68b54a58b17c22107b02e0232cc817, Notional: 2804.8693432707005
-		{chain: 13, addr: "000000000000000000000000e950bdcfa4d1e45472e76cf967db93dbfc51ba3e", symbol: "KAI", coinGeckoId: "kai-protocol", decimals: 18, price: 0.04369236},                                    // Addr: 0xe950bdcfa4d1e45472e76cf967db93dbfc51ba3e, Notional: 36390.40153603419
-		{chain: 14, addr: "00000000000000000000000000be915b9dcf56a3cbe739d9b9c202ca692409ec", symbol: "UBE", coinGeckoId: "ubeswap", decimals: 18, price: 0.00005292},                                         // Addr: 0x00be915b9dcf56a3cbe739d9b9c202ca692409ec, Notional: 0.0712940742449208
-		{chain: 14, addr: "0000000000000000000000002def4285787d58a2f811af24755a8150622f4361", symbol: "cETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                              // Addr: 0x2def4285787d58a2f811af24755a8150622f4361, Notional: 1.2125067434999999
-		{chain: 14, addr: "00000000000000000000000046c9757c5497c5b1f2eb73ae79b6b67d119b0b58", symbol: "PACT", coinGeckoId: "impactmarket", decimals: 18, price: 3.64368e-7},                                   // Addr: 0x46c9757c5497c5b1f2eb73ae79b6b67d119b0b58, Notional: 92.8714850383918
-		{chain: 14, addr: "000000000000000000000000471ece3750da237f93b8e339c536989b8978a438", symbol: "CELO", coinGeckoId: "celo", decimals: 18, price: 0.325399},                                             // Addr: 0x471ece3750da237f93b8e339c536989b8978a438, Notional: 101641.10854290142
-		{chain: 14, addr: "00000000000000000000000048065fbbe25f71c9282ddf5e1cd6d6a887483d5e", symbol: "USD₮", coinGeckoId: "tether", decimals: 6, price: 1},                                                 // Addr: 0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e, Notional: 1.871171
-		{chain: 14, addr: "00000000000000000000000062b8b11039fcfe5ab0c56e502b1c372a3d2a9c7a", symbol: "G$", coinGeckoId: "gooddollar", decimals: 18, price: 0.0000901},                                        // Addr: 0x62b8b11039fcfe5ab0c56e502b1c372a3d2a9c7a, Notional: 0.0000901
-		{chain: 14, addr: "000000000000000000000000639a647fbe20b6c8ac19e48e2de44ea792c62c5c", symbol: "BIFI", coinGeckoId: "beefy-finance", decimals: 18, price: 145.24},                                      // Addr: 0x639a647fbe20b6c8ac19e48e2de44ea792c62c5c, Notional: 88.54954557600001
-		{chain: 14, addr: "00000000000000000000000074c0c58b99b68cf16a717279ac2d056a34ba2bfe", symbol: "SOURCE", coinGeckoId: "resource-protocol", decimals: 18, price: 0.00107548},                            // Addr: 0x74c0c58b99b68cf16a717279ac2d056a34ba2bfe, Notional: 0.004624563999999999
-		{chain: 14, addr: "000000000000000000000000765de816845861e75a25fca122bb6898b8b1282a", symbol: "cUSD", coinGeckoId: "celo-dollar", decimals: 18, price: 1},                                             // Addr: 0x765de816845861e75a25fca122bb6898b8b1282a, Notional: 474.7896842
-		{chain: 14, addr: "000000000000000000000000c16b81af351ba9e64c1a069e3ab18c244a1e3049", symbol: "agEUR", coinGeckoId: "ageur", decimals: 18, price: 1.14},                                               // Addr: 0xc16b81af351ba9e64c1a069e3ab18c244a1e3049, Notional: 85.97733333299999
-		{chain: 14, addr: "000000000000000000000000ceba9300f2b948710d2653dd7b07f33a8b32118c", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0xceba9300f2b948710d2653dd7b07f33a8b32118c, Notional: 16.16609359512
-		{chain: 14, addr: "000000000000000000000000d629eb00deced2a080b7ec630ef6ac117e614f1b", symbol: "BTC", coinGeckoId: "wrapped-bitcoin", decimals: 18, price: 108818},                                     // Addr: 0xd629eb00deced2a080b7ec630ef6ac117e614f1b, Notional: 14.037522
-		{chain: 14, addr: "000000000000000000000000d8763cba276a3738e6de85b4b3bf5fded6d6ca73", symbol: "cEUR", coinGeckoId: "celo-euro", decimals: 18, price: 1.14},                                            // Addr: 0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73, Notional: 2071.4687673768
-		{chain: 14, addr: "000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                        // Addr: 0xeb466342c4d449bc9f53a865d5cb90586f405215, Notional: 0.226883973495
-		{chain: 15, addr: "152fd354c086478f67c36eaa07d209631825c097490fbdb38b2a9876039be6e0", symbol: "PURGE", coinGeckoId: "forgive-me-father", decimals: 18, price: 0.00631378},                             // Addr: purge-558.meme-cooking.near, Notional: 7.92299797857942
-		{chain: 15, addr: "67499b7b8f58eaeb3cd81aea1d1ce9f7f722fd7750ceb2bed13e255073c25e2a", symbol: "SWEAT", coinGeckoId: "sweatcoin", decimals: 18, price: 0.00305004},                                     // Addr: token.sweat, Notional: 3357076.2274749624
-		{chain: 15, addr: "7cfae19928f9a3b68d342084a420284cb9a7984f52504300acb4e6f7f569393b", symbol: "SHITZU", coinGeckoId: "shitzu", decimals: 18, price: 0.00192153},                                       // Addr: token.0xshitzu.near, Notional: 0.00576459
-		{chain: 15, addr: "95a38d5f6bda0f5e212cd90fd5ae1f40b3a44a1de54df58fb501266cdfc8af7b", symbol: "WALC", coinGeckoId: "walc", decimals: 24, price: 0.00519835},                                           // Addr: walc.near, Notional: 1559.505
-		{chain: 15, addr: "9bef49ce5caa641ff4455e44855fe85a80fb71aecf70b59fc54164b309304e66", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1, Notional: 5.298335529795
-		{chain: 15, addr: "b2b94adfe162631bd59009afb38dfecb30e266e9e54f7a373f8a7ca8f9282011", symbol: "FAST", coinGeckoId: "edge-video-ai", decimals: 24, price: 0.00275298},                                  // Addr: edge-fast.near, Notional: 0.00550596
-		{chain: 15, addr: "b55c490bafb82aeb4b950fa479341c1b5fbfa814f8253b6acdf8426b7cd9d3c0", symbol: "wNEAR", coinGeckoId: "wrapped-near", decimals: 24, price: 2.47},                                        // Addr: wrap.near, Notional: 201.4293257457
-		{chain: 15, addr: "d1d057c9a9a579e4f31531ae77c9a91c0d7622df1d69707aa198a7212a2f5fa5", symbol: "ASI", coinGeckoId: "sender-ai", decimals: 18, price: 0.00463993},                                       // Addr: token.sendertge.near, Notional: 0.9358738809999999
-		{chain: 15, addr: "f2cc590922eb9d32267bd416a259c2944789f9eb1a6584f4b7149e0f820a237b", symbol: "SOL", coinGeckoId: "wrapped-solana", decimals: 24, price: 156.53},                                      // Addr: sol.token.a11bd.near, Notional: 27.241188262199998
-		{chain: 16, addr: "00000000000000000000000030d2a9f5fdf90ace8c17952cbb4ee48a55d916a7", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                              // Addr: 0x30d2a9f5fdf90ace8c17952cbb4ee48a55d916a7, Notional: 1808.519979695
-		{chain: 16, addr: "000000000000000000000000322e86852e492a7ee17f28a78c663da38fb33bfb", symbol: "FRAX", coinGeckoId: "frax", decimals: 18, price: 0.999384},                                             // Addr: 0x322e86852e492a7ee17f28a78c663da38fb33bfb, Notional: 5.00691384
-		{chain: 16, addr: "0000000000000000000000003405a1bd46b85c5c029483fbecf2f3e611026e45", symbol: "MATIC", coinGeckoId: "matic-network", decimals: 18, price: 0.213435},                                   // Addr: 0x3405a1bd46b85c5c029483fbecf2f3e611026e45, Notional: 33.44738789224711
-		{chain: 16, addr: "0000000000000000000000004792c1ecb969b036eb51330c63bd27899a13d84e", symbol: "AVAX", coinGeckoId: "wrapped-avax", decimals: 18, price: 21.28},                                        // Addr: 0x4792c1ecb969b036eb51330c63bd27899a13d84e, Notional: 420.5115032048
-		{chain: 16, addr: "000000000000000000000000511ab53f793683763e5a8829738301368a2411e3", symbol: "WELL", coinGeckoId: "moonwell-artemis", decimals: 18, price: 0.0325245},                                // Addr: 0x511ab53f793683763e5a8829738301368a2411e3, Notional: 2209109.573281743
-		{chain: 16, addr: "000000000000000000000000765277eebeca2e31912c9946eae1021199b39c61", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                               // Addr: 0x765277eebeca2e31912c9946eae1021199b39c61, Notional: 23.990232
-		{chain: 16, addr: "000000000000000000000000818ec0a7fe18ff94269904fced6ae3dae6d6dc0b", symbol: "USDC", coinGeckoId: "multichain-bridged-usdc-moonbeam", decimals: 6, price: 0.055248},                  // Addr: 0x818ec0a7fe18ff94269904fced6ae3dae6d6dc0b, Notional: 64.8822484488
-		{chain: 16, addr: "0000000000000000000000008f552a71efe5eefc207bf75485b356a0b3f01ec9", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0x8f552a71efe5eefc207bf75485b356a0b3f01ec9, Notional: 1034.738746994925
-		{chain: 16, addr: "000000000000000000000000922d641a426dcffaef11680e5358f34d97d112e1", symbol: "WBTC", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                     // Addr: 0x922d641a426dcffaef11680e5358f34d97d112e1, Notional: 1396.7824071
-		{chain: 16, addr: "000000000000000000000000a423e7eeb60547d9c7b65005477b63ae7ce67e62", symbol: "EFT", coinGeckoId: "energyfi", decimals: 18, price: 0.00021998},                                        // Addr: 0xa423e7eeb60547d9c7b65005477b63ae7ce67e62, Notional: 5.499499999999999
-		{chain: 16, addr: "000000000000000000000000a649325aa7c5093d12d6f98eb4378deae68ce23f", symbol: "BUSD", coinGeckoId: "binance-usd", decimals: 18, price: 0.992597},                                      // Addr: 0xa649325aa7c5093d12d6f98eb4378deae68ce23f, Notional: 2993.0067326228354
-		{chain: 16, addr: "000000000000000000000000acc15dc74880c9944775448304b263d191c6077f", symbol: "WGLMR", coinGeckoId: "wrapped-moonbeam", decimals: 18, price: 0.085134},                                // Addr: 0xacc15dc74880c9944775448304b263d191c6077f, Notional: 5420.163726285476
-		{chain: 16, addr: "000000000000000000000000ca01a1d0993565291051daff390892518acfad3a", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                        // Addr: 0xca01a1d0993565291051daff390892518acfad3a, Notional: 17.00392743
-		{chain: 16, addr: "000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58", symbol: "GLINT", coinGeckoId: "beamswap", decimals: 18, price: 0.000097},                                        // Addr: 0xcd3b51d98478d53f4515a306be565c6eebef1d58, Notional: 0.002425
-		{chain: 16, addr: "000000000000000000000000ecf2adaff1de8a512f6e8bfe67a2c836edb25da3", symbol: "xcRMRK", coinGeckoId: "rmrk", decimals: 10, price: 0.093246},                                           // Addr: 0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3, Notional: 0.056036611699139996
-		{chain: 16, addr: "000000000000000000000000efaeee334f0fd1712f9a8cc375f427d9cdd40d73", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                   // Addr: 0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73, Notional: 561.934496
-		{chain: 16, addr: "000000000000000000000000fa9343c3897324496a05fc75abed6bac29f8a40f", symbol: "ETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                               // Addr: 0xfa9343c3897324496a05fc75abed6bac29f8a40f, Notional: 2298.7839595825
-		{chain: 16, addr: "000000000000000000000000ffffffff1fcacbd218edc0eba20fc2308c778080", symbol: "xcDOT", coinGeckoId: "xcdot", decimals: 10, price: 4.08},                                               // Addr: 0xffffffff1fcacbd218edc0eba20fc2308c778080, Notional: 188.7739488576
-		{chain: 16, addr: "000000000000000000000000ffffffff52c56a9257bb97f4b2b6f7b2d624ecda", symbol: "xcaUSD", coinGeckoId: "acala-dollar-acala", decimals: 12, price: 0.28254},                              // Addr: 0xffffffff52c56a9257bb97f4b2b6f7b2d624ecda, Notional: 9.7805951538966
-		{chain: 16, addr: "000000000000000000000000ffffffffea09fb06d082fd1275cd48b191cbcd1d", symbol: "xcUSDT", coinGeckoId: "xcusdt", decimals: 6, price: 1},                                                 // Addr: 0xffffffffea09fb06d082fd1275cd48b191cbcd1d, Notional: 45.797239
-		{chain: 18, addr: "00e079a77f9591f05ef4c2208aff66d85b83afe8db60b398acc7b1277c58887e", symbol: "LunaX", coinGeckoId: "lunax", decimals: 6, price: 1.056},                                               // Addr: terra14xsm2wzvu7xaf567r693vgfkhmvfs08l68h4tjj5wjgyn5ky8e2qvzyanh, Notional: 1.016810784
-		{chain: 18, addr: "01fa6c6fbc36d8c245b0a852a43eb5d644e8b4c477b27bfab9537c10945939da", symbol: "LUNA", coinGeckoId: "terra-luna-2", decimals: 6, price: 0.173261},                                      // Addr: uluna, Notional: 370.45893045786903
-		{chain: 19, addr: "017038850bf3af746c36803cce35009268f00d22ae2b55ffb59ac5f2a6add40b", symbol: "INJ", coinGeckoId: "injective-protocol", decimals: 18, price: 13.61},                                   // Addr: inj, Notional: 2057.2535204238998
-		{chain: 21, addr: "01087411ef48aaac1eb6e24803213e3a60a03b147dac930e5e341f17a85e524e", symbol: "FUD", coinGeckoId: "fud-the-pug", decimals: 5, price: 5.7568e-8},                                       // Addr: 0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD, Notional: 0.000011513600000000001
-		{chain: 21, addr: "3e50a0a576877092bfaa4f8e4ec8cd7dd0a4a281bec3f806583949cf7873d07b", symbol: "SUIP", coinGeckoId: "suipad", decimals: 9, price: 0.02943876},                                          // Addr: 0xe4239cd951f6c53d9c41e25270d80d31f925ad1655e5ba5b543843d4a66975ee::SUIP::SUIP, Notional: 28613.88824503019
-		{chain: 21, addr: "4c0dce55eff2db5419bbd2d239d1aa22b4a400c01bbb648b058a9883989025da", symbol: "CETUS", coinGeckoId: "cetus-protocol", decimals: 9, price: 0.117955},                                   // Addr: 0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS, Notional: 0.0000013777144
-		{chain: 21, addr: "5075594c01d46f3bcbc4a7ef1462058273bece7793eebd0464963597c9fd0935", symbol: "SPT", coinGeckoId: "seapad", decimals: 9, price: 0.02330372},                                           // Addr: 0xb779486cfd6c19e9218cc7dc17c453014d2d9ba12d2ee4dbb0ec4e1e02ae1cca::spt::SPT, Notional: 3.40791270908
-		{chain: 21, addr: "5d26a1e9a55c88147ac870bfa31b729d7f49f8804b8b3adfdf3582d301cca844", symbol: "SCA", coinGeckoId: "scallop-2", decimals: 9, price: 0.124342},                                          // Addr: 0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA, Notional: 18477.55354742766
-		{chain: 21, addr: "9258181f5ceac8dbffb7030890243caed69a9599d2886d957a9cb7656af3bdb3", symbol: "SUI", coinGeckoId: "sui", decimals: 9, price: 3.39},                                                    // Addr: 0x2::sui::SUI, Notional: 523889.57498454844
-		{chain: 21, addr: "95a4518ae9e019c757df6703dce9ea5ecac8b319b9afed3a44c4d50363a66b42", symbol: "TURBOS", coinGeckoId: "turbos-finance", decimals: 9, price: 0.00182762},                                // Addr: 0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS, Notional: 97073.7997762407
-		{chain: 22, addr: "0cb75f840d0b043dda136e86fb2b01415a873169531ad5be0df923c12864d9bd", symbol: "Cake", coinGeckoId: "pancakeswap-token", decimals: 8, price: 2.41},                                     // Addr: 0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT, Notional: 175.08376539710002
-		{chain: 22, addr: "0d080af8d4c0959b482427505b893d59abca4d1c9670de1a1fe02dc9d7c66728", symbol: "tAPT", coinGeckoId: "tortuga-staked-aptos", decimals: 8, price: 20.5},                                  // Addr: 0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin, Notional: 45.0690655
-		{chain: 22, addr: "2603e2b07403ec1ff0315cbbeffac190f08a85dd61157c503c8f88efb2a7e123", symbol: "MOVE", coinGeckoId: "bluemove", decimals: 8, price: 0.0163188},                                         // Addr: 0x27fafcc4e39daac97556af8a803dbb52bcb03f0821898dc845ac54225b9793eb::move_coin::MoveCoin, Notional: 36.84435155936342
-		{chain: 22, addr: "5a03e1706af81b4176d7a25ec23b7ce4098f79082daf20e312d4bf6e52d2e195", symbol: "SLT", coinGeckoId: "sui-launch-token", decimals: 8, price: 0.00000593},                                 // Addr: 0x8b2df69c9766e18486c37e3cfc53c6ce6e9aa58bbc606a8a0a219f24cf9eafc1::sui_launch_token::SuiLaunchToken, Notional: 0.19020295196120132
-		{chain: 22, addr: "6155e0a106aeb3b0944388613027aee11c84921969ff775727e8046b17b17154", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC, Notional: 17620.33759254783
-		{chain: 22, addr: "61f76dbc4bdb1add1afecc1f726638bc9b5b2ac42b62f8d598b27431e5c82b7c", symbol: "GUI", coinGeckoId: "gui-inu", decimals: 6, price: 0.00000552},                                          // Addr: 0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002, Notional: 5.37614347048416
-		{chain: 22, addr: "69e4491bcf06bae41346240afbdab99cdbe40b38d2bb22eb1cf9b4a4d9e635f8", symbol: "MBX", coinGeckoId: "marblex", decimals: 8, price: 0.196478},                                            // Addr: 0x665d06fcd9c94430099f82973f2a5e5f13142e42fa172e72ce14f51a64bd8ad9::coin_mbx::MBX, Notional: 0.04925423871806
-		{chain: 22, addr: "8604102ac84987cb6d5e3ba0bce7530f2d9036b80752dce5202227221787957a", symbol: "APC", coinGeckoId: "apass-coin", decimals: 8, price: 0.00556475},                                       // Addr: 0x777821c78442e17d82c3d7a371f42de7189e4248e529fe6eee6bca40ddbb::apcoin::ApCoin, Notional: 0.013911875
-		{chain: 22, addr: "93601512902fe46ad6c51440c23a1a7e166c4b60e773579eda639c113a81325a", symbol: "USDT", coinGeckoId: "layerzero-bridged-usdt-aptos", decimals: 6, price: 0.999419},                      // Addr: 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT, Notional: 7301.190736152285
-		{chain: 22, addr: "a4b99ea559e3faeb5ddaf5bf39101894d0ce210d5e79306034d031cb6ac79693", symbol: "MAU", coinGeckoId: "mau", decimals: 8, price: 0.0000304},                                               // Addr: 0x83b619e2d9e6e10d15ed4b714111a4cd9526c1c2ae0eec4b252a619d3e8bdda3::MAU::MAU, Notional: 0.000608
-		{chain: 22, addr: "a867703f5395cb2965feb7ebff5cdf39b771fc6156085da3ae4147a00be91b38", symbol: "APT", coinGeckoId: "aptos", decimals: 8, price: 4.86},                                                  // Addr: 0x1::aptos_coin::AptosCoin, Notional: 118502.17197724081
-		{chain: 22, addr: "b029b48ea7d6c38a48a0400a156544700a9fc7ac9b82a18a3e644326177996be", symbol: "MOD", coinGeckoId: "move-dollar", decimals: 8, price: 0.996581},                                        // Addr: 0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD, Notional: 1.03644424
-		{chain: 22, addr: "b848656c196bccfa7b9708992b6af7714afce6a56e4689da5aed63b14e99757b", symbol: "WETH", coinGeckoId: "layerzero-bridged-weth-aptos", decimals: 6, price: 2594.24},                       // Addr: 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH, Notional: 22520.625976639996
-		{chain: 22, addr: "c0ef1c9f58413f5fce5cf859b363b291eb43995b9e790da04afe15772f502fbf", symbol: "ANI", coinGeckoId: "animeswap", decimals: 8, price: 0.00023862},                                        // Addr: 0x16fe2df00ea7dde4a63409201f7f4e536bde7bb7335526a35d05111e68aa322c::AnimeCoin::ANI, Notional: 0.4120218959827404
-		{chain: 22, addr: "d64be880bc9b995c0028588e916e21e7e796ae5cf32cac551edeaf95f2f9fdbd", symbol: "doodoo", coinGeckoId: "doodoo", decimals: 8, price: 0.128434},                                          // Addr: 0x73eb84966be67e4697fc5ae75173ca6c35089e802650f75422ab49a8729704ec::coin::DooDoo, Notional: 626632.5372073188
-		{chain: 22, addr: "eb1cbad587018a828b7e2d49456ed3e96d01baa8f7590723c558fecdfdffe842", symbol: "ALT", coinGeckoId: "aptos-launch-token", decimals: 8, price: 0.0035765},                                // Addr: 0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::aptos_launch_token::AptosLaunchToken, Notional: 0.0464960200125
-		{chain: 22, addr: "ec43792d3639b37cfcf7a3381d4fd71e2a7c75e708a518970eb0d475a03097cf", symbol: "BNB", coinGeckoId: "wrapped-bnb-celer", decimals: 8, price: 562.95},                                    // Addr: 0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin, Notional: 28.358555584500003
-		{chain: 22, addr: "f7835a613217e1b032007d111c9d34db23cf5f976e27e1afda8b97c3e35df17b", symbol: "WETH", coinGeckoId: "wrapped-ether-celer", decimals: 8, price: 1964.46},                                // Addr: 0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin, Notional: 60.2505186042
-		{chain: 23, addr: "00000000000000000000000009090e22118b375f2c7b95420c04414e4bf68e1a", symbol: "BELA", coinGeckoId: "beluga-protocol", decimals: 18, price: 0.00000558},                                // Addr: 0x09090e22118b375f2c7b95420c04414e4bf68e1a, Notional: 0.000558
-		{chain: 23, addr: "00000000000000000000000009e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b", symbol: "AIDOGE", coinGeckoId: "arbdoge-ai", decimals: 6, price: 1.26043e-10},                                   // Addr: 0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b, Notional: 1.26043e-7
-		{chain: 23, addr: "00000000000000000000000009fd3d6e6889940ca1158b9221309bd69fafa32b", symbol: "DROP", coinGeckoId: "droparb", decimals: 18, price: 1.9741e-11},                                        // Addr: 0x09fd3d6e6889940ca1158b9221309bd69fafa32b, Notional: 0.02516034467347783
-		{chain: 23, addr: "0000000000000000000000000c880f6761f1af8d9aa9c466984b80dab9a8c9e8", symbol: "PENDLE", coinGeckoId: "pendle", decimals: 18, price: 4.24},                                             // Addr: 0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8, Notional: 25.44
-		{chain: 23, addr: "00000000000000000000000010393c20975cf177a3513071bc110f7962cd67da", symbol: "JONES", coinGeckoId: "jones-dao", decimals: 18, price: 0.094007},                                       // Addr: 0x10393c20975cf177a3513071bc110f7962cd67da, Notional: 0.00088381151085
-		{chain: 23, addr: "00000000000000000000000013a7dedb7169a17be92b0e3c7c2315b46f4772b3", symbol: "Boop", coinGeckoId: "boop-2", decimals: 18, price: 0.0000269},                                          // Addr: 0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3, Notional: 27887.419916502728
-		{chain: 23, addr: "00000000000000000000000016f1967565aad72dd77588a332ce445e7cef752b", symbol: "CAW", coinGeckoId: "crow-with-knife", decimals: 0, price: 2.0024e-8},                                   // Addr: 0x16f1967565aad72dd77588a332ce445e7cef752b, Notional: 136043.07336993894
-		{chain: 23, addr: "00000000000000000000000018c11fd286c5ec11c3b683caa813b77f5163a122", symbol: "GNS", coinGeckoId: "gains-network", decimals: 18, price: 1.19},                                         // Addr: 0x18c11fd286c5ec11c3b683caa813b77f5163a122, Notional: 0.38661500639999996
-		{chain: 23, addr: "000000000000000000000000191c10aa4af7c30e871e70c95db0e4eb77237530", symbol: "aArbLINK", coinGeckoId: "aave-v3-link", decimals: 18, price: 14.04},                                    // Addr: 0x191c10aa4af7c30e871e70c95db0e4eb77237530, Notional: 1.2543824592
-		{chain: 23, addr: "0000000000000000000000001b896893dfc86bb67cf57767298b9073d2c1ba2c", symbol: "Cake", coinGeckoId: "pancakeswap-token", decimals: 18, price: 2.41},                                    // Addr: 0x1b896893dfc86bb67cf57767298b9073d2c1ba2c, Notional: 8.120607788000001
-		{chain: 23, addr: "0000000000000000000000002297aebd383787a160dd0d9f71508148769342e3", symbol: "BTC.b", coinGeckoId: "bitcoin-avalanche-bridged-btc-b", decimals: 8, price: 108678},                    // Addr: 0x2297aebd383787a160dd0d9f71508148769342e3, Notional: 780.5362638
-		{chain: 23, addr: "00000000000000000000000024ef78c7092d255ed14a0281ac1800c359af3afe", symbol: "RAB", coinGeckoId: "rabbit-wallet", decimals: 18, price: 0.00188675},                                   // Addr: 0x24ef78c7092d255ed14a0281ac1800c359af3afe, Notional: 0.0188675
-		{chain: 23, addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.0000023},                                           // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 1.6234256100425029
-		{chain: 23, addr: "00000000000000000000000025d887ce7a35172c62febfd67a1856f20faebb00", symbol: "PEPE", coinGeckoId: "pepe", decimals: 18, price: 0.00001198},                                           // Addr: 0x25d887ce7a35172c62febfd67a1856f20faebb00, Notional: 0.00001198
-		{chain: 23, addr: "000000000000000000000000289ba1701c2f088cf0faf8b3705246331cb8a839", symbol: "LPT", coinGeckoId: "livepeer", decimals: 18, price: 7.7},                                               // Addr: 0x289ba1701c2f088cf0faf8b3705246331cb8a839, Notional: 1139.100982866
-		{chain: 23, addr: "0000000000000000000000002f2a2543b76a4166549f7aab2e75bef0aefc5b0f", symbol: "WBTC", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                     // Addr: 0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f, Notional: 977.69382006
-		{chain: 23, addr: "0000000000000000000000003082cc23568ea640225c2467653db90e9250aaa0", symbol: "RDNT", coinGeckoId: "radiant-capital", decimals: 18, price: 0.02413825},                                // Addr: 0x3082cc23568ea640225c2467653db90e9250aaa0, Notional: 0.17118846899999998
-		{chain: 23, addr: "0000000000000000000000003269a3c00ab86c753856fd135d97b87facb0d848", symbol: "FFM", coinGeckoId: "florence-finance-medici", decimals: 18, price: 0.00076227},                         // Addr: 0x3269a3c00ab86c753856fd135d97b87facb0d848, Notional: 19457.53998015928
-		{chain: 23, addr: "000000000000000000000000371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", symbol: "JOE", coinGeckoId: "joe", decimals: 18, price: 0.161424},                                               // Addr: 0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07, Notional: 303.8376471542352
-		{chain: 23, addr: "0000000000000000000000003b475f6f2f41853706afc9fa6a6b8c5df1a2724c", symbol: "ZYB", coinGeckoId: "zyberswap", decimals: 18, price: 0.00160351},                                       // Addr: 0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c, Notional: 0.00801755
-		{chain: 23, addr: "0000000000000000000000004186bfc76e2e237523cbc30fd220fe055156b41f", symbol: "rsETH", coinGeckoId: "kelpdao-bridged-rseth-arbitrum", decimals: 18, price: 2704.28},                   // Addr: 0x4186bfc76e2e237523cbc30fd220fe055156b41f, Notional: 0.1690445428
-		{chain: 23, addr: "00000000000000000000000042069d11a2cc72388a2e06210921e839cfbd3280", symbol: "GNOME", coinGeckoId: "gnomeland", decimals: 18, price: 0.00016284},                                     // Addr: 0x42069d11a2cc72388a2e06210921e839cfbd3280, Notional: 0.0016284000000000001
-		{chain: 23, addr: "0000000000000000000000004425742f1ec8d98779690b5a3a6276db85ddc01a", symbol: "DOG", coinGeckoId: "the-doge-nft", decimals: 18, price: 0.00109697},                                    // Addr: 0x4425742f1ec8d98779690b5a3a6276db85ddc01a, Notional: 0.22473301483716862
-		{chain: 23, addr: "00000000000000000000000046f74778b265df3a15ec9695ccd2fd3869ca848c", symbol: "ANKR", coinGeckoId: "ankr", decimals: 18, price: 0.01626111},                                           // Addr: 0x46f74778b265df3a15ec9695ccd2fd3869ca848c, Notional: 2552.9783310969024
-		{chain: 23, addr: "0000000000000000000000004d15a3a2286d883af0aa1b3f21367843fac63e07", symbol: "TUSD", coinGeckoId: "true-usd", decimals: 18, price: 0.998935},                                         // Addr: 0x4d15a3a2286d883af0aa1b3f21367843fac63e07, Notional: 11.98722
-		{chain: 23, addr: "000000000000000000000000509fd25ee2ac7833a017f17ee8a6fb4aaf947876", symbol: "mWOM", coinGeckoId: "magpie-wom", decimals: 18, price: 0.00270813},                                     // Addr: 0x509fd25ee2ac7833a017f17ee8a6fb4aaf947876, Notional: 0.029389126139172002
-		{chain: 23, addr: "00000000000000000000000051318b7d00db7acc4026c88c3952b66278b6a67f", symbol: "PLS", coinGeckoId: "plutusdao", decimals: 18, price: 0.01775226},                                       // Addr: 0x51318b7d00db7acc4026c88c3952b66278b6a67f, Notional: 0.0015220198348967998
-		{chain: 23, addr: "00000000000000000000000051b902f19a56f0c8e409a34a215ad2673edf3284", symbol: "NFTE", coinGeckoId: "nftearth", decimals: 18, price: 0.00001511},                                       // Addr: 0x51b902f19a56f0c8e409a34a215ad2673edf3284, Notional: 0.0060553617661057
-		{chain: 23, addr: "00000000000000000000000051fc0f6660482ea73330e414efd7808811a57fa2", symbol: "PREMIA", coinGeckoId: "premia", decimals: 18, price: 0.10843},                                          // Addr: 0x51fc0f6660482ea73330e414efd7808811a57fa2, Notional: 0.5095227103736
-		{chain: 23, addr: "000000000000000000000000539bde0d7dbd336b79148aa742883198bbf60342", symbol: "MAGIC", coinGeckoId: "magic", decimals: 18, price: 0.131669},                                           // Addr: 0x539bde0d7dbd336b79148aa742883198bbf60342, Notional: 1.96489817367989
-		{chain: 23, addr: "00000000000000000000000057f12fe6a4e5fe819eec699fadf9db2d06606bb4", symbol: "NPM", coinGeckoId: "neptune-mutual", decimals: 18, price: 0.04894073},                                  // Addr: 0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4, Notional: 0.04894073
-		{chain: 23, addr: "000000000000000000000000580e933d90091b9ce380740e3a4a39c67eb85b4c", symbol: "GSWIFT", coinGeckoId: "gameswift", decimals: 18, price: 0.01000533},                                    // Addr: 0x580e933d90091b9ce380740e3a4a39c67eb85b4c, Notional: 0.05002665
-		{chain: 23, addr: "0000000000000000000000005979d7b546e38e414f7e9822514be443a4800529", symbol: "wstETH", coinGeckoId: "wrapped-steth", decimals: 18, price: 3114.69},                                   // Addr: 0x5979d7b546e38e414f7e9822514be443a4800529, Notional: 59.3218562427
-		{chain: 23, addr: "000000000000000000000000625e7708f30ca75bfd92586e17077590c60eb4cd", symbol: "aArbUSDC", coinGeckoId: "aave-usdc", decimals: 6, price: 1.002},                                        // Addr: 0x625e7708f30ca75bfd92586e17077590c60eb4cd, Notional: 0.01002
-		{chain: 23, addr: "0000000000000000000000006694340fc020c5e6b96567843da2df01b2ce1eb6", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                  // Addr: 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, Notional: 24.614109578492158
-		{chain: 23, addr: "00000000000000000000000068ead55c258d6fa5e46d67fc90f53211eab885be", symbol: "POP", coinGeckoId: "popcorn", decimals: 18, price: 0.0191736},                                          // Addr: 0x68ead55c258d6fa5e46d67fc90f53211eab885be, Notional: 2.001330996136056
-		{chain: 23, addr: "0000000000000000000000006c2c06790b3e3e3c38e12ee22f8183b37a13ee55", symbol: "DPX", coinGeckoId: "dopex", decimals: 18, price: 3.84},                                                 // Addr: 0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55, Notional: 0.000428352
-		{chain: 23, addr: "0000000000000000000000006c84a8f1c29108f47a79964b5fe888d4f4d0de40", symbol: "tBTC", coinGeckoId: "tbtc", decimals: 18, price: 108503},                                               // Addr: 0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40, Notional: 185.00412518
-		{chain: 23, addr: "0000000000000000000000006fd58f5a2f3468e35feb098b5f59f04157002407", symbol: "pogai", coinGeckoId: "pogai", decimals: 18, price: 0.00000926},                                         // Addr: 0x6fd58f5a2f3468e35feb098b5f59f04157002407, Notional: 0.06204199999999999
-		{chain: 23, addr: "0000000000000000000000007f7d7806f4eb90d63b0b278daf32a2db2c2001bd", symbol: "BONUS", coinGeckoId: "bonusblock", decimals: 18, price: 0.00117107},                                    // Addr: 0x7f7d7806f4eb90d63b0b278daf32a2db2c2001bd, Notional: 154.21842816487927
-		{chain: 23, addr: "00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                              // Addr: 0x82af49447d8a07e3bd95bd0d56f35241523fbab1, Notional: 250062.371243087
-		{chain: 23, addr: "000000000000000000000000847503fbf003ce8b005546aa3c03b80b7c2f9771", symbol: "BYTE", coinGeckoId: "byte", decimals: 9, price: 0.00000303},                                            // Addr: 0x847503fbf003ce8b005546aa3c03b80b7c2f9771, Notional: 106.80279573751653
-		{chain: 23, addr: "00000000000000000000000088266f9eb705f5282a2507a9c418821a2ac9f8bd", symbol: "NCASH", coinGeckoId: "nutcash", decimals: 18, price: 0.00718537},                                       // Addr: 0x88266f9eb705f5282a2507a9c418821a2ac9f8bd, Notional: 7731.349137853293
-		{chain: 23, addr: "000000000000000000000000894134a25a5fac1c2c26f1d8fbf05111a3cb9487", symbol: "GRAI", coinGeckoId: "grai", decimals: 18, price: 1.011},                                                // Addr: 0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487, Notional: 0.30329999999999996
-		{chain: 23, addr: "000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548", symbol: "ARB", coinGeckoId: "arbitrum", decimals: 18, price: 0.354061},                                          // Addr: 0x912ce59144191c1204e64559fe8253a0e49e6548, Notional: 24155.80626707179
-		{chain: 23, addr: "000000000000000000000000921f99719eb6c01b4b8f0ba7973a7c24891e740a", symbol: "XCAD", coinGeckoId: "xcad-network", decimals: 18, price: 0.03980405},                                   // Addr: 0x921f99719eb6c01b4b8f0ba7973a7c24891e740a, Notional: 3.2782827345506806
-		{chain: 23, addr: "0000000000000000000000009623063377ad1b27544c965ccd7342f7ea7e88c7", symbol: "GRT", coinGeckoId: "the-graph", decimals: 18, price: 0.094888},                                         // Addr: 0x9623063377ad1b27544c965ccd7342f7ea7e88c7, Notional: 105.9533016884404
-		{chain: 23, addr: "00000000000000000000000099c409e5f62e4bd2ac142f17cafb6810b8f0baae", symbol: "BIFI", coinGeckoId: "beefy-finance", decimals: 18, price: 145.24},                                      // Addr: 0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae, Notional: 405.9175057956
-		{chain: 23, addr: "0000000000000000000000009d2f299715d94d8a7e6f5eaa8e654e8c74a988a7", symbol: "FXS", coinGeckoId: "frax-share", decimals: 18, price: 2.75},                                            // Addr: 0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7, Notional: 6.9195799475
-		{chain: 23, addr: "0000000000000000000000009dce8e754913d928eb39bc4fc3cf047e364f7f2c", symbol: "BLOK", coinGeckoId: "bloktopia", decimals: 18, price: 0.00029531},                                      // Addr: 0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c, Notional: 1.57488823
-		{chain: 23, addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", symbol: "OMNI", coinGeckoId: "omnicat", decimals: 18, price: 0.00001466},                                        // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 15.548360873310925
-		{chain: 23, addr: "000000000000000000000000a684cd057951541187f288294a1e1c2646aa2d24", symbol: "VSTA", coinGeckoId: "vesta-finance", decimals: 18, price: 0.03095485},                                  // Addr: 0xa684cd057951541187f288294a1e1c2646aa2d24, Notional: 0.001664483763999
-		{chain: 23, addr: "000000000000000000000000aa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30", symbol: "$SHARBI", coinGeckoId: "sharbi", decimals: 9, price: 0.00000442},                                       // Addr: 0xaa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30, Notional: 0.000012155
-		{chain: 23, addr: "000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0xaf88d065e77c8cc2239327c5edb3a432268e5831, Notional: 564272.1160175034
-		{chain: 23, addr: "000000000000000000000000b0ffa8000886e57f86dd5264b9582b2ad87b2b91", symbol: "W", coinGeckoId: "wormhole", decimals: 18, price: 0.074222},                                            // Addr: 0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91, Notional: 40790.58140415372
-		{chain: 23, addr: "000000000000000000000000b261104a83887ae92392fb5ce5899fcfe5481456", symbol: "NFTE", coinGeckoId: "nftearth", decimals: 18, price: 0.00001511},                                       // Addr: 0xb261104a83887ae92392fb5ce5899fcfe5481456, Notional: 0.0001511
-		{chain: 23, addr: "000000000000000000000000b6093b61544572ab42a0e43af08abafd41bf25a6", symbol: "WXM", coinGeckoId: "weatherxm-network", decimals: 18, price: 0.20992},                                  // Addr: 0xb6093b61544572ab42a0e43af08abafd41bf25a6, Notional: 209.92
-		{chain: 23, addr: "000000000000000000000000b827710314a05bcbee9180e11c2abe5823289422", symbol: "ABI", coinGeckoId: "abachi-2", decimals: 18, price: 0.960946},                                          // Addr: 0xb827710314a05bcbee9180e11c2abe5823289422, Notional: 0.960946
-		{chain: 23, addr: "000000000000000000000000b9af4762c039d63e30039f1712dfab77026408c7", symbol: "AIBB", coinGeckoId: "bullbear-ai", decimals: 18, price: 4.2187e-11},                                    // Addr: 0xb9af4762c039d63e30039f1712dfab77026408c7, Notional: 4.2187e-10
-		{chain: 23, addr: "000000000000000000000000bfbcfe8873fe28dfa25f1099282b088d52bbad9c", symbol: "EQB", coinGeckoId: "equilibria-finance", decimals: 18, price: 0.3896},                                  // Addr: 0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c, Notional: 91.330988183592
-		{chain: 23, addr: "000000000000000000000000c3abc47863524ced8daf3ef98d74dd881e131c38", symbol: "LUA", coinGeckoId: "lumi-finance", decimals: 18, price: 1.95},                                          // Addr: 0xc3abc47863524ced8daf3ef98d74dd881e131c38, Notional: 585596.1747550004
-		{chain: 23, addr: "000000000000000000000000c628534100180582e43271448098cb2c185795bd", symbol: "FLASH", coinGeckoId: "flash-stake", decimals: 18, price: 0.00650277},                                   // Addr: 0xc628534100180582e43271448098cb2c185795bd, Notional: 3.3615650033012283
-		{chain: 23, addr: "000000000000000000000000d56734d7f9979dd94fae3d67c7e928234e71cd4c", symbol: "TIA.n", coinGeckoId: "bridged-tia-hyperlane", decimals: 6, price: 2.04},                                // Addr: 0xd56734d7f9979dd94fae3d67c7e928234e71cd4c, Notional: 3.07069164
-		{chain: 23, addr: "000000000000000000000000d5a56b510247db33695b0bea29992ac6670081ea", symbol: "GOB", coinGeckoId: "goons-of-balatroon", decimals: 18, price: 0.00039337},                              // Addr: 0xd5a56b510247db33695b0bea29992ac6670081ea, Notional: 3.4077643099999997
-		{chain: 23, addr: "000000000000000000000000d77b108d4f6cefaa0cae9506a934e825becca46e", symbol: "WINR", coinGeckoId: "winr-protocol", decimals: 18, price: 0.00728464},                                  // Addr: 0xd77b108d4f6cefaa0cae9506a934e825becca46e, Notional: 81198.38712443053
-		{chain: 23, addr: "000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                               // Addr: 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, Notional: 1628.4801404868795
-		{chain: 23, addr: "000000000000000000000000db13df2ea134e7df2208d74b96db063837db5b5c", symbol: "LAMB", coinGeckoId: "lamb-by-opnx", decimals: 18, price: 0.01007507},                                   // Addr: 0xdb13df2ea134e7df2208d74b96db063837db5b5c, Notional: 1672451.8576176807
-		{chain: 23, addr: "000000000000000000000000de903e2712288a1da82942dddf2c20529565ac30", symbol: "SWPR", coinGeckoId: "swapr", decimals: 18, price: 0.00931953},                                          // Addr: 0xde903e2712288a1da82942dddf2c20529565ac30, Notional: 0.30754449
-		{chain: 23, addr: "000000000000000000000000dfb8be6f8c87f74295a87de951974362cedcfa30", symbol: "EMC", coinGeckoId: "edge-matrix-computing", decimals: 18, price: 0.00791489},                           // Addr: 0xdfb8be6f8c87f74295a87de951974362cedcfa30, Notional: 0.022953181000000003
-		{chain: 23, addr: "000000000000000000000000e6045890b20945d00e6f3c01878265c03c5435d3", symbol: "IDIA", coinGeckoId: "idia", decimals: 18, price: 0.02829531},                                           // Addr: 0xe6045890b20945d00e6f3c01878265c03c5435d3, Notional: 24005.211037750672
-		{chain: 23, addr: "000000000000000000000000f8388c2b6edf00e2e27eef5200b1befb24ce141d", symbol: "NOLA", coinGeckoId: "nola", decimals: 18, price: 0.00004972},                                           // Addr: 0xf8388c2b6edf00e2e27eef5200b1befb24ce141d, Notional: 6.722967588100465
-		{chain: 23, addr: "000000000000000000000000f97f4df75117a78c1a5a0dbb814af92458539fb4", symbol: "LINK", coinGeckoId: "chainlink", decimals: 18, price: 14.06},                                           // Addr: 0xf97f4df75117a78c1a5a0dbb814af92458539fb4, Notional: 200.5600075946
-		{chain: 23, addr: "000000000000000000000000fa5ed56a203466cbbc2430a43c66b9d8723528e7", symbol: "EURA", coinGeckoId: "ageur", decimals: 18, price: 1.14},                                                // Addr: 0xfa5ed56a203466cbbc2430a43c66b9d8723528e7, Notional: 50.532453903
-		{chain: 23, addr: "000000000000000000000000fa7f8980b0f1e64a2062791cc3b0871572f1f7f0", symbol: "UNI", coinGeckoId: "uniswap", decimals: 18, price: 6.64},                                               // Addr: 0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0, Notional: 5.2678143855999995
-		{chain: 23, addr: "000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                   // Addr: 0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9, Notional: 51181.676096
-		{chain: 23, addr: "000000000000000000000000fea7a6a0b346362bf88a9e4a88416b77a57d6c2a", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                 // Addr: 0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a, Notional: 0.00100098999
-		{chain: 23, addr: "000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc8", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0xff970a61a04b1ca14834a43f5de4533ebddb5cc8, Notional: 803659.9592728686
-		{chain: 24, addr: "0000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0x0b2c639c533813f4aa9d7837caf62653d097ff85, Notional: 422403.09649005864
-		{chain: 24, addr: "000000000000000000000000135c78d7f52aab6e9f17bcf4a9e8627aa233d050", symbol: "BOO", coinGeckoId: "boo-2", decimals: 18, price: 0.00002857},                                           // Addr: 0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050, Notional: 3.573765346680663
-		{chain: 24, addr: "00000000000000000000000014778860e937f509e651192a90589de711fb88a9", symbol: "CYBER", coinGeckoId: "cyberconnect", decimals: 18, price: 1.16},                                        // Addr: 0x14778860e937f509e651192a90589de711fb88a9, Notional: 6.633920241599999
-		{chain: 24, addr: "0000000000000000000000001f32b1c2345538c0c6f582fcb022739c4a194ebb", symbol: "wstETH", coinGeckoId: "wrapped-steth", decimals: 18, price: 3114.69},                                   // Addr: 0x1f32b1c2345538c0c6f582fcb022739c4a194ebb, Notional: 10396.427756254201
-		{chain: 24, addr: "000000000000000000000000296f55f8fb28e498b858d0bcda06d955b2cb3f97", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                  // Addr: 0x296f55f8fb28e498b858d0bcda06d955b2cb3f97, Notional: 62.37074917755405
-		{chain: 24, addr: "0000000000000000000000002dad3a13ef0c6366220f989157009e501e7938f8", symbol: "EXTRA", coinGeckoId: "extra-finance", decimals: 18, price: 0.02473336},                                 // Addr: 0x2dad3a13ef0c6366220f989157009e501e7938f8, Notional: 0.0108275249858688
-		{chain: 24, addr: "0000000000000000000000002e3d870790dc77a83dd1d18184acc7439a53f475", symbol: "FRAX", coinGeckoId: "frax", decimals: 18, price: 0.999384},                                             // Addr: 0x2e3d870790dc77a83dd1d18184acc7439a53f475, Notional: 0.00031780411199999997
-		{chain: 24, addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", symbol: "USDV", coinGeckoId: "verified-usd-foundation-usdv", decimals: 6, price: 0.131685},                      // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 29.476760846024998
-		{chain: 24, addr: "000000000000000000000000375488f097176507e39b9653b88fdc52cde736bf", symbol: "TAROT", coinGeckoId: "tarot", decimals: 18, price: 0.01156111},                                         // Addr: 0x375488f097176507e39b9653b88fdc52cde736bf, Notional: 0.09052541472187069
-		{chain: 24, addr: "0000000000000000000000003ed9acaac7bd974eb83a8ea6432a239e3c829d5d", symbol: "2192", coinGeckoId: "lernitas", decimals: 18, price: 0.00000963},                                       // Addr: 0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d, Notional: 449.1340693156168
-		{chain: 24, addr: "0000000000000000000000004200000000000000000000000000000000000006", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                              // Addr: 0x4200000000000000000000000000000000000006, Notional: 28021.7509079885
-		{chain: 24, addr: "0000000000000000000000004200000000000000000000000000000000000042", symbol: "OP", coinGeckoId: "optimism", decimals: 18, price: 0.629793},                                           // Addr: 0x4200000000000000000000000000000000000042, Notional: 12422.784524628321
-		{chain: 24, addr: "00000000000000000000000042069d11a2cc72388a2e06210921e839cfbd3280", symbol: "GNOME", coinGeckoId: "gnomeland", decimals: 18, price: 0.00016284},                                     // Addr: 0x42069d11a2cc72388a2e06210921e839cfbd3280, Notional: 0.32568
-		{chain: 24, addr: "00000000000000000000000048a9f8b4b65a55cc46ea557a610acf227454ab09", symbol: "OPC", coinGeckoId: "op-chads", decimals: 18, price: 0.00002114},                                        // Addr: 0x48a9f8b4b65a55cc46ea557a610acf227454ab09, Notional: 6.754991033741716
-		{chain: 24, addr: "00000000000000000000000050bce64397c75488465253c0a034b8097fea6578", symbol: "HAN", coinGeckoId: "hanchain", decimals: 18, price: 0.00181155},                                        // Addr: 0x50bce64397c75488465253c0a034b8097fea6578, Notional: 18.11731155
-		{chain: 24, addr: "000000000000000000000000528cdc92eab044e1e39fe43b9514bfdab4412b98", symbol: "GIV", coinGeckoId: "giveth", decimals: 18, price: 0.00225785},                                          // Addr: 0x528cdc92eab044e1e39fe43b9514bfdab4412b98, Notional: 11334.973543076216
-		{chain: 24, addr: "000000000000000000000000625e7708f30ca75bfd92586e17077590c60eb4cd", symbol: "aOptUSDC", coinGeckoId: "aave-usdc", decimals: 6, price: 1.002},                                        // Addr: 0x625e7708f30ca75bfd92586e17077590c60eb4cd, Notional: 6.620390352
-		{chain: 24, addr: "00000000000000000000000068f180fcce6836688e9084f035309e29bf0a2095", symbol: "WBTC", coinGeckoId: "wrapped-bitcoin", decimals: 8, price: 108818},                                     // Addr: 0x68f180fcce6836688e9084f035309e29bf0a2095, Notional: 16820.9014494
-		{chain: 24, addr: "0000000000000000000000006d80113e533a2c0fe82eabd35f1875dcea89ea97", symbol: "aOptSUSD", coinGeckoId: "aave-susd", decimals: 18, price: 0.976296},                                    // Addr: 0x6d80113e533a2c0fe82eabd35f1875dcea89ea97, Notional: 16.30363436428776
-		{chain: 24, addr: "0000000000000000000000006f620ec89b8479e97a6985792d0c64f237566746", symbol: "WPC", coinGeckoId: "wepiggy-coin", decimals: 18, price: 0.00003592},                                    // Addr: 0x6f620ec89b8479e97a6985792d0c64f237566746, Notional: 0.00560352
-		{chain: 24, addr: "000000000000000000000000747e42eb0591547a0ab429b3627816208c734ea7", symbol: "T", coinGeckoId: "threshold-network-token", decimals: 18, price: 0.01477466},                           // Addr: 0x747e42eb0591547a0ab429b3627816208c734ea7, Notional: 1.1452637344302419
-		{chain: 24, addr: "00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e0979", symbol: "fBOMB", coinGeckoId: "fbomb", decimals: 18, price: 0.02816576},                                         // Addr: 0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979, Notional: 1.39420512
-		{chain: 24, addr: "0000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0x7f5c764cbc14f9669b88837ca1490cca17c31607, Notional: 450435.4396315974
-		{chain: 24, addr: "00000000000000000000000081ab7e0d570b01411fcc4afd3d50ec8c241cb74b", symbol: "EQZ", coinGeckoId: "equalizer", decimals: 18, price: 0.00090513},                                       // Addr: 0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b, Notional: 0.090513
-		{chain: 24, addr: "0000000000000000000000008b21e9b7daf2c4325bf3d18c1beb79a347fe902a", symbol: "COLLAB", coinGeckoId: "collab-land", decimals: 18, price: 0.00029025},                                  // Addr: 0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a, Notional: 0.045357602718599996
-		{chain: 24, addr: "0000000000000000000000008c6f28f2f1a3c87f0f938b96d27520d9751ec8d9", symbol: "sUSD", coinGeckoId: "nusd", decimals: 18, price: 0.966581},                                             // Addr: 0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9, Notional: 1.88807458236551
-		{chain: 24, addr: "00000000000000000000000094b008aa00579c1307b0ef2c499ad98a8ce58e58", symbol: "USDT", coinGeckoId: "tether", decimals: 6, price: 1},                                                   // Addr: 0x94b008aa00579c1307b0ef2c499ad98a8ce58e58, Notional: 142153.742498
-		{chain: 24, addr: "0000000000000000000000009e1028f5f1d5ede59748ffcee5532509976840e0", symbol: "PERP", coinGeckoId: "perpetual-protocol", decimals: 18, price: 0.250492},                               // Addr: 0x9e1028f5f1d5ede59748ffcee5532509976840e0, Notional: 0.059951319960839994
-		{chain: 24, addr: "000000000000000000000000c26921b5b9ee80773774d36c84328ccb22c3a819", symbol: "wOptiDoge", coinGeckoId: "wrapped-optidoge", decimals: 18, price: 2.69009e-7},                          // Addr: 0xc26921b5b9ee80773774d36c84328ccb22c3a819, Notional: 3.336805928612
-		{chain: 24, addr: "000000000000000000000000c40f949f8a4e094d1b49a23ea9241d289b7b2819", symbol: "LUSD", coinGeckoId: "liquity-usd", decimals: 18, price: 1.001},                                         // Addr: 0xc40f949f8a4e094d1b49a23ea9241d289b7b2819, Notional: 1.1011e-7
-		{chain: 24, addr: "000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc", symbol: "HOP", coinGeckoId: "hop-protocol", decimals: 18, price: 0.00965908},                                    // Addr: 0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc, Notional: 0.40935388130675204
-		{chain: 24, addr: "000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                               // Addr: 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, Notional: 165.0672195572871
-		{chain: 24, addr: "000000000000000000000000dfa46478f9e5ea86d57387849598dbfb2e964b02", symbol: "MAI", coinGeckoId: "mimatic", decimals: 18, price: 0.995702},                                           // Addr: 0xdfa46478f9e5ea86d57387849598dbfb2e964b02, Notional: 4.97851
-		{chain: 24, addr: "000000000000000000000000e453d6649643f1f460c371dc3d1da98f7922fe51", symbol: "FUSE", coinGeckoId: "fuse-network-token", decimals: 18, price: 0.01041974},                             // Addr: 0xe453d6649643f1f460c371dc3d1da98f7922fe51, Notional: 0.0102113452
-		{chain: 24, addr: "000000000000000000000000e50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", symbol: "aOptWETH", coinGeckoId: "aave-weth", decimals: 18, price: 2588.46},                                     // Addr: 0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8, Notional: 0.0000776538
-		{chain: 24, addr: "000000000000000000000000fd389dc9533717239856190f42475d3f263a270d", symbol: "GRAIN", coinGeckoId: "granary", decimals: 18, price: 0.00063293},                                       // Addr: 0xfd389dc9533717239856190f42475d3f263a270d, Notional: 0.018354969999999998
-		{chain: 24, addr: "000000000000000000000000fdb794692724153d1488ccdbe0c56c252596735f", symbol: "LDO", coinGeckoId: "lido-dao", decimals: 18, price: 0.838962},                                          // Addr: 0xfdb794692724153d1488ccdbe0c56c252596735f, Notional: 1.34427389670972
-		{chain: 28, addr: "017ce8aec5af3bb3ac0158d49771d4c8feba2e54a614fa2a1c0c95e9c4c37185", symbol: "XPLA", coinGeckoId: "xpla", decimals: 18, price: 0.056906},                                             // Addr: axpla, Notional: 0.3616948347565
-		{chain: 30, addr: "0000000000000000000000000a1d576f3efef75b330424287a95a366e8281d54", symbol: "aBasUSDbC", coinGeckoId: "aave-v3-usdbc", decimals: 6, price: 0.99979},                                 // Addr: 0x0a1d576f3efef75b330424287a95a366e8281d54, Notional: 1.24926459933
-		{chain: 30, addr: "00000000000000000000000019b50c63d3d7f7a22308cb0fc8d41b66ff9c318a", symbol: "GPX", coinGeckoId: "grabpenny", decimals: 18, price: 0.0020874},                                        // Addr: 0x19b50c63d3d7f7a22308cb0fc8d41b66ff9c318a, Notional: 10437
-		{chain: 30, addr: "00000000000000000000000022a2488fe295047ba13bd8cccdbc8361dbd8cf7c", symbol: "SONNE", coinGeckoId: "sonne-finance", decimals: 18, price: 0.00075376},                                 // Addr: 0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c, Notional: 0.01055264
-		{chain: 30, addr: "000000000000000000000000236aa50979d5f3de3bd1eeb40e81137f22ab794b", symbol: "tBTC", coinGeckoId: "tbtc", decimals: 18, price: 108503},                                               // Addr: 0x236aa50979d5f3de3bd1eeb40e81137f22ab794b, Notional: 246.09782436000003
-		{chain: 30, addr: "000000000000000000000000255f1b39172f65dc6406b8bee8b08155c45fe1b6", symbol: "HARAMBE", coinGeckoId: "harambecoin", decimals: 18, price: 1.9964e-7},                                  // Addr: 0x255f1b39172f65dc6406b8bee8b08155c45fe1b6, Notional: 3.743946854909056
-		{chain: 30, addr: "00000000000000000000000026f3901ac8a79c50fb0d8289c74f0d09adc42e29", symbol: "T", coinGeckoId: "threshold-network-token", decimals: 18, price: 0.01477466},                           // Addr: 0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29, Notional: 0.117939545659829
-		{chain: 30, addr: "0000000000000000000000002ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", symbol: "cbETH", coinGeckoId: "coinbase-wrapped-staked-eth", decimals: 18, price: 2852.69},                      // Addr: 0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22, Notional: 857.1270537706
-		{chain: 30, addr: "000000000000000000000000302ab9ae394d675676ddb41e294169224824fc9a", symbol: "CHZ", coinGeckoId: "cheezburger", decimals: 18, price: 1.77908e-7},                                     // Addr: 0x302ab9ae394d675676ddb41e294169224824fc9a, Notional: 15.098662663460349
-		{chain: 30, addr: "0000000000000000000000003055913c90fcc1a6ce9a358911721eeb942013a1", symbol: "Cake", coinGeckoId: "pancakeswap-token", decimals: 18, price: 2.41},                                    // Addr: 0x3055913c90fcc1a6ce9a358911721eeb942013a1, Notional: 11.028049838900001
-		{chain: 30, addr: "0000000000000000000000004200000000000000000000000000000000000006", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2586.35},                                              // Addr: 0x4200000000000000000000000000000000000006, Notional: 155733.953250226
-		{chain: 30, addr: "0000000000000000000000004a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 1.001},                                 // Addr: 0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d, Notional: 25.255175675729998
-		{chain: 30, addr: "0000000000000000000000004ed4e862860bed51a9570b96d89af5e1b0efefed", symbol: "DEGEN", coinGeckoId: "degen-base", decimals: 18, price: 0.00443055},                                    // Addr: 0x4ed4e862860bed51a9570b96d89af5e1b0efefed, Notional: 27.96330431055004
-		{chain: 30, addr: "00000000000000000000000050c5725949a6f0c72e6c4a641f24049a917db0cb", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 0.999593},                                               // Addr: 0x50c5725949a6f0c72e6c4a641f24049a917db0cb, Notional: 687.660673559178
-		{chain: 30, addr: "000000000000000000000000532f27101965dd16442e59d40670faf5ebb142e4", symbol: "BRETT", coinGeckoId: "based-brett", decimals: 18, price: 0.052614},                                     // Addr: 0x532f27101965dd16442e59d40670faf5ebb142e4, Notional: 41.17650561
-		{chain: 30, addr: "00000000000000000000000054a65b16d18527160fafc6fcfebaed47c2976dfa", symbol: "RFKJ", coinGeckoId: "independence-token", decimals: 18, price: 0.00000185},                             // Addr: 0x54a65b16d18527160fafc6fcfebaed47c2976dfa, Notional: 0.00185
-		{chain: 30, addr: "00000000000000000000000060cbb875d3c6314280dd90a4fe6cafc1d7ce5dfd", symbol: "EBASE", coinGeckoId: "ebase", decimals: 9, price: 0.00000782},                                          // Addr: 0x60cbb875d3c6314280dd90a4fe6cafc1d7ce5dfd, Notional: 0.008542689225092598
-		{chain: 30, addr: "00000000000000000000000064b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7", symbol: "MAV", coinGeckoId: "maverick-protocol", decimals: 18, price: 0.054174},                                 // Addr: 0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7, Notional: 5.56719831460026
-		{chain: 30, addr: "0000000000000000000000006653dd4b92a0e5bf8ae570a98906d9d6fd2eec09", symbol: "RCKT", coinGeckoId: "rocketswap", decimals: 18, price: 0.04581254},                                     // Addr: 0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09, Notional: 0.04581254
-		{chain: 30, addr: "000000000000000000000000717d31a60a9e811469673429c9f8ea24358990f1", symbol: "EVERY", coinGeckoId: "everyworld", decimals: 18, price: 0.00029745},                                    // Addr: 0x717d31a60a9e811469673429c9f8ea24358990f1, Notional: 396.8749012009273
-		{chain: 30, addr: "00000000000000000000000073e58c6f5e7b9def4bdda8f02f59f9ef2a342cca", symbol: "GP", coinGeckoId: "grabpenny", decimals: 18, price: 0.0020874},                                         // Addr: 0x73e58c6f5e7b9def4bdda8f02f59f9ef2a342cca, Notional: 4.1748
-		{chain: 30, addr: "00000000000000000000000076734b57dfe834f102fb61e1ebf844adf8dd931e", symbol: "weirdo", coinGeckoId: "weirdo-2", decimals: 8, price: 0.00001074},                                      // Addr: 0x76734b57dfe834f102fb61e1ebf844adf8dd931e, Notional: 9307.14355165199
-		{chain: 30, addr: "00000000000000000000000078a087d713be963bf307b18f2ff8122ef9a63ae9", symbol: "BSWAP", coinGeckoId: "baseswap", decimals: 18, price: 0.099266},                                        // Addr: 0x78a087d713be963bf307b18f2ff8122ef9a63ae9, Notional: 0.74468392900716
-		{chain: 30, addr: "0000000000000000000000007d49a065d17d6d4a55dc13649901fdbb98b2afba", symbol: "SUSHI", coinGeckoId: "sushi", decimals: 18, price: 0.671409},                                           // Addr: 0x7d49a065d17d6d4a55dc13649901fdbb98b2afba, Notional: 3.9263029543953905
-		{chain: 30, addr: "0000000000000000000000007f12d13b34f5f4f0a9449c16bcd42f0da47af200", symbol: "NORMIE", coinGeckoId: "normie-2", decimals: 9, price: 0.00201293},                                      // Addr: 0x7f12d13b34f5f4f0a9449c16bcd42f0da47af200, Notional: 1164.0748383590042
-		{chain: 30, addr: "000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 0.999705},                                          // Addr: 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913, Notional: 69947.2746440222
-		{chain: 30, addr: "000000000000000000000000858c50c3af1913b0e849afdb74617388a1a5340d", symbol: "SQT", coinGeckoId: "subquery-network", decimals: 18, price: 0.00136249},                                // Addr: 0x858c50c3af1913b0e849afdb74617388a1a5340d, Notional: 3.0060012192578034
-		{chain: 30, addr: "0000000000000000000000008e16d46cb2da01cdd49601ec73d7b0344969ae33", symbol: "coin", coinGeckoId: "coin-on-base", decimals: 18, price: 0.00000273},                                   // Addr: 0x8e16d46cb2da01cdd49601ec73d7b0344969ae33, Notional: 6.521126201159306
-		{chain: 30, addr: "0000000000000000000000008fbd0648971d56f1f2c35fa075ff5bc75fb0e39d", symbol: "MBS", coinGeckoId: "monkeyball", decimals: 18, price: 0.00252492},                                      // Addr: 0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d, Notional: 8.447208936854674
-		{chain: 30, addr: "000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd98631", symbol: "AERO", coinGeckoId: "aerodrome-finance", decimals: 18, price: 0.535287},                                // Addr: 0x940181a94a35a4569e4529a3cdfb74e38fd98631, Notional: 0.016077848214779998
-		{chain: 30, addr: "00000000000000000000000096e890c6b2501a69cad5dba402bfb871a2a2874c", symbol: "AAG", coinGeckoId: "aag-ventures", decimals: 18, price: 0.00256966},                                    // Addr: 0x96e890c6b2501a69cad5dba402bfb871a2a2874c, Notional: 0.00256966
-		{chain: 30, addr: "0000000000000000000000009a3b7959e998bf2b50ef1969067d623877050d92", symbol: "PBB", coinGeckoId: "pepe-but-blue", decimals: 18, price: 0.00001879},                                   // Addr: 0x9a3b7959e998bf2b50ef1969067d623877050d92, Notional: 0.1749140542475433
-		{chain: 30, addr: "0000000000000000000000009e1028f5f1d5ede59748ffcee5532509976840e0", symbol: "COMP", coinGeckoId: "compound-governance-token", decimals: 18, price: 47.25},                           // Addr: 0x9e1028f5f1d5ede59748ffcee5532509976840e0, Notional: 0.03591567
-		{chain: 30, addr: "000000000000000000000000a61beb4a3d02decb01039e378237032b351125b4", symbol: "agEUR", coinGeckoId: "ageur", decimals: 18, price: 1.14},                                               // Addr: 0xa61beb4a3d02decb01039e378237032b351125b4, Notional: 1.5517251816
-		{chain: 30, addr: "000000000000000000000000a88594d404727625a9437c3f886c7643872296ae", symbol: "WELL", coinGeckoId: "moonwell-artemis", decimals: 18, price: 0.0325245},                                // Addr: 0xa88594d404727625a9437c3f886c7643872296ae, Notional: 3.5203385064231445
-		{chain: 30, addr: "000000000000000000000000ac1bd2486aaf3b5c0fc3fd868558b082a531b2b4", symbol: "TOSHI", coinGeckoId: "toshi", decimals: 18, price: 0.00056249},                                         // Addr: 0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4, Notional: 0.4668667
-		{chain: 30, addr: "000000000000000000000000afb89a09d82fbde58f18ac6437b3fc81724e4df6", symbol: "DOG", coinGeckoId: "the-doge-nft", decimals: 18, price: 0.00109697},                                    // Addr: 0xafb89a09d82fbde58f18ac6437b3fc81724e4df6, Notional: 4786.807159793361
-		{chain: 30, addr: "000000000000000000000000b0ffa8000886e57f86dd5264b9582b2ad87b2b91", symbol: "W", coinGeckoId: "wormhole", decimals: 18, price: 0.074222},                                            // Addr: 0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91, Notional: 78.04165048550425
-		{chain: 30, addr: "000000000000000000000000b5c457ddb4ce3312a6c5a2b056a1652bd542a208", symbol: "O404", coinGeckoId: "omni404", decimals: 18, price: 438.1},                                             // Addr: 0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208, Notional: 2.904603
-		{chain: 30, addr: "000000000000000000000000c1cba3fcea344f92d9239c08c0568f6f2f0ee452", symbol: "wstETH", coinGeckoId: "wrapped-steth", decimals: 18, price: 3114.69},                                   // Addr: 0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452, Notional: 6.22938
-		{chain: 30, addr: "000000000000000000000000c48e605c7b722a57277e087a6170b9e227e5ac0a", symbol: "OMNI", coinGeckoId: "omnicat", decimals: 18, price: 0.00001466},                                        // Addr: 0xc48e605c7b722a57277e087a6170b9e227e5ac0a, Notional: 33.44748281487881
-		{chain: 30, addr: "000000000000000000000000c5bebd5a6ae6be4fcf383eea014fb1dbd43789ca", symbol: "BNS", coinGeckoId: "base-name-service", decimals: 18, price: 0.0000194},                                // Addr: 0xc5bebd5a6ae6be4fcf383eea014fb1dbd43789ca, Notional: 0.0388
-		{chain: 30, addr: "000000000000000000000000d07379a755a8f11b57610154861d694b2a0f615a", symbol: "BASE", coinGeckoId: "base", decimals: 18, price: 0.00000281},                                           // Addr: 0xd07379a755a8f11b57610154861d694b2a0f615a, Notional: 0.7025098617259663
-		{chain: 30, addr: "000000000000000000000000d9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", symbol: "USDbC", coinGeckoId: "bridged-usd-coin-base", decimals: 6, price: 0.999398},                            // Addr: 0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca, Notional: 14728.859164770041
-		{chain: 30, addr: "000000000000000000000000dfbea88c4842d30c26669602888d746d30f9d60d", symbol: "CAW", coinGeckoId: "crow-with-knife", decimals: 18, price: 2.0024e-8},                                  // Addr: 0xdfbea88c4842d30c26669602888d746d30f9d60d, Notional: 195.62339528072826
-		{chain: 30, addr: "000000000000000000000000e3086852a4b125803c815a158249ae468a3254ca", symbol: "$mfer", coinGeckoId: "mfercoin", decimals: 18, price: 0.00789659},                                      // Addr: 0xe3086852a4b125803c815a158249ae468a3254ca, Notional: 20646.150794390338
-		{chain: 30, addr: "000000000000000000000000e3b53af74a4bf62ae5511055290838050bf764df", symbol: "STG", coinGeckoId: "stargate-finance", decimals: 18, price: 0.181347},                                  // Addr: 0xe3b53af74a4bf62ae5511055290838050bf764df, Notional: 2.02917873474126
-		{chain: 30, addr: "000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215", symbol: "axlUSDC", coinGeckoId: "axlusdc", decimals: 6, price: 0.999643},                                        // Addr: 0xeb466342c4d449bc9f53a865d5cb90586f405215, Notional: 131.70016824888597
-		{chain: 30, addr: "000000000000000000000000ec1df7edfcdc2e2042c63252c1cef480f64f9189", symbol: "BOO", coinGeckoId: "boo-2", decimals: 18, price: 0.00002857},                                           // Addr: 0xec1df7edfcdc2e2042c63252c1cef480f64f9189, Notional: 3.0285946661174004
-		{chain: 30, addr: "000000000000000000000000f7c1cefcf7e1dd8161e00099facd3e1db9e528ee", symbol: "TOWER", coinGeckoId: "tower", decimals: 18, price: 0.00040559},                                         // Addr: 0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee, Notional: 0.20036146
+func generatedMainnetTokenList() []TokenConfigEntry {
+	return []TokenConfigEntry{
+		{Chain: 1, Addr: "00587a642600d6f2bd3bbfdf116dbd613c45cfa659b55a1fbc7cbc28e6092699", Symbol: "Skibidi", CoinGeckoId: "skibidi-dop-dop", Decimals: 6, Price: 0.00001431},                               // Addr: 12MFXb5CGJ65S3mP3s4eMLaosGp6xGnQe3PxQD38nfJp, Notional: 245.69164256918364
+		{Chain: 1, Addr: "017009a9390d6d6e7777a27675f05e1692fe09561cf25879203a0d282f8b3408", Symbol: "SHILL", CoinGeckoId: "shill-token", Decimals: 6, Price: 0.00033394},                                     // Addr: 6cVgJUqo4nmvQpbgrDZwyfd6RwWw5bfnCamS3M9N1fd, Notional: 1.135860811086
+		{Chain: 1, Addr: "0266eb1428607b1c110941decd0ebe34eab6586ffba3e15820aa9c63b4110b10", Symbol: "", CoinGeckoId: "zignaly", Decimals: 9, Price: 0.095405},                                                // Addr: ANqY8h3sRSwkC29FvGJenAh7VGRABVVx7Ls6Mq4BuGT, Notional: 286.2150025253704
+		{Chain: 1, Addr: "02a88b06fab40a8cd293f0c527587e62d2ffab766fca08b7f6f3c919ee731b12", Symbol: "BNSOL", CoinGeckoId: "binance-staked-sol", Decimals: 9, Price: 165.36},                                  // Addr: BNso1VUJnh4zcfpZa6986Ea66P6TCp59hvtNJ8b1X85, Notional: 20.82940704
+		{Chain: 1, Addr: "03481237c86b4ff57b5c845a97ecee44f3b4c459954b607a232869cfb2bfb345", Symbol: "BONKFA", CoinGeckoId: "bonk-of-america", Decimals: 6, Price: 0.00003059},                                // Addr: DoxsC4PpVHiUxCKYeKSkPXVVVSJYzidZZJxW4XCFF2t, Notional: 0.61391071
+		{Chain: 1, Addr: "0479d9c7cc1035de7211f99eb48c09d70b2bdf5bdf9e2e56b8a1fbb5a2ea3327", Symbol: "JUP", CoinGeckoId: "jupiter-exchange-solana", Decimals: 6, Price: 0.468132},                             // Addr: JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN, Notional: 86.388545141388
+		{Chain: 1, Addr: "049a250bfacf558c6b6407a8d3716ff17c8c062a29b26a868e7ba5e7422ffd15", Symbol: "mockJUP", CoinGeckoId: "mockjup", Decimals: 9, Price: 0.00019905},                                       // Addr: JxxWsvm9jHt4ah7DT9NuLyVLYZcZLUdPD93PcPQ71Ka, Notional: 0.021903315783841498
+		{Chain: 1, Addr: "049c63b95b6f586200bc5571c3deee5f0d404434c2bb1418f473c661893771cd", Symbol: "clSUI", CoinGeckoId: "cloned-sui", Decimals: 8, Price: 0.792309},                                        // Addr: JzwfZvJGdsqbrKZQUvzJpWhbHcZUix7CYcCaoiNpjxg, Notional: 0.792309
+		{Chain: 1, Addr: "051687499457f76f90ed11ff8133233eee9f139718c36a85dff99950b7adabf1", Symbol: "LARIX", CoinGeckoId: "larix", Decimals: 6, Price: 0.00002526},                                           // Addr: Lrxqnh6ZHKbGy3dcrCED43nsoLkM1LTzU2jRfWe8qUC, Notional: 0.0017682
+		{Chain: 1, Addr: "052e7f80a14a1e7a5254e9a1c27f7fc48563bfc35f0be177a8d556ae8ba1add6", Symbol: "MEAN", CoinGeckoId: "meanfi", Decimals: 6, Price: 0.00016119},                                           // Addr: MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD, Notional: 0.0007930547999999999
+		{Chain: 1, Addr: "052ed35010b819ff4914f47a3118c42c98bf210fd7e47d722307b5c24901a7ba", Symbol: "MPLX", CoinGeckoId: "metaplex", Decimals: 6, Price: 0.138063},                                           // Addr: METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m, Notional: 27.612599999999997
+		{Chain: 1, Addr: "0537996f2699674fb7086e468fb33b4fde1449f47a8befd8b342bf6b33cff372", Symbol: "MNDE", CoinGeckoId: "marinade", Decimals: 9, Price: 0.116511},                                           // Addr: MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey, Notional: 5.88473411247687
+		{Chain: 1, Addr: "0545d1ee9805764e58b3ef5bcb54177517dfe7980e6e44e67a628bdb9d2a7bd1", Symbol: "MNGO", CoinGeckoId: "mango-markets", Decimals: 6, Price: 0.01867651},                                    // Addr: MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac, Notional: 0.009338255
+		{Chain: 1, Addr: "05718b04572312d73aa71deaec43c89d77844b0b7ff9e3e72da8510182627455", Symbol: "BLOCK", CoinGeckoId: "blockasset", Decimals: 6, Price: 0.074459},                                        // Addr: NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk, Notional: 1957195.9863830635
+		{Chain: 1, Addr: "058bf1f00d167d3df31491dae204d6006b9d596870eecf5d305035df8a3f96dd", Symbol: "NEON", CoinGeckoId: "neon", Decimals: 9, Price: 0.112421},                                               // Addr: NeonTjSjsuo3rexg9o6vHuMXw62f9V7zvmu8M8Zut44, Notional: 32.0512271
+		{Chain: 1, Addr: "05be68ae2977ce39f15086f2c761b24cf054a40b22a2a5b33ef583c50f1cfdb7", Symbol: "", CoinGeckoId: "prism", Decimals: 6, Price: 0.00034322},                                                // Addr: PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x, Notional: 1.01787566417276
+		{Chain: 1, Addr: "05be6c87eec2d40a2e26e1fc0a8423a379820ca454982348adfc9563b5157725", Symbol: "PRT", CoinGeckoId: "parrot-protocol", Decimals: 6, Price: 0.00013656},                                   // Addr: PRT88RkA4Kg5z7pKnezeNH4mafTvtQdfFgpQTGRjz44, Notional: 0.03943601352072
+		{Chain: 1, Addr: "05beb884b642b260d9c2b53cb3d876b8b4de72aea0d787d779bf4266688a3935", Symbol: "", CoinGeckoId: "solanaprime", Decimals: 9, Price: 0.0020415},                                           // Addr: PRiME7gDoiG1vGr95a3CRMv9xHY7UGjd4JKvfSkmQu2, Notional: 0.21639899999999998
+		{Chain: 1, Addr: "061391c556ba0106d4b1b2ccf939d47caf9fb30639a58bf9cc315d024f1cb458", Symbol: "", CoinGeckoId: "tudabirds", Decimals: 9, Price: 0.00081844},                                            // Addr: Qikhhhg9Ta3Jg7WoDFbSYuCAE14hx9hPvdz1zVp3zUw, Notional: 0.5606314
+		{Chain: 1, Addr: "063ba2f4697205f531b6de49bb9605fd2ca6a9ddf243bed251fda6552ef0e571", Symbol: "", CoinGeckoId: "rollbit-coin", Decimals: 2, Price: 0.059749},                                           // Addr: RLBxxFkseAZ4RgJH3Sqn8jXxhmGoz9jWxDNJMh8pL7a, Notional: 982.1176151099999
+		{Chain: 1, Addr: "0679db01ce2a84f71c139e7c9942f6da3b331fdec3319d02f899eba70134737e", Symbol: "SHDW", CoinGeckoId: "genesysgo-shadow", Decimals: 9, Price: 0.100692},                                   // Addr: SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y, Notional: 20.239092
+		{Chain: 1, Addr: "067d3988ce882945c63a0717a92538addd9a37550ce5cd711f76ca74a4c89786", Symbol: "", CoinGeckoId: "solcial", Decimals: 9, Price: 0.00008045},                                              // Addr: SLCLww7nc1PD2gQPQdGayHviVVcpMthnqUz2iWKhNQV, Notional: 0.0007347013587625001
+		{Chain: 1, Addr: "067fc27abcad2df07cc40437330da4fe8851680ae2b242c2ea1d86e2cfa10064", Symbol: "SNS", CoinGeckoId: "synesis-one", Decimals: 9, Price: 0.00280277},                                       // Addr: SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd, Notional: 176.7387101988894
+		{Chain: 1, Addr: "068310861a98327d0550574d84418aa6e10c3352ddaa7fd7f58152cceeb23887", Symbol: "SRM", CoinGeckoId: "serum", Decimals: 6, Price: 0.01616937},                                             // Addr: SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt, Notional: 423.6614225009044
+		{Chain: 1, Addr: "068677427842ef204cf58abdf76271228b5a485abb6dfa465e6ed7ee8b7d5e79", Symbol: "SUNNY", CoinGeckoId: "sunny-aggregator", Decimals: 6, Price: 0.00000592},                                // Addr: SUNNYWgPQmFxe9wTZzNK7iPnJ3vYDrkgnxJRJm1s3ag, Notional: 0.0173206815064
+		{Chain: 1, Addr: "068d824d56f0eebb7566e6ee1d65a9d260ff509a4b5c69b6269ad64de3cd50bc", Symbol: "SBR", CoinGeckoId: "saber", Decimals: 6, Price: 0.0014697},                                              // Addr: Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1, Notional: 5.1993230859135
+		{Chain: 1, Addr: "069501a7f73f3b05dfff8b104d2393e9c39e1ee2fe6b329ccf9847ccfa2af594", Symbol: "SHEESH", CoinGeckoId: "sheeshin-on-solana", Decimals: 6, Price: 0.01762035},                             // Addr: ShEEsukacNfbBpULD1xtCZKjeMMzvc78xufMDuE3jvB, Notional: 5.6683994262258
+		{Chain: 1, Addr: "069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001", Symbol: "SOL", CoinGeckoId: "wrapped-solana", Decimals: 9, Price: 156.53},                                        // Addr: So11111111111111111111111111111111111111112, Notional: 93064671.3081117
+		{Chain: 1, Addr: "06a1ec5bd82ad9c032a9f7d466ba2c728b0ef36a8b773ed219d69650d3472bd6", Symbol: "", CoinGeckoId: "step-finance", Decimals: 9, Price: 0.078677},                                           // Addr: StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT, Notional: 6.89659268352683
+		{Chain: 1, Addr: "06cf442fd1ea50d2b18629079232396c075d29c1eda912d38fd75049f827e3a3", Symbol: "TAKI", CoinGeckoId: "taki", Decimals: 9, Price: 0.00028552},                                             // Addr: Taki7fi3Zicv7Du1xNAWLaf6mRK7ikdn77HeGzgwvo4, Notional: 10235.608331503212
+		{Chain: 1, Addr: "06e44836998a9e52bde7b5182fdbbdde4e2789cbffe5ab0e9762cb13651c8bda", Symbol: "TULIP", CoinGeckoId: "solfarm", Decimals: 6, Price: 0.118722},                                           // Addr: TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs, Notional: 0.00023744399999999999
+		{Chain: 1, Addr: "0704152a9efdde41a8971e72c23f18079623cad2b3a8d4330cc7ee0072aba7a1", Symbol: "UPT", CoinGeckoId: "uprock", Decimals: 9, Price: 0.00868243},                                            // Addr: UPTx1d24aBWuRgwxVnFmX4gNraj3QGFzL3QqBgxtWQG, Notional: 0.2129628173831944
+		{Chain: 1, Addr: "0707305232e6160c18b4099da5b66bd387bc6469ad2244f283f73ff2a8e40338", Symbol: "", CoinGeckoId: "usdh", Decimals: 6, Price: 0.997796},                                                   // Addr: USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX, Notional: 9.950514623223999
+		{Chain: 1, Addr: "070d0b9bee96609a69a17a10833705370fb116a06adb20d5efd866e68051c132", Symbol: "", CoinGeckoId: "uxd-protocol-token", Decimals: 9, Price: 0.01246475},                                   // Addr: UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M, Notional: 10.499335659651356
+		{Chain: 1, Addr: "072844c94ab6a7097e1134511934be65304b482d6e8850493ce05ac78755dbea", Symbol: "UWU", CoinGeckoId: "unicorn-3", Decimals: 6, Price: 0.0000602},                                          // Addr: UwU8RVXB69Y6Dcju6cN2Qef6fykkq6UUNpB15rZku6Z, Notional: 26575.024501810534
+		{Chain: 1, Addr: "0752a8bf6d64c5f78ef23e3e7e92cdc4cf80f8dc791596e099cafb776ca56e2f", Symbol: "OIIAOIIA", CoinGeckoId: "spinning-cat", Decimals: 6, Price: 0.00252949},                                 // Addr: VaxZxmFXV8tmsd72hUn22ex6GFzZ5uq9DVJ5wA5pump, Notional: 0.12647450000000002
+		{Chain: 1, Addr: "077cf63a56ff0afb124f6f68875a02adce4e320bbfcc1072e67a0a4ffa46c295", Symbol: "WEN", CoinGeckoId: "wen-4", Decimals: 5, Price: 0.00004109},                                             // Addr: WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk, Notional: 58.8506442758696
+		{Chain: 1, Addr: "07bb093e9f7decab41a717b15946f6db587868a6721c0a6e3c4281ed3fef0e09", Symbol: "XBG", CoinGeckoId: "xborg", Decimals: 9, Price: 0.073721},                                               // Addr: XBGdqJ9P175hCC1LangCEyXWNeCPHaKWA17tymz2PrY, Notional: 733.3085306185914
+		{Chain: 1, Addr: "08742da77f532cb2337402e2ab66187b63a2907c9a62107dab7013a28deb4657", Symbol: "ABR", CoinGeckoId: "allbridge", Decimals: 9, Price: 0.081603},                                           // Addr: a11bdAAuV8iB2fu7X6AxAvDTo1QZ8FXB3kk5eecdasp, Notional: 0.5379087997477799
+		{Chain: 1, Addr: "08808616ce71e6e2e483262f0dc1cf87122c2001543cbfc95fd75fab46ac2893", Symbol: "HAPPI", CoinGeckoId: "happi-cat", Decimals: 6, Price: 0.00003157},                                       // Addr: aBvs3Zv9JYmvUCKqRJvGctDQSCt6R7NAMELid3FeqsQ, Notional: 52.221778169471676
+		{Chain: 1, Addr: "08d2e970f93c7b3d50191e611acd93aa80a546b45ec965e18b0587155699c8ac", Symbol: "", CoinGeckoId: "blazestake-staked-sol", Decimals: 9, Price: 191.42},                                    // Addr: bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1, Notional: 19.929664586999998
+		{Chain: 1, Addr: "08ea6f14a48ad8d63068ce1114a7f5148c0dc909a8564c958e57e4ddea0e6cbf", Symbol: "BOBAOPPA", CoinGeckoId: "boba-oppa", Decimals: 6, Price: 0.00056245},                                    // Addr: bobaM3u8QmqZhY1HwAtnvze9DLXvkgKYk3td3t8MLva, Notional: 0.04209139739735
+		{Chain: 1, Addr: "08eaab49809a0d284791dcf38d96b4dde48d41807f3a795dcfaf325205943057", Symbol: "Boo", CoinGeckoId: "boo-2", Decimals: 9, Price: 0.00002857},                                             // Addr: booe3XGMztBMB9RhCgNodhJQeaaMmhdGehMCVPMGza2, Notional: 0.7261752896122762
+		{Chain: 1, Addr: "0936990e30118f3e824ab4ad611dbacae303117a46ab833c9c911acb736a7ecf", Symbol: "", CoinGeckoId: "solchicks-token", Decimals: 9, Price: 0.00004814},                                      // Addr: cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2, Notional: 0.00539168
+		{Chain: 1, Addr: "0a732093918561f7dd7fcbec4abd8513deca1a967f7ad7a39d63b41ed893808b", Symbol: "HNT", CoinGeckoId: "helium", Decimals: 8, Price: 2.95},                                                  // Addr: hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux, Notional: 0.033437837000000005
+		{Chain: 1, Addr: "0afcf8968b8dab88481e2d2ae689c952c757aeba643e3919e89f2e55795c76c1", Symbol: "JTO", CoinGeckoId: "jito-governance-token", Decimals: 9, Price: 1.89},                                   // Addr: jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL, Notional: 77.54342298569999
+		{Chain: 1, Addr: "0b32c16d6e18acb932405c63adbf490ed2e214adf8860590fafcc3c869556b26", Symbol: "", CoinGeckoId: "kineko", Decimals: 9, Price: 0.0001405},                                                // Addr: kiNeKo77w1WBEzFFCXrTDRWGRWGP8yHvKC9rX6dqjQh, Notional: 0.015461551780545
+		{Chain: 1, Addr: "0b3338a0ab2cc841d5b014bc6a3cf756291874b319c9517d9bbfa9e4e9661ef9", Symbol: "KIN", CoinGeckoId: "kin", Decimals: 5, Price: 0.00000138},                                               // Addr: kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6, Notional: 0.1747422106968
+		{Chain: 1, Addr: "0b62ba074f722c9d4114f2d8f70a00c66002337b9bf90c873657a6d201db4c80", Symbol: "mSOL", CoinGeckoId: "msol", Decimals: 9, Price: 203.28},                                                 // Addr: mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So, Notional: 99.0700386984
+		{Chain: 1, Addr: "0b8bba91467afe97500d18b35605e1c5842b2310a97ebfb863d17f32f1943fb1", Symbol: "PEEP", CoinGeckoId: "peepo-sol", Decimals: 6, Price: 0.00000418},                                        // Addr: n54ZwXEcLnc3o7zK48nhrLV4KTU5wWD4iq7Gvdt5tik, Notional: 0.00000418
+		{Chain: 1, Addr: "0c00d0afeb8614da7f19aba02d40f18c692585f65020dfced3d5e5f9a9c0c4e1", Symbol: "ORCA", CoinGeckoId: "orca", Decimals: 6, Price: 2.41},                                                   // Addr: orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE, Notional: 52.96782832
+		{Chain: 1, Addr: "0c96450628904429a41300a3eeb390680414f8c0a2e1a2442610df748aca371e", Symbol: "DAOJONES", CoinGeckoId: "fractionalized-smb-2367", Decimals: 2, Price: 0.197795},                        // Addr: r8nuuzXCchjtqsmQZVZDPXXq928tuk7KVH479GsKVpy, Notional: 0.197795
+		{Chain: 1, Addr: "0cc10f516aaae9c14ba9471f60abd392dcd786d57354abedeee7289dd40a0a0a", Symbol: "RENDER", CoinGeckoId: "render-token", Decimals: 8, Price: 3.99},                                         // Addr: rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof, Notional: 2090.4588205557
+		{Chain: 1, Addr: "0cea8ee4d02b332af25488b03f6b02b11cd5ca4b7f051ee72575c50b55addd40", Symbol: "sRLY", CoinGeckoId: "rally-solana", Decimals: 9, Price: 0.00109343},                                     // Addr: sRLY3migNrkC1HLgqotpvi66qGkdNedqPZ9TJpAQhyh, Notional: 15.019729194087281
+		{Chain: 1, Addr: "0d8323c076f0e28718ca60d77e6b39cee8f23f43cfc4ff1f5852b8fc1b94a293", Symbol: "BOME", CoinGeckoId: "book-of-meme", Decimals: 6, Price: 0.00189193},                                     // Addr: ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82, Notional: 47920.28634516173
+		{Chain: 1, Addr: "0e21542327931809efbf3b282c09eb7ef5f82c68e5c35024c97da4f89a2234c7", Symbol: "DONK", CoinGeckoId: "donk", Decimals: 5, Price: 2.48773e-10},                                            // Addr: xABfKiG2KCHi6keTeLycW1iK7B52wJmchSWXu3YrsDp, Notional: 0.042147121659999995
+		{Chain: 1, Addr: "0e217f1d89397a8a2cdfcf5e46b64ac4e04206a3f396cd87b23734049eff9cae", Symbol: "xALGO", CoinGeckoId: "wrapped-algo", Decimals: 6, Price: 0.316206},                                      // Addr: xALGoH1zUfRmpCriy94qbfoMXHtK6NDnMKzT4Xdvgms, Notional: 8.118382883688
+		{Chain: 1, Addr: "0e56395e3c860143802e9b94a02cc6d04f75fec72a3fbb715268355e0cd7cd89", Symbol: "SLIM", CoinGeckoId: "solanium", Decimals: 6, Price: 0.051899},                                           // Addr: xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW, Notional: 2.23725430715
+		{Chain: 1, Addr: "0ec49e1c77e79828f9ae8a051b662e2088c728069cedb70fef8521b94acf74f8", Symbol: "", CoinGeckoId: "zebec-protocol", Decimals: 9, Price: 0.00241933},                                       // Addr: zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF, Notional: 5054.949992465308
+		{Chain: 1, Addr: "1076469c1041d9e9b39fc2ede11333973b3e95732a4439207193a61cc4108d43", Symbol: "JLP", CoinGeckoId: "jupiter-perpetuals-liquidity-provider-token", Decimals: 6, Price: 4.49},             // Addr: 27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4, Notional: 2.245
+		{Chain: 1, Addr: "11615a73ca119d91ad275cf19659f206265356fbd4161175b6c2cee43ceb267a", Symbol: "STATE", CoinGeckoId: "new-world-order", Decimals: 3, Price: 2.418e-12},                                  // Addr: 2Ar2n5DJSiQuMhY4XeSzg7C5AGMezZPoLUt98VmmjsAR, Notional: 29.532099958631814
+		{Chain: 1, Addr: "11f6454055669087f8f46c16a81e0ec3df5f68187b6bb8f1ecb954d07b7d3339", Symbol: "GNOME", CoinGeckoId: "gnomeland", Decimals: 9, Price: 0.00016284},                                       // Addr: 2D7jZLpUUAMboqzHMeyaxZfLWpf4JZUoR4i82Zva7sxU, Notional: 5357.04810224697
+		{Chain: 1, Addr: "128bcb647d8bad1e7250e3b834bcfa9fd986f4d477d1bbb9054e602b11ebe061", Symbol: "ETH", CoinGeckoId: "wrapped-ethereum-sollet", Decimals: 6, Price: 848.75},                               // Addr: 2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk, Notional: 8.99250625
+		{Chain: 1, Addr: "131fec1ab25c75e93eceea35ea3d3d82e6a3fd3d1e1f45a68ee0c14245aebaf6", Symbol: "SAO", CoinGeckoId: "sator", Decimals: 9, Price: 0.00015796},                                             // Addr: 2HeykdKjzHKGm2LKHw8pDYwjKPiFEoXAz74dirhUgQvq, Notional: 5401.67986075027
+		{Chain: 1, Addr: "139fc1fba8ff288c85d542130fc2caf2caf15d4dc9fce4ac81c1de0fdd3e5be1", Symbol: "KURO", CoinGeckoId: "kurobi", Decimals: 6, Price: 0.00001577},                                           // Addr: 2Kc38rfQ49DFaKHQaWbijkE7fcymUMLY5guUiUsDmFfn, Notional: 0.16282980021272
+		{Chain: 1, Addr: "16360094fd16e58867412ca58e622fe81a71fe47b8a8bf3b612e9d96a403d33b", Symbol: "EUROe", CoinGeckoId: "euroe-stablecoin", Decimals: 6, Price: 1.14},                                      // Addr: 2VhjJ9WxaGC3EZFwJG9BDUs9KxKCAjQY4vgd1qxgYWVg, Notional: 5.699999999999999
+		{Chain: 1, Addr: "17e700a49c421ef60ab1bb731357d11093c809d0056852d3e9e1e6c2653c81e9", Symbol: "", CoinGeckoId: "plutonian-dao", Decimals: 6, Price: 0.00164923},                                        // Addr: 2cJgFtnqjaoiu9fKVX3fny4Z4pRzuaqfJ3PBTMk2D9ur, Notional: 0.16492300000000001
+		{Chain: 1, Addr: "1a4fede1c16f0065b6988359bf11e8dad051daba0f615395b80faeee4ed8ad97", Symbol: "POGAI", CoinGeckoId: "pogai-sol", Decimals: 5, Price: 0.0000061},                                        // Addr: 2miHpQbYLPvXxC2V234jrrrtnJdejd5xW883a5ToNW3g, Notional: 0.193076458667
+		{Chain: 1, Addr: "1d0b90f13cac323097379dfaa8c11f7d6cf3a7bed333042be6fe572281cdfca0", Symbol: "NINJA", CoinGeckoId: "shinobi-2", Decimals: 9, Price: 0.00007033},                                       // Addr: 2xP43MawHfU7pwPUmvkc6AUWg4GX8xPQLTGMkSZfCEJT, Notional: 0.0014066
+		{Chain: 1, Addr: "1de8220d15414f8be688949bb1a2e853c45d49fb9c17b70ff4250c82c0518cb1", Symbol: "GP", CoinGeckoId: "graphite-protocol", Decimals: 9, Price: 0.165019},                                    // Addr: 31k88G5Mq7ptbRDf3AM13HAq6wRQHXHikR8hik7wPygk, Notional: 0.09044436930702
+		{Chain: 1, Addr: "204cc66e5cc71f4795cfafe7b922d9e9bfe57b6ae41fb5ab6d9e65a8845ee90f", Symbol: "BILLY", CoinGeckoId: "billy", Decimals: 6, Price: 0.0033133},                                            // Addr: 3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump, Notional: 3.0584438167513
+		{Chain: 1, Addr: "208a634ca68fc16843f70bbfcba1726110efb9ecfeafc0ac828d749cc62fe72b", Symbol: "CAPRICORN", CoinGeckoId: "capricorn-2", Decimals: 6, Price: 0.00050951},                                 // Addr: 3C2SN1FjzE9MiLFFVRp7Jhkp8Gjwpk29S2TCSJ2jkHn2, Notional: 2442.759358734304
+		{Chain: 1, Addr: "20dc94caa1c4d02e8d2d5d955438684fa2fc1558a68ffe079b4b813554301119", Symbol: "HM", CoinGeckoId: "holdium", Decimals: 9, Price: 0.00012431},                                            // Addr: 3DH8WZ6C2HdDR4J9ekYnTfai8Tx8mxn92mW8zcYmP4px, Notional: 0.00049724
+		{Chain: 1, Addr: "2109ce397c41f14a97da3d94eb68a2fcbc62fdd568e73b3d8a8c62d18a691b80", Symbol: "", CoinGeckoId: "arenum", Decimals: 6, Price: 0.00004401},                                               // Addr: 3Dy8KFyvpUJ8nfRCbvk4HLWjNRRzxiVhTeE9PQF9RARD, Notional: 0.007348613671980001
+		{Chain: 1, Addr: "224b49876149714cc03053b6738ec0533f346a62459bfbad2c93c8eb54e3912f", Symbol: "PISCES", CoinGeckoId: "pisces", Decimals: 6, Price: 0.00050682},                                         // Addr: 3JsSsmGzjWDNe9XCw2L9vznC5JU9wSqQeB6ns5pAkPeE, Notional: 2656.712967012468
+		{Chain: 1, Addr: "2427c13d88770be13f5907d01ba6c18f72f0241307c721a88b95f53dceada211", Symbol: "MOTHER", CoinGeckoId: "mother-iggy", Decimals: 6, Price: 0.00973485},                                    // Addr: 3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN, Notional: 1464.8107022502327
+		{Chain: 1, Addr: "25a608f065296572c67bdf0a455f0f0069d17a8b7a716bb1396448f1a1e249e3", Symbol: "DIP", CoinGeckoId: "doginthpool", Decimals: 6, Price: 0.00033939},                                       // Addr: 3XxvmED354933DwSPJuzB7SE9uiWpD1ErydDuhmbFRMk, Notional: 0.33939
+		{Chain: 1, Addr: "2688c77a2a9c9ad17318699dcb85b3d9a23762c6e7156bc7f83b3052953293f2", Symbol: "LIKE", CoinGeckoId: "only1", Decimals: 9, Price: 0.01443725},                                            // Addr: 3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR, Notional: 0.11650860750000001
+		{Chain: 1, Addr: "28baefb80baafbc803106976f26f343eb62d796b8f96a8c6b81a425b9ac0f388", Symbol: "FLOOF", CoinGeckoId: "floof", Decimals: 1, Price: 4.14805e-7},                                           // Addr: 3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw, Notional: 0.000001244415
+		{Chain: 1, Addr: "2903e3b75ce4a7a17e88a51089e5ab74c0337016511bd471870e26012321a296", Symbol: "", CoinGeckoId: "wagmi-on-solana", Decimals: 6, Price: 2.87597e-7},                                      // Addr: 3m7A2A8HHdqmiDrjAfaddj7Hxd88FrBHA1KSoqjoELtu, Notional: 0.0000287597
+		{Chain: 1, Addr: "2ae45f86dd41432f582f58321d9bf302527cce303a285d36d915c5fc9e87fbbe", Symbol: "pepe", CoinGeckoId: "pepecoin-on-sol", Decimals: 9, Price: 0.00009766},                                  // Addr: 3tS6fbLh2P8tzxXuqCiHZpZhsxJpmrR3Xb9psmypnp69, Notional: 60.22868243450238
+		{Chain: 1, Addr: "2ccec8f92e8942182bef15efc347d609a7b2010db68d678664fae043b5f6e707", Symbol: "BOGUS", CoinGeckoId: "bogus", Decimals: 9, Price: 0.00004649},                                           // Addr: 41upazdWAgLjfCkLGQwGDgj2knovnpPyr4q2ZVNjifLz, Notional: 134.4785321568479
+		{Chain: 1, Addr: "2cdc841aa0053fa5a1a39de2d59ef07fecd3e1220b6ec63b7a3ca1662f8adc6a", Symbol: "SAUCE", CoinGeckoId: "sauce", Decimals: 9, Price: 0.00002575},                                           // Addr: 427xvZVKbFj7ZyfFoYS9iFpNuNsrijm6T9VP8znfko9j, Notional: 0.0010299999999999999
+		{Chain: 1, Addr: "2d36764d010cc1a6962ed97f6f9da736f885232ea23e6980142d6d9fa26156ff", Symbol: "STNK", CoinGeckoId: "stonks-4", Decimals: 9, Price: 12.82},                                              // Addr: 43VWkd99HjqkhFTZbWBpMpRhjG469nWa7x7uEsgSH7We, Notional: 12.82
+		{Chain: 1, Addr: "2f0a3b79b92e25cb92710b81e49f233cef7ced3e9fb4ee0191f39b11c74777d4", Symbol: "TJRM", CoinGeckoId: "tajir-tech-hub", Decimals: 9, Price: 0.01504249},                                   // Addr: 4AdDFsG1xzz1L7zKGo2fbiqv256Z92u8uCcJCgYuTBLo, Notional: 73980.81658712799
+		{Chain: 1, Addr: "2f64669f9f8ad5ee900c4050cf06c756f3d10a02c908f803c1e43ed7a145d3a0", Symbol: "SWOLE", CoinGeckoId: "swole-doge", Decimals: 9, Price: 0.00000188},                                      // Addr: 4BzxVoBQzwKoqm1dQc78r42Yby3EzAeZmMiYFdCjeu5Z, Notional: 3.5006325887501992
+		{Chain: 1, Addr: "2f982c219d581e23f410f320ee59a543dadda9d7925d6995a88982eb5e63f39f", Symbol: "DADDY", CoinGeckoId: "daddy-tate", Decimals: 6, Price: 0.03858732},                                      // Addr: 4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump, Notional: 0.081033372
+		{Chain: 1, Addr: "300e2e338a5ee89798c860ff877f2e6986cdec0ecee68f23874a7cc386b34e55", Symbol: "WGC", CoinGeckoId: "wild-goat-coin-2", Decimals: 6, Price: 0.0000162},                                   // Addr: 4Eb7ReeT936hX25KMBfYtyP1RWDdd9iixEwGJroACeLC, Notional: 35644.23113215176
+		{Chain: 1, Addr: "33660fff0fbce64c4da91c3b3e6e77e58d059df2e05e6c53608de170455ba938", Symbol: "SCT", CoinGeckoId: "solclout", Decimals: 9, Price: 0.00099435},                                          // Addr: 4Te4KJgjtnZe4aE2zne8G4NPfrPjCwDmaiEx9rKnyDVZ, Notional: 81754.67245793703
+		{Chain: 1, Addr: "3398844e5c88d23bf0fde5120ffd5b8d81893dea2fb950ad305923b40562e58c", Symbol: "JALA", CoinGeckoId: "jalapeno-finance", Decimals: 9, Price: 0.00003742},                                 // Addr: 4UQgPwwcyTfELvJViUUJEa229K7RQEzCrc4Cnuxa7zxs, Notional: 318.11161103999996
+		{Chain: 1, Addr: "33b8d6efc25f5766808494c4ec2c62ad1409a96266eab2113b72b3148ebede0f", Symbol: "XSB", CoinGeckoId: "solareum-wallet", Decimals: 9, Price: 0.00006227},                                   // Addr: 4UuGQgkD3rSeoXatXRWwRfRd21G87d5LiCfkVzNNv1Tt, Notional: 0.00031135
+		{Chain: 1, Addr: "35fe161e6828028ece9caa2d89bcd7a1fd1bf140ad838d0c17d7b57c9b1aa238", Symbol: "SNY", CoinGeckoId: "synthetify-token", Decimals: 6, Price: 0.00346563},                                  // Addr: 4dmKkXNHdgYsXqBHCuMikNQWwVomZURhYvkkX5c4pQ7y, Notional: 2.7725039999999998e-8
+		{Chain: 1, Addr: "360c012e23f5bf12d1e47e985682d8814e6bb1715920852acca33346708fa968", Symbol: "MIM", CoinGeckoId: "mim", Decimals: 9, Price: 0.0000013},                                                // Addr: 4dydh8EGNEdTz6grqnGBxpduRg55eLnwNZXoNZJetadu, Notional: 0.014634626727097002
+		{Chain: 1, Addr: "37998ccbf2d0458b615cbcc6b1a367c4749e9fef7306622e1b1b58910120bc9a", Symbol: "RAY", CoinGeckoId: "raydium", Decimals: 6, Price: 2.44},                                                 // Addr: 4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R, Notional: 46123.449808
+		{Chain: 1, Addr: "3a0147829f94ff731beb78f4bf79f8247eb6db6ff78cbdbd778004547c3cfb15", Symbol: "", CoinGeckoId: "playground-waves-floor-index", Decimals: 2, Price: 0.059343},                           // Addr: 4uRn7vxRPWYP4HuAa4UNXwEPLRL8oQ71YByMhr6yBnL4, Notional: 1.127517
+		{Chain: 1, Addr: "3a5dbacb04d71ef866691d531287d96c7c36bfdf444418fc74a4dd1b7017f76b", Symbol: "WYNN", CoinGeckoId: "anita-max-wynn", Decimals: 6, Price: 0.00033805},                                   // Addr: 4vqYQTjmKjxrWGtbL2tVkbAU1EVAz9JwcYtd2VE3PbVU, Notional: 30.424500000000002
+		{Chain: 1, Addr: "3af4e2d8b5cb7182c097ad3b67e18e9ff9f28ad4a1ca8161809e1ff94e0e2216", Symbol: "FATGF", CoinGeckoId: "fatgf", Decimals: 6, Price: 0.0003416},                                            // Addr: 4y9E3tJpGNzRr1592oWTPECgyp2VDSc1Bf3DqAm5FZsK, Notional: 0.0003416
+		{Chain: 1, Addr: "3b15c6089ac9e1722434f64313f16131fa6dab386951f47f2a6f02f3a9ab602a", Symbol: "CTUS", CoinGeckoId: "contractus", Decimals: 9, Price: 0.00277281},                                       // Addr: 4yeK2cCyxNNz28fVqEbkLYNCb1T9qPadsuJWeZ44Evcq, Notional: 333546.67351747095
+		{Chain: 1, Addr: "3b1f93f67db7d561ba257575f5935a4b2b8a7f0365015043ba2ebab4d94abeb8", Symbol: "EGG", CoinGeckoId: "egg", Decimals: 9, Price: 0.00000789},                                               // Addr: 4ynyx6BzY2XGFgjjun9Cruj1bSRo8FLsAqNnPsW6jDsu, Notional: 0.0005444100000000001
+		{Chain: 1, Addr: "3ba8d09f68b3cc2546ac682aafba3d585690ebba80c218a9cc3807524ecc5957", Symbol: "", CoinGeckoId: "apexit-finance", Decimals: 9, Price: 0.00121099},                                       // Addr: 51tMb3zBKDiQhNwGqpgwbavaGH54mk8fXFzxTc1xnasg, Notional: 0.0036329699999999997
+		{Chain: 1, Addr: "3df04a3638c2fb63cdbe8dfef12a3ac5398999227bcab5f97742f11c9bdb75ff", Symbol: "DOLLAR", CoinGeckoId: "dollar-2", Decimals: 6, Price: 0.00012961},                                       // Addr: 5AnPDx9GposBi9jSW2dFfE5QQD3FmXbudoquMNDxpump, Notional: 6403.773590417411
+		{Chain: 1, Addr: "3ffd20f06c83bba88002f87f9d56050a5ef941fbbb0ea0293c829a82f11e3891", Symbol: "APYS", CoinGeckoId: "apyswap", Decimals: 9, Price: 0.00233419},                                          // Addr: 5JnZ667P3VcjDinkJFysWh2K2KtViy63FZ3oL5YghEhW, Notional: 0.16105911
+		{Chain: 1, Addr: "4099261906e4d99a6926404cb79d4a2de516b4aef140e4bf48d35b4ba22654e4", Symbol: "ACS", CoinGeckoId: "access-protocol", Decimals: 6, Price: 0.00126013},                                   // Addr: 5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y, Notional: 75.65514190713857
+		{Chain: 1, Addr: "41f6388b9c6a78895d16cb6f8ccb8705e0d68640c14d908ef943fb13d693cbcf", Symbol: "SIGMA", CoinGeckoId: "sigma", Decimals: 6, Price: 0.01659483},                                           // Addr: 5SVG3T9CNQsm2kEwzbRq6hASqh1oGfjqTtLXYUibpump, Notional: 29.6172182605446
+		{Chain: 1, Addr: "4262f09434e938b2714803d3aa425d1d543a735ba324109087760d83deae653d", Symbol: "SPWN", CoinGeckoId: "bitspawn", Decimals: 9, Price: 0.000012},                                           // Addr: 5U9QqCPhqXAJcEv9uyzFJd5zhN93vuPk1aNNkXnUfPnt, Notional: 0.0012000000000000001
+		{Chain: 1, Addr: "430badff7f2921f4811389b1c6d633b143f0fddcc7b5b2750e906bb8852b174b", Symbol: "HER", CoinGeckoId: "her-ai", Decimals: 6, Price: 0.00035215},                                            // Addr: 5WieRrJ5oFthgxaH4nCEkwJiBTxuRpEn9qmFRkVzkc98, Notional: 0.0035215000000000003
+		{Chain: 1, Addr: "45a5161476cc9df6ef8583b581a3111b4416ebcea65f4eca5bb961124c3399df", Symbol: "", CoinGeckoId: "xhashtag", Decimals: 6, Price: 0.03105851},                                             // Addr: 5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp, Notional: 30830.293622936308
+		{Chain: 1, Addr: "46db194d842a0b334325c1781821709d3e85b63901bd7dd4a5383bd312f3aaab", Symbol: "$michi", CoinGeckoId: "michicoin", Decimals: 6, Price: 0.03448239},                                      // Addr: 5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp, Notional: 24.26318272725219
+		{Chain: 1, Addr: "46dd37dd6a92fc21467d58d83c526393cd94492b97fec5124970fc4ea5a68be6", Symbol: "BRAWL", CoinGeckoId: "bitbrawl", Decimals: 9, Price: 0.00007468},                                        // Addr: 5mdBkZ4dTP94SE7PyiuWseTDAd1kYxSk6oYaWB7186s7, Notional: 25090.641099430293
+		{Chain: 1, Addr: "4757899fb8bedba28778aacd67e568e73470cce90bcd532b6cb618297628824e", Symbol: "INF", CoinGeckoId: "socean-staked-sol", Decimals: 9, Price: 208.05},                                     // Addr: 5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm, Notional: 208.9957557705
+		{Chain: 1, Addr: "485493b637792cca16fe9d53fc4879c23dbf52cf6d9af4e61fe92df15c17c98d", Symbol: "", CoinGeckoId: "bamboo-coin", Decimals: 9, Price: 0.00000123},                                          // Addr: 5sM9xxcBTM9rWza6nEgq2cShA87JjTBx1Cu82LjgmaEg, Notional: 0.36900000000000005
+		{Chain: 1, Addr: "48972c3e59cc0c7a094c2948f847381cfef470e1ddf0711f0c858070711876f3", Symbol: "WAG", CoinGeckoId: "waggle-network", Decimals: 9, Price: 0.00029893},                                    // Addr: 5tN42n9vMi6ubp67Uy4NnmM5DMZYN8aS8GeB3bEDHr6E, Notional: 0.0015245429999999997
+		{Chain: 1, Addr: "4a05e1f7f53477602c239f1a2b8da4277ccd279ff26128cb361c3791b5a9156c", Symbol: "Fronk", CoinGeckoId: "fronk", Decimals: 5, Price: 5.452e-9},                                             // Addr: 5yxNbU8DgYJZNi3mPD9rs4XLh9ckXrhPjJ5VCujUWg5H, Notional: 112.52260239057729
+		{Chain: 1, Addr: "4a0b628dff0f5cdd497907e62510e77277360c2e9dc2081898dd62e4ffe39caf", Symbol: "PONKE", CoinGeckoId: "ponke", Decimals: 9, Price: 0.146506},                                             // Addr: 5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC, Notional: 1.6955000272552998
+		{Chain: 1, Addr: "4a6b1a6b92df4ed3059e120bd0e5e4b6a97fd0e8db832c163a15fd284e4d46c7", Symbol: "DILLY", CoinGeckoId: "dilly", Decimals: 9, Price: 0.00001593},                                           // Addr: 61VtkXr9mRXtrFYe2T9arWYX52sbJnkAUQgfjGuCzox2, Notional: 29.81862437391073
+		{Chain: 1, Addr: "4ae3d320820544fffa2e6dae60f8ed2bc3426d8de3d7f77ddf350c18fd6b3194", Symbol: "GIGA", CoinGeckoId: "gigachad-2", Decimals: 5, Price: 0.02354745},                                       // Addr: 63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9, Notional: 6415.100218496705
+		{Chain: 1, Addr: "4d649bee4edf806f5f3258955fc99e05348af3e3376299b00256d6a0d08a157f", Symbol: "SC", CoinGeckoId: "shark-cat", Decimals: 6, Price: 0.00244801},                                          // Addr: 6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui, Notional: 9.057637
+		{Chain: 1, Addr: "518ecf30942036e11b4eb4f2f5a05d32661f9ada0a6a4402c5df098ea6c4fbce", Symbol: "wHAPI", CoinGeckoId: "hapi", Decimals: 9, Price: 3.24},                                                  // Addr: 6VNKqgz9hk7zRShTFdg5AnkfKwZUcojzwAkzxSH3bnUm, Notional: 0.09746736480000001
+		{Chain: 1, Addr: "5468187df701e428898565f1c522b352ad481d0dcb40d8b6e1036ba153e5e3af", Symbol: "pog", CoinGeckoId: "pog", Decimals: 6, Price: 0.00003944},                                               // Addr: 6gVJwfHxWov8HxdAZ4v4tt2RpZZst6du74y4bUCdpump, Notional: 0.0041412
+		{Chain: 1, Addr: "547b309eace670a9af4c6da12402ddbbc60d43c10e2c177b9533bdbc1888576f", Symbol: "BSKT", CoinGeckoId: "basket", Decimals: 5, Price: 2.45064e-7},                                           // Addr: 6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA, Notional: 5813.603473790048
+		{Chain: 1, Addr: "558bfd9cf2fcdc18de6a9463c3d2a372e961c63264900d3d3cb5d86560c4655b", Symbol: "SAIL", CoinGeckoId: "sail", Decimals: 6, Price: 0.0032285},                                              // Addr: 6kwTqmdQkJd8qRr9RjSnUX9XJ24RmJRSrU1rsragP97Y, Notional: 0.019371
+		{Chain: 1, Addr: "560d05641b74bbada05fdd6b3fd731b5df7cd417fd1d8cf129476a7aaa55b308", Symbol: "", CoinGeckoId: "wrapped-busd-allbridge-from-bsc", Decimals: 9, Price: 1.004},                           // Addr: 6nuaX3ogrr2CaoAPjtaKHAoBNWok32BMcRozuf32s2QF, Notional: 259.2621460666
+		{Chain: 1, Addr: "56405db9a54ee121b5acf6d28c359e5b50caae6bcd6439d814696ea95a99a3e9", Symbol: "RETARDIO", CoinGeckoId: "retardio", Decimals: 6, Price: 0.01822691},                                     // Addr: 6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx, Notional: 13.05404335165762
+		{Chain: 1, Addr: "58d2e009e5166d2e61063ed79f0fc83cdca913520383969208143c66ca0d2d8d", Symbol: "Chud", CoinGeckoId: "chudjak", Decimals: 6, Price: 0.00191498},                                          // Addr: 6yjNqPzTSanBWSa6dxVEgTjePXBrZ2FoHLDQwYwEsyM6, Notional: 2182.156146219136
+		{Chain: 1, Addr: "59174309f88fbd80970c5b2e2e69708a0d6e76eb4cf35ebf801bceae476211a6", Symbol: "CUTE", CoinGeckoId: "pepe-uwu", Decimals: 7, Price: 7.4528e-8},                                          // Addr: 6zmrmNUGdRwrqcchshVkBgAyLhLwZ7QvJRQiKktqVQLV, Notional: 26728.55852250992
+		{Chain: 1, Addr: "5970e12d014491b2ca2f4b15f6348ff255076d62422140f01e3d955896ccc619", Symbol: "Leancoin", CoinGeckoId: "leancoin", Decimals: 9, Price: 0.00004726},                                     // Addr: 7297kX7SEZ1do223VsjTAC2MS9gLxPJoxFs9UMwiG4oS, Notional: 1.22876e-11
+		{Chain: 1, Addr: "5be23d7c881e445a9387e65ee9b2ba25a1ffa3429008b591784fbe6300091d06", Symbol: "SLERF", CoinGeckoId: "slerf", Decimals: 9, Price: 0.076618},                                             // Addr: 7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3, Notional: 22.206620351484663
+		{Chain: 1, Addr: "5c9e9d5fa309864acd7d8118d326313cde7b86df18e197924a03186ffe9f3d7a", Symbol: "SILLY", CoinGeckoId: "silly-dragon", Decimals: 9, Price: 0.00141406},                                    // Addr: 7EYnhQoR9YM3N7UoaKRoA44Uy8JeaZV3qyouov87awMs, Notional: 5.994769030332548
+		{Chain: 1, Addr: "5d0b159affcbccf165c09bc2f5d4bafb4aa6345af793b9b3222daa40293a950d", Symbol: "POPCAT", CoinGeckoId: "popcat", Decimals: 9, Price: 0.391547},                                           // Addr: 7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr, Notional: 13536.740341487337
+		{Chain: 1, Addr: "5d8b4322ce5dfbe40a7d872bfd6e517329b49b125a21245fa2677f8e9163c77c", Symbol: "GEOD", CoinGeckoId: "geodnet", Decimals: 9, Price: 0.201872},                                            // Addr: 7JA5eZdCzztSfQbJvS8aVVxMFfd81Rs9VvwnocV1mKHu, Notional: 0.08074880000000001
+		{Chain: 1, Addr: "5f0c446318ab10c95f4094958570cd057465a54dab14d9dde3481a86fed5fccb", Symbol: "JSOL", CoinGeckoId: "jpool", Decimals: 9, Price: 199.55},                                                // Addr: 7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn, Notional: 614.8237649645
+		{Chain: 1, Addr: "61926627585b9be4953991b827eb7d0ecc061afe1bf9a0a9079e009ccd695ae7", Symbol: "LIBRA", CoinGeckoId: "libra-4", Decimals: 6, Price: 0.00049067},                                         // Addr: 7Zt2KUh5mkpEpPGcNcFy51aGkh9Ycb5ELcqRH1n2GmAe, Notional: 5002.634323148143
+		{Chain: 1, Addr: "6270a9646bd0d4a8daeb0deba12c396b88fa79f4bf3c16f844ed91af004a4723", Symbol: "GCR", CoinGeckoId: "golden-celestial-ratio", Decimals: 9, Price: 0.00011205},                            // Addr: 7dGbPgUxKpB5qWiLRKcTQSC3om1fPzUpgGAFfwej9hXx, Notional: 4304.7369
+		{Chain: 1, Addr: "6271cb7119476b9dce00d815c8ff315fc8bf7d2848633d34942adfd535f2defe", Symbol: "stSOL", CoinGeckoId: "lido-staked-sol", Decimals: 9, Price: 189.8},                                      // Addr: 7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj, Notional: 116161.67973771402
+		{Chain: 1, Addr: "6386d5114f2b5a344f6265cb7e334e78ae569abd44a39b718d8e02fc487d9c02", Symbol: "CAT", CoinGeckoId: "catcoin-cash", Decimals: 3, Price: 8.6928e-11},                                      // Addr: 7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3, Notional: 26.00444403072675
+		{Chain: 1, Addr: "63abd0967076f58ba2edadb41f10719df1354abe118f29a8f30ee6639474b947", Symbol: "", CoinGeckoId: "stepn", Decimals: 9, Price: 0.051683},                                                  // Addr: 7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx, Notional: 119.33472945458394
+		{Chain: 1, Addr: "63ef9d2e6be295552062ac55bdd693bea2bb7f6e6221edc9d308d843d293650b", Symbol: "SOLR", CoinGeckoId: "solrazr", Decimals: 6, Price: 0.00229832},                                          // Addr: 7j7H7sgsnNDeCngAPjpaCN4aaaru4HS7NAFYSEUyzJ3k, Notional: 0.00229832
+		{Chain: 1, Addr: "6752055c20b3e9d8746656ddf73855507f87ab6d87523e4c76a7fa36096a99eb", Symbol: "SAMO", CoinGeckoId: "samoyedcoin", Decimals: 9, Price: 0.00246285},                                      // Addr: 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU, Notional: 0.9951635022093765
+		{Chain: 1, Addr: "676179b0b67070a1d3e299cac3bddc85e6b6b60600a99ddceae0f96b521cae33", Symbol: "DOGEVERSE", CoinGeckoId: "dogeverse", Decimals: 8, Price: 0.00000622},                                   // Addr: 7xZCdhj7rGhnKndRpU3NHgZhbFMkPLP2ErDr1AS8Chsx, Notional: 47.66094904
+		{Chain: 1, Addr: "689ac099ef657e5d3b7efaf1e36ab8b897e2746232d8a9261b3e49b35c1dead4", Symbol: "xUSD", CoinGeckoId: "synthetic-usd", Decimals: 6, Price: 0.592223},                                      // Addr: 83LGLCm7QKpYZbX8q4W2kYWbtt8NJBwbVwEepzkVnJ9y, Notional: 5.904222275239
+		{Chain: 1, Addr: "6927fdc01ea906f96d7137874cdd7adad00ca35764619310e54196c781d84d5b", Symbol: "W", CoinGeckoId: "wormhole", Decimals: 6, Price: 0.074222},                                              // Addr: 85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ, Notional: 8247.093235851933
+		{Chain: 1, Addr: "69302bef50efd86a9bc1c2ac763ff56633e9fda1709eb0b858088e9cfbdcfe0f", Symbol: "Rizzmas", CoinGeckoId: "rizzmas", Decimals: 6, Price: 0.000004},                                         // Addr: 85cQsFgbi8mBZxiPppbpPXuV7j1hA8tBwhjF4gKW6mHg, Notional: 2.18832
+		{Chain: 1, Addr: "6afc09bb2ca898b2a734540d93a61ea2dd46ab6bd318a3e3283c8fbe86b93f3e", Symbol: "LEO", CoinGeckoId: "leo-2", Decimals: 6, Price: 0.00052509},                                             // Addr: 8Cd7wXoPb5Yt9cUGtmHNqAEmpMDrhfcVqnGbLC48b8Qm, Notional: 2520.711701499235
+		{Chain: 1, Addr: "6b04a01bfd79e1eddf99d77598a5da54ee3cc8189dedfc1408908e29e1e94058", Symbol: "POWSCHE", CoinGeckoId: "powsche", Decimals: 9, Price: 0.00703043},                                       // Addr: 8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf, Notional: 7980.104415139496
+		{Chain: 1, Addr: "6b054395432c64d8250648371121f271fc3b8e36621384b9e91956bf02307c13", Symbol: "DOKI", CoinGeckoId: "doki", Decimals: 6, Price: 0.0000386},                                              // Addr: 8CmHC7Y2715VFaMkMZMwWDqRYQwPLAsM57Xiu3Ho4TjG, Notional: 1.572768209633
+		{Chain: 1, Addr: "6cccc33e6627899bd00d679cca0b56d788a1861b8de1ea3691e870710b92447c", Symbol: "LOCKIN", CoinGeckoId: "lock-in", Decimals: 9, Price: 0.00666822},                                        // Addr: 8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5, Notional: 6.9446871399046355
+		{Chain: 1, Addr: "6dbb85629db6a38eeb2fec793974b4c7e9c5fdc9e70165303b4f73106e5e62ba", Symbol: "", CoinGeckoId: "rope-token", Decimals: 9, Price: 0.00510375},                                           // Addr: 8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo, Notional: 0.00510375
+		{Chain: 1, Addr: "73512a31b0ae74aae6fbce469044131a230a122b1ea6f4af3a4e93c9158b538e", Symbol: "JOWNES", CoinGeckoId: "alux-jownes", Decimals: 6, Price: 0.00000921},                                    // Addr: 8m9fjYycXAFva1kScttQgsESVZT7yELhjZASqfHBuMa5, Notional: 1.81135373425605
+		{Chain: 1, Addr: "7589fb28d63e11a5f134a97a6bc85399e6cbe2fddb268d496f91204d5271ff05", Symbol: "GRAPE", CoinGeckoId: "grape-2", Decimals: 6, Price: 0.00015298},                                         // Addr: 8upjSpvjcdpuzhfR1zriwg5NXkwDruejqNE9WNbPRtyA, Notional: 0.0035491359999999996
+		{Chain: 1, Addr: "75fa185aaff1c781b07269a4dfd7849add90a6db207bf61cff506c9b3d525376", Symbol: "GME", CoinGeckoId: "gme", Decimals: 9, Price: 0.00199126},                                               // Addr: 8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB, Notional: 4046.3629797471026
+		{Chain: 1, Addr: "7618e3a4b6365218d0473a17c3386761b449f05d4e5dc213bd7966edde409f24", Symbol: "SAGIT", CoinGeckoId: "sagittarius", Decimals: 6, Price: 0.00049996},                                     // Addr: 8x17zMmVjJxqswjX4hNpxVPc7Tr5UabVJF3kv8TKq8Y3, Notional: 2528.703750939926
+		{Chain: 1, Addr: "766d8eac4c0ae9f5d006f7a74ca87eaa78b50411e9385154b12fcc17c21b41d3", Symbol: "KITTY", CoinGeckoId: "kitty-ai", Decimals: 6, Price: 0.00015861},                                        // Addr: 8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G, Notional: 4.7583
+		{Chain: 1, Addr: "7747dce1ae5735f0fe877af40fc4b972847edabdb0abb1e04a432c4025606496", Symbol: "MONKEY", CoinGeckoId: "monkey", Decimals: 1, Price: 3.50972e-10},                                        // Addr: 92d5AncUVELq79xqLWNQ5Zoxz7fn9XHwijYswYWFrKtR, Notional: 2.2033919779010795
+		{Chain: 1, Addr: "777c026899a52a4c61329b0a098e74fbcd720d34665a41782bca2e2713410082", Symbol: "ZERO", CoinGeckoId: "analysoor", Decimals: 9, Price: 0.093269},                                          // Addr: 93RC484oMK5T9H89rzT5qiAXKHGP9jscXfFfrihNbe57, Notional: 0.093269
+		{Chain: 1, Addr: "78404f497a9523d5d2530469f1d76f4ac5cfafad2423341f61aa08021efc459c", Symbol: "$POPO", CoinGeckoId: "popo-pepe-s-dog", Decimals: 9, Price: 0.00001528},                                 // Addr: 96QoNkZLTKH7Gecf6dKMRXBQXW1wqh378uF9pnTejgAw, Notional: 1.6713019196664503
+		{Chain: 1, Addr: "7dd04d62e0c5aac91b412ea0cf91f647234e2797378e4b983cdecb7d3ef6fd46", Symbol: "", CoinGeckoId: "gigadao", Decimals: 4, Price: 0.00040465},                                              // Addr: 9U8Bn6zAf6Wyp1YHdXtLyfbN7yMvdvW1qQY475iZ5ftZ, Notional: 0.202325
+		{Chain: 1, Addr: "8217c0f1b6d3300f53e7ea24352e93a307829c4ba2a43533c1b56d11468b0033", Symbol: "ZORKSEES", CoinGeckoId: "zorksees", Decimals: 8, Price: 354244},                                         // Addr: 9kq1VuGCCKeTgtRmzUTjLVi6LpmBD38im2hPRaqusPkE, Notional: 341447.49520552
+		{Chain: 1, Addr: "82444ff8283660793c0370a7dd9fb35cb1f7338d57eb088765d0dad090541e72", Symbol: "", CoinGeckoId: "mimatic", Decimals: 9, Price: 0.995702},                                                // Addr: 9mWRABuz2x6koTPCWiCPM49WUbcrNqGTHBV9T9k7y1o7, Notional: 20.76120622248812
+		{Chain: 1, Addr: "8268e9a9a1444c2ba5c77a51936856b072e43fefcff5e4b01e99623c8ebb7749", Symbol: "BTC", CoinGeckoId: "wrapped-bitcoin-sollet", Decimals: 6, Price: 2823.11},                               // Addr: 9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E, Notional: 5538.75549474
+		{Chain: 1, Addr: "826d35ab8f5b30c7d511f8f2ba9d8765228e94c8b810afc82c9a3a29a8146f89", Symbol: "FLOCKA", CoinGeckoId: "waka-flocka", Decimals: 6, Price: 0.00034212},                                    // Addr: 9n8b1EXLCA8Z22mf7pjLKVNzuQgGbyPfLrmFQvEcHeSU, Notional: 67570.8660578783
+		{Chain: 1, Addr: "8274472938310e90c774c25ade5e6fcaa7238aef9e3e67764d45b920d0c3e075", Symbol: "WOOF", CoinGeckoId: "woof-token", Decimals: 6, Price: 0.00002137},                                       // Addr: 9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE, Notional: 0.21952628096250998
+		{Chain: 1, Addr: "82993f9b768020400dc11af927de6d015f4f4abe63d73272b7e57ae17c7c5c6e", Symbol: "KING", CoinGeckoId: "king-2", Decimals: 9, Price: 0.0000115},                                            // Addr: 9noXzpXnkyEcKF3AeXqUHTdR59V5uvrRBUZ9bwfQwxeq, Notional: 3419.695083161747
+		{Chain: 1, Addr: "8300ec316d7d1c7a81a6907c633655bcf37368889c2bed5f47901d0f56e01c8b", Symbol: "KEYCAT", CoinGeckoId: "keyboard-cat", Decimals: 9, Price: 0.00014834},                                   // Addr: 9pPE1q9EW1bMQWbHmffrzUCfRr7S82UoxNUFfA6mAZC6, Notional: 0.18039401568222382
+		{Chain: 1, Addr: "842f35b8d1f37e6cc0a7eb8d12bf9079f7abf194cdcd466c22f5f1e8baa4dea8", Symbol: "", CoinGeckoId: "arb-protocol", Decimals: 6, Price: 0.00005136},                                         // Addr: 9tzZzEHsKnwFL1A3DyFJwj36KnZj3gZ7g4srWp9YTEoh, Notional: 0.25705680000000003
+		{Chain: 1, Addr: "85cdebc205dddf95b88200aba0ac9bcbb78096324e276fce85d63c69211f0845", Symbol: "USDY", CoinGeckoId: "ondo-us-dollar-yield", Decimals: 6, Price: 1.096},                                  // Addr: A1KLoBrKBde8Ty9qtNQUtq3C2ortoC3u7twggz7sEto6, Notional: 0.122240168
+		{Chain: 1, Addr: "8666930409fea01a38402e938d3116943dc955b0abc3406728922f21131b6f01", Symbol: "PENG", CoinGeckoId: "peng", Decimals: 6, Price: 0.01643477},                                             // Addr: A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ, Notional: 2.60888396986503
+		{Chain: 1, Addr: "86d536568df6b574b219c07565198d7fab61cb0458cdfbadf0f004759f2e5038", Symbol: "GMEOW", CoinGeckoId: "gmeow-cat", Decimals: 6, Price: 0.00002748},                                       // Addr: A5LCTQ1vJECCQWSXJYs3rfCoexctbUgTCAEKDuNye8bZ, Notional: 15.07256957923716
+		{Chain: 1, Addr: "86d786039c432f0d4d65f3d29b9fe4ba5fd0f4057f259bcdc314c115559274fc", Symbol: "", CoinGeckoId: "vynk-chain", Decimals: 4, Price: 0.000054},                                             // Addr: A5NF1e6RnYkVwtg3V3z1qeUz4PZfHCXmQ9RotuJWgi6F, Notional: 0.036396
+		{Chain: 1, Addr: "87c9ce6b6344187c4b75fa01dd4334d8bb826a9214fefe9d39cce5fad29b6faa", Symbol: "", CoinGeckoId: "bilira", Decimals: 6, Price: 0.02546433},                                               // Addr: A94X2fRy3wydNShU4dRaDyap2UuoeWJGWyATtyp61WZf, Notional: 5.3475093000000005
+		{Chain: 1, Addr: "883977f594221f16fd8037db6cd49393cb7ccb597ef5513fee423975372ff5b3", Symbol: "", CoinGeckoId: "racefi", Decimals: 6, Price: 0.00061614},                                               // Addr: AAmGoPDFLG6bE82BgZWjVi8k95tj9Tf3vUN7WvtUm2BU, Notional: 151.69449917286
+		{Chain: 1, Addr: "895e01287acee57df889b96b43c641ad49a9b304f8a5619eb18098db01c6e583", Symbol: "COLLE", CoinGeckoId: "colle-ai", Decimals: 6, Price: 0.00048889},                                        // Addr: AFDzaLz3cQZNWjnWbyq2q81TLVTPbHTbfkj8qKqTk74e, Notional: 9.422162466090269
+		{Chain: 1, Addr: "897658557d211722ba678ad99276eb14d9567f0a792e3ba70c894785c742bfae", Symbol: "", CoinGeckoId: "green-satoshi-token", Decimals: 9, Price: 0.00734404},                                  // Addr: AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB, Notional: 23.965609358906594
+		{Chain: 1, Addr: "89a0fd32e8624b657a53062808b8980d227274c3f76d3ddaa49985ddf034004c", Symbol: "FTT", CoinGeckoId: "ftx-token", Decimals: 6, Price: 0.965896},                                           // Addr: AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3, Notional: 18.083497184831998
+		{Chain: 1, Addr: "89efe489cf710a97bb9346ccc2dd81a30d71b982ed3523f6bfefdd8ebd04187c", Symbol: "AHT", CoinGeckoId: "avenue-hamilton-token", Decimals: 9, Price: 0.03585085},                             // Addr: AHT1yynTv45s3P3KrRfQCVMHckdHeMVA3fteEg34xt9y, Notional: 0.17925424999999998
+		{Chain: 1, Addr: "8af8661ba22613733b7c8025128597497dea9952506b2e1b484dc840befe83f1", Symbol: "AMU", CoinGeckoId: "amulet-protocol", Decimals: 9, Price: 0.00053419},                                   // Addr: AMUwxPsqWSd1fbCGzWsrRKDcNoduuWMkdR38qPdit8G8, Notional: 14306.057804593986
+		{Chain: 1, Addr: "8b7a5bd48982a26d6436cb99d7a2c7ea90e46d38625a0bdb74e1cc5886a7b703", Symbol: "", CoinGeckoId: "apricot", Decimals: 6, Price: 0.00013166},                                              // Addr: APTtJyaRX5yGTsJU522N4VYWg3vCvSb65eam5GrPT5Rt, Notional: 0.25068064
+		{Chain: 1, Addr: "8c0e1e13db30b1678d1cf8888201ced5a3ffc5104bf903743bfb1f87a5e15589", Symbol: "GEMINI", CoinGeckoId: "gemini-2", Decimals: 6, Price: 0.00083832},                                       // Addr: ARiZfq6dK19uNqxWyRudhbM2MswLyYhVUHdndGkffdGc, Notional: 3982.419097703843
+		{Chain: 1, Addr: "8c77f3661d6b4a8ef39dbc5340eead8c3cbe0b45099840e8263d8725b587b073", Symbol: "ATLAS", CoinGeckoId: "star-atlas", Decimals: 8, Price: 0.00110374},                                      // Addr: ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx, Notional: 55583.03389066706
+		{Chain: 1, Addr: "8cbf9fdba8691b67e32eb57a784b1cae2744c6fc03ac61e450dd9331b9bdbb2e", Symbol: "AURY", CoinGeckoId: "aurory", Decimals: 9, Price: 0.116197},                                             // Addr: AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP, Notional: 676.9482541168032
+		{Chain: 1, Addr: "8cc1469b46aa9e904a5106fa3e6dd3937ac55099a1fbb62047fc1c556d88d29b", Symbol: "AUT", CoinGeckoId: "avenue-university-token", Decimals: 9, Price: 0.00546985},                           // Addr: AUT1gfMZw37wMMQqAxk89nfpjZpEEf2XSoBUd8V5ydnS, Notional: 0.06016835
+		{Chain: 1, Addr: "8ea08d02b6089b85e7fe935113e84cc3179342190a8dd4f55aad83aa4a07231b", Symbol: "MS2", CoinGeckoId: "station-this", Decimals: 6, Price: 0.00013914},                                      // Addr: AbktLHcNzEoZc9qfVgNaQhJbqDTEmLwsARY7JcTndsPg, Notional: 20537.94582860819
+		{Chain: 1, Addr: "8ea6bae83ada8cc0d7be5c2816a74e95d409603129bb2ee4fa22cc6f964a4d81", Symbol: "Cheese", CoinGeckoId: "cheese-2", Decimals: 6, Price: 0.00023875},                                       // Addr: AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn, Notional: 0.00006408646875
+		{Chain: 1, Addr: "8f286c320f95f37efe6535d91dac27779494093b14e7b427a0a07b1c7f97ccc1", Symbol: "WIT", CoinGeckoId: "what-in-tarnation", Decimals: 6, Price: 0.00032188},                                 // Addr: Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE, Notional: 3155.8498047745825
+		{Chain: 1, Addr: "8f8eda6d92c4afa64e25a02b8cc6e9f4026cf3007f48f279d842594d0328e121", Symbol: "WGC", CoinGeckoId: "wild-goat-coin", Decimals: 6, Price: 4.04896e-7},                                    // Addr: AfPeB1BDUotBeNoLv82XRDCNQcdAA1mqis3YC5SMTe7a, Notional: 8913.622867611515
+		{Chain: 1, Addr: "8fa66a1378bce9e01b9496615ed38c132c586fa36e29f6b38eace0bf7b3d4b69", Symbol: "ca", CoinGeckoId: "contract-address-meme", Decimals: 9, Price: 0.00002482},                              // Addr: AfkUkcoJ5Yt7eU9BwnF1RjRqt4fQG5zYV1eS1ytDk7FE, Notional: 1023.0362937916457
+		{Chain: 1, Addr: "90eb19122682b9b340f9afd6717bcc7770812215c2286d3d3051dff49288b17e", Symbol: "BOT", CoinGeckoId: "starbots", Decimals: 8, Price: 0.00026419},                                          // Addr: AkhdZGVbJXPuQZ53u2LrimCjkRP6ZyxG1SoM85T98eE1, Notional: 1276.8912641441314
+		{Chain: 1, Addr: "921414f6337fb743709e6fcbcc439ecc35fe8e23bc33941b1d62862b809e8d24", Symbol: "YAKU", CoinGeckoId: "yaku", Decimals: 9, Price: 0.00262357},                                             // Addr: AqEHVh8J2nXH9saV2ciZyYwPpqWFRfD2ffcq5Z8xxqm5, Notional: 0.00262357
+		{Chain: 1, Addr: "9266050ea34cd64a96e9e7be1e210ed22b2e3f5fde61861af7527c681ef2f3d3", Symbol: "renDOGE", CoinGeckoId: "rendoge", Decimals: 8, Price: 0.0176324},                                        // Addr: ArUkYE2XDKzqy77PRRGjo4wREWwqk6RXTfM9NeqzPvjU, Notional: 56.7365845704
+		{Chain: 1, Addr: "92d10feca33abd20cdb6c082b7066be3a8664e9098e5758226e82e28a0e0cc0a", Symbol: "", CoinGeckoId: "battle-of-guardians-share", Decimals: 9, Price: 0.0011079},                             // Addr: At7RLMbA6ZUjj7riyvFq2j5NHQ19aJabCju2VxLDAqso, Notional: 12.92246760384
+		{Chain: 1, Addr: "9353906bba080336a76db51391c3737194d3a31183665f4b7021e908739bc0f2", Symbol: "COST", CoinGeckoId: "costco-hot-dog", Decimals: 9, Price: 0.00075777},                                   // Addr: Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm, Notional: 3349.136648008044
+		{Chain: 1, Addr: "969c68e974ffbb74feed1af1672b9f67adb65fb382ff2ee105070fd8d60d9fe5", Symbol: "POS", CoinGeckoId: "pengyos", Decimals: 6, Price: 0.0000198},                                            // Addr: B8vV6An7xFF3bARB1cmU7TMfKNjjes2WvY7jWqiRc6K6, Notional: 1.188e-10
+		{Chain: 1, Addr: "97af730592f7e84eaf461cf72db62d036e914c7a1b1f2cd2ac35c3301efb434f", Symbol: "SNARC", CoinGeckoId: "first-ai-1951", Decimals: 6, Price: 0.00000726},                                   // Addr: BD7jNnt6uYDp9rVRBTjJhkweGxYQppRe8CXLnAJspump, Notional: 46.964675349840604
+		{Chain: 1, Addr: "9990517de4aab724b1d8e7fead02d3f25a7ad6912ba339c6b7b637d2f53d7d10", Symbol: "", CoinGeckoId: "blocto-token", Decimals: 8, Price: 0.00015994},                                         // Addr: BLT1noyNr3GttckEVrtcfC6oyK6yV1DpPgSyXbncMwef, Notional: 0.00167937
+		{Chain: 1, Addr: "99975862e4e373b0063604e03ebced38da7060839238fb7001a925fd85756c93", Symbol: "BLZE", CoinGeckoId: "solblaze", Decimals: 9, Price: 0.0002328},                                          // Addr: BLZEEuZUBVqFhj8adcCFPJvPVCiCyVmh3hkJMrU8KuJA, Notional: 0.00120704969028
+		{Chain: 1, Addr: "9a7bc3a4fa3d288a156a2a3171fd953536f10e7c92cefad8b919c709aefb2b0c", Symbol: "GROK", CoinGeckoId: "grok-6", Decimals: 9, Price: 0.069904},                                             // Addr: BQ3F72yt9FVRgYrqCVCG3YohyBesDZ9bTuhGdmQ7GNEF, Notional: 0.34951999999999994
+		{Chain: 1, Addr: "9cdd9b466af324c58b653f6eac5e78f748e55778caed00a90d61e70c061587f8", Symbol: "IO", CoinGeckoId: "io", Decimals: 8, Price: 0.78712},                                                    // Addr: BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K, Notional: 35.3448127325896
+		{Chain: 1, Addr: "9ce7be61bf4938b98cd984cbfabd66b6b4ee2fd4d02529ab27f76bcfcc88798f", Symbol: "JANI", CoinGeckoId: "jani", Decimals: 6, Price: 0.00019721},                                             // Addr: BZVZFqfUaV2uEsBU9QCcVgsLJVMy9UCcSVbryzAFpump, Notional: 2958.1499999999996
+		{Chain: 1, Addr: "9ed00a9e2b184c6c0b6d9629c2648efe56c512456e354538bb4efad332ea5f30", Symbol: "", CoinGeckoId: "deapcoin", Decimals: 6, Price: 0.00118359},                                             // Addr: BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ, Notional: 3.55077
+		{Chain: 1, Addr: "a084edb439cccf78ff5db4936074779133cc49d8058731fb9ad6d982f57f899e", Symbol: "BOBO", CoinGeckoId: "bobo-the-bear", Decimals: 6, Price: 2.9549e-8},                                     // Addr: Bobo54AXWLGQWqCK6EZdrBQz4bKJXeBE9ExD1HJGbXed, Notional: 0.41623138478627064
+		{Chain: 1, Addr: "a2b04fe6f429ea28555be7b6dbba72479b6694ea96e93082996e9be877bc920a", Symbol: "TOX", CoinGeckoId: "trollbox", Decimals: 9, Price: 0.0000262},                                           // Addr: Bx4ykEMurwPQBAFNvthGj73fMBVTvHa8e9cbAyaK4ZSh, Notional: 0.0005239999999999999
+		{Chain: 1, Addr: "a43ee344a6ae6a837ced5766eb6183dad04fbe9b15e49e1dcd89fe0937fe930f", Symbol: "AQUARIUS", CoinGeckoId: "aquarius-2", Decimals: 6, Price: 0.00050054},                                   // Addr: C49Ut3om3QFTDrMZ5Cr8VcTKPpHDcQ2Fv8mmuJHHigDt, Notional: 2637.613543071129
+		{Chain: 1, Addr: "a5854b583d61bd674064522d1d3017a389990e96a9c244b9c57f0dac1cde4ea8", Symbol: "C98", CoinGeckoId: "coin98", Decimals: 6, Price: 0.051361},                                              // Addr: C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9, Notional: 26.965798085106996
+		{Chain: 1, Addr: "a790b593d8c348fba977d377f67f86214cb50662ae0e1410776d5b92611aec13", Symbol: "SOLX", CoinGeckoId: "soldex", Decimals: 9, Price: 0.00024145},                                           // Addr: CH74tuRLTYcxG7qNJCsV9rghfLXJCQJbsu7i52a8F1Gn, Notional: 0.00629214378045
+		{Chain: 1, Addr: "a832b1347f65932aa5a8b8e3b6f7854a2972157d0375097d599eabac9685a95c", Symbol: "", CoinGeckoId: "gari-network", Decimals: 9, Price: 0.00281102},                                         // Addr: CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks, Notional: 58582.91405862961
+		{Chain: 1, Addr: "a9b7b4c191b9fcd8a101e517de4a2bc44ae7df4ff6595f62cb4bf9c5c3b01fd2", Symbol: "CRWNY", CoinGeckoId: "crowny-token", Decimals: 6, Price: 0.00122073},                                    // Addr: CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1, Notional: 2.20585912098657
+		{Chain: 1, Addr: "aa77c1f5d0d2c07ce7075e31d348ca1c0965bb287be13984dec1c5615bf22665", Symbol: "CUSD", CoinGeckoId: "coin98-dollar", Decimals: 6, Price: 0.814205},                                      // Addr: CUSDvqAQLbt7fRofcmV2EXfPA2t36kzj7FjzdmqDiNQL, Notional: 1.729743511685
+		{Chain: 1, Addr: "aeeafcf3ec1126c4abb764352b5b2959152bf9c3aa2237802092efc84f8e04ca", Symbol: "CANCER", CoinGeckoId: "cancer", Decimals: 6, Price: 0.00049546},                                         // Addr: CmomKM8iPKRSMN7y1jqyW1QKj5bGoZmbvNZXWBJSUdnZ, Notional: 2446.3534296726866
+		{Chain: 1, Addr: "b41652c46fff703ca2d2d9660dc6e9c2f9eb59cbd77ba07d1edf3548c30e4fac", Symbol: "CAIR", CoinGeckoId: "crypto-ai-robo", Decimals: 6, Price: 0.00009121},                                   // Addr: D7z8T6FadmqDYGHy3LsMN3bzfrABmvVUnAFUrKfuWZ8F, Notional: 0.02873115
+		{Chain: 1, Addr: "b4f7fddc746c9c6b8872c4a21efe2817409c7c51a20c286e32162bbca75b8400", Symbol: "DBR", CoinGeckoId: "debridge", Decimals: 6, Price: 0.01400029},                                          // Addr: DBRiDgJAMsM95moTzJs7M9LnkGErpbv9v6CUR1DXnUu5, Notional: 0.01400029
+		{Chain: 1, Addr: "b5cbeacdc2c4b9172fc2055facc3b365eacb144ec670fcd02689fc9c29a252be", Symbol: "KWEEN", CoinGeckoId: "kween", Decimals: 6, Price: 0.00256352},                                           // Addr: DEf93bSt8dx58gDFCcz4CwbjYZzjwaRBYAciJYLfdCA9, Notional: 7333.751725885528
+		{Chain: 1, Addr: "b5ce441b09fe68fbcace88868d120ae3dbe8969465c859e1abaeb390d966d890", Symbol: "Odie", CoinGeckoId: "odie-on-sol", Decimals: 6, Price: 0.00001495},                                      // Addr: DEhDXhtUFuz6Uodhde3rznGbVbdiECahp1kTHnFpsna3, Notional: 0.031395
+		{Chain: 1, Addr: "b5f7e08966fa2f997abc90d7a7cde1bc733f567b9eafc3007e80a3174726b6f6", Symbol: "", CoinGeckoId: "defi-land", Decimals: 9, Price: 0.00019132},                                            // Addr: DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh, Notional: 4.062518662983373
+		{Chain: 1, Addr: "b7db4e83eb727f1187bd7a50303f5b4e4e943503da8571ad6564a51131504792", Symbol: "", CoinGeckoId: "wrapped-usdt-allbridge-from-polygon", Decimals: 6, Price: 0.99903},                     // Addr: DNhZkUaxHXYvpxZ7LNnHtss8sQgdAfd1ZYS1fB7LKWUZ, Notional: 42.153824089589996
+		{Chain: 1, Addr: "b814cbaa6004e889059e49841809b54c120f6d17c37cfaace4d28d394d56f67c", Symbol: "SKBDI", CoinGeckoId: "skibidi-toilet-2", Decimals: 9, Price: 0.04460597},                                // Addr: DPaQfq5sFnoqw2Sh9WMmmASFL9LNu6RdtDqwE1tab2tB, Notional: 0.04460597
+		{Chain: 1, Addr: "b953b5f8dd5457a2a0f0d41903409785b9d84d4045614faa4f505ee132dcd769", Symbol: "DUST", CoinGeckoId: "dust-protocol", Decimals: 9, Price: 0.03331026},                                    // Addr: DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ, Notional: 310295.5201917302
+		{Chain: 1, Addr: "ba9c1304d72c97ebb7070767351b86a218c179c897fb75727540e0e8522c3626", Symbol: "DAWAE", CoinGeckoId: "dawae-2", Decimals: 9, Price: 0.00021324},                                         // Addr: DZSs9nHSr9BBunLNWd6PDstesJ4PBLMFVK1GbZ9urYNZ, Notional: 29461.156315609038
+		{Chain: 1, Addr: "bbec677bca5169fbcaa1dccd44ef4badd3fe4d53bf3c9610379afe527256660a", Symbol: "SOLNIC", CoinGeckoId: "solnic", Decimals: 6, Price: 0.00501231},                                         // Addr: DeaKMzAeZja3Mh5okZE6WUvygLP3Lfuvm6Rg78HqXTz9, Notional: 21764.251395525982
+		{Chain: 1, Addr: "bc07c56e60ad3d3f177382eac6548fba1fd32cfd90ca02b3e7cfa185fdce7398", Symbol: "Bonk", CoinGeckoId: "bonk", Decimals: 5, Price: 0.00001667},                                             // Addr: DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263, Notional: 9795430.258879706
+		{Chain: 1, Addr: "bfc5f3a72f20be422f69837df545b8a5c992a9cb3e4687f61030f55ae9e3b235", Symbol: "CRP", CoinGeckoId: "cropperfinance", Decimals: 9, Price: 0.00054392},                                    // Addr: DubwWZNWiNGMMeeQHPnMATNj77YZPZSAz2WVR5WjLJqz, Notional: 4.296968e-10
+		{Chain: 1, Addr: "c206c5c565936e75a63aca8d62d7f2c27c21572474d7dd13e38424b0377f17af", Symbol: "ADA", CoinGeckoId: "ada-the-dog", Decimals: 9, Price: 0.00022615},                                       // Addr: E4Q5pLaEiejwEQHcM9GeYSQfMyGy8DJ4bPWgeYthn24v, Notional: 0.0006784499999999999
+		{Chain: 1, Addr: "c261d86cf5cf877128ba1f5652e5f3dda599270c1556a15bc0a9aacf8063e563", Symbol: "RIN", CoinGeckoId: "aldrin", Decimals: 9, Price: 0.00274758},                                            // Addr: E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp, Notional: 0.002335443
+		{Chain: 1, Addr: "c2667f39a3a7b6febb2f995eb4d1b739f45fe2edd645403c3e52e677e6bd6852", Symbol: "WOO", CoinGeckoId: "woo-network", Decimals: 6, Price: 0.079828},                                         // Addr: E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy, Notional: 159.43081878276
+		{Chain: 1, Addr: "c28ee4128851e187510f75f9d61703da621ecbbb4b5b6e0d4b1fc21942f309a0", Symbol: "DGLN", CoinGeckoId: "dogelana", Decimals: 9, Price: 0.00000679},                                         // Addr: E6UU5M1z4CvSAAF99d9wRoXsasWMEXsvHrz3JQRXtm2X, Notional: 0.9704322366851
+		{Chain: 1, Addr: "c3bc53a848c67ab3799f20a745a51e51c991946690c7c8a4b9a480aa29b07b94", Symbol: "RPILL", CoinGeckoId: "red-pill-2", Decimals: 7, Price: 2.01909e-7},                                      // Addr: EB54Nt1ydAgMR3edpaXEwb16R8TfF1enJ7zaYSefo7wH, Notional: 25009.117273254524
+		{Chain: 1, Addr: "c44051a911b54c7ecffc7ee0b0a40af48b328ae755a99533c8402cb26df43807", Symbol: "MOODENG", CoinGeckoId: "moo-deng", Decimals: 6, Price: 0.203937},                                        // Addr: ED5nyyWEzpPPiWimP8vYm7sD7TD3LAt3Q3gRTWHzPJBY, Notional: 24304.558580104742
+		{Chain: 1, Addr: "c52e93ce650a3e02a70273e400132ed89b3bd67f2b839d4848593282bdec3ea0", Symbol: "", CoinGeckoId: "bitmon", Decimals: 9, Price: 0.00004538},                                               // Addr: EGiWZhNk3vUNJr35MbL2tY5YD6D81VVZghR2LgEFyXZh, Notional: 0.0743617047034104
+		{Chain: 1, Addr: "c59cade70266477a5028970d5d9680bb9f1602dd393d05e3cfa8775ea818e6f8", Symbol: "", CoinGeckoId: "bozo-hybrid", Decimals: 9, Price: 0.00363594},                                          // Addr: EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q, Notional: 0.00010066314410459999
+		{Chain: 1, Addr: "c6fa7af3bedbad3a3d65f36aabc97431b1bbe4c2d2f6e0e47ca60203452f5d61", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v, Notional: 3102647.0399086927
+		{Chain: 1, Addr: "c7dc3552acd085ffa989b81b21e5e0bcbccbb1ec87835f0db12fabbad666ddf6", Symbol: "MEDIA", CoinGeckoId: "media-network", Decimals: 6, Price: 0.755892},                                     // Addr: ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs, Notional: 1.5454060761600001
+		{Chain: 1, Addr: "c9a11f01cc857e5febddff9fd9e04cc82f44ec58ec6f19e23f5e7cca07ffb041", Symbol: "PAI", CoinGeckoId: "parrot-usd", Decimals: 6, Price: 0.968736},                                          // Addr: Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS, Notional: 38.74944
+		{Chain: 1, Addr: "ca4d39964c9cb5f9790d0a12969f60fd9724936284ea4a12daded42ddfa69c5d", Symbol: "FIDA", CoinGeckoId: "bonfida", Decimals: 6, Price: 0.066453},                                            // Addr: EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp, Notional: 2.191375924584
+		{Chain: 1, Addr: "cc1bcd1d67c75bc278395ed463e45967941dd0ee02cc7327100d02c8730d1637", Symbol: "TAURUS", CoinGeckoId: "taurus-2", Decimals: 6, Price: 0.00068752},                                       // Addr: EjkkxYpfSwS6TAtKKuiJuNMMngYvumc1t1v9ZX1WJKMp, Notional: 2954.5306582934963
+		{Chain: 1, Addr: "ce010e60afedb22717bd63192f54145a3f965a33bb82d2c7029eb2ce1e208264", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                    // Addr: Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB, Notional: 582244.432362
+		{Chain: 1, Addr: "ceaf14fcf7cb2ed5003289247656f3427aa86c1cee4185effcc253e7a8fe403a", Symbol: "LAIKA", CoinGeckoId: "the-soldog", Decimals: 6, Price: 0.00000205},                                      // Addr: Euoq6CyQFCjCVSLR9wFaUPDW19Y6ZHwEcJoZsEi643i1, Notional: 0.0006355
+		{Chain: 1, Addr: "ced51ea8ae7d7670ce24e31fa7cc1f731ee3e02b91c017a37af71968cb17a290", Symbol: "CHADCAT", CoinGeckoId: "chad-cat", Decimals: 9, Price: 0.00004668},                                      // Addr: EvPUFsBikS1B3GpbmVvUWAc4DXaBXD4zLDER9SVSEF27, Notional: 0.029212096850406002
+		{Chain: 1, Addr: "cf3be585daf0d7aa080054c5ff622f468dbb2f49d086c5ca3230b60529e06103", Symbol: "", CoinGeckoId: "wrapped-cusd-allbridge-from-celo", Decimals: 9, Price: 0.995695},                       // Addr: EwxNF8g9UfmsJVcZFTpL9Hx5MCkoQFoJi6XNWzKf1j8e, Notional: 1.6926815
+		{Chain: 1, Addr: "cfc61bb2ec4f1577d9b77f7d25db59555fa791bcea427ce294a390e3e127f82e", Symbol: "VIRGO", CoinGeckoId: "virgo-2", Decimals: 6, Price: 0.00050433},                                         // Addr: Ez4bst5qu5uqX3AntYWUdafw9XvtFeJ3gugytKKbSJso, Notional: 2593.1889266630756
+		{Chain: 1, Addr: "d670e7f1810e56d73423f0e3ccb3c5e6218211acda522599c494f893113305ab", Symbol: "SMOG", CoinGeckoId: "smog", Decimals: 6, Price: 0.00958167},                                             // Addr: FS66v5XYtJAFo14LiPz5HT93EUMAHmYipCfQhLpU4ss8, Notional: 622423.9239459515
+		{Chain: 1, Addr: "d6c679aa7652867ebb3221cd90f5cf1d7f1b20e3bfd713c95de54bbdd6df2172", Symbol: "wBIRD", CoinGeckoId: "bird-money", Decimals: 9, Price: 0.768407},                                        // Addr: FTPnEQ3NfRRZ9tvmpDW6JFrvweBE5sanxnXSpJL1dvbB, Notional: 0.1536814
+		{Chain: 1, Addr: "d6de2876953718f8ae61f7a6da3b0869cc770dbe30d86458f46467d8ed1bf499", Symbol: "", CoinGeckoId: "synex-coin", Decimals: 9, Price: 0.00037006},                                           // Addr: FTkj421DxbS1wajE74J34BJ5a1o9ccA97PkK6mYq9hNQ, Notional: 0.018503000000000002
+		{Chain: 1, Addr: "d813ffacd702778f0e56a4224bc22b7c2644dfa713fe929fec09c5fae093a802", Symbol: "MC", CoinGeckoId: "tap-fantasy-mc", Decimals: 9, Price: 0.086592},                                       // Addr: FYUkUybywqUUyrUwiAezbvhTp2DUgx1eg8tQNiKkXqJ9, Notional: 0.0072982075584
+		{Chain: 1, Addr: "d9299d4dd5f2e8021a5f9d220ee6499ed7ce916b4455042a172fd08cee33065e", Symbol: "TGT", CoinGeckoId: "twirl-governance-token", Decimals: 6, Price: 0.00206801},                            // Addr: FciGvHj9FjgSGgCBF1b9HY814FM9D28NijDd5SJrKvPo, Notional: 0.010546851
+		{Chain: 1, Addr: "d9f5f028b2262005f14736d01e0115d02ecbf82513a58b8c0525c5537a186f41", Symbol: "BOO", CoinGeckoId: "boo", Decimals: 6, Price: 2.25488e-10},                                              // Addr: FfpyoV365c7iR8QQg5NHGCXQfahbqzY67B3wpzXkiLXr, Notional: 0.0009470496
+		{Chain: 1, Addr: "db532dd1df8e6c87ca70695ddf92f8d86e621d0d86de69c3058de9b29ee22647", Symbol: "", CoinGeckoId: "monkeyball", Decimals: 6, Price: 0.00252492},                                           // Addr: Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A, Notional: 0.35412393352632
+		{Chain: 1, Addr: "db9f5cc7f4249010132350e743d99e2a30f0a264b8b345cf23622f0e4eca9d14", Symbol: "SYP", CoinGeckoId: "sypool", Decimals: 9, Price: 0.00020889},                                            // Addr: FnKE9n6aGjQoNWRBZXy4RW6LZVao7qwBonUbiD7edUmZ, Notional: 1384.2561228222899
+		{Chain: 1, Addr: "dbe7c49c3d365abe845bb853bf8a6e8a42743847fd0611ffba1a410b3f22639e", Symbol: "FORGE", CoinGeckoId: "blocksmith-labs-forge", Decimals: 9, Price: 0.00396194},                           // Addr: FoRGERiW7odcCBGU1bztZi16osPBHjxharvDathL5eds, Notional: 0.005123731163622999
+		{Chain: 1, Addr: "dbef5aa1e0f0042edd619a2f68fd3e4df833325dd2037fcc6bb3b6ed0cb7508e", Symbol: "", CoinGeckoId: "famous-fox-federation", Decimals: 0, Price: 0.00262265},                                // Addr: FoXyMu5xwXre7zEoSvzViRk3nGawHUp9kUh97y2NDhcq, Notional: 12.4418516
+		{Chain: 1, Addr: "dd40a2f6f423e4c3990a83eac3d9d9c1fe625b36cbc5e4a6d553544552a867ee", Symbol: "BRZ", CoinGeckoId: "brz", Decimals: 4, Price: 0.178599},                                                 // Addr: FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD, Notional: 4607.145644187301
+		{Chain: 1, Addr: "e24bdeaeffa04f43b8771a420b80061cf093260db29ac9c8ead65058a97f7857", Symbol: "", CoinGeckoId: "genopets", Decimals: 9, Price: 0.065715},                                               // Addr: GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz, Notional: 8.6086478418135
+		{Chain: 1, Addr: "e2975e097997188b8c83cf5b64f28ff42b1ae579b1b6747857bf722150de7fb0", Symbol: "GOFX", CoinGeckoId: "goosefx", Decimals: 9, Price: 0.00184441},                                          // Addr: GFX1ZjR2P15tmrSwow6FjyDYcEkoFb4p4gJCpLBjaxHD, Notional: 0.00368882
+		{Chain: 1, Addr: "e334cd4a3826672ea4c5394a042929c94638ecee0deeae37fbd41e396d06fc77", Symbol: "SOLAPE", CoinGeckoId: "solape-token", Decimals: 9, Price: 0.00013401},                                   // Addr: GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN, Notional: 0.00013401
+		{Chain: 1, Addr: "e350770814014371e2277d39b550570dd02e77db5f266e58f68f023c277f14af", Symbol: "ily", CoinGeckoId: "iiii-lovvv-youuuu", Decimals: 6, Price: 0.00036838},                                 // Addr: GJLiErro8cbWeDngDMWJug9dkwwckYZg4Lvb79F3pump, Notional: 16.45997675885616
+		{Chain: 1, Addr: "e66b5c6e86ec048a73a370e0588e1dcbaa16f532b8e5790eb830386b3ae947fc", Symbol: "", CoinGeckoId: "galaxy-war", Decimals: 6, Price: 0.00011302},                                           // Addr: GWTipxSJVPmmW2wCjBdkbnEJbCRCyrhL2x9zuHRPPTj1, Notional: 1.16168541313736
+		{Chain: 1, Addr: "e67a4e87ce4d1df99623ee52b47b2675bfa1dc3c875eac60533c6e7cc6daee27", Symbol: "", CoinGeckoId: "1safu", Decimals: 0, Price: 5.329e-9},                                                  // Addr: GWgwUUrgai3BFeEJZp7bdsBSYiuDqNmHf9uRusWsf3Yi, Notional: 0.000647766595
+		{Chain: 1, Addr: "e8aea53120492d4b007a41f4fea777ac914c36dc21f944614e9a96ebe0a18367", Symbol: "SOLPAD", CoinGeckoId: "solpad-finance", Decimals: 9, Price: 0.00000501},                                 // Addr: GfJ3Vq2eSTYf1hJP6kKLE9RT6u7jF9gNszJhZwo5VPZp, Notional: 0.00023357990350230003
+		{Chain: 1, Addr: "e92f2b9eb212cdc7941a829712babcb7a6697f8b94710f05ba381666130d96d1", Symbol: "ARIES", CoinGeckoId: "aries", Decimals: 6, Price: 0.0004938},                                            // Addr: GhFiFrExPY3proVF96oth1gESWA5QPQzdtb8cy8b1YZv, Notional: 2522.763944027841
+		{Chain: 1, Addr: "e9e5418ae527093d6a777adabea125d9681dd77643ac339e6ec487865c928672", Symbol: "$PTRUMP", CoinGeckoId: "pepe-trump", Decimals: 6, Price: 0.00074914},                                    // Addr: Gk2kRrwNMBU4Dn9JhC1Dks8G5X9nqi4ZE5jMvK6bdgEd, Notional: 19009.322357264577
+		{Chain: 1, Addr: "eac40dce1cfccb5ca30a878aebb3025763a8d3f0c4f15c3e858b98899982b71f", Symbol: "KSG", CoinGeckoId: "king-sugar-glider", Decimals: 6, Price: 0.00001781},                                 // Addr: GoRnxWR5h4HMYAbCWhfPxsTF6N27jTRkBDFpAsvLpump, Notional: 2.9367037770040105
+		{Chain: 1, Addr: "eb93117f10dd2e3ff96c12c11267f8654eb1050d05a55eaa08ab80a77c409d1e", Symbol: "GRASS", CoinGeckoId: "grass", Decimals: 9, Price: 2.05},                                                 // Addr: Grass7B4RdKfBCjTKgSqnXkqjwiGvQyFbuSCUJr3XXjs, Notional: 0.012525499999999998
+		{Chain: 1, Addr: "ebc7380b4b2467a56f247d9d83635f45df774bd341fe028ef56b45607bfe256c", Symbol: "DXL", CoinGeckoId: "dexlab", Decimals: 6, Price: 0.0003502},                                             // Addr: GsNzxJfFn6zQdJGeYsupJWzUAm57Ba7335mfhWvFiE9Z, Notional: 0.0000015520864000000001
+		{Chain: 1, Addr: "ebd47511adbd4c48202bc2d335138ce08fca42964e99e08126d8cdd78f974985", Symbol: "gSAIL", CoinGeckoId: "solanasail-governance-token", Decimals: 9, Price: 0.00589147},                     // Addr: Gsai2KN28MTGcSZ1gKYFswUpFpS7EM9mvdR9c8f6iVXJ, Notional: 0.01767441
+		{Chain: 1, Addr: "ecc960fbf1d75d4051dc9833005626b0556325ab2a1d2eaeba5e1241e479a699", Symbol: "LLD", CoinGeckoId: "liberland-lld", Decimals: 8, Price: 1.95},                                           // Addr: GwKKPsJdY5oWMJ8RReWLcvb82KzW6FKy2bKoYW7kHr16, Notional: 2.703751791
+		{Chain: 1, Addr: "edcc10dafe9e4643d0397fb1ffa280b7a3c28090ebfe4816c3e0f39b9d7ca411", Symbol: "SBONK", CoinGeckoId: "shibonk-311f81df-a4ea-4f31-9e61-df0af8211bd7", Decimals: 9, Price: 0.50232},       // Addr: H1G6sZ1WDoMmMCFqBKAbg9gkQPCo1sKQtaJWz9dHmqZr, Notional: 0.8539078882152
+		{Chain: 1, Addr: "f204ae4a202016d4de45496d2b0becaa650f1e9a58c02426f4190166488f4d9c", Symbol: "", CoinGeckoId: "pip", Decimals: 9, Price: 0.0022965},                                                   // Addr: HHjoYwUp5aU6pnrvN4s2pwEErwXNZKhxKGYjRJMoBjLw, Notional: 0.7762399649999999
+		{Chain: 1, Addr: "f207dc9bd5545f9674a6b087ef55a585e8580a192f412de0890e91f735201049", Symbol: "clAPT", CoinGeckoId: "cloned-aptos", Decimals: 8, Price: 3.67},                                          // Addr: HHncifGW3yJyaW2fRRfBYAawnD9ogbsWM5PccFA4GHSx, Notional: 0.5642172488999999
+		{Chain: 1, Addr: "f23cba7173364712aaa6114393f2c187b8d8b5194abaa872ada605fa8820b61f", Symbol: "", CoinGeckoId: "atlas-dex", Decimals: 9, Price: 0.00042941},                                            // Addr: HJbNXx2YMRxgfUJ6K4qeWtjatMK5KYQT1QnsCdDWywNv, Notional: 0.039335061644868004
+		{Chain: 1, Addr: "f51829ba389a574812109c6de6051e77c7a003ba666a26d13d30c51c51f7e94e", Symbol: "", CoinGeckoId: "visiongame", Decimals: 9, Price: 0.00063191},                                           // Addr: HVkFqcMHevVPb4XKrf4XowjEaVVsBoqJ2U1EG59Dfk5j, Notional: 21.969313991898908
+		{Chain: 1, Addr: "f5a8417cdb387bd0c408b600e0a4662f155aa37527e6376bc28254deea6e1e48", Symbol: "$DEFI", CoinGeckoId: "de-fi", Decimals: 6, Price: 0.00270398},                                           // Addr: HXwh9i8D1LKkVK8WfMjFPyiyVZ4Auh9aLD5ut4LCRqqR, Notional: 168.76014814137972
+		{Chain: 1, Addr: "f5edec8471c75624ebc4079a634326d96a689e6157d79abe8f5a6f94472853bc", Symbol: "PYTH", CoinGeckoId: "pyth-network", Decimals: 6, Price: 0.121263},                                       // Addr: HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3, Notional: 369353.4237567052
+		{Chain: 1, Addr: "f79a6689e1ee9439000424c51198bfa4f0510ea523204ce8ec639c3fa8ebb916", Symbol: "", CoinGeckoId: "cryowar-token", Decimals: 9, Price: 0.00126976},                                        // Addr: HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo, Notional: 2.53952
+		{Chain: 1, Addr: "f926de74d018c7be81c476f359aaacba61b762767977d2565c9eb57682011706", Symbol: "PSOL", CoinGeckoId: "parasol-finance", Decimals: 7, Price: 0.00417566},                                  // Addr: Hmatmu1ktLbobSvim94mfpZmjL5iiyoM1zidtXJRAdLZ, Notional: 0.00417566
+		{Chain: 1, Addr: "faf2d6df73cb4778b625966d4fba883fd424a80497d5e31c934352ade1d1bdc9", Symbol: "", CoinGeckoId: "dead-knight", Decimals: 9, Price: 0.00001716},                                          // Addr: HtbhBYdcfXbbD2JiH6jtsTt2m2FXjn7h4k6iXfz98k5W, Notional: 0.008043749999999999
+		{Chain: 1, Addr: "fcd141e9832caf10ad917495ca0f271b5b293cd47027ea737007ed40eb39a0bd", Symbol: "JitoSOL", CoinGeckoId: "jito-staked-sol", Decimals: 9, Price: 189.01},                                   // Addr: J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn, Notional: 21533.7603109774
+		{Chain: 1, Addr: "fd86d81bd924f3cfc702ea40b8d30705f75c387a23d9a8e22ff1d6e52a8a3b54", Symbol: "SCORPIO", CoinGeckoId: "scorpio", Decimals: 6, Price: 0.0005079},                                        // Addr: J4fQTRN13MKpXhVE74t99msKJLbrjegjEgLBnzEv2YH1, Notional: 2635.663892423349
+		{Chain: 1, Addr: "fe41912ceb0b2cb23badaac80e3b41d42cbe0e0c999ccdec5cf0d70bc3e2ccd1", Symbol: "", CoinGeckoId: "mongoosecoin", Decimals: 9, Price: 3.4275e-8},                                          // Addr: J7WYVzFNynk9D28eBCccw2EYkygygiLDCVCabV7CupWL, Notional: 0.0000068550000000000004
+		{Chain: 2, Addr: "0000000000000000000000000001a500a6b18995b03f44bb040a5ffc28e45cb0", Symbol: "OLAS", CoinGeckoId: "autonolas", Decimals: 18, Price: 0.277724},                                         // Addr: 0x0001a500a6b18995b03f44bb040a5ffc28e45cb0, Notional: 363820.3894454282
+		{Chain: 2, Addr: "000000000000000000000000009178997aff09a67d4caccfeb897fb79d036214", Symbol: "1SOL", CoinGeckoId: "1sol", Decimals: 18, Price: 0.00325698},                                            // Addr: 0x009178997aff09a67d4caccfeb897fb79d036214, Notional: 303967.22820087796
+		{Chain: 2, Addr: "00000000000000000000000000a8b738e453ffd858a7edf03bccfe20412f0eb0", Symbol: "ALBT", CoinGeckoId: "allianceblock", Decimals: 18, Price: 0.00020896},                                   // Addr: 0x00a8b738e453ffd858a7edf03bccfe20412f0eb0, Notional: 0.0304931729374464
+		{Chain: 2, Addr: "00000000000000000000000000c5ca160a968f47e7272a0cfcda36428f386cb6", Symbol: "USDEBT", CoinGeckoId: "usdebt", Decimals: 18, Price: 2.674e-9},                                          // Addr: 0x00c5ca160a968f47e7272a0cfcda36428f386cb6, Notional: 28.57472378604017
+		{Chain: 2, Addr: "00000000000000000000000000e679ba63b509182c349f5614f0a07cdd0ce0c5", Symbol: "DAMEX", CoinGeckoId: "damex-token", Decimals: 18, Price: 0.00007997},                                    // Addr: 0x00e679ba63b509182c349f5614f0a07cdd0ce0c5, Notional: 0.047982
+		{Chain: 2, Addr: "000000000000000000000000030ba81f1c18d280636f32af80b9aad02cf0854e", Symbol: "aWETH", CoinGeckoId: "aave-weth", Decimals: 18, Price: 2588.46},                                         // Addr: 0x030ba81f1c18d280636f32af80b9aad02cf0854e, Notional: 776.5717535184
+		{Chain: 2, Addr: "0000000000000000000000000316eb71485b0ab14103307bf65a021042c6d380", Symbol: "HBTC", CoinGeckoId: "huobi-btc", Decimals: 18, Price: 3364.25},                                          // Addr: 0x0316eb71485b0ab14103307bf65a021042c6d380, Notional: 364.5622076575
+		{Chain: 2, Addr: "00000000000000000000000003ab458634910aad20ef5f1c8ee96f1d6ac54919", Symbol: "RAI", CoinGeckoId: "rai", Decimals: 18, Price: 2.95},                                                    // Addr: 0x03ab458634910aad20ef5f1c8ee96f1d6ac54919, Notional: 8.850000000000001
+		{Chain: 2, Addr: "00000000000000000000000003be5c903c727ee2c8c4e9bc0acc860cca4715e2", Symbol: "CAPS", CoinGeckoId: "coin-capsule", Decimals: 18, Price: 0.00110793},                                    // Addr: 0x03be5c903c727ee2c8c4e9bc0acc860cca4715e2, Notional: 215.16099410782476
+		{Chain: 2, Addr: "000000000000000000000000046eee2cc3188071c02bfc1745a6b17c656e3f3d", Symbol: "RLB", CoinGeckoId: "rollbit-coin", Decimals: 18, Price: 0.059749},                                       // Addr: 0x046eee2cc3188071c02bfc1745a6b17c656e3f3d, Notional: 204.34158
+		{Chain: 2, Addr: "00000000000000000000000004815313e9329e8905a77251a1781cfa7934259a", Symbol: "HOOD", CoinGeckoId: "wagmicatgirlkanye420etfmoon1000x", Decimals: 18, Price: 0.00000421},                // Addr: 0x04815313e9329e8905a77251a1781cfa7934259a, Notional: 13277.488804724366
+		{Chain: 2, Addr: "00000000000000000000000004969cd041c0cafb6ac462bd65b536a5bdb3a670", Symbol: "wOMI", CoinGeckoId: "wrapped-ecomi", Decimals: 18, Price: 0.00042912},                                   // Addr: 0x04969cd041c0cafb6ac462bd65b536a5bdb3a670, Notional: 8.056597330938846
+		{Chain: 2, Addr: "00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6", Symbol: "pxETH", CoinGeckoId: "dinero-staked-eth", Decimals: 18, Price: 2582.58},                                 // Addr: 0x04c154b66cb340f3ae24111cc767e0184ed00cc6, Notional: 14412.730494161999
+		{Chain: 2, Addr: "000000000000000000000000054d64b73d3d8a21af3d764efd76bcaa774f3bb2", Symbol: "PPAY", CoinGeckoId: "plasma-finance", Decimals: 18, Price: 0.00025769},                                  // Addr: 0x054d64b73d3d8a21af3d764efd76bcaa774f3bb2, Notional: 2536.494511688232
+		{Chain: 2, Addr: "00000000000000000000000005d3606d5c81eb9b7b18530995ec9b29da05faba", Symbol: "TOMOE", CoinGeckoId: "tomoe", Decimals: 18, Price: 0.177856},                                            // Addr: 0x05d3606d5c81eb9b7b18530995ec9b29da05faba, Notional: 17785.6
+		{Chain: 2, Addr: "00000000000000000000000006450dee7fd2fb8e39061434babcfc05599a6fb8", Symbol: "XEN", CoinGeckoId: "xen-crypto", Decimals: 18, Price: 4.242e-8},                                         // Addr: 0x06450dee7fd2fb8e39061434babcfc05599a6fb8, Notional: 0.0004246242
+		{Chain: 2, Addr: "00000000000000000000000006af07097c9eeb7fd685c692751d5c66db49c215", Symbol: "CHAI", CoinGeckoId: "chai", Decimals: 18, Price: 1.17},                                                  // Addr: 0x06af07097c9eeb7fd685c692751d5c66db49c215, Notional: 8964450.88153504
+		{Chain: 2, Addr: "00000000000000000000000006e0feb0d74106c7ada8497754074d222ec6bcdf", Symbol: "BTB", CoinGeckoId: "bitball", Decimals: 18, Price: 0.00008804},                                          // Addr: 0x06e0feb0d74106c7ada8497754074d222ec6bcdf, Notional: 792.36
+		{Chain: 2, Addr: "0000000000000000000000000763fdccf1ae541a5961815c0872a8c5bc6de4d7", Symbol: "SUKU", CoinGeckoId: "suku", Decimals: 18, Price: 0.03008133},                                            // Addr: 0x0763fdccf1ae541a5961815c0872a8c5bc6de4d7, Notional: 0.7080793798244526
+		{Chain: 2, Addr: "000000000000000000000000081131434f93063751813c619ecca9c4dc7862a3", Symbol: "DAR", CoinGeckoId: "mines-of-dalarnia", Decimals: 6, Price: 0.03441202},                                 // Addr: 0x081131434f93063751813c619ecca9c4dc7862a3, Notional: 36.66253207451222
+		{Chain: 2, Addr: "00000000000000000000000008389495d7456e1951ddf7c3a1314a4bfb646d8b", Symbol: "CRPT", CoinGeckoId: "crypterium", Decimals: 18, Price: 0.00336054},                                      // Addr: 0x08389495d7456e1951ddf7c3a1314a4bfb646d8b, Notional: 0.11425836
+		{Chain: 2, Addr: "00000000000000000000000008d967bb0134f2d07f7cfb6e246680c53927dd30", Symbol: "MATH", CoinGeckoId: "math", Decimals: 18, Price: 0.105831},                                              // Addr: 0x08d967bb0134f2d07f7cfb6e246680c53927dd30, Notional: 527941.5583732061
+		{Chain: 2, Addr: "000000000000000000000000090185f2135308bad17527004364ebcc2d37e5f6", Symbol: "SPELL", CoinGeckoId: "spell-token", Decimals: 18, Price: 0.00053216},                                    // Addr: 0x090185f2135308bad17527004364ebcc2d37e5f6, Notional: 0.00053216
+		{Chain: 2, Addr: "00000000000000000000000009a3ecafa817268f77be1283176b946c4ff2e608", Symbol: "MIR", CoinGeckoId: "mirror-protocol", Decimals: 18, Price: 0.02046236},                                  // Addr: 0x09a3ecafa817268f77be1283176b946c4ff2e608, Notional: 179.0975352973967
+		{Chain: 2, Addr: "0000000000000000000000000a638f07acc6969abf392bb009f216d22adea36d", Symbol: "BKN", CoinGeckoId: "brickken", Decimals: 18, Price: 0.285515},                                           // Addr: 0x0a638f07acc6969abf392bb009f216d22adea36d, Notional: 1457122.3772648035
+		{Chain: 2, Addr: "0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f", Symbol: "gOHM", CoinGeckoId: "governance-ohm", Decimals: 18, Price: 5267.74},                                     // Addr: 0x0ab87046fbb341d058f17cbc4c1133f25a20a52f, Notional: 880.9657226685999
+		{Chain: 2, Addr: "0000000000000000000000000b61c4f33bcdef83359ab97673cb5961c6435f4e", Symbol: "EARN", CoinGeckoId: "hold-2", Decimals: 18, Price: 0.0029567},                                           // Addr: 0x0b61c4f33bcdef83359ab97673cb5961c6435f4e, Notional: 17.279171122550018
+		{Chain: 2, Addr: "0000000000000000000000000bc529c00c6401aef6d220be8c6ea1667f6ad93e", Symbol: "YFI", CoinGeckoId: "yearn-finance", Decimals: 18, Price: 5273.72},                                       // Addr: 0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e, Notional: 174917.53864928722
+		{Chain: 2, Addr: "0000000000000000000000000c572544a4ee47904d54aaa6a970af96b6f00e1b", Symbol: "WAS", CoinGeckoId: "wasder", Decimals: 18, Price: 0.00027772},                                           // Addr: 0x0c572544a4ee47904d54aaa6a970af96b6f00e1b, Notional: 240.82077872451535
+		{Chain: 2, Addr: "0000000000000000000000000d505c03d30e65f6e9b4ef88855a47a89e4b7676", Symbol: "ZOOMER", CoinGeckoId: "zoomer", Decimals: 18, Price: 0.00001269},                                        // Addr: 0x0d505c03d30e65f6e9b4ef88855a47a89e4b7676, Notional: 22751.149204065103
+		{Chain: 2, Addr: "0000000000000000000000000d5639a1442730372e2a650a2900ba07937854f4", Symbol: "CHUB", CoinGeckoId: "callhub", Decimals: 18, Price: 0.00531538},                                         // Addr: 0x0d5639a1442730372e2a650a2900ba07937854f4, Notional: 31.89228
+		{Chain: 2, Addr: "0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", Symbol: "BAT", CoinGeckoId: "basic-attention-token", Decimals: 18, Price: 0.135288},                              // Addr: 0x0d8775f648430679a709e98d2b0cb6250d2887ef, Notional: 191440.71287450235
+		{Chain: 2, Addr: "0000000000000000000000000e186357c323c806c1efdad36d217f7a54b63d18", Symbol: "CGT2.0", CoinGeckoId: "curio-gas-token", Decimals: 18, Price: 0.00243962},                               // Addr: 0x0e186357c323c806c1efdad36d217f7a54b63d18, Notional: 56468.98929311945
+		{Chain: 2, Addr: "0000000000000000000000000f3adc247e91c3c50bc08721355a41037e89bc20", Symbol: "ANC", CoinGeckoId: "anchor-protocol", Decimals: 18, Price: 0.00314273},                                  // Addr: 0x0f3adc247e91c3c50bc08721355a41037e89bc20, Notional: 8.569615252376328
+		{Chain: 2, Addr: "0000000000000000000000000f51bb10119727a7e5ea3538074fb341f56b09ad", Symbol: "DAO", CoinGeckoId: "dao-maker", Decimals: 18, Price: 0.130032},                                          // Addr: 0x0f51bb10119727a7e5ea3538074fb341f56b09ad, Notional: 1080.0785435811438
+		{Chain: 2, Addr: "0000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc942", Symbol: "MANA", CoinGeckoId: "decentraland", Decimals: 18, Price: 0.284862},                                      // Addr: 0x0f5d2fb29fb7d3cfee444a200298f468908cc942, Notional: 26228.933873417165
+		{Chain: 2, Addr: "000000000000000000000000102c776ddb30c754ded4fdcc77a19230a60d4e4f", Symbol: "FLC", CoinGeckoId: "flooring-lab-credit", Decimals: 18, Price: 0.00011005},                              // Addr: 0x102c776ddb30c754ded4fdcc77a19230a60d4e4f, Notional: 2677.4069864608605
+		{Chain: 2, Addr: "0000000000000000000000001045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0", Symbol: "DFIAT", CoinGeckoId: "defiato", Decimals: 18, Price: 0.0009003},                                         // Addr: 0x1045f5ccb01daea4f8eab055f5fcbb7c0e7c89f0, Notional: 1598.691463229444
+		{Chain: 2, Addr: "00000000000000000000000010633216e7e8281e33c86f02bf8e565a635d9770", Symbol: "DVI", CoinGeckoId: "dvision-network", Decimals: 18, Price: 0.01010061},                                  // Addr: 0x10633216e7e8281e33c86f02bf8e565a635d9770, Notional: 1.0100609999999999
+		{Chain: 2, Addr: "000000000000000000000000111111111117dc0aa78b770fa6a738034120c302", Symbol: "1INCH", CoinGeckoId: "1inch", Decimals: 18, Price: 0.209226},                                            // Addr: 0x111111111117dc0aa78b770fa6a738034120c302, Notional: 94141.80100810646
+		{Chain: 2, Addr: "000000000000000000000000112b08621e27e10773ec95d250604a041f36c582", Symbol: "KAS", CoinGeckoId: "wrapped-kaspa", Decimals: 8, Price: 0.01465366},                                     // Addr: 0x112b08621e27e10773ec95d250604a041f36c582, Notional: 2.455497546059254
+		{Chain: 2, Addr: "00000000000000000000000012970e6868f88f6557b76120662c1b3e50a646bf", Symbol: "LADYS", CoinGeckoId: "milady-meme-coin", Decimals: 18, Price: 4.3894e-8},                                // Addr: 0x12970e6868f88f6557b76120662c1b3e50a646bf, Notional: 4.617632105304344
+		{Chain: 2, Addr: "00000000000000000000000012bb890508c125661e03b09ec06e404bc9289040", Symbol: "RACA", CoinGeckoId: "radio-caca", Decimals: 18, Price: 0.00007078},                                      // Addr: 0x12bb890508c125661e03b09ec06e404bc9289040, Notional: 17.082961194688608
+		{Chain: 2, Addr: "000000000000000000000000138c2f1123cf3f82e4596d097c118eac6684940b", Symbol: "ALPHA", CoinGeckoId: "alphacoin", Decimals: 18, Price: 0.02541058},                                      // Addr: 0x138c2f1123cf3f82e4596d097c118eac6684940b, Notional: 0.025156474199999997
+		{Chain: 2, Addr: "0000000000000000000000001494ca1f11d487c2bbe4543e90080aeba4ba3c2b", Symbol: "DPI", CoinGeckoId: "defipulse-index", Decimals: 18, Price: 93.14},                                       // Addr: 0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b, Notional: 2.8452817016
+		{Chain: 2, Addr: "000000000000000000000000152649ea73beab28c5b49b26eb48f7ead6d4c898", Symbol: "Cake", CoinGeckoId: "pancakeswap-token", Decimals: 18, Price: 2.41},                                     // Addr: 0x152649ea73beab28c5b49b26eb48f7ead6d4c898, Notional: 4.853059729300001
+		{Chain: 2, Addr: "00000000000000000000000015d4c048f83bd7e37d49ea4c83a07267ec4203da", Symbol: "GALA", CoinGeckoId: "gala", Decimals: 8, Price: 0.01673087},                                             // Addr: 0x15d4c048f83bd7e37d49ea4c83a07267ec4203da, Notional: 10.30621592
+		{Chain: 2, Addr: "000000000000000000000000170dec83c7753aaad20c01a0016b5a2e143990d4", Symbol: "WIGGER", CoinGeckoId: "wigger", Decimals: 18, Price: 0.00002919},                                        // Addr: 0x170dec83c7753aaad20c01a0016b5a2e143990d4, Notional: 570.2257192762156
+		{Chain: 2, Addr: "0000000000000000000000001796ae0b0fa4862485106a0de9b654efe301d0b2", Symbol: "PMON", CoinGeckoId: "polychain-monsters", Decimals: 18, Price: 0.04947109},                              // Addr: 0x1796ae0b0fa4862485106a0de9b654efe301d0b2, Notional: 1.9541131787207915
+		{Chain: 2, Addr: "00000000000000000000000018084fba666a33d37592fa2633fd49a74dd93a88", Symbol: "tBTC", CoinGeckoId: "tbtc", Decimals: 18, Price: 108503},                                                // Addr: 0x18084fba666a33d37592fa2633fd49a74dd93a88, Notional: 31472784.03359115
+		{Chain: 2, Addr: "0000000000000000000000001864ce27e9f7517047933caae530674e8c70b8a7", Symbol: "PIB", CoinGeckoId: "pibble", Decimals: 18, Price: 0.00044828},                                           // Addr: 0x1864ce27e9f7517047933caae530674e8c70b8a7, Notional: 4.93108
+		{Chain: 2, Addr: "00000000000000000000000018aaa7115705e8be94bffebde57af9bfc265b998", Symbol: "AUDIO", CoinGeckoId: "audius", Decimals: 18, Price: 0.068568},                                           // Addr: 0x18aaa7115705e8be94bffebde57af9bfc265b998, Notional: 2643326.208463888
+		{Chain: 2, Addr: "00000000000000000000000019062190b1925b5b6689d7073fdfc8c2976ef8cb", Symbol: "BZZ", CoinGeckoId: "swarm-bzz", Decimals: 16, Price: 0.165659},                                          // Addr: 0x19062190b1925b5b6689d7073fdfc8c2976ef8cb, Notional: 1.65659e-9
+		{Chain: 2, Addr: "0000000000000000000000001a11ea9d61588d756d9f1014c3cf0d226aedd279", Symbol: "MILEI", CoinGeckoId: "milei-token", Decimals: 18, Price: 0.01419415},                                    // Addr: 0x1a11ea9d61588d756d9f1014c3cf0d226aedd279, Notional: 2092.9481379619056
+		{Chain: 2, Addr: "0000000000000000000000001a3496c18d558bd9c6c8f609e1b129f67ab08163", Symbol: "DEP", CoinGeckoId: "deapcoin", Decimals: 18, Price: 0.00118359},                                         // Addr: 0x1a3496c18d558bd9c6c8f609e1b129f67ab08163, Notional: 0.00118359
+		{Chain: 2, Addr: "0000000000000000000000001a6658f40e51b372e593b7d2144c1402d5cf33e8", Symbol: "PUBLX", CoinGeckoId: "publc", Decimals: 18, Price: 0.00016884},                                          // Addr: 0x1a6658f40e51b372e593b7d2144c1402d5cf33e8, Notional: 3746.7703651587153
+		{Chain: 2, Addr: "0000000000000000000000001a7e4e63778b4f12a199c062f3efdd288afcbce8", Symbol: "agEUR", CoinGeckoId: "ageur", Decimals: 18, Price: 1.14},                                                // Addr: 0x1a7e4e63778b4f12a199c062f3efdd288afcbce8, Notional: 22158.809017264197
+		{Chain: 2, Addr: "0000000000000000000000001abaea1f7c830bd89acc67ec4af516284b1bc33c", Symbol: "EUROC", CoinGeckoId: "euro-coin", Decimals: 6, Price: 1.14},                                             // Addr: 0x1abaea1f7c830bd89acc67ec4af516284b1bc33c, Notional: 1.7243411999999998
+		{Chain: 2, Addr: "0000000000000000000000001c4853ec0d55e420002c5efabc7ed8e0ba7a4121", Symbol: "Okinami", CoinGeckoId: "kanagawa-nami", Decimals: 9, Price: 0.00060964},                                 // Addr: 0x1c4853ec0d55e420002c5efabc7ed8e0ba7a4121, Notional: 7.398673831190873
+		{Chain: 2, Addr: "0000000000000000000000001c48f86ae57291f7686349f12601910bd8d470bb", Symbol: "USDK", CoinGeckoId: "usdk", Decimals: 18, Price: 0.999286},                                              // Addr: 0x1c48f86ae57291f7686349f12601910bd8d470bb, Notional: 2824.6273340508883
+		{Chain: 2, Addr: "0000000000000000000000001c98b54d673c026c8286badca3e840aaf72931a3", Symbol: "STSW", CoinGeckoId: "stackswap", Decimals: 6, Price: 0.00928604},                                        // Addr: 0x1c98b54d673c026c8286badca3e840aaf72931a3, Notional: 464.3948604
+		{Chain: 2, Addr: "0000000000000000000000001cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a", Symbol: "WAVES", CoinGeckoId: "waves", Decimals: 18, Price: 1.095},                                               // Addr: 0x1cf4592ebffd730c7dc92c1bdffdfc3b9efcf29a, Notional: 1.12347
+		{Chain: 2, Addr: "0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c", Symbol: "BNT", CoinGeckoId: "bancor", Decimals: 18, Price: 0.65659},                                              // Addr: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c, Notional: 6.5659
+		{Chain: 2, Addr: "0000000000000000000000001f7e5118521b550bb1a9b435727c003eb033fc51", Symbol: "AGLA", CoinGeckoId: "angola", Decimals: 18, Price: 0.00111459},                                          // Addr: 0x1f7e5118521b550bb1a9b435727c003eb033fc51, Notional: 1616.1554999999998
+		{Chain: 2, Addr: "0000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f984", Symbol: "UNI", CoinGeckoId: "uniswap", Decimals: 18, Price: 6.64},                                                // Addr: 0x1f9840a85d5af5bf1d1762f925bdaddc4201f984, Notional: 412108.9871947936
+		{Chain: 2, Addr: "0000000000000000000000001fee5588cb1de19c70b6ad5399152d8c643fae7b", Symbol: "PHTK", CoinGeckoId: "phuntoken", Decimals: 18, Price: 0.0012749},                                        // Addr: 0x1fee5588cb1de19c70b6ad5399152d8c643fae7b, Notional: 1.2749000000000001
+		{Chain: 2, Addr: "00000000000000000000000020a62aca58526836165ca53fe67dd884288c8abf", Symbol: "RNB", CoinGeckoId: "rentible", Decimals: 18, Price: 0.03536039},                                         // Addr: 0x20a62aca58526836165ca53fe67dd884288c8abf, Notional: 3274.952482458028
+		{Chain: 2, Addr: "00000000000000000000000020e7125677311fca903a8897042b9983f22ea295", Symbol: "FWT", CoinGeckoId: "freeway", Decimals: 18, Price: 0.00000367},                                          // Addr: 0x20e7125677311fca903a8897042b9983f22ea295, Notional: 0.0002133044214759
+		{Chain: 2, Addr: "00000000000000000000000021381e026ad6d8266244f2a583b35f9e4413fa2a", Symbol: "FORM", CoinGeckoId: "formation-fi", Decimals: 18, Price: 0.00013867},                                    // Addr: 0x21381e026ad6d8266244f2a583b35f9e4413fa2a, Notional: 48.44154661175332
+		{Chain: 2, Addr: "00000000000000000000000021bfbda47a0b4b5b1248c767ee49f7caa9b23697", Symbol: "OVR", CoinGeckoId: "ovr", Decimals: 18, Price: 0.106057},                                                // Addr: 0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697, Notional: 15.90855
+		{Chain: 2, Addr: "000000000000000000000000221657776846890989a759ba2973e427dff5c9bb", Symbol: "REPv2", CoinGeckoId: "augur", Decimals: 18, Price: 0.764708},                                            // Addr: 0x221657776846890989a759ba2973e427dff5c9bb, Notional: 0.764708
+		{Chain: 2, Addr: "0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599", Symbol: "WBTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                      // Addr: 0x2260fac5e5542a773aa44fbcfedf7c193bc2c599, Notional: 395428219.6978308
+		{Chain: 2, Addr: "00000000000000000000000022c5543d1a35178cb03b33f929a959145e538532", Symbol: "WAL", CoinGeckoId: "the-wasted-lands", Decimals: 18, Price: 0.00001332},                                 // Addr: 0x22c5543d1a35178cb03b33f929a959145e538532, Notional: 0.0175809584688408
+		{Chain: 2, Addr: "00000000000000000000000022fc5a29bd3d6cce19a06f844019fd506fce4455", Symbol: "ePendle", CoinGeckoId: "equilibria-finance-ependle", Decimals: 18, Price: 2.61},                         // Addr: 0x22fc5a29bd3d6cce19a06f844019fd506fce4455, Notional: 5194.557357705899
+		{Chain: 2, Addr: "0000000000000000000000002370f9d504c7a6e775bf6e14b3f12846b594cd53", Symbol: "JPYC", CoinGeckoId: "jpyc", Decimals: 18, Price: 0.00705277},                                            // Addr: 0x2370f9d504c7a6e775bf6e14b3f12846b594cd53, Notional: 7.05277
+		{Chain: 2, Addr: "00000000000000000000000024249b5a869a445c9b0ce269a08d73c618df9d21", Symbol: "ETHEREUM", CoinGeckoId: "harrypottertrumphomersimpson777inu", Decimals: 8, Price: 0.00014102},           // Addr: 0x24249b5a869a445c9b0ce269a08d73c618df9d21, Notional: 0.690998
+		{Chain: 2, Addr: "000000000000000000000000249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b", Symbol: "UFO", CoinGeckoId: "ufo-gaming", Decimals: 18, Price: 2.69473e-7},                                       // Addr: 0x249e38ea4102d0cf8264d3701f1a0e39c4f2dc3b, Notional: 8.206126324218681
+		{Chain: 2, Addr: "000000000000000000000000255f1b39172f65dc6406b8bee8b08155c45fe1b6", Symbol: "HARAMBE", CoinGeckoId: "harambecoin", Decimals: 18, Price: 1.9964e-7},                                   // Addr: 0x255f1b39172f65dc6406b8bee8b08155c45fe1b6, Notional: 34356.09402978447
+		{Chain: 2, Addr: "00000000000000000000000025722cd432d02895d9be45f5deb60fc479c8781e", Symbol: "SPONGE", CoinGeckoId: "sponge-f08b2fe4-9d9c-47c3-b5a0-84c2ac3bbbff", Decimals: 18, Price: 0.00000857},   // Addr: 0x25722cd432d02895d9be45f5deb60fc479c8781e, Notional: 0.30148099655937194
+		{Chain: 2, Addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 161416.88837215846
+		{Chain: 2, Addr: "00000000000000000000000025cbb21a9da7c3c63bb77ccca5b2e2482aedb710", Symbol: "HOBA", CoinGeckoId: "honey-badger-2", Decimals: 9, Price: 0.08294},                                      // Addr: 0x25cbb21a9da7c3c63bb77ccca5b2e2482aedb710, Notional: 16872.093279250494
+		{Chain: 2, Addr: "00000000000000000000000027702a26126e0b3702af63ee09ac4d1a084ef628", Symbol: "ALEPH", CoinGeckoId: "aleph", Decimals: 18, Price: 0.058575},                                            // Addr: 0x27702a26126e0b3702af63ee09ac4d1a084ef628, Notional: 407809.91345583944
+		{Chain: 2, Addr: "0000000000000000000000002781246fe707bb15cee3e5ea354e2154a2877b16", Symbol: "EL", CoinGeckoId: "elysia", Decimals: 18, Price: 0.00426188},                                            // Addr: 0x2781246fe707bb15cee3e5ea354e2154a2877b16, Notional: 74069.09083632007
+		{Chain: 2, Addr: "0000000000000000000000002ad9addd0d97ec3cdba27f92bf6077893b76ab0b", Symbol: "PLANET", CoinGeckoId: "planet-token", Decimals: 18, Price: 8.22746e-7},                                  // Addr: 0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b, Notional: 30293.020265458716
+		{Chain: 2, Addr: "0000000000000000000000002b591e99afe9f32eaa6214f7b7629768c40eeb39", Symbol: "HEX", CoinGeckoId: "hex", Decimals: 8, Price: 0.00199475},                                               // Addr: 0x2b591e99afe9f32eaa6214f7b7629768c40eeb39, Notional: 55.7752811991927
+		{Chain: 2, Addr: "0000000000000000000000002ba592f78db6436527729929aaf6c908497cb200", Symbol: "CREAM", CoinGeckoId: "cream-2", Decimals: 18, Price: 1.21},                                              // Addr: 0x2ba592f78db6436527729929aaf6c908497cb200, Notional: 12.015931983
+		{Chain: 2, Addr: "0000000000000000000000002c537e5624e4af88a7ae4060c022609376c8d0eb", Symbol: "TRYB", CoinGeckoId: "bilira", Decimals: 6, Price: 0.02546433},                                           // Addr: 0x2c537e5624e4af88a7ae4060c022609376c8d0eb, Notional: 170.94641182523335
+		{Chain: 2, Addr: "0000000000000000000000002c8ea636345a231e4b1a28f6eeb2072ed909c406", Symbol: "MemElon", CoinGeckoId: "meme-elon-doge-floki-2", Decimals: 18, Price: 2.1008e-11},                       // Addr: 0x2c8ea636345a231e4b1a28f6eeb2072ed909c406, Notional: 3.78144
+		{Chain: 2, Addr: "0000000000000000000000002c95d751da37a5c1d9c5a7fd465c1d50f3d96160", Symbol: "WASSIE", CoinGeckoId: "wassie", Decimals: 18, Price: 0.00000114},                                        // Addr: 0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160, Notional: 66718.8422725826
+		{Chain: 2, Addr: "0000000000000000000000002cb5d9fd89d48c516f11904117c57e3934f39524", Symbol: "CUTE", CoinGeckoId: "pepe-uwu", Decimals: 18, Price: 7.4528e-8},                                         // Addr: 0x2cb5d9fd89d48c516f11904117c57e3934f39524, Notional: 8607.459347780838
+		{Chain: 2, Addr: "0000000000000000000000002e95cea14dd384429eb3c4331b776c4cfbb6fcd9", Symbol: "THN", CoinGeckoId: "throne", Decimals: 18, Price: 0.0011378},                                            // Addr: 0x2e95cea14dd384429eb3c4331b776c4cfbb6fcd9, Notional: 0.0204804
+		{Chain: 2, Addr: "000000000000000000000000309627af60f0926daa6041b8279484312f2bf060", Symbol: "USDB", CoinGeckoId: "usd-bancor", Decimals: 18, Price: 4.827e-9},                                        // Addr: 0x309627af60f0926daa6041b8279484312f2bf060, Notional: 0.00000254145380547909
+		{Chain: 2, Addr: "00000000000000000000000030d20208d987713f46dfd34ef128bb16c404d10f", Symbol: "SD", CoinGeckoId: "stader", Decimals: 18, Price: 0.505725},                                              // Addr: 0x30d20208d987713f46dfd34ef128bb16c404d10f, Notional: 298472.4432355795
+		{Chain: 2, Addr: "00000000000000000000000031429d1856ad1377a8a0079410b297e1a9e214c2", Symbol: "ANGLE", CoinGeckoId: "angle-protocol", Decimals: 18, Price: 0.01506577},                                 // Addr: 0x31429d1856ad1377a8a0079410b297e1a9e214c2, Notional: 1147.6433267282182
+		{Chain: 2, Addr: "00000000000000000000000032353a6c91143bfd6c7d363b546e62a9a2489a20", Symbol: "AGLD", CoinGeckoId: "adventure-gold", Decimals: 18, Price: 0.815622},                                    // Addr: 0x32353a6c91143bfd6c7d363b546e62a9a2489a20, Notional: 1239.4483858511794
+		{Chain: 2, Addr: "00000000000000000000000032e7c8a6e920a3cf224b678112ac78fdc0fb09d1", Symbol: "BOO", CoinGeckoId: "boo-2", Decimals: 18, Price: 0.00002857},                                            // Addr: 0x32e7c8a6e920a3cf224b678112ac78fdc0fb09d1, Notional: 1.8898629731675907
+		{Chain: 2, Addr: "0000000000000000000000003301ee63fb29f863f2333bd4466acb46cd8323e6", Symbol: "AKITA", CoinGeckoId: "akita-inu", Decimals: 18, Price: 5.1887e-8},                                       // Addr: 0x3301ee63fb29f863f2333bd4466acb46cd8323e6, Notional: 13.020246150555776
+		{Chain: 2, Addr: "00000000000000000000000033349b282065b0284d756f0577fb39c158f935e6", Symbol: "MPL", CoinGeckoId: "maple", Decimals: 18, Price: 3.32},                                                  // Addr: 0x33349b282065b0284d756f0577fb39c158f935e6, Notional: 1394.9921674508
+		{Chain: 2, Addr: "00000000000000000000000033d0568941c0c64ff7e0fb4fba0b11bd37deed9f", Symbol: "RAMP", CoinGeckoId: "ramp", Decimals: 18, Price: 0.04574279},                                            // Addr: 0x33d0568941c0c64ff7e0fb4fba0b11bd37deed9f, Notional: 0.4574279
+		{Chain: 2, Addr: "00000000000000000000000033e80a92a9ea73dd02f6e732d1702d58c68388ca", Symbol: "XB", CoinGeckoId: "xbanking", Decimals: 2, Price: 0.04120913},                                           // Addr: 0x33e80a92a9ea73dd02f6e732d1702d58c68388ca, Notional: 547.0512007499999
+		{Chain: 2, Addr: "00000000000000000000000033f391f4c4fe802b70b77ae37670037a92114a7c", Symbol: "BURP", CoinGeckoId: "burp", Decimals: 18, Price: 0.00013519},                                            // Addr: 0x33f391f4c4fe802b70b77ae37670037a92114a7c, Notional: 0.21550065435646773
+		{Chain: 2, Addr: "0000000000000000000000003432b6a60d23ca0dfca7761b7ab56459d9c964d0", Symbol: "FXS", CoinGeckoId: "frax-share", Decimals: 18, Price: 2.75},                                             // Addr: 0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0, Notional: 280135.66473730747
+		{Chain: 2, Addr: "0000000000000000000000003506424f91fd33084466f402d5d97f05f8e3b4af", Symbol: "CHZ", CoinGeckoId: "chiliz", Decimals: 18, Price: 0.03863906},                                           // Addr: 0x3506424f91fd33084466f402d5d97f05f8e3b4af, Notional: 13807.233126385298
+		{Chain: 2, Addr: "000000000000000000000000354c8cda7e3b737d360513a0dc5abcee8ee1cea3", Symbol: "BABYTRUMP", CoinGeckoId: "babytrump", Decimals: 18, Price: 0.0032246},                                   // Addr: 0x354c8cda7e3b737d360513a0dc5abcee8ee1cea3, Notional: 25462.195097680527
+		{Chain: 2, Addr: "0000000000000000000000003593d125a4f7849a1b059e64f4517a86dd60c95d", Symbol: "OM", CoinGeckoId: "mantra-dao", Decimals: 18, Price: 0.300949},                                          // Addr: 0x3593d125a4f7849a1b059e64f4517a86dd60c95d, Notional: 4611.867645958717
+		{Chain: 2, Addr: "000000000000000000000000362bc847a3a9637d3af6624eec853618a43ed7d2", Symbol: "PRQ", CoinGeckoId: "parsiq", Decimals: 18, Price: 0.02290444},                                           // Addr: 0x362bc847a3a9637d3af6624eec853618a43ed7d2, Notional: 27.96983986588168
+		{Chain: 2, Addr: "000000000000000000000000368c5290b13caa10284db58b4ad4f3e9ee8bf4c9", Symbol: "KKO", CoinGeckoId: "kineko", Decimals: 18, Price: 0.0001405},                                            // Addr: 0x368c5290b13caa10284db58b4ad4f3e9ee8bf4c9, Notional: 0.142672203142895
+		{Chain: 2, Addr: "000000000000000000000000383518188c0c6d7730d91b2c03a03c837814a899", Symbol: "OHM", CoinGeckoId: "olympus-v1", Decimals: 9, Price: 113.46},                                            // Addr: 0x383518188c0c6d7730d91b2c03a03c837814a899, Notional: 5.673
+		{Chain: 2, Addr: "0000000000000000000000003845badade8e6dff049820680d1f14bd3903a5d0", Symbol: "SAND", CoinGeckoId: "the-sandbox", Decimals: 18, Price: 0.282032},                                       // Addr: 0x3845badade8e6dff049820680d1f14bd3903a5d0, Notional: 27206.695685878698
+		{Chain: 2, Addr: "000000000000000000000000389999216860ab8e0175387a0c90e5c52522c945", Symbol: "FEG", CoinGeckoId: "feg-token", Decimals: 9, Price: 4.3253e-11},                                         // Addr: 0x389999216860ab8e0175387a0c90e5c52522c945, Notional: 0.4065782008477598
+		{Chain: 2, Addr: "00000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de93", Symbol: "MUBI", CoinGeckoId: "multibit", Decimals: 18, Price: 0.00499869},                                        // Addr: 0x38e382f74dfb84608f3c1f10187f6bef5951de93, Notional: 223.55921811773248
+		{Chain: 2, Addr: "000000000000000000000000394a16744dcd805bb0ca7252e70691f0dcac56aa", Symbol: "TRZ", CoinGeckoId: "trazable", Decimals: 18, Price: 0.00049245},                                         // Addr: 0x394a16744dcd805bb0ca7252e70691f0dcac56aa, Notional: 22.968633936800547
+		{Chain: 2, Addr: "0000000000000000000000003a856d4effa670c54585a5d523e96513e148e95d", Symbol: "TRIAS", CoinGeckoId: "trias-token", Decimals: 18, Price: 1.082},                                         // Addr: 0x3a856d4effa670c54585a5d523e96513e148e95d, Notional: 74.89161374358001
+		{Chain: 2, Addr: "0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0", Symbol: "SOS", CoinGeckoId: "opendao", Decimals: 18, Price: 2.889e-9},                                            // Addr: 0x3b484b82567a09e2588a13d54d032153f0c0aee0, Notional: 2.4079712362343746
+		{Chain: 2, Addr: "0000000000000000000000003d2b66bc4f9d6388bd2d97b95b565be1686aefb3", Symbol: "LAMBO", CoinGeckoId: "lambo-0fcbf0f7-1a8f-470d-ba09-797d5e95d836", Decimals: 18, Price: 1e-18},          // Addr: 0x3d2b66bc4f9d6388bd2d97b95b565be1686aefb3, Notional: 1.62256681646345e-12
+		{Chain: 2, Addr: "0000000000000000000000003d371413dd5489f3a04c07c0c2ce369c20986ceb", Symbol: "YOUC", CoinGeckoId: "youcash", Decimals: 10, Price: 0.088049},                                           // Addr: 0x3d371413dd5489f3a04c07c0c2ce369c20986ceb, Notional: 2175.3365802163526
+		{Chain: 2, Addr: "0000000000000000000000003e70f6806171873d17d4bfc984a6f9d20f5a9018", Symbol: "COIN", CoinGeckoId: "brianarmstrongtrumpyellen", Decimals: 18, Price: 0.00007689},                       // Addr: 0x3e70f6806171873d17d4bfc984a6f9d20f5a9018, Notional: 130.06461530583718
+		{Chain: 2, Addr: "0000000000000000000000003e9bc21c9b189c09df3ef1b824798658d5011937", Symbol: "LINA", CoinGeckoId: "linear", Decimals: 18, Price: 0.00009202},                                          // Addr: 0x3e9bc21c9b189c09df3ef1b824798658d5011937, Notional: 0.180530417192439
+		{Chain: 2, Addr: "00000000000000000000000040d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817", Symbol: "GOLD", CoinGeckoId: "golden-goose", Decimals: 18, Price: 0.00006201},                                    // Addr: 0x40d1f63b5d2048e67e9bedb1b4c2f1a9fb4b6817, Notional: 0.000045419224500000004
+		{Chain: 2, Addr: "00000000000000000000000041e5560054824ea6b0732e656e3ad64e20e94e45", Symbol: "CVC", CoinGeckoId: "civic", Decimals: 8, Price: 0.112553},                                               // Addr: 0x41e5560054824ea6b0732e656e3ad64e20e94e45, Notional: 22.5106
+		{Chain: 2, Addr: "000000000000000000000000420412e765bfa6d85aaac94b4f7b708c89be2e2b", Symbol: "BRZ", CoinGeckoId: "brz", Decimals: 4, Price: 0.178599},                                                 // Addr: 0x420412e765bfa6d85aaac94b4f7b708c89be2e2b, Notional: 18.217098
+		{Chain: 2, Addr: "00000000000000000000000042069d11a2cc72388a2e06210921e839cfbd3280", Symbol: "GNOME", CoinGeckoId: "gnomeland", Decimals: 18, Price: 0.00016284},                                      // Addr: 0x42069d11a2cc72388a2e06210921e839cfbd3280, Notional: 182.5150802607524
+		{Chain: 2, Addr: "000000000000000000000000423f4e6138e475d85cf7ea071ac92097ed631eea", Symbol: "PNDC", CoinGeckoId: "pond-coin", Decimals: 18, Price: 3.9983e-8},                                        // Addr: 0x423f4e6138e475d85cf7ea071ac92097ed631eea, Notional: 3.109450546140026
+		{Chain: 2, Addr: "000000000000000000000000427a03fb96d9a94a6727fbcfbba143444090dd64", Symbol: "PIXL", CoinGeckoId: "sappy-seals-pixl", Decimals: 18, Price: 0.0442364},                                 // Addr: 0x427a03fb96d9a94a6727fbcfbba143444090dd64, Notional: 0.48660040000000004
+		{Chain: 2, Addr: "0000000000000000000000004295c8556afee00264c0789dde2ddd2dba71acfe", Symbol: "BISC", CoinGeckoId: "bidao-smart-chain", Decimals: 18, Price: 0.00009483},                               // Addr: 0x4295c8556afee00264c0789dde2ddd2dba71acfe, Notional: 95358.50079885812
+		{Chain: 2, Addr: "0000000000000000000000004297394c20800e8a38a619a243e9bbe7681ff24e", Symbol: "HOTCROSS", CoinGeckoId: "hot-cross", Decimals: 18, Price: 0.00701938},                                   // Addr: 0x4297394c20800e8a38a619a243e9bbe7681ff24e, Notional: 7.019380000000001
+		{Chain: 2, Addr: "000000000000000000000000436da116249044e8b4464f0cf21dd93311d88190", Symbol: "ZEUM", CoinGeckoId: "colizeum", Decimals: 18, Price: 0.00127786},                                        // Addr: 0x436da116249044e8b4464f0cf21dd93311d88190, Notional: 1277.8600000000001
+		{Chain: 2, Addr: "00000000000000000000000043d4a3cd90ddd2f8f4f693170c9c8098163502ad", Symbol: "D2D", CoinGeckoId: "prime", Decimals: 18, Price: 0.00348348},                                            // Addr: 0x43d4a3cd90ddd2f8f4f693170c9c8098163502ad, Notional: 282.8991835744963
+		{Chain: 2, Addr: "00000000000000000000000043fe2b0c5485c10e772a1843e32a7642ace5b88c", Symbol: "RPILL", CoinGeckoId: "red-pill-2", Decimals: 18, Price: 2.01909e-7},                                     // Addr: 0x43fe2b0c5485c10e772a1843e32a7642ace5b88c, Notional: 2750.0345067553385
+		{Chain: 2, Addr: "0000000000000000000000004507cef57c46789ef8d1a19ea45f4216bae2b528", Symbol: "TOKEN", CoinGeckoId: "tokenfi", Decimals: 9, Price: 0.01681208},                                         // Addr: 0x4507cef57c46789ef8d1a19ea45f4216bae2b528, Notional: 1120.0608101505193
+		{Chain: 2, Addr: "00000000000000000000000045804880de22913dafe09f4980848ece6ecbaf78", Symbol: "PAXG", CoinGeckoId: "pax-gold", Decimals: 18, Price: 3344.24},                                           // Addr: 0x45804880de22913dafe09f4980848ece6ecbaf78, Notional: 18907.3809886416
+		{Chain: 2, Addr: "000000000000000000000000464fdb8affc9bac185a7393fd4298137866dcfb8", Symbol: "REALM", CoinGeckoId: "realm", Decimals: 18, Price: 0.00016198},                                          // Addr: 0x464fdb8affc9bac185a7393fd4298137866dcfb8, Notional: 0.16197999999999999
+		{Chain: 2, Addr: "0000000000000000000000004674672bcddda2ea5300f5207e1158185c944bc0", Symbol: "GXT", CoinGeckoId: "gem-exchange-and-trading", Decimals: 18, Price: 0.0037661},                          // Addr: 0x4674672bcddda2ea5300f5207e1158185c944bc0, Notional: 1602257.994178785
+		{Chain: 2, Addr: "0000000000000000000000004691937a7508860f876c9c0a2a617e7d9e945d4b", Symbol: "WOO", CoinGeckoId: "woo-network", Decimals: 18, Price: 0.079828},                                        // Addr: 0x4691937a7508860f876c9c0a2a617e7d9e945d4b, Notional: 10.37764
+		{Chain: 2, Addr: "00000000000000000000000046cca329970b33e1a007dd4ef0594a1cedb3e72a", Symbol: "YESP", CoinGeckoId: "yesports", Decimals: 18, Price: 0.00008032},                                        // Addr: 0x46cca329970b33e1a007dd4ef0594a1cedb3e72a, Notional: 13.133150797952
+		{Chain: 2, Addr: "000000000000000000000000471ea49dd8e60e697f4cac262b5fafcc307506e4", Symbol: "xcRMRK", CoinGeckoId: "rmrk", Decimals: 10, Price: 0.093246},                                            // Addr: 0x471ea49dd8e60e697f4cac262b5fafcc307506e4, Notional: 0.09328263355602
+		{Chain: 2, Addr: "0000000000000000000000004730fb1463a6f1f44aeb45f6c5c422427f37f4d0", Symbol: "FOUR", CoinGeckoId: "the-4th-pillar", Decimals: 18, Price: 0.0002352},                                   // Addr: 0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0, Notional: 1098.0429201152779
+		{Chain: 2, Addr: "0000000000000000000000004740735aa98dc8aa232bd049f8f0210458e7fca3", Symbol: "RDT", CoinGeckoId: "ridotto", Decimals: 18, Price: 0.00702535},                                          // Addr: 0x4740735aa98dc8aa232bd049f8f0210458e7fca3, Notional: 0.6355834145
+		{Chain: 2, Addr: "000000000000000000000000476c5e26a75bd202a9683ffd34359c0cc15be0ff", Symbol: "SRM", CoinGeckoId: "serum", Decimals: 6, Price: 0.01616937},                                             // Addr: 0x476c5e26a75bd202a9683ffd34359c0cc15be0ff, Notional: 50447.06813447939
+		{Chain: 2, Addr: "000000000000000000000000485d17a6f1b8780392d53d64751824253011a260", Symbol: "TIME", CoinGeckoId: "chronobank", Decimals: 8, Price: 12},                                               // Addr: 0x485d17a6f1b8780392d53d64751824253011a260, Notional: 10.8
+		{Chain: 2, Addr: "000000000000000000000000490e3f4af13e1616ec97a8c6600c1061a8d0253e", Symbol: "TRR", CoinGeckoId: "terran-coin", Decimals: 18, Price: 0.00086435},                                      // Addr: 0x490e3f4af13e1616ec97a8c6600c1061a8d0253e, Notional: 2.2905275
+		{Chain: 2, Addr: "0000000000000000000000004a220e6096b25eadb88358cb44068a3248254675", Symbol: "QNT", CoinGeckoId: "quant-network", Decimals: 18, Price: 124.68},                                        // Addr: 0x4a220e6096b25eadb88358cb44068a3248254675, Notional: 6.234000000000001
+		{Chain: 2, Addr: "0000000000000000000000004b1e80cac91e2216eeb63e29b957eb91ae9c2be8", Symbol: "JUP", CoinGeckoId: "jupiter", Decimals: 18, Price: 0.0006665},                                           // Addr: 0x4b1e80cac91e2216eeb63e29b957eb91ae9c2be8, Notional: 26.12784747429261
+		{Chain: 2, Addr: "0000000000000000000000004bd70556ae3f8a6ec6c4080a0c327b24325438f3", Symbol: "HXRO", CoinGeckoId: "hxro", Decimals: 18, Price: 0.00214018},                                            // Addr: 0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3, Notional: 1484974.1344998456
+		{Chain: 2, Addr: "0000000000000000000000004c9edd5852cd905f086c759e8383e09bff1e68b3", Symbol: "USDe", CoinGeckoId: "ethena-usde", Decimals: 18, Price: 1.001},                                          // Addr: 0x4c9edd5852cd905f086c759e8383e09bff1e68b3, Notional: 25.025
+		{Chain: 2, Addr: "0000000000000000000000004d224452801aced8b2f0aebe155379bb5d594381", Symbol: "APE", CoinGeckoId: "apecoin", Decimals: 18, Price: 0.715966},                                            // Addr: 0x4d224452801aced8b2f0aebe155379bb5d594381, Notional: 59.71087738050538
+		{Chain: 2, Addr: "0000000000000000000000004da34f8264cb33a5c9f17081b9ef5ff6091116f4", Symbol: "ELFI", CoinGeckoId: "elyfi", Decimals: 18, Price: 0.00679054},                                           // Addr: 0x4da34f8264cb33a5c9f17081b9ef5ff6091116f4, Notional: 121764.37943608206
+		{Chain: 2, Addr: "0000000000000000000000004e15361fd6b4bb609fa63c81a2be19d873717870", Symbol: "FTM", CoinGeckoId: "wrapped-fantom", Decimals: 18, Price: 0.386855},                                     // Addr: 0x4e15361fd6b4bb609fa63c81a2be19d873717870, Notional: 4229.014020447004
+		{Chain: 2, Addr: "0000000000000000000000004ec1b60b96193a64acae44778e51f7bff2007831", Symbol: "EDGE", CoinGeckoId: "edge", Decimals: 18, Price: 0.747511},                                              // Addr: 0x4ec1b60b96193a64acae44778e51f7bff2007831, Notional: 9.168719315462141
+		{Chain: 2, Addr: "0000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c53", Symbol: "BUSD", CoinGeckoId: "binance-usd", Decimals: 18, Price: 0.992597},                                       // Addr: 0x4fabb145d64652a948d72533023f6e7a623c7c53, Notional: 15084.169951590588
+		{Chain: 2, Addr: "00000000000000000000000050b806c5fe274c07e46b96be8c68d2fd2d9597b4", Symbol: "$TUCKER", CoinGeckoId: "tucker-carlson", Decimals: 18, Price: 3.58926e-7},                               // Addr: 0x50b806c5fe274c07e46b96be8c68d2fd2d9597b4, Notional: 162.0390598917068
+		{Chain: 2, Addr: "00000000000000000000000050d1c9771902476076ecfc8b2a83ad6b9355a4c9", Symbol: "FTX Token", CoinGeckoId: "ftx-token", Decimals: 18, Price: 0.965896},                                    // Addr: 0x50d1c9771902476076ecfc8b2a83ad6b9355a4c9, Notional: 231201.29433206373
+		{Chain: 2, Addr: "000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca", Symbol: "LINK", CoinGeckoId: "chainlink", Decimals: 18, Price: 14.06},                                            // Addr: 0x514910771af9ca656af840dff83e8264ecf986ca, Notional: 279518.09198434796
+		{Chain: 2, Addr: "00000000000000000000000051fe2e572e97bfeb1d719809d743ec2675924edc", Symbol: "VPAD", CoinGeckoId: "vlaunch", Decimals: 18, Price: 0.08336},                                            // Addr: 0x51fe2e572e97bfeb1d719809d743ec2675924edc, Notional: 8.119264000000001
+		{Chain: 2, Addr: "00000000000000000000000052284158e02425290f6b627aeb5fff65edf058ad", Symbol: "FMB", CoinGeckoId: "flappymoonbird", Decimals: 18, Price: 0.00813124},                                   // Addr: 0x52284158e02425290f6b627aeb5fff65edf058ad, Notional: 25052.908871576405
+		{Chain: 2, Addr: "00000000000000000000000054012cdf4119de84218f7eb90eeb87e25ae6ebd7", Symbol: "LUFFY", CoinGeckoId: "luffy-inu", Decimals: 9, Price: 0.00003458},                                       // Addr: 0x54012cdf4119de84218f7eb90eeb87e25ae6ebd7, Notional: 61951.12843266858
+		{Chain: 2, Addr: "0000000000000000000000005483dc6abda5f094865120b2d251b5744fc2ecb5", Symbol: "TPAD", CoinGeckoId: "taopad", Decimals: 18, Price: 0.04584361},                                          // Addr: 0x5483dc6abda5f094865120b2d251b5744fc2ecb5, Notional: 16.472379220892453
+		{Chain: 2, Addr: "0000000000000000000000005488eff1976e4a56b4255e926d419a7054df196a", Symbol: "CITTY", CoinGeckoId: "citty-meme-coin", Decimals: 18, Price: 0.00332339},                                // Addr: 0x5488eff1976e4a56b4255e926d419a7054df196a, Notional: 831.2264061060487
+		{Chain: 2, Addr: "00000000000000000000000056015bbe3c01fe05bc30a8a9a9fd9a88917e7db3", Symbol: "CAT", CoinGeckoId: "cat-token", Decimals: 18, Price: 0.01905896},                                        // Addr: 0x56015bbe3c01fe05bc30a8a9a9fd9a88917e7db3, Notional: 38.11792
+		{Chain: 2, Addr: "000000000000000000000000569d0e52c3dbe95983bcc2434cb9f69d905be919", Symbol: "roar", CoinGeckoId: "roaring-kitty", Decimals: 9, Price: 0.00004778},                                    // Addr: 0x569d0e52c3dbe95983bcc2434cb9f69d905be919, Notional: 617.1255583788598
+		{Chain: 2, Addr: "00000000000000000000000056b4f8c39e07d4d5d91692acf9d0f6d4d3493763", Symbol: "TRISM", CoinGeckoId: "trism", Decimals: 18, Price: 0.00052052},                                          // Addr: 0x56b4f8c39e07d4d5d91692acf9d0f6d4d3493763, Notional: 34.40442272422356
+		{Chain: 2, Addr: "000000000000000000000000576e2bed8f7b46d34016198911cdf9886f78bea7", Symbol: "TRUMP", CoinGeckoId: "maga", Decimals: 9, Price: 0.160301},                                              // Addr: 0x576e2bed8f7b46d34016198911cdf9886f78bea7, Notional: 1144790.2328934213
+		{Chain: 2, Addr: "000000000000000000000000582d872a1b094fc48f5de31d3b73f2d9be47def1", Symbol: "TONCOIN", CoinGeckoId: "the-open-network", Decimals: 9, Price: 3.3},                                     // Addr: 0x582d872a1b094fc48f5de31d3b73f2d9be47def1, Notional: 51539.934697086
+		{Chain: 2, Addr: "00000000000000000000000058b6a8a3302369daec383334672404ee733ab239", Symbol: "LPT", CoinGeckoId: "livepeer", Decimals: 18, Price: 7.7},                                                // Addr: 0x58b6a8a3302369daec383334672404ee733ab239, Notional: 15.855896903000001
+		{Chain: 2, Addr: "00000000000000000000000058cb30368ceb2d194740b144eab4c2da8a917dcb", Symbol: "ZYN", CoinGeckoId: "zyncoin-2", Decimals: 18, Price: 0.00749971},                                        // Addr: 0x58cb30368ceb2d194740b144eab4c2da8a917dcb, Notional: 648818.6555154728
+		{Chain: 2, Addr: "000000000000000000000000594daad7d77592a2b97b725a7ad59d7e188b5bfa", Symbol: "APU", CoinGeckoId: "apu-s-club", Decimals: 18, Price: 0.00021503},                                       // Addr: 0x594daad7d77592a2b97b725a7ad59d7e188b5bfa, Notional: 420123.60953533766
+		{Chain: 2, Addr: "000000000000000000000000595832f8fc6bf59c85c527fec3740a1b7a361269", Symbol: "POWR", CoinGeckoId: "power-ledger", Decimals: 6, Price: 0.167266},                                       // Addr: 0x595832f8fc6bf59c85c527fec3740a1b7a361269, Notional: 1589.027
+		{Chain: 2, Addr: "00000000000000000000000059f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", Symbol: "CAT", CoinGeckoId: "catcoin-cash", Decimals: 9, Price: 8.6928e-11},                                      // Addr: 0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a, Notional: 10.839418539616055
+		{Chain: 2, Addr: "0000000000000000000000005a98fcbea516cf06857215779fd812ca3bef1b32", Symbol: "LDO", CoinGeckoId: "lido-dao", Decimals: 18, Price: 0.838962},                                           // Addr: 0x5a98fcbea516cf06857215779fd812ca3bef1b32, Notional: 390566.0858406615
+		{Chain: 2, Addr: "0000000000000000000000005b52bfb8062ce664d74bbcd4cd6dc7df53fd7233", Symbol: "ZENIQ", CoinGeckoId: "zeniq", Decimals: 18, Price: 0.00345158},                                          // Addr: 0x5b52bfb8062ce664d74bbcd4cd6dc7df53fd7233, Notional: 0.9407455272412427
+		{Chain: 2, Addr: "0000000000000000000000005de8ab7e27f6e7a1fff3e5b337584aa43961beef", Symbol: "SDEX", CoinGeckoId: "smardex", Decimals: 18, Price: 0.00550218},                                         // Addr: 0x5de8ab7e27f6e7a1fff3e5b337584aa43961beef, Notional: 4954957.881326053
+		{Chain: 2, Addr: "0000000000000000000000005eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e", Symbol: "VPP", CoinGeckoId: "virtue-poker", Decimals: 18, Price: 0.00041972},                                     // Addr: 0x5eeaa2dcb23056f4e8654a349e57ebe5e76b5e6e, Notional: 0.041972
+		{Chain: 2, Addr: "0000000000000000000000005f48d1fd6814cd1cd38aeb895755e57d519196d1", Symbol: "WINS", CoinGeckoId: "wins", Decimals: 18, Price: 0.02993747},                                            // Addr: 0x5f48d1fd6814cd1cd38aeb895755e57d519196d1, Notional: 2984938.82751407
+		{Chain: 2, Addr: "0000000000000000000000005f944b0c4315cb7c3a846b025ab4045da44abf6c", Symbol: "GCAKE", CoinGeckoId: "pancake-games", Decimals: 18, Price: 4.2708e-8},                                   // Addr: 0x5f944b0c4315cb7c3a846b025ab4045da44abf6c, Notional: 0.03193552388908669
+		{Chain: 2, Addr: "0000000000000000000000005f98805a4e8be255a32880fdec7f6728c6568ba0", Symbol: "LUSD", CoinGeckoId: "liquity-usd", Decimals: 18, Price: 1.001},                                          // Addr: 0x5f98805a4e8be255a32880fdec7f6728c6568ba0, Notional: 2.002
+		{Chain: 2, Addr: "0000000000000000000000005fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b", Symbol: "DIMO", CoinGeckoId: "dimo", Decimals: 18, Price: 0.060256},                                              // Addr: 0x5fab9761d60419c9eeebe3915a8fa1ed7e8d2e1b, Notional: 0.662816
+		{Chain: 2, Addr: "0000000000000000000000006149c26cd2f7b5ccdb32029af817123f6e37df5b", Symbol: "LPOOL", CoinGeckoId: "launchpool", Decimals: 18, Price: 0.00262392},                                     // Addr: 0x6149c26cd2f7b5ccdb32029af817123f6e37df5b, Notional: 0.00262392
+		{Chain: 2, Addr: "000000000000000000000000614da3b37b6f66f7ce69b4bbbcf9a55ce6168707", Symbol: "MMX", CoinGeckoId: "m2-global-wealth-limited-mmx", Decimals: 18, Price: 0.171239},                       // Addr: 0x614da3b37b6f66f7ce69b4bbbcf9a55ce6168707, Notional: 32138.6078691406
+		{Chain: 2, Addr: "00000000000000000000000062d0a8458ed7719fdaf978fe5929c6d342b0bfce", Symbol: "BEAM", CoinGeckoId: "beam-2", Decimals: 18, Price: 0.00651586},                                          // Addr: 0x62d0a8458ed7719fdaf978fe5929c6d342b0bfce, Notional: 6.722242916530787
+		{Chain: 2, Addr: "00000000000000000000000064df3aab3b21cc275bb76c4a581cf8b726478ee0", Symbol: "CRAMER", CoinGeckoId: "cramer-coin", Decimals: 18, Price: 0.00018529},                                   // Addr: 0x64df3aab3b21cc275bb76c4a581cf8b726478ee0, Notional: 8186.739028787548
+		{Chain: 2, Addr: "00000000000000000000000065e6b60ea01668634d68d0513fe814679f925bad", Symbol: "PIXEL", CoinGeckoId: "pixelverse", Decimals: 18, Price: 0.00010577},                                     // Addr: 0x65e6b60ea01668634d68d0513fe814679f925bad, Notional: 13814.904789760658
+		{Chain: 2, Addr: "00000000000000000000000065ef703f5594d2573eb71aaf55bc0cb548492df4", Symbol: "MULTI", CoinGeckoId: "multichain", Decimals: 18, Price: 0.603485},                                       // Addr: 0x65ef703f5594d2573eb71aaf55bc0cb548492df4, Notional: 1034.4925574164533
+		{Chain: 2, Addr: "000000000000000000000000667102bd3413bfeaa3dffb48fa8288819e480a88", Symbol: "TKX", CoinGeckoId: "tokenize-xchange", Decimals: 8, Price: 31.34},                                       // Addr: 0x667102bd3413bfeaa3dffb48fa8288819e480a88, Notional: 59769.4495823644
+		{Chain: 2, Addr: "000000000000000000000000667210a731447f8b385e068205759be2311b86d4", Symbol: "ETF", CoinGeckoId: "etf-the-token", Decimals: 18, Price: 0.00303291},                                    // Addr: 0x667210a731447f8b385e068205759be2311b86d4, Notional: 1794.7913399078777
+		{Chain: 2, Addr: "00000000000000000000000066c0dded8433c9ea86c8cf91237b14e10b4d70b7", Symbol: "Mars", CoinGeckoId: "mars", Decimals: 18, Price: 0.00001099},                                            // Addr: 0x66c0dded8433c9ea86c8cf91237b14e10b4d70b7, Notional: 1.6091451120982851
+		{Chain: 2, Addr: "0000000000000000000000006731827cb6879a2091ce3ab3423f7bf20539b579", Symbol: "MPWR", CoinGeckoId: "clubrare-empower", Decimals: 18, Price: 0.00002283},                                // Addr: 0x6731827cb6879a2091ce3ab3423f7bf20539b579, Notional: 0.00004566
+		{Chain: 2, Addr: "0000000000000000000000006781a0f84c7e9e846dcb84a9a5bd49333067b104", Symbol: "ZAP", CoinGeckoId: "zap", Decimals: 18, Price: 0.00105042},                                              // Addr: 0x6781a0f84c7e9e846dcb84a9a5bd49333067b104, Notional: 400.24670218710355
+		{Chain: 2, Addr: "00000000000000000000000067f4c72a50f8df6487720261e188f2abe83f57d7", Symbol: "wPOKT", CoinGeckoId: "wrapped-pokt", Decimals: 6, Price: 0.04657028},                                    // Addr: 0x67f4c72a50f8df6487720261e188f2abe83f57d7, Notional: 0.97797588
+		{Chain: 2, Addr: "00000000000000000000000068bbed6a47194eff1cf514b50ea91895597fc91e", Symbol: "ANDY", CoinGeckoId: "andy-the-wisguy", Decimals: 18, Price: 0.00005446},                                 // Addr: 0x68bbed6a47194eff1cf514b50ea91895597fc91e, Notional: 95.25800685844747
+		{Chain: 2, Addr: "0000000000000000000000006911f552842236bd9e8ea8ddbb3fb414e2c5fa9d", Symbol: "SNP", CoinGeckoId: "synapse-network", Decimals: 18, Price: 0.00531536},                                  // Addr: 0x6911f552842236bd9e8ea8ddbb3fb414e2c5fa9d, Notional: 21.5857098436341
+		{Chain: 2, Addr: "0000000000000000000000006982508145454ce325ddbe47a25d4ec3d2311933", Symbol: "PEPE", CoinGeckoId: "pepe", Decimals: 18, Price: 0.00001198},                                            // Addr: 0x6982508145454ce325ddbe47a25d4ec3d2311933, Notional: 49625.59699390448
+		{Chain: 2, Addr: "00000000000000000000000069a95185ee2a045cdc4bcd1b1df10710395e4e23", Symbol: "POOLZ", CoinGeckoId: "poolz-finance", Decimals: 18, Price: 0.01530995},                                  // Addr: 0x69a95185ee2a045cdc4bcd1b1df10710395e4e23, Notional: 0.1347581799
+		{Chain: 2, Addr: "00000000000000000000000069b14e8d3cebfdd8196bfe530954a0c226e5008e", Symbol: "SpacePi", CoinGeckoId: "spacepi-token", Decimals: 9, Price: 9.25369e-10},                                // Addr: 0x69b14e8d3cebfdd8196bfe530954a0c226e5008e, Notional: 147.85526816700275
+		{Chain: 2, Addr: "0000000000000000000000006adb2e268de2aa1abf6578e4a8119b960e02928f", Symbol: "ShibDoge", CoinGeckoId: "shibadoge", Decimals: 9, Price: 2.1e-17},                                       // Addr: 0x6adb2e268de2aa1abf6578e4a8119b960e02928f, Notional: 4.944393038129999e-7
+		{Chain: 2, Addr: "0000000000000000000000006b0b3a982b4634ac68dd83a4dbf02311ce324181", Symbol: "ALI", CoinGeckoId: "alethea-artificial-liquid-intelligence-token", Decimals: 18, Price: 0.00603798},     // Addr: 0x6b0b3a982b4634ac68dd83a4dbf02311ce324181, Notional: 199143.54499974925
+		{Chain: 2, Addr: "0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                                // Addr: 0x6b175474e89094c44da98b954eedeac495271d0f, Notional: 2239799.3533751965
+		{Chain: 2, Addr: "0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2", Symbol: "SUSHI", CoinGeckoId: "sushi", Decimals: 18, Price: 0.671409},                                            // Addr: 0x6b3595068778dd592e39a122f4f5a5cf09c90fe2, Notional: 22369.439568367306
+		{Chain: 2, Addr: "0000000000000000000000006b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611", Symbol: "MM", CoinGeckoId: "million", Decimals: 18, Price: 1.042},                                                // Addr: 0x6b4c7a5e3f0b99fcd83e9c089bddd6c7fce5c611, Notional: 19827.8725992467
+		{Chain: 2, Addr: "0000000000000000000000006b66ccd1340c479b07b390d326eadcbb84e726ba", Symbol: "SEAM", CoinGeckoId: "seamless-protocol", Decimals: 18, Price: 0.43519},                                  // Addr: 0x6b66ccd1340c479b07b390d326eadcbb84e726ba, Notional: 4.3519000000000005
+		{Chain: 2, Addr: "0000000000000000000000006b89b97169a797d94f057f4a0b01e2ca303155e4", Symbol: "CHAD", CoinGeckoId: "chad-coin", Decimals: 18, Price: 0.00000149},                                       // Addr: 0x6b89b97169a797d94f057f4a0b01e2ca303155e4, Notional: 13105.942937190226
+		{Chain: 2, Addr: "0000000000000000000000006c5ba91642f10282b576d91922ae6448c9d52f4e", Symbol: "PHA", CoinGeckoId: "pha", Decimals: 18, Price: 0.123873},                                                // Addr: 0x6c5ba91642f10282b576d91922ae6448c9d52f4e, Notional: 109962.48163624383
+		{Chain: 2, Addr: "0000000000000000000000006de037ef9ad2725eb40118bb1702ebb27e4aeb24", Symbol: "RNDR", CoinGeckoId: "render-token", Decimals: 18, Price: 3.99},                                          // Addr: 0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24, Notional: 1469822496.1326406
+		{Chain: 2, Addr: "0000000000000000000000006e9730ecffbed43fd876a264c982e254ef05a0de", Symbol: "NORD", CoinGeckoId: "nord-finance", Decimals: 18, Price: 0.00430416},                                    // Addr: 0x6e9730ecffbed43fd876a264c982e254ef05a0de, Notional: 0.0430416
+		{Chain: 2, Addr: "0000000000000000000000006ec8a24cabdc339a06a172f8223ea557055adaa5", Symbol: "GNX", CoinGeckoId: "genaro-network", Decimals: 9, Price: 0.00006251},                                    // Addr: 0x6ec8a24cabdc339a06a172f8223ea557055adaa5, Notional: 0.10689209999999999
+		{Chain: 2, Addr: "0000000000000000000000006fc13eace26590b80cccab1ba5d51890577d83b2", Symbol: "UMB", CoinGeckoId: "umbrella-network", Decimals: 18, Price: 0.0021467},                                  // Addr: 0x6fc13eace26590b80cccab1ba5d51890577d83b2, Notional: 0.285040851905191
+		{Chain: 2, Addr: "0000000000000000000000006fe2506d1ddd77c43a3eaf4c4e0f7aeb14f26765", Symbol: "ORBT", CoinGeckoId: "orbitt-pro", Decimals: 18, Price: 0.268324},                                        // Addr: 0x6fe2506d1ddd77c43a3eaf4c4e0f7aeb14f26765, Notional: 139.11928469522525
+		{Chain: 2, Addr: "00000000000000000000000070401dfd142a16dc7031c56e862fc88cb9537ce0", Symbol: "BIRD", CoinGeckoId: "bird-money", Decimals: 18, Price: 0.768407},                                        // Addr: 0x70401dfd142a16dc7031c56e862fc88cb9537ce0, Notional: 8.452477
+		{Chain: 2, Addr: "00000000000000000000000070bef3bb2f001da2fddb207dae696cd9faff3f5d", Symbol: "NST", CoinGeckoId: "ninja-squad", Decimals: 18, Price: 2.82},                                            // Addr: 0x70bef3bb2f001da2fddb207dae696cd9faff3f5d, Notional: 13152668.332464501
+		{Chain: 2, Addr: "00000000000000000000000070e8de73ce538da2beed35d14187f6959a8eca96", Symbol: "XSGD", CoinGeckoId: "xsgd", Decimals: 6, Price: 0.779723},                                               // Addr: 0x70e8de73ce538da2beed35d14187f6959a8eca96, Notional: 43.142599903025
+		{Chain: 2, Addr: "00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d57", Symbol: "RAIN", CoinGeckoId: "rainmaker-games", Decimals: 18, Price: 0.00004316},                                 // Addr: 0x71fc1f555a39e0b698653ab0b475488ec3c34d57, Notional: 5.565867097214408
+		{Chain: 2, Addr: "000000000000000000000000721a1b990699ee9d90b6327faad0a3e840ae8335", Symbol: "LOOT", CoinGeckoId: "loot", Decimals: 18, Price: 0.00162865},                                            // Addr: 0x721a1b990699ee9d90b6327faad0a3e840ae8335, Notional: 1.175070975
+		{Chain: 2, Addr: "000000000000000000000000725c263e32c72ddc3a19bea12c5a0479a81ee688", Symbol: "BMI", CoinGeckoId: "bridge-mutual", Decimals: 18, Price: 0.00333233},                                    // Addr: 0x725c263e32c72ddc3a19bea12c5a0479a81ee688, Notional: 6597.405198801448
+		{Chain: 2, Addr: "000000000000000000000000727f064a78dc734d33eec18d5370aef32ffd46e4", Symbol: "ORION", CoinGeckoId: "orion-money", Decimals: 18, Price: 0.00081933},                                    // Addr: 0x727f064a78dc734d33eec18d5370aef32ffd46e4, Notional: 69885.7121688999
+		{Chain: 2, Addr: "00000000000000000000000072b886d09c117654ab7da13a14d603001de0b777", Symbol: "XDEFI", CoinGeckoId: "xdefi", Decimals: 18, Price: 0.01496151},                                          // Addr: 0x72b886d09c117654ab7da13a14d603001de0b777, Notional: 41149.11935707381
+		{Chain: 2, Addr: "00000000000000000000000072e364f2abdc788b7e918bc238b21f109cd634d7", Symbol: "MVI", CoinGeckoId: "metaverse-index", Decimals: 18, Price: 17.45},                                       // Addr: 0x72e364f2abdc788b7e918bc238b21f109cd634d7, Notional: 17.6244614355
+		{Chain: 2, Addr: "00000000000000000000000072e4f9f808c49a2a61de9c5896298920dc4eeea9", Symbol: "BITCOIN", CoinGeckoId: "harrypotterobamasonic10in", Decimals: 8, Price: 0.071239},                       // Addr: 0x72e4f9f808c49a2a61de9c5896298920dc4eeea9, Notional: 2511972.36232702
+		{Chain: 2, Addr: "00000000000000000000000072e5390edb7727e3d4e3436451dadaff675dbcc0", Symbol: "HANU", CoinGeckoId: "hanu-yokia", Decimals: 12, Price: 1.41456e-7},                                      // Addr: 0x72e5390edb7727e3d4e3436451dadaff675dbcc0, Notional: 26093.87836564909
+		{Chain: 2, Addr: "0000000000000000000000007495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4", Symbol: "ARNC", CoinGeckoId: "arnoya-classic", Decimals: 18, Price: 0.00863912},                                  // Addr: 0x7495e5cc8f27e0bd5bd4cb86d17f0d841ca58ee4, Notional: 2247.0264728800003
+		{Chain: 2, Addr: "0000000000000000000000007616113782aadab041d7b10d474f8a0c04eff258", Symbol: "VEE", CoinGeckoId: "zeeverse", Decimals: 18, Price: 0.00024779},                                         // Addr: 0x7616113782aadab041d7b10d474f8a0c04eff258, Notional: 1.23895
+		{Chain: 2, Addr: "000000000000000000000000761d38e5ddf6ccf6cf7c55759d5210750b5d60f3", Symbol: "ELON", CoinGeckoId: "dogelon-mars", Decimals: 18, Price: 1.27901e-7},                                    // Addr: 0x761d38e5ddf6ccf6cf7c55759d5210750b5d60f3, Notional: 23354.385790682576
+		{Chain: 2, Addr: "000000000000000000000000762fcf5183ae366c0629d0bcd30b40f331496d0f", Symbol: "DICE", CoinGeckoId: "dice-bot", Decimals: 18, Price: 0.00007637},                                        // Addr: 0x762fcf5183ae366c0629d0bcd30b40f331496d0f, Notional: 0.07637000000000001
+		{Chain: 2, Addr: "0000000000000000000000007659ce147d0e714454073a5dd7003544234b6aa0", Symbol: "XCAD", CoinGeckoId: "xcad-network", Decimals: 18, Price: 0.03980405},                                    // Addr: 0x7659ce147d0e714454073a5dd7003544234b6aa0, Notional: 993844.132269037
+		{Chain: 2, Addr: "000000000000000000000000766d2fcece1e3eef32aae8711ab886ee95fd5b2a", Symbol: "MVP", CoinGeckoId: "maga-vp", Decimals: 18, Price: 0.01640981},                                          // Addr: 0x766d2fcece1e3eef32aae8711ab886ee95fd5b2a, Notional: 72656.1251883997
+		{Chain: 2, Addr: "000000000000000000000000767fe9edc9e0df98e07454847909b5e959d7ca0e", Symbol: "ILV", CoinGeckoId: "illuvium", Decimals: 18, Price: 12.61},                                              // Addr: 0x767fe9edc9e0df98e07454847909b5e959d7ca0e, Notional: 1.2610000000000001
+		{Chain: 2, Addr: "0000000000000000000000007697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a", Symbol: "SARCO", CoinGeckoId: "sarcophagus", Decimals: 18, Price: 0.00153949},                                    // Addr: 0x7697b462a7c4ff5f8b55bdbc2f4076c2af9cf51a, Notional: 0.1635337148244638
+		{Chain: 2, Addr: "00000000000000000000000076e222b07c53d28b89b0bac18602810fc22b49a8", Symbol: "JOE", CoinGeckoId: "joe-coin", Decimals: 18, Price: 0.02292823},                                         // Addr: 0x76e222b07c53d28b89b0bac18602810fc22b49a8, Notional: 710.7134665293423
+		{Chain: 2, Addr: "0000000000000000000000007777777777697cfeecf846a76326da79cc606517", Symbol: "SIG", CoinGeckoId: "xsigma", Decimals: 18, Price: 0.00212419},                                           // Addr: 0x7777777777697cfeecf846a76326da79cc606517, Notional: 0.21241900000000002
+		{Chain: 2, Addr: "00000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a44", Symbol: "wTAO", CoinGeckoId: "wrapped-tao", Decimals: 9, Price: 411.28},                                          // Addr: 0x77e06c9eccf2e797fd462a92b6d7642ef85b0a44, Notional: 5809.511703504
+		{Chain: 2, Addr: "00000000000000000000000078a0a62fba6fb21a83fe8a3433d44c73a4017a6f", Symbol: "OX", CoinGeckoId: "open-exchange-token", Decimals: 18, Price: 0.00305853},                               // Addr: 0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f, Notional: 198164.11030058362
+		{Chain: 2, Addr: "0000000000000000000000007968bc6a03017ea2de509aaa816f163db0f35148", Symbol: "HGET", CoinGeckoId: "hedget", Decimals: 6, Price: 0.0398157},                                            // Addr: 0x7968bc6a03017ea2de509aaa816f163db0f35148, Notional: 644.4799288170847
+		{Chain: 2, Addr: "0000000000000000000000007a58c0be72be218b41c608b7fe7c5bb630736c71", Symbol: "PEOPLE", CoinGeckoId: "constitutiondao", Decimals: 18, Price: 0.02138422},                               // Addr: 0x7a58c0be72be218b41c608b7fe7c5bb630736c71, Notional: 16177.464316054755
+		{Chain: 2, Addr: "0000000000000000000000007d1afa7b718fb893db30a3abc0cfc608aacfebb0", Symbol: "MATIC", CoinGeckoId: "matic-network", Decimals: 18, Price: 0.213435},                                    // Addr: 0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0, Notional: 6005.090403853704
+		{Chain: 2, Addr: "0000000000000000000000007da2641000cbb407c329310c461b2cb9c70c3046", Symbol: "AGI", CoinGeckoId: "delysium", Decimals: 18, Price: 0.056002},                                           // Addr: 0x7da2641000cbb407c329310c461b2cb9c70c3046, Notional: 373402.67109453003
+		{Chain: 2, Addr: "0000000000000000000000007ddc52c4de30e94be3a6a0a2b259b2850f421989", Symbol: "GMT", CoinGeckoId: "gmt-token", Decimals: 18, Price: 0.425071},                                          // Addr: 0x7ddc52c4de30e94be3a6a0a2b259b2850f421989, Notional: 613.3379428800883
+		{Chain: 2, Addr: "0000000000000000000000007e9c15c43f0d6c4a12e6bdff7c7d55d0f80e3e23", Symbol: "ASTRADAO", CoinGeckoId: "astra-dao", Decimals: 18, Price: 1.94569e-7},                                   // Addr: 0x7e9c15c43f0d6c4a12e6bdff7c7d55d0f80e3e23, Notional: 59.538077756201176
+		{Chain: 2, Addr: "0000000000000000000000007f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", Symbol: "wstETH", CoinGeckoId: "wrapped-steth", Decimals: 18, Price: 3114.69},                                    // Addr: 0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0, Notional: 3688046.1166459336
+		{Chain: 2, Addr: "0000000000000000000000007fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", Symbol: "AAVE", CoinGeckoId: "aave", Decimals: 18, Price: 269.32},                                                // Addr: 0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9, Notional: 2917.0908276936
+		{Chain: 2, Addr: "0000000000000000000000007fd4d7737597e7b4ee22acbf8d94362343ae0a79", Symbol: "WMC", CoinGeckoId: "wrapped-mistcoin", Decimals: 2, Price: 6.58},                                        // Addr: 0x7fd4d7737597e7b4ee22acbf8d94362343ae0a79, Notional: 15.989400000000002
+		{Chain: 2, Addr: "000000000000000000000000808507121b80c02388fad14726482e061b8da827", Symbol: "PENDLE", CoinGeckoId: "pendle", Decimals: 18, Price: 4.24},                                              // Addr: 0x808507121b80c02388fad14726482e061b8da827, Notional: 13818453.266849045
+		{Chain: 2, Addr: "00000000000000000000000080d55c03180349fff4a229102f62328220a96444", Symbol: "OPUL", CoinGeckoId: "opulous", Decimals: 18, Price: 0.03156293},                                         // Addr: 0x80d55c03180349fff4a229102f62328220a96444, Notional: 3.351456222568021
+		{Chain: 2, Addr: "000000000000000000000000814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26", Symbol: "MDT", CoinGeckoId: "measurable-data-token", Decimals: 18, Price: 0.02098909},                            // Addr: 0x814e0908b12a99fecf5bc101bb5d0b8b5cdf7d26, Notional: 39840.766282210534
+		{Chain: 2, Addr: "0000000000000000000000008287c7b963b405b7b8d467db9d79eec40625b13a", Symbol: "SWINGBY", CoinGeckoId: "swingby", Decimals: 18, Price: 0.00009214},                                      // Addr: 0x8287c7b963b405b7b8d467db9d79eec40625b13a, Notional: 1.031968
+		{Chain: 2, Addr: "00000000000000000000000082f13ab56cc0d1b727e8253a943f0de75b048b0b", Symbol: "PLAYFI", CoinGeckoId: "playfi", Decimals: 18, Price: 0.00600403},                                        // Addr: 0x82f13ab56cc0d1b727e8253a943f0de75b048b0b, Notional: 1716.2407309713542
+		{Chain: 2, Addr: "0000000000000000000000008353b92201f19b4812eee32efd325f7ede123718", Symbol: "SCM", CoinGeckoId: "scamfari", Decimals: 18, Price: 0.00000532},                                         // Addr: 0x8353b92201f19b4812eee32efd325f7ede123718, Notional: 106.45852
+		{Chain: 2, Addr: "0000000000000000000000008390a1da07e376ef7add4be859ba74fb83aa02d5", Symbol: "GROK", CoinGeckoId: "grok-2", Decimals: 9, Price: 0.00239127},                                           // Addr: 0x8390a1da07e376ef7add4be859ba74fb83aa02d5, Notional: 75.10857656187882
+		{Chain: 2, Addr: "00000000000000000000000083e6f1e41cdd28eaceb20cb649155049fac3d5aa", Symbol: "POLS", CoinGeckoId: "polkastarter", Decimals: 18, Price: 0.219331},                                      // Addr: 0x83e6f1e41cdd28eaceb20cb649155049fac3d5aa, Notional: 0.438662
+		{Chain: 2, Addr: "0000000000000000000000008457ca5040ad67fdebbcc8edce889a335bc0fbfb", Symbol: "ALT", CoinGeckoId: "altlayer", Decimals: 18, Price: 0.02731039},                                         // Addr: 0x8457ca5040ad67fdebbcc8edce889a335bc0fbfb, Notional: 9.5868676212912
+		{Chain: 2, Addr: "0000000000000000000000008530b66ca3ddf50e0447eae8ad7ea7d5e62762ed", Symbol: "METADOGE", CoinGeckoId: "meta-doge", Decimals: 18, Price: 1.7691e-11},                                   // Addr: 0x8530b66ca3ddf50e0447eae8ad7ea7d5e62762ed, Notional: 0.44227500000000003
+		{Chain: 2, Addr: "000000000000000000000000853d955acef822db058eb8505911ed77f175b99e", Symbol: "FRAX", CoinGeckoId: "frax", Decimals: 18, Price: 0.999384},                                              // Addr: 0x853d955acef822db058eb8505911ed77f175b99e, Notional: 59616.42769688391
+		{Chain: 2, Addr: "00000000000000000000000085eee30c52b0b379b046fb0f85f4f3dc3009afec", Symbol: "KEEP", CoinGeckoId: "keep-network", Decimals: 18, Price: 0.0706},                                        // Addr: 0x85eee30c52b0b379b046fb0f85f4f3dc3009afec, Notional: 0.141431568
+		{Chain: 2, Addr: "000000000000000000000000875773784af8135ea0ef43b5a374aad105c5d39e", Symbol: "IDLE", CoinGeckoId: "idle", Decimals: 18, Price: 0.00571255},                                            // Addr: 0x875773784af8135ea0ef43b5a374aad105c5d39e, Notional: 0.28562750000000003
+		{Chain: 2, Addr: "0000000000000000000000008770b7dd89e5f759ee3b226e0c45e890f87ddc48", Symbol: "MIRL", CoinGeckoId: "made-in-real-life", Decimals: 18, Price: 0.0000265},                                // Addr: 0x8770b7dd89e5f759ee3b226e0c45e890f87ddc48, Notional: 1916.9208993289617
+		{Chain: 2, Addr: "00000000000000000000000087edffde3e14c7a66c9b9724747a1c5696b742e6", Symbol: "SWAG", CoinGeckoId: "swag-finance", Decimals: 18, Price: 0.00139443},                                    // Addr: 0x87edffde3e14c7a66c9b9724747a1c5696b742e6, Notional: 13.945694430000001
+		{Chain: 2, Addr: "000000000000000000000000888888888889c00c67689029d7856aac1065ec11", Symbol: "OPIUM", CoinGeckoId: "opium", Decimals: 18, Price: 0.02952707},                                          // Addr: 0x888888888889c00c67689029d7856aac1065ec11, Notional: 0.2952707
+		{Chain: 2, Addr: "0000000000000000000000008a854288a5976036a725879164ca3e91d30c6a1b", Symbol: "GET", CoinGeckoId: "get-token", Decimals: 18, Price: 0.452311},                                          // Addr: 0x8a854288a5976036a725879164ca3e91d30c6a1b, Notional: 9.04622
+		{Chain: 2, Addr: "0000000000000000000000008a9c67fee641579deba04928c4bc45f66e26343a", Symbol: "JRT", CoinGeckoId: "jarvis-reward-token", Decimals: 18, Price: 0.0017131},                               // Addr: 0x8a9c67fee641579deba04928c4bc45f66e26343a, Notional: 78725.41566888838
+		{Chain: 2, Addr: "0000000000000000000000008ab7404063ec4dbcfd4598215992dc3f8ec853d7", Symbol: "AKRO", CoinGeckoId: "akropolis", Decimals: 18, Price: 0.00017177},                                       // Addr: 0x8ab7404063ec4dbcfd4598215992dc3f8ec853d7, Notional: 5.877353123593999
+		{Chain: 2, Addr: "0000000000000000000000008acee0fcee91cedad1c5013f031762c814740587", Symbol: "SAUDIPEPE", CoinGeckoId: "saudi-pepe", Decimals: 18, Price: 0.00000179},                                 // Addr: 0x8acee0fcee91cedad1c5013f031762c814740587, Notional: 8.112185285803031
+		{Chain: 2, Addr: "0000000000000000000000008bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd", Symbol: "PACE", CoinGeckoId: "3space-art", Decimals: 18, Price: 0.01551619},                                      // Addr: 0x8bc2bcb1b1896291942c36f3cca3c1afa0aaa7fd, Notional: 15.51619
+		{Chain: 2, Addr: "0000000000000000000000008c223a82e07fecb49d602150d7c2b3a4c9630310", Symbol: "NFTE", CoinGeckoId: "nftearth", Decimals: 18, Price: 0.00001511},                                        // Addr: 0x8c223a82e07fecb49d602150d7c2b3a4c9630310, Notional: 0.0107438647632921
+		{Chain: 2, Addr: "0000000000000000000000008cb1d155a5a1d5d667611b7710920fd9d1cd727f", Symbol: "AIRx", CoinGeckoId: "aircoins", Decimals: 8, Price: 0.0000034},                                          // Addr: 0x8cb1d155a5a1d5d667611b7710920fd9d1cd727f, Notional: 0.00034
+		{Chain: 2, Addr: "0000000000000000000000008cc0f052fff7ead7f2edcccac895502e884a8a71", Symbol: "ARTH", CoinGeckoId: "arth", Decimals: 18, Price: 1.49},                                                  // Addr: 0x8cc0f052fff7ead7f2edcccac895502e884a8a71, Notional: 7.45
+		{Chain: 2, Addr: "0000000000000000000000008ce9137d39326ad0cd6491fb5cc0cba0e089b6a9", Symbol: "SXP", CoinGeckoId: "swipe", Decimals: 18, Price: 0.182122},                                              // Addr: 0x8ce9137d39326ad0cd6491fb5cc0cba0e089b6a9, Notional: 18247.59009428928
+		{Chain: 2, Addr: "0000000000000000000000008db1d28ee0d822367af8d220c0dc7cb6fe9dc442", Symbol: "ETHPAD", CoinGeckoId: "ethpad", Decimals: 18, Price: 0.00095323},                                        // Addr: 0x8db1d28ee0d822367af8d220c0dc7cb6fe9dc442, Notional: 7.722907792192
+		{Chain: 2, Addr: "0000000000000000000000008ed97a637a790be1feff5e888d43629dc05408f6", Symbol: "NPC", CoinGeckoId: "non-playable-coin", Decimals: 18, Price: 0.01347979},                                // Addr: 0x8ed97a637a790be1feff5e888d43629dc05408f6, Notional: 5101879.487431287
+		{Chain: 2, Addr: "0000000000000000000000008f006d1e1d9dc6c98996f50a4c810f17a47fbf19", Symbol: "NSFW", CoinGeckoId: "pleasure-coin", Decimals: 18, Price: 0.00002964},                                   // Addr: 0x8f006d1e1d9dc6c98996f50a4c810f17a47fbf19, Notional: 0.00022172779298280002
+		{Chain: 2, Addr: "000000000000000000000000900db999074d9277c5da2a43f252d74366230da0", Symbol: "GIV", CoinGeckoId: "giveth", Decimals: 18, Price: 0.00225785},                                           // Addr: 0x900db999074d9277c5da2a43f252d74366230da0, Notional: 22.578500000000002
+		{Chain: 2, Addr: "0000000000000000000000009196e18bc349b1f64bc08784eae259525329a1ad", Symbol: "PUSSY", CoinGeckoId: "pussy-financial", Decimals: 18, Price: 0.00000409},                                // Addr: 0x9196e18bc349b1f64bc08784eae259525329a1ad, Notional: 3425.3979715549503
+		{Chain: 2, Addr: "00000000000000000000000092d6c1e31e14520e676a687f0a93788b716beff5", Symbol: "DYDX", CoinGeckoId: "dydx", Decimals: 18, Price: 0.547017},                                              // Addr: 0x92d6c1e31e14520e676a687f0a93788b716beff5, Notional: 42262.98998457182
+		{Chain: 2, Addr: "000000000000000000000000949d48eca67b17269629c7194f4b727d4ef9e5d6", Symbol: "MC", CoinGeckoId: "merit-circle", Decimals: 18, Price: 0.094853},                                        // Addr: 0x949d48eca67b17269629c7194f4b727d4ef9e5d6, Notional: 6.0800773
+		{Chain: 2, Addr: "000000000000000000000000958a03181806cb8807bef40e864e55f89b3393d3", Symbol: "UTX", CoinGeckoId: "utix", Decimals: 18, Price: 0.01391177},                                             // Addr: 0x958a03181806cb8807bef40e864e55f89b3393d3, Notional: 5764.857735529118
+		{Chain: 2, Addr: "00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", Symbol: "SHIB", CoinGeckoId: "shiba-inu", Decimals: 18, Price: 0.00001267},                                       // Addr: 0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce, Notional: 80010.65887705442
+		{Chain: 2, Addr: "0000000000000000000000009609b540e5dedddb147abbf9812ade06b1e61b2c", Symbol: "MICKEY", CoinGeckoId: "steamboat-willie", Decimals: 18, Price: 0.00019653},                              // Addr: 0x9609b540e5dedddb147abbf9812ade06b1e61b2c, Notional: 23367.088256458028
+		{Chain: 2, Addr: "0000000000000000000000009625ce7753ace1fa1865a47aae2c5c2ce4418569", Symbol: "KAP", CoinGeckoId: "kapital-dao", Decimals: 18, Price: 0.00117695},                                      // Addr: 0x9625ce7753ace1fa1865a47aae2c5c2ce4418569, Notional: 11.769499999999999
+		{Chain: 2, Addr: "00000000000000000000000096543ef8d2c75c26387c1a319ae69c0bee6f3fe7", Symbol: "KUJI", CoinGeckoId: "kujira", Decimals: 6, Price: 0.375506},                                             // Addr: 0x96543ef8d2c75c26387c1a319ae69c0bee6f3fe7, Notional: 0.375506
+		{Chain: 2, Addr: "000000000000000000000000965697b4ef02f0de01384d0d4f9f782b1670c163", Symbol: "OXY", CoinGeckoId: "oxygen", Decimals: 6, Price: 0.02767079},                                            // Addr: 0x965697b4ef02f0de01384d0d4f9f782b1670c163, Notional: 4150.730790334825
+		{Chain: 2, Addr: "000000000000000000000000965b85d4674f64422c4898c8f8083187f02b32c0", Symbol: "SFIL", CoinGeckoId: "filecoin-standard-full-hashrate", Decimals: 8, Price: 0.00513081},                  // Addr: 0x965b85d4674f64422c4898c8f8083187f02b32c0, Notional: 0.038272764114
+		{Chain: 2, Addr: "000000000000000000000000967fb0d760ed3ce53afe2f0a071674cccae73550", Symbol: "XETA", CoinGeckoId: "xana", Decimals: 18, Price: 0.00078411},                                            // Addr: 0x967fb0d760ed3ce53afe2f0a071674cccae73550, Notional: 0.00078411
+		{Chain: 2, Addr: "000000000000000000000000968cbe62c830a0ccf4381614662398505657a2a9", Symbol: "TPY", CoinGeckoId: "thrupenny", Decimals: 8, Price: 0.00207482},                                         // Addr: 0x968cbe62c830a0ccf4381614662398505657a2a9, Notional: 493.94523151625646
+		{Chain: 2, Addr: "000000000000000000000000968f6f898a6df937fc1859b323ac2f14643e3fed", Symbol: "NWC", CoinGeckoId: "newscrypto-coin", Decimals: 18, Price: 0.02473985},                                  // Addr: 0x968f6f898a6df937fc1859b323ac2f14643e3fed, Notional: 0.02473985
+		{Chain: 2, Addr: "00000000000000000000000096f6ef951840721adbf46ac996b59e0235cb985c", Symbol: "USDY", CoinGeckoId: "ondo-us-dollar-yield", Decimals: 18, Price: 1.096},                                 // Addr: 0x96f6ef951840721adbf46ac996b59e0235cb985c, Notional: 1.514205652
+		{Chain: 2, Addr: "000000000000000000000000970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d", Symbol: "FUSE", CoinGeckoId: "fuse-network-token", Decimals: 18, Price: 0.01041974},                              // Addr: 0x970b9bb2c0444f5e81e9d0efb84c8ccdcdcaf84d, Notional: 0.2083948
+		{Chain: 2, Addr: "00000000000000000000000097a9bac06f90940bce9caec2b880ff17707519e4", Symbol: "MNTO", CoinGeckoId: "minato", Decimals: 18, Price: 0.572417},                                            // Addr: 0x97a9bac06f90940bce9caec2b880ff17707519e4, Notional: 33.17338231638735
+		{Chain: 2, Addr: "00000000000000000000000098585dfc8d9e7d48f0b1ae47ce33332cf4237d96", Symbol: "NEWO", CoinGeckoId: "new-order", Decimals: 18, Price: 0.00157669},                                       // Addr: 0x98585dfc8d9e7d48f0b1ae47ce33332cf4237d96, Notional: 285276.51082215493
+		{Chain: 2, Addr: "00000000000000000000000099d8a9c45b2eca8864373a26d1459e3dff1e17f3", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                  // Addr: 0x99d8a9c45b2eca8864373a26d1459e3dff1e17f3, Notional: 473.86748215806995
+		{Chain: 2, Addr: "0000000000000000000000009b83f827928abdf18cf1f7e67053572b9bceff3a", Symbol: "ARTEM", CoinGeckoId: "artem", Decimals: 18, Price: 0.00215086},                                          // Addr: 0x9b83f827928abdf18cf1f7e67053572b9bceff3a, Notional: 23583.39704588769
+		{Chain: 2, Addr: "0000000000000000000000009be89d2a4cd102d8fecc6bf9da793be995c22541", Symbol: "BBTC", CoinGeckoId: "binance-wrapped-btc", Decimals: 8, Price: 106442},                                  // Addr: 0x9be89d2a4cd102d8fecc6bf9da793be995c22541, Notional: 2266.1555021
+		{Chain: 2, Addr: "0000000000000000000000009d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804", Symbol: "Nvir", CoinGeckoId: "nvirworld", Decimals: 18, Price: 0.00031535},                                       // Addr: 0x9d71ce49ab8a0e6d2a1e7bfb89374c9392fd6804, Notional: 1.5767499999999999
+		{Chain: 2, Addr: "0000000000000000000000009dfad1b7102d46b1b197b90095b5c4e9f5845bba", Symbol: "BOTTO", CoinGeckoId: "botto", Decimals: 18, Price: 0.246855},                                            // Addr: 0x9dfad1b7102d46b1b197b90095b5c4e9f5845bba, Notional: 52537.51077483873
+		{Chain: 2, Addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", Symbol: "OMNI", CoinGeckoId: "omnicat", Decimals: 18, Price: 0.00001466},                                         // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 160588.20611752162
+		{Chain: 2, Addr: "0000000000000000000000009f52c8ecbee10e00d9faaac5ee9ba0ff6550f511", Symbol: "SIPHER", CoinGeckoId: "sipher", Decimals: 18, Price: 0.03945509},                                        // Addr: 0x9f52c8ecbee10e00d9faaac5ee9ba0ff6550f511, Notional: 3.945509
+		{Chain: 2, Addr: "0000000000000000000000009fa69536d1cda4a04cfb50688294de75b505a9ae", Symbol: "DERC", CoinGeckoId: "derace", Decimals: 18, Price: 0.03239622},                                          // Addr: 0x9fa69536d1cda4a04cfb50688294de75b505a9ae, Notional: 3.2396220000000002
+		{Chain: 2, Addr: "0000000000000000000000009fda7ceec4c18008096c2fe2b85f05dc300f94d0", Symbol: "GAJ", CoinGeckoId: "gaj", Decimals: 18, Price: 0.00364659},                                              // Addr: 0x9fda7ceec4c18008096c2fe2b85f05dc300f94d0, Notional: 21.10834770861408
+		{Chain: 2, Addr: "000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48, Notional: 59122184.96661945
+		{Chain: 2, Addr: "000000000000000000000000a150db9b1fa65b44799d4dd949d922c0a33ee606", Symbol: "DRC", CoinGeckoId: "digital-reserve-currency", Decimals: 0, Price: 0.00014987},                          // Addr: 0xa150db9b1fa65b44799d4dd949d922c0a33ee606, Notional: 4.59126745
+		{Chain: 2, Addr: "000000000000000000000000a1d6df714f91debf4e0802a542e13067f31b8262", Symbol: "RFOX", CoinGeckoId: "redfox-labs-2", Decimals: 18, Price: 0.0008149},                                    // Addr: 0xa1d6df714f91debf4e0802a542e13067f31b8262, Notional: 44.8203149
+		{Chain: 2, Addr: "000000000000000000000000a21af1050f7b26e0cff45ee51548254c41ed6b5c", Symbol: "OSAK", CoinGeckoId: "osaka-protocol", Decimals: 18, Price: 9.3047e-8},                                   // Addr: 0xa21af1050f7b26e0cff45ee51548254c41ed6b5c, Notional: 1200.4326664067062
+		{Chain: 2, Addr: "000000000000000000000000a2cd3d43c775978a96bdbf12d733d5a1ed94fb18", Symbol: "XCN", CoinGeckoId: "chain-2", Decimals: 18, Price: 0.01553457},                                          // Addr: 0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18, Notional: 7107711.224414096
+		{Chain: 2, Addr: "000000000000000000000000a31b1767e09f842ecfd4bc471fe44f830e3891aa", Symbol: "ROOBEE", CoinGeckoId: "roobee", Decimals: 18, Price: 0.00011558},                                        // Addr: 0xa31b1767e09f842ecfd4bc471fe44f830e3891aa, Notional: 5.1842636324584
+		{Chain: 2, Addr: "000000000000000000000000a35923162c49cf95e6bf26623385eb431ad920d3", Symbol: "TURBO", CoinGeckoId: "turbo", Decimals: 18, Price: 0.00429588},                                          // Addr: 0xa35923162c49cf95e6bf26623385eb431ad920d3, Notional: 631284.4244263859
+		{Chain: 2, Addr: "000000000000000000000000a3a80559bbc1989654e6b8385f5001fa1333332f", Symbol: "RZR", CoinGeckoId: "raiser-token", Decimals: 18, Price: 0.00212146},                                     // Addr: 0xa3a80559bbc1989654e6b8385f5001fa1333332f, Notional: 0.015112128620498799
+		{Chain: 2, Addr: "000000000000000000000000a406844323f1603701e6ad95adc8a082213a68ce", Symbol: "PBT", CoinGeckoId: "polybet", Decimals: 18, Price: 0.00086603},                                          // Addr: 0xa406844323f1603701e6ad95adc8a082213a68ce, Notional: 12.028194367464
+		{Chain: 2, Addr: "000000000000000000000000a462bde22d98335e18a21555b6752db93a937cff", Symbol: "BOBBY", CoinGeckoId: "independence-token", Decimals: 18, Price: 0.00000185},                             // Addr: 0xa462bde22d98335e18a21555b6752db93a937cff, Notional: 9009.26897490032
+		{Chain: 2, Addr: "000000000000000000000000a47c8bf37f92abed4a126bda807a7b7498661acd", Symbol: "UST", CoinGeckoId: "wrapped-ust", Decimals: 18, Price: 0.01263232},                                      // Addr: 0xa47c8bf37f92abed4a126bda807a7b7498661acd, Notional: 4.335731019164711
+		{Chain: 2, Addr: "000000000000000000000000a5ef74068d04ba0809b7379dd76af5ce34ab7c57", Symbol: "LUCHOW", CoinGeckoId: "lunachow", Decimals: 18, Price: 7.3029e-8},                                       // Addr: 0xa5ef74068d04ba0809b7379dd76af5ce34ab7c57, Notional: 111.69763291897344
+		{Chain: 2, Addr: "000000000000000000000000a9e8acf069c58aec8825542845fd754e41a9489a", Symbol: "pepecoin", CoinGeckoId: "pepecoin-2", Decimals: 18, Price: 0.46529},                                     // Addr: 0xa9e8acf069c58aec8825542845fd754e41a9489a, Notional: 164572.48432919028
+		{Chain: 2, Addr: "000000000000000000000000aa2ce7ae64066175e0b90497ce7d9c190c315db4", Symbol: "Suter", CoinGeckoId: "suterusu", Decimals: 18, Price: 0.00002117},                                       // Addr: 0xaa2ce7ae64066175e0b90497ce7d9c190c315db4, Notional: 1.723911385945
+		{Chain: 2, Addr: "000000000000000000000000aa7a9ca87d3694b5755f213b5d04094b8d0f0a6f", Symbol: "TRAC", CoinGeckoId: "origintrail", Decimals: 18, Price: 0.385064},                                       // Addr: 0xaa7a9ca87d3694b5755f213b5d04094b8d0f0a6f, Notional: 32176.053586056194
+		{Chain: 2, Addr: "000000000000000000000000aaaebe6fe48e54f431b0c390cfaf0b017d09d42d", Symbol: "CEL", CoinGeckoId: "celsius-degree-token", Decimals: 4, Price: 0.087542},                                // Addr: 0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d, Notional: 2756.1026970932
+		{Chain: 2, Addr: "000000000000000000000000aaee1a9723aadb7afa2810263653a34ba2c21c7a", Symbol: "Mog", CoinGeckoId: "mog-coin", Decimals: 18, Price: 0.00000101},                                         // Addr: 0xaaee1a9723aadb7afa2810263653a34ba2c21c7a, Notional: 880.0257296999879
+		{Chain: 2, Addr: "000000000000000000000000ab2a7b5876d707e0126b3a75ef7781c77c8877ee", Symbol: "QUAD", CoinGeckoId: "quadency", Decimals: 18, Price: 0.00223337},                                        // Addr: 0xab2a7b5876d707e0126b3a75ef7781c77c8877ee, Notional: 5327.5188659551995
+		{Chain: 2, Addr: "000000000000000000000000ac51066d7bec65dc4589368da368b212745d63e8", Symbol: "ALICE", CoinGeckoId: "my-neighbor-alice", Decimals: 6, Price: 0.432288},                                 // Addr: 0xac51066d7bec65dc4589368da368b212745d63e8, Notional: 0.864576
+		{Chain: 2, Addr: "000000000000000000000000ac57de9c1a09fec648e93eb98875b212db0d460b", Symbol: "BabyDoge", CoinGeckoId: "baby-doge-coin", Decimals: 9, Price: 1.395e-9},                                 // Addr: 0xac57de9c1a09fec648e93eb98875b212db0d460b, Notional: 213.23626053750758
+		{Chain: 2, Addr: "000000000000000000000000ac6db8954b73ebf10e84278ac8b9b22a781615d9", Symbol: "BWB", CoinGeckoId: "bitget-wallet-token", Decimals: 18, Price: 0.470073},                                // Addr: 0xac6db8954b73ebf10e84278ac8b9b22a781615d9, Notional: 44621285.09161152
+		{Chain: 2, Addr: "000000000000000000000000ae1eaae3f627aaca434127644371b67b18444051", Symbol: "YOP", CoinGeckoId: "yield-optimization-platform", Decimals: 8, Price: 0.00009227},                       // Addr: 0xae1eaae3f627aaca434127644371b67b18444051, Notional: 0.006920249999999999
+		{Chain: 2, Addr: "000000000000000000000000ae6e307c3fe9e922e5674dbd7f830ed49c014c6b", Symbol: "CREDI", CoinGeckoId: "credefi", Decimals: 18, Price: 0.00649156},                                        // Addr: 0xae6e307c3fe9e922e5674dbd7f830ed49c014c6b, Notional: 48710.21719647977
+		{Chain: 2, Addr: "000000000000000000000000ae78736cd615f374d3085123a210448e74fc6393", Symbol: "rETH", CoinGeckoId: "rocket-pool-eth", Decimals: 18, Price: 2943.39},                                    // Addr: 0xae78736cd615f374d3085123a210448e74fc6393, Notional: 1030.1864999999998
+		{Chain: 2, Addr: "000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84", Symbol: "stETH", CoinGeckoId: "staked-ether", Decimals: 18, Price: 2582.32},                                      // Addr: 0xae7ab96520de3a18e5e111b5eaab095312d7fe84, Notional: 5839.037141808
+		{Chain: 2, Addr: "000000000000000000000000aee433adebe0fbb88daa47ef0c1a513caa52ef02", Symbol: "TOON", CoinGeckoId: "pontoon", Decimals: 18, Price: 0.00001961},                                         // Addr: 0xaee433adebe0fbb88daa47ef0c1a513caa52ef02, Notional: 0.39987508240404934
+		{Chain: 2, Addr: "000000000000000000000000b0ffa8000886e57f86dd5264b9582b2ad87b2b91", Symbol: "W", CoinGeckoId: "wormhole", Decimals: 18, Price: 0.074222},                                             // Addr: 0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91, Notional: 0.148445558662
+		{Chain: 2, Addr: "000000000000000000000000b131f337c45d386ceec234e194b2663d5c3d9dcf", Symbol: "ICOM", CoinGeckoId: "icommunity", Decimals: 18, Price: 0.00350145},                                      // Addr: 0xb131f337c45d386ceec234e194b2663d5c3d9dcf, Notional: 38845.0963841128
+		{Chain: 2, Addr: "000000000000000000000000b19dd661f076998e3b0456935092a233e12c2280", Symbol: "UM", CoinGeckoId: "continuum-world", Decimals: 18, Price: 0.00016795},                                   // Addr: 0xb19dd661f076998e3b0456935092a233e12c2280, Notional: 0.449323116025909
+		{Chain: 2, Addr: "000000000000000000000000b1f66997a5760428d3a87d68b90bfe0ae64121cc", Symbol: "LUA", CoinGeckoId: "lua-token", Decimals: 18, Price: 0.03879681},                                        // Addr: 0xb1f66997a5760428d3a87d68b90bfe0ae64121cc, Notional: 99555.87339204
+		{Chain: 2, Addr: "000000000000000000000000b2617246d0c6c0087f18703d576831899ca94f01", Symbol: "ZIG", CoinGeckoId: "zignaly", Decimals: 18, Price: 0.095405},                                            // Addr: 0xb2617246d0c6c0087f18703d576831899ca94f01, Notional: 195315.5764279528
+		{Chain: 2, Addr: "000000000000000000000000b369daca21ee035312176eb8cf9d88ce97e0aa95", Symbol: "SKOL", CoinGeckoId: "skol", Decimals: 18, Price: 0.084189},                                              // Addr: 0xb369daca21ee035312176eb8cf9d88ce97e0aa95, Notional: 102585.08259752623
+		{Chain: 2, Addr: "000000000000000000000000b50721bcf8d664c30412cfbc6cf7a15145234ad1", Symbol: "ARB", CoinGeckoId: "arbitrum", Decimals: 18, Price: 0.354061},                                           // Addr: 0xb50721bcf8d664c30412cfbc6cf7a15145234ad1, Notional: 95.15271790279718
+		{Chain: 2, Addr: "000000000000000000000000b5ce43fe2fcffffb2eece95ec413d08def28046f", Symbol: "PELO", CoinGeckoId: "pepelon-token", Decimals: 18, Price: 2.69112e-10},                                  // Addr: 0xb5ce43fe2fcffffb2eece95ec413d08def28046f, Notional: 2.6911199999999997
+		{Chain: 2, Addr: "000000000000000000000000b62e24b747eaa41454857cf6011832117df59cb8", Symbol: "EPIKO", CoinGeckoId: "epiko", Decimals: 18, Price: 0.00086816},                                          // Addr: 0xb62e24b747eaa41454857cf6011832117df59cb8, Notional: 18040.920875421933
+		{Chain: 2, Addr: "000000000000000000000000b69753c06bb5c366be51e73bfc0cc2e3dc07e371", Symbol: "POOH", CoinGeckoId: "pooh", Decimals: 18, Price: 8.229e-9},                                              // Addr: 0xb69753c06bb5c366be51e73bfc0cc2e3dc07e371, Notional: 699.69635808403
+		{Chain: 2, Addr: "000000000000000000000000b7cfe05915ef0c040c6dde2007c9ddab26259e04", Symbol: "MOLLY", CoinGeckoId: "molly-gateway", Decimals: 18, Price: 0.00027056},                                  // Addr: 0xb7cfe05915ef0c040c6dde2007c9ddab26259e04, Notional: 0.0000680744814816
+		{Chain: 2, Addr: "000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52", Symbol: "BNB", CoinGeckoId: "binancecoin", Decimals: 18, Price: 662.05},                                          // Addr: 0xb8c77482e45f1f44de1745f52c74426c631bdd52, Notional: 19170.1332806535
+		{Chain: 2, Addr: "000000000000000000000000b8e2e2101ed11e9138803cd3e06e16dd19910647", Symbol: "ARDX", CoinGeckoId: "ardcoin", Decimals: 2, Price: 0.00379947},                                          // Addr: 0xb8e2e2101ed11e9138803cd3e06e16dd19910647, Notional: 4563.9993534000005
+		{Chain: 2, Addr: "000000000000000000000000b9f599ce614feb2e1bbe58f180f370d05b39344e", Symbol: "PORK", CoinGeckoId: "pepefork", Decimals: 18, Price: 2.2364e-8},                                         // Addr: 0xb9f599ce614feb2e1bbe58f180f370d05b39344e, Notional: 32.94911248737982
+		{Chain: 2, Addr: "000000000000000000000000ba100000625a3754423978a60c9317c58a424e3d", Symbol: "BAL", CoinGeckoId: "balancer", Decimals: 18, Price: 1.079},                                              // Addr: 0xba100000625a3754423978a60c9317c58a424e3d, Notional: 11.864795223319998
+		{Chain: 2, Addr: "000000000000000000000000ba25b2281214300e4e649fead9a6d6acd25f1c0a", Symbol: "TREE", CoinGeckoId: "tree-capital", Decimals: 18, Price: 0.339534},                                      // Addr: 0xba25b2281214300e4e649fead9a6d6acd25f1c0a, Notional: 3657683.0808588634
+		{Chain: 2, Addr: "000000000000000000000000ba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70", Symbol: "JESUS", CoinGeckoId: "jesus-coin", Decimals: 18, Price: 3.8598e-8},                                      // Addr: 0xba386a4ca26b85fd057ab1ef86e3dc7bdeb5ce70, Notional: 1809.8752007233993
+		{Chain: 2, Addr: "000000000000000000000000ba5bde662c17e2adff1075610382b9b691296350", Symbol: "RARE", CoinGeckoId: "superrare", Decimals: 18, Price: 0.057987},                                         // Addr: 0xba5bde662c17e2adff1075610382b9b691296350, Notional: 204.0140074577712
+		{Chain: 2, Addr: "000000000000000000000000baac2b4491727d78d2b78815144570b9f2fe8899", Symbol: "DOG", CoinGeckoId: "the-doge-nft", Decimals: 18, Price: 0.00109697},                                     // Addr: 0xbaac2b4491727d78d2b78815144570b9f2fe8899, Notional: 621747.0048094187
+		{Chain: 2, Addr: "000000000000000000000000bb0e17ef65f82ab018d8edd776e8dd940327b28b", Symbol: "AXS", CoinGeckoId: "axie-infinity", Decimals: 18, Price: 2.48},                                          // Addr: 0xbb0e17ef65f82ab018d8edd776e8dd940327b28b, Notional: 3390.4552959064
+		{Chain: 2, Addr: "000000000000000000000000bba39fd2935d5769116ce38d46a71bde9cf03099", Symbol: "CHO", CoinGeckoId: "choise", Decimals: 18, Price: 0.00566232},                                           // Addr: 0xbba39fd2935d5769116ce38d46a71bde9cf03099, Notional: 88717.69628020296
+		{Chain: 2, Addr: "000000000000000000000000bc396689893d065f41bc2c6ecbee5e0085233447", Symbol: "PERP", CoinGeckoId: "perpetual-protocol", Decimals: 18, Price: 0.250492},                                // Addr: 0xbc396689893d065f41bc2c6ecbee5e0085233447, Notional: 4413.486041528874
+		{Chain: 2, Addr: "000000000000000000000000bcca60bb61934080951369a648fb03df4f96263c", Symbol: "aUSDC", CoinGeckoId: "aave-usdc", Decimals: 6, Price: 1.002},                                            // Addr: 0xbcca60bb61934080951369a648fb03df4f96263c, Notional: 7.022453874
+		{Chain: 2, Addr: "000000000000000000000000bd2f0cd039e0bfcf88901c98c0bfac5ab27566e3", Symbol: "DSD", CoinGeckoId: "dynamic-set-dollar", Decimals: 18, Price: 3.531e-8},                                 // Addr: 0xbd2f0cd039e0bfcf88901c98c0bfac5ab27566e3, Notional: 13.453689879628266
+		{Chain: 2, Addr: "000000000000000000000000bd6323a83b613f668687014e8a5852079494fb68", Symbol: "BTC", CoinGeckoId: "blackrocktradingcurrency", Decimals: 18, Price: 0.188829},                           // Addr: 0xbd6323a83b613f668687014e8a5852079494fb68, Notional: 0.94414499811171
+		{Chain: 2, Addr: "000000000000000000000000bd8fdda057de7e0162b7a386bec253844b5e07a5", Symbol: "JARVIS", CoinGeckoId: "jarvis-2", Decimals: 18, Price: 0.02853384},                                      // Addr: 0xbd8fdda057de7e0162b7a386bec253844b5e07a5, Notional: 693840.0331856624
+		{Chain: 2, Addr: "000000000000000000000000be33f57f41a20b2f00dec91dcc1169597f36221f", Symbol: "RUG", CoinGeckoId: "rug-rugged-art", Decimals: 18, Price: 9.68},                                         // Addr: 0xbe33f57f41a20b2f00dec91dcc1169597f36221f, Notional: 25670.7855885096
+		{Chain: 2, Addr: "000000000000000000000000bededdf2ef49e87037c4fb2ca34d1ff3d3992a11", Symbol: "FEG", CoinGeckoId: "feg-token-2", Decimals: 18, Price: 0.00010539},                                      // Addr: 0xbededdf2ef49e87037c4fb2ca34d1ff3d3992a11, Notional: 23.01923452561583
+		{Chain: 2, Addr: "000000000000000000000000beef01060047522408756e0000a90ce195a70000", Symbol: "APTR", CoinGeckoId: "aperture-finance", Decimals: 6, Price: 0.00132492},                                 // Addr: 0xbeef01060047522408756e0000a90ce195a70000, Notional: 474066.74844929064
+		{Chain: 2, Addr: "000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888", Symbol: "COMP", CoinGeckoId: "compound-governance-token", Decimals: 18, Price: 47.25},                            // Addr: 0xc00e94cb662c3520282e6f5717214004a7f26888, Notional: 235439.3755899675
+		{Chain: 2, Addr: "000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f", Symbol: "SNX", CoinGeckoId: "havven", Decimals: 18, Price: 0.66506},                                              // Addr: 0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f, Notional: 81.506038541587
+		{Chain: 2, Addr: "000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                               // Addr: 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2, Notional: 203164554.80539295
+		{Chain: 2, Addr: "000000000000000000000000c0a4df35568f116c370e6a6a6022ceb908eeddac", Symbol: "UMEE", CoinGeckoId: "umee", Decimals: 6, Price: 0.00021082},                                             // Addr: 0xc0a4df35568f116c370e6a6a6022ceb908eeddac, Notional: 0.21081999999999998
+		{Chain: 2, Addr: "000000000000000000000000c18360217d8f7ab5e7c516566761ea12ce7f9d72", Symbol: "ENS", CoinGeckoId: "ethereum-name-service", Decimals: 18, Price: 21.2},                                  // Addr: 0xc18360217d8f7ab5e7c516566761ea12ce7f9d72, Notional: 515.619898172
+		{Chain: 2, Addr: "000000000000000000000000c28eb2250d1ae32c7e74cfb6d6b86afc9beb6509", Symbol: "OPN", CoinGeckoId: "open-ticketing-ecosystem", Decimals: 18, Price: 0.00039846},                         // Addr: 0xc28eb2250d1ae32c7e74cfb6d6b86afc9beb6509, Notional: 13108.790441749523
+		{Chain: 2, Addr: "000000000000000000000000c4170fd71eced3c80badca77f4e12e8aac1e3436", Symbol: "KMON", CoinGeckoId: "kryptomon", Decimals: 18, Price: 0.00001347},                                       // Addr: 0xc4170fd71eced3c80badca77f4e12e8aac1e3436, Notional: 1935.1618704876382
+		{Chain: 2, Addr: "000000000000000000000000c477d038d5420c6a9e0b031712f61c5120090de9", Symbol: "BOSON", CoinGeckoId: "boson-protocol", Decimals: 18, Price: 0.104768},                                   // Addr: 0xc477d038d5420c6a9e0b031712f61c5120090de9, Notional: 103.78903465018688
+		{Chain: 2, Addr: "000000000000000000000000c4c2614e694cf534d407ee49f8e44d125e4681c4", Symbol: "CHAIN", CoinGeckoId: "chain-games", Decimals: 18, Price: 0.02568917},                                    // Addr: 0xc4c2614e694cf534d407ee49f8e44d125e4681c4, Notional: 111.16176344875646
+		{Chain: 2, Addr: "000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc", Symbol: "HOP", CoinGeckoId: "hop-protocol", Decimals: 18, Price: 0.00965908},                                     // Addr: 0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc, Notional: 0.28977240000000004
+		{Chain: 2, Addr: "000000000000000000000000c5ba042bf8832999b17c9036e8212f49dce0501a", Symbol: "YOURAI", CoinGeckoId: "your-ai", Decimals: 18, Price: 0.00147559},                                       // Addr: 0xc5ba042bf8832999b17c9036e8212f49dce0501a, Notional: 146963.60252078006
+		{Chain: 2, Addr: "000000000000000000000000c6c9448a86882d73164a984fa52285ab51c823bc", Symbol: "RPILL", CoinGeckoId: "red-pill-2", Decimals: 18, Price: 2.01909e-7},                                     // Addr: 0xc6c9448a86882d73164a984fa52285ab51c823bc, Notional: 1356.9190781375999
+		{Chain: 2, Addr: "000000000000000000000000c8168d5665f4418353728ac970713e09c0b7c20e", Symbol: "MONKE", CoinGeckoId: "monke-coin", Decimals: 18, Price: 3.2245e-8},                                      // Addr: 0xc8168d5665f4418353728ac970713e09c0b7c20e, Notional: 4421.88960105293
+		{Chain: 2, Addr: "000000000000000000000000c86d054809623432210c107af2e3f619dcfbf652", Symbol: "UPP", CoinGeckoId: "sentinel-protocol", Decimals: 18, Price: 0.04605828},                                // Addr: 0xc86d054809623432210c107af2e3f619dcfbf652, Notional: 0.4605828
+		{Chain: 2, Addr: "000000000000000000000000c944e90c64b2c07662a292be6244bdf05cda44a7", Symbol: "GRT", CoinGeckoId: "the-graph", Decimals: 18, Price: 0.094888},                                          // Addr: 0xc944e90c64b2c07662a292be6244bdf05cda44a7, Notional: 223.47964855666402
+		{Chain: 2, Addr: "000000000000000000000000c97d6c52f3add91fa1c5287a453d7444aecbca83", Symbol: "DZOO", CoinGeckoId: "degen-zoo", Decimals: 18, Price: 0.00101583},                                       // Addr: 0xc97d6c52f3add91fa1c5287a453d7444aecbca83, Notional: 328.21688060669294
+		{Chain: 2, Addr: "000000000000000000000000caabcaa4ca42e1d86de1a201c818639def0ba7a7", Symbol: "TALK", CoinGeckoId: "talken", Decimals: 18, Price: 0.00800042},                                          // Addr: 0xcaabcaa4ca42e1d86de1a201c818639def0ba7a7, Notional: 5272.081272822012
+		{Chain: 2, Addr: "000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5", Symbol: "PSP", CoinGeckoId: "paraswap", Decimals: 18, Price: 0.01879275},                                         // Addr: 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, Notional: 0.01698636305673
+		{Chain: 2, Addr: "000000000000000000000000cb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e", Symbol: "VEGA", CoinGeckoId: "vega-protocol", Decimals: 18, Price: 0.00196412},                                   // Addr: 0xcb84d72e61e383767c4dfeb2d8ff7f4fb89abc6e, Notional: 0.05695948000000001
+		{Chain: 2, Addr: "000000000000000000000000cb8fb2438a805664cd8c3e640b85ac473da5be87", Symbol: "CTI", CoinGeckoId: "clintex-cti", Decimals: 18, Price: 0.00230083},                                      // Addr: 0xcb8fb2438a805664cd8c3e640b85ac473da5be87, Notional: 17123.7307083666
+		{Chain: 2, Addr: "000000000000000000000000cbd55d4ffc43467142761a764763652b48b969ff", Symbol: "ASTRO", CoinGeckoId: "astrotools", Decimals: 18, Price: 0.04692197},                                     // Addr: 0xcbd55d4ffc43467142761a764763652b48b969ff, Notional: 7.049536848793098
+		{Chain: 2, Addr: "000000000000000000000000cc503242b574bc01145da7e2a743b43fb395ec91", Symbol: "ROVI", CoinGeckoId: "rovi-protocol", Decimals: 18, Price: 0.02260218},                                   // Addr: 0xcc503242b574bc01145da7e2a743b43fb395ec91, Notional: 3.4127031582000003
+		{Chain: 2, Addr: "000000000000000000000000cc8fa225d80b9c7d42f96e9570156c65d6caaa25", Symbol: "SLP", CoinGeckoId: "smooth-love-potion", Decimals: 0, Price: 0.00144776},                                // Addr: 0xcc8fa225d80b9c7d42f96e9570156c65d6caaa25, Notional: 2910.50576376
+		{Chain: 2, Addr: "000000000000000000000000ccdb064a41afcd432bcea6f6d0d1e7c371d0b002", Symbol: "QR", CoinGeckoId: "qrolli", Decimals: 9, Price: 0.00026195},                                             // Addr: 0xccdb064a41afcd432bcea6f6d0d1e7c371d0b002, Notional: 0.0005239
+		{Chain: 2, Addr: "000000000000000000000000cd1faff6e578fa5cac469d2418c95671ba1a62fe", Symbol: "XTM", CoinGeckoId: "torum", Decimals: 18, Price: 0.00489403},                                            // Addr: 0xcd1faff6e578fa5cac469d2418c95671ba1a62fe, Notional: 0.2447015
+		{Chain: 2, Addr: "000000000000000000000000cd5fe23c85820f7b72d0926fc9b05b43e359b7ee", Symbol: "weETH", CoinGeckoId: "wrapped-eeth", Decimals: 18, Price: 2765.97},                                      // Addr: 0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee, Notional: 17001.5703457293
+		{Chain: 2, Addr: "000000000000000000000000cdf7028ceab81fa0c6971208e83fa7872994bee5", Symbol: "T", CoinGeckoId: "threshold-network-token", Decimals: 18, Price: 0.01477466},                            // Addr: 0xcdf7028ceab81fa0c6971208e83fa7872994bee5, Notional: 1566.149785042848
+		{Chain: 2, Addr: "000000000000000000000000ce246eea10988c495b4a90a905ee9237a0f91543", Symbol: "VCX", CoinGeckoId: "vaultcraft", Decimals: 18, Price: 0.00785975},                                       // Addr: 0xce246eea10988c495b4a90a905ee9237a0f91543, Notional: 0.7859750000000001
+		{Chain: 2, Addr: "000000000000000000000000cf0c122c6b73ff809c693db761e7baebe62b6a2e", Symbol: "FLOKI", CoinGeckoId: "floki", Decimals: 9, Price: 0.00008564},                                           // Addr: 0xcf0c122c6b73ff809c693db761e7baebe62b6a2e, Notional: 13195.475638460524
+		{Chain: 2, Addr: "000000000000000000000000cfa0885131f602d11d4da248d2c65a62063567a9", Symbol: "TORG", CoinGeckoId: "torg", Decimals: 18, Price: 1.9398e-8},                                             // Addr: 0xcfa0885131f602d11d4da248d2c65a62063567a9, Notional: 0.77592184281
+		{Chain: 2, Addr: "000000000000000000000000cfd16933cb1579eee9fe6031686534e87353b148", Symbol: "AIMR", CoinGeckoId: "meromai", Decimals: 18, Price: 0.00102986},                                         // Addr: 0xcfd16933cb1579eee9fe6031686534e87353b148, Notional: 55998.163002356734
+		{Chain: 2, Addr: "000000000000000000000000d084b83c305dafd76ae3e1b4e1f1fe2ecccb3988", Symbol: "TVK", CoinGeckoId: "the-virtua-kolect", Decimals: 18, Price: 0.03314373},                                // Addr: 0xd084b83c305dafd76ae3e1b4e1f1fe2ecccb3988, Notional: 0.1669946269292217
+		{Chain: 2, Addr: "000000000000000000000000d0d56273290d339aaf1417d9bfa1bb8cfe8a0933", Symbol: "FOOM", CoinGeckoId: "foom", Decimals: 18, Price: 9.2073e-8},                                             // Addr: 0xd0d56273290d339aaf1417d9bfa1bb8cfe8a0933, Notional: 2397.5383979677144
+		{Chain: 2, Addr: "000000000000000000000000d13c7342e1ef687c5ad21b27c2b65d772cab5c8c", Symbol: "UOS", CoinGeckoId: "ultra", Decimals: 4, Price: 0.053418},                                               // Addr: 0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c, Notional: 535.24836
+		{Chain: 2, Addr: "000000000000000000000000d13cfd3133239a3c73a9e535a5c4dadee36b395c", Symbol: "VAI", CoinGeckoId: "vaiot", Decimals: 18, Price: 0.03080303},                                            // Addr: 0xd13cfd3133239a3c73a9e535a5c4dadee36b395c, Notional: 16.23319681
+		{Chain: 2, Addr: "000000000000000000000000d1ba9bac957322d6e8c07a160a3a8da11a0d2867", Symbol: "HMT", CoinGeckoId: "human-protocol", Decimals: 18, Price: 0.03333637},                                   // Addr: 0xd1ba9bac957322d6e8c07a160a3a8da11a0d2867, Notional: 40.036980369999995
+		{Chain: 2, Addr: "000000000000000000000000d1d2eb1b1e90b638588728b4130137d262c87cae", Symbol: "GALA", CoinGeckoId: "gala", Decimals: 8, Price: 0.01673087},                                             // Addr: 0xd1d2eb1b1e90b638588728b4130137d262c87cae, Notional: 13.451600247697625
+		{Chain: 2, Addr: "000000000000000000000000d2877702675e6ceb975b4a1dff9fb7baf4c91ea9", Symbol: "LUNA", CoinGeckoId: "wrapped-terra", Decimals: 18, Price: 0.00001547},                                   // Addr: 0xd2877702675e6ceb975b4a1dff9fb7baf4c91ea9, Notional: 2.9240781229472717
+		{Chain: 2, Addr: "000000000000000000000000d2be3722b17b616c51ed9b8944a227d1ce579c24", Symbol: "DTUBE", CoinGeckoId: "dtube-coin", Decimals: 2, Price: 0.02974105},                                      // Addr: 0xd2be3722b17b616c51ed9b8944a227d1ce579c24, Notional: 0.02974105
+		{Chain: 2, Addr: "000000000000000000000000d373576a9e738f37dc6882328358ff69c4caf4c6", Symbol: "ZAM", CoinGeckoId: "zam-io", Decimals: 18, Price: 0.00004189},                                           // Addr: 0xd373576a9e738f37dc6882328358ff69c4caf4c6, Notional: 0.0004189
+		{Chain: 2, Addr: "000000000000000000000000d38e031f4529a07996aab977d2b79f0e00656c56", Symbol: "wTBT", CoinGeckoId: "wtbt", Decimals: 18, Price: 1.18},                                                  // Addr: 0xd38e031f4529a07996aab977d2b79f0e00656c56, Notional: 475.495094923
+		{Chain: 2, Addr: "000000000000000000000000d3e4ba569045546d09cf021ecc5dfe42b1d7f6e4", Symbol: "MNW", CoinGeckoId: "morpheus-network", Decimals: 18, Price: 0.071187},                                   // Addr: 0xd3e4ba569045546d09cf021ecc5dfe42b1d7f6e4, Notional: 2.13561
+		{Chain: 2, Addr: "000000000000000000000000d3fb8597d260efb2e693efd500d62a330a00f1eb", Symbol: "TRUMP INU", CoinGeckoId: "t-inu", Decimals: 18, Price: 7.99821e-7},                                      // Addr: 0xd3fb8597d260efb2e693efd500d62a330a00f1eb, Notional: 645.6398156698708
+		{Chain: 2, Addr: "000000000000000000000000d417144312dbf50465b1c641d016962017ef6240", Symbol: "CQT", CoinGeckoId: "covalent", Decimals: 18, Price: 0.00317164},                                         // Addr: 0xd417144312dbf50465b1c641d016962017ef6240, Notional: 17969.322221341612
+		{Chain: 2, Addr: "000000000000000000000000d46ba6d942050d489dbd938a2c909a5d5039a161", Symbol: "AMPL", CoinGeckoId: "ampleforth", Decimals: 9, Price: 1.3},                                              // Addr: 0xd46ba6d942050d489dbd938a2c909a5d5039a161, Notional: 12.943962460000002
+		{Chain: 2, Addr: "000000000000000000000000d49efa7bc0d339d74f487959c573d518ba3f8437", Symbol: "COLI", CoinGeckoId: "shield-finance", Decimals: 18, Price: 0.00035629},                                  // Addr: 0xd49efa7bc0d339d74f487959c573d518ba3f8437, Notional: 61484.09891498043
+		{Chain: 2, Addr: "000000000000000000000000d4c435f5b09f855c3317c8524cb1f586e42795fa", Symbol: "CND", CoinGeckoId: "cindicator", Decimals: 18, Price: 0.00023121},                                       // Addr: 0xd4c435f5b09f855c3317c8524cb1f586e42795fa, Notional: 0.00092484
+		{Chain: 2, Addr: "000000000000000000000000d533a949740bb3306d119cc777fa900ba034cd52", Symbol: "CRV", CoinGeckoId: "curve-dao-token", Decimals: 18, Price: 0.6725},                                      // Addr: 0xd533a949740bb3306d119cc777fa900ba034cd52, Notional: 25636.916555358122
+		{Chain: 2, Addr: "000000000000000000000000d69f306549e9d96f183b1aeca30b8f4353c2ecc3", Symbol: "MCHC", CoinGeckoId: "mch-coin", Decimals: 18, Price: 0.02589926},                                        // Addr: 0xd69f306549e9d96f183b1aeca30b8f4353c2ecc3, Notional: 217.65369877308362
+		{Chain: 2, Addr: "000000000000000000000000d6c7bb8531295e88d364ea67d5d1acc7d3f87454", Symbol: "FTR", CoinGeckoId: "fautor", Decimals: 18, Price: 0.00796183},                                           // Addr: 0xd6c7bb8531295e88d364ea67d5d1acc7d3f87454, Notional: 0.00796183
+		{Chain: 2, Addr: "000000000000000000000000d7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f", Symbol: "B2M", CoinGeckoId: "bit2me", Decimals: 18, Price: 0.01310904},                                           // Addr: 0xd7c302fc3ac829c7e896a32c4bd126f3e8bd0a1f, Notional: 0.0068894707852152
+		{Chain: 2, Addr: "000000000000000000000000d7dcd9b99787c619b4d57979521258d1a7267ad7", Symbol: "EVRY", CoinGeckoId: "evrynet", Decimals: 18, Price: 0.00140897},                                         // Addr: 0xd7dcd9b99787c619b4d57979521258d1a7267ad7, Notional: 0.18034816
+		{Chain: 2, Addr: "000000000000000000000000d96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea", Symbol: "GMAC", CoinGeckoId: "gemach", Decimals: 18, Price: 0.00141788},                                          // Addr: 0xd96e84ddbc7cbe1d73c55b6fe8c64f3a6550deea, Notional: 42554.490507993105
+		{Chain: 2, Addr: "000000000000000000000000d979c468a68062e7bdff4ba6df7842dfd3492e0f", Symbol: "BBL", CoinGeckoId: "beoble", Decimals: 18, Price: 0.00016194},                                           // Addr: 0xd979c468a68062e7bdff4ba6df7842dfd3492e0f, Notional: 1012.0945959414289
+		{Chain: 2, Addr: "000000000000000000000000d9c2d319cd7e6177336b0a9c93c21cb48d84fb54", Symbol: "HAPI", CoinGeckoId: "hapi", Decimals: 18, Price: 3.24},                                                  // Addr: 0xd9c2d319cd7e6177336b0a9c93c21cb48d84fb54, Notional: 3.24
+		{Chain: 2, Addr: "000000000000000000000000da31d0d1bc934fc34f7189e38a413ca0a5e8b44f", Symbol: "BSSB", CoinGeckoId: "bitstable-finance", Decimals: 18, Price: 0.02773312},                               // Addr: 0xda31d0d1bc934fc34f7189e38a413ca0a5e8b44f, Notional: 0.2773312
+		{Chain: 2, Addr: "000000000000000000000000da9fdab21bc4a5811134a6e0ba6ca06624e67c07", Symbol: "QUIDD", CoinGeckoId: "quidd", Decimals: 18, Price: 0.00134726},                                          // Addr: 0xda9fdab21bc4a5811134a6e0ba6ca06624e67c07, Notional: 72.43812842
+		{Chain: 2, Addr: "000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                    // Addr: 0xdac17f958d2ee523a2206206994597c13d831ec7, Notional: 17200836.425639
+		{Chain: 2, Addr: "000000000000000000000000db0170e2d0c1cc1b2e7a90313d9b9afa4f250289", Symbol: "ADAPAD", CoinGeckoId: "adapad", Decimals: 18, Price: 0.00268922},                                        // Addr: 0xdb0170e2d0c1cc1b2e7a90313d9b9afa4f250289, Notional: 6.969022793204133
+		{Chain: 2, Addr: "000000000000000000000000db726152680ece3c9291f1016f1d36f3995f6941", Symbol: "MEDIA", CoinGeckoId: "media-network", Decimals: 6, Price: 0.755892},                                     // Addr: 0xdb726152680ece3c9291f1016f1d36f3995f6941, Notional: 0.755892
+		{Chain: 2, Addr: "000000000000000000000000db82c0d91e057e05600c8f8dc836beb41da6df14", Symbol: "SLN", CoinGeckoId: "smart-layer-network", Decimals: 18, Price: 0.0421123},                               // Addr: 0xdb82c0d91e057e05600c8f8dc836beb41da6df14, Notional: 9490.721985163038
+		{Chain: 2, Addr: "000000000000000000000000dbdb4d16eda451d0503b854cf79d55697f90c8df", Symbol: "ALCX", CoinGeckoId: "alchemix", Decimals: 18, Price: 9.07},                                              // Addr: 0xdbdb4d16eda451d0503b854cf79d55697f90c8df, Notional: 0.00907
+		{Chain: 2, Addr: "000000000000000000000000dd69db25f6d620a7bad3023c5d32761d353d3de9", Symbol: "GETH", CoinGeckoId: "goerli-eth", Decimals: 18, Price: 0.00532954},                                      // Addr: 0xdd69db25f6d620a7bad3023c5d32761d353d3de9, Notional: 0.3997155
+		{Chain: 2, Addr: "000000000000000000000000de30da39c46104798bb5aa3fe8b9e0e1f348163f", Symbol: "GTC", CoinGeckoId: "gitcoin", Decimals: 18, Price: 0.270909},                                            // Addr: 0xde30da39c46104798bb5aa3fe8b9e0e1f348163f, Notional: 5.689089
+		{Chain: 2, Addr: "000000000000000000000000de342a3e269056fc3305f9e315f4c40d917ba521", Symbol: "BYTE", CoinGeckoId: "byte", Decimals: 9, Price: 0.00000303},                                             // Addr: 0xde342a3e269056fc3305f9e315f4c40d917ba521, Notional: 104899.72773015148
+		{Chain: 2, Addr: "000000000000000000000000de4ee8057785a7e8e800db58f9784845a5c2cbd6", Symbol: "DEXE", CoinGeckoId: "dexe", Decimals: 18, Price: 8.91},                                                  // Addr: 0xde4ee8057785a7e8e800db58f9784845a5c2cbd6, Notional: 207242335.10566336
+		{Chain: 2, Addr: "000000000000000000000000de5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02", Symbol: "GERA", CoinGeckoId: "gera-coin", Decimals: 18, Price: 0.00004141},                                       // Addr: 0xde5ea375ffbdc8b25a80fe13d631e8ba0ab4bb02, Notional: 0.18361989746941587
+		{Chain: 2, Addr: "000000000000000000000000defb0b264032e4e128b00d02b3fd0aa00331237b", Symbol: "Buddha", CoinGeckoId: "buddha", Decimals: 18, Price: 4.82833e-7},                                        // Addr: 0xdefb0b264032e4e128b00d02b3fd0aa00331237b, Notional: 2312.3734262740463
+		{Chain: 2, Addr: "000000000000000000000000df09a216fac5adc3e640db418c0b956076509503", Symbol: "PKN", CoinGeckoId: "poken", Decimals: 18, Price: 0.00006353},                                            // Addr: 0xdf09a216fac5adc3e640db418c0b956076509503, Notional: 4.5425754252
+		{Chain: 2, Addr: "000000000000000000000000df3ac4f479375802a821f7b7b46cd7eb5e4262cc", Symbol: "eUSD", CoinGeckoId: "eusd-new", Decimals: 18, Price: 0.978265},                                          // Addr: 0xdf3ac4f479375802a821f7b7b46cd7eb5e4262cc, Notional: 4.89132499021735
+		{Chain: 2, Addr: "000000000000000000000000df574c24545e5ffecb9a659c229253d4111d87e1", Symbol: "HUSD", CoinGeckoId: "husd", Decimals: 8, Price: 0.03048033},                                             // Addr: 0xdf574c24545e5ffecb9a659c229253d4111d87e1, Notional: 235.0530983015702
+		{Chain: 2, Addr: "000000000000000000000000dfdb7f72c1f195c5951a234e8db9806eb0635346", Symbol: "NFD", CoinGeckoId: "feisty-doge-nft", Decimals: 18, Price: 0.00006942},                                  // Addr: 0xdfdb7f72c1f195c5951a234e8db9806eb0635346, Notional: 75435.43743128936
+		{Chain: 2, Addr: "000000000000000000000000e020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf", Symbol: "ARCD", CoinGeckoId: "arcade-protocol", Decimals: 18, Price: 0.00240919},                                 // Addr: 0xe020b01b6fbd83066aa2e8ee0ccd1eb8d9cc70bf, Notional: 0.722757
+		{Chain: 2, Addr: "000000000000000000000000e0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112", Symbol: "GS", CoinGeckoId: "genesis-shards", Decimals: 18, Price: 0.00481299},                                    // Addr: 0xe0b9a2c3e9f40cf74b2c7f591b2b0cca055c3112, Notional: 0.44748185867445056
+		{Chain: 2, Addr: "000000000000000000000000e0f63a424a4439cbe457d80e4f4b51ad25b2c56c", Symbol: "SPX", CoinGeckoId: "spx6900", Decimals: 8, Price: 1.36},                                                 // Addr: 0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c, Notional: 206927923.52856892
+		{Chain: 2, Addr: "000000000000000000000000e1c7e30c42c24582888c758984f6e382096786bd", Symbol: "XCUR", CoinGeckoId: "curate", Decimals: 8, Price: 0.0010096},                                            // Addr: 0xe1c7e30c42c24582888c758984f6e382096786bd, Notional: 0.0020192
+		{Chain: 2, Addr: "000000000000000000000000e28b3b32b6c345a34ff64674606124dd5aceca30", Symbol: "INJ", CoinGeckoId: "injective-protocol", Decimals: 18, Price: 13.61},                                    // Addr: 0xe28b3b32b6c345a34ff64674606124dd5aceca30, Notional: 117197.7627100126
+		{Chain: 2, Addr: "000000000000000000000000e3818504c1b32bf1557b16c238b2e01fd3149c17", Symbol: "PLR", CoinGeckoId: "pillar", Decimals: 18, Price: 0.00234533},                                           // Addr: 0xe3818504c1b32bf1557b16c238b2e01fd3149c17, Notional: 2.529414608507861
+		{Chain: 2, Addr: "000000000000000000000000e3c408bd53c31c085a1746af401a4042954ff740", Symbol: "GMT", CoinGeckoId: "stepn", Decimals: 8, Price: 0.051683},                                               // Addr: 0xe3c408bd53c31c085a1746af401a4042954ff740, Notional: 5.70955826402627
+		{Chain: 2, Addr: "000000000000000000000000e4ab0be415e277d82c38625b72bd7dea232c2e7d", Symbol: "XRP20", CoinGeckoId: "xrp20", Decimals: 18, Price: 0.00001324},                                          // Addr: 0xe4ab0be415e277d82c38625b72bd7dea232c2e7d, Notional: 0.5327433831539669
+		{Chain: 2, Addr: "000000000000000000000000e4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903", Symbol: "XEND", CoinGeckoId: "xend-finance", Decimals: 18, Price: 0.01573795},                                    // Addr: 0xe4cfe9eaa8cdb0942a80b7bc68fd8ab0f6d44903, Notional: 91.12133382618448
+		{Chain: 2, Addr: "000000000000000000000000e516d78d784c77d479977be58905b3f2b1111126", Symbol: "SPWN", CoinGeckoId: "bitspawn", Decimals: 18, Price: 0.000012},                                          // Addr: 0xe516d78d784c77d479977be58905b3f2b1111126, Notional: 16.90809937193028
+		{Chain: 2, Addr: "000000000000000000000000e53ec727dbdeb9e2d5456c3be40cff031ab40a55", Symbol: "SUPER", CoinGeckoId: "superfarm", Decimals: 18, Price: 0.696464},                                        // Addr: 0xe53ec727dbdeb9e2d5456c3be40cff031ab40a55, Notional: 69.6464
+		{Chain: 2, Addr: "000000000000000000000000e66747a101bff2dba3697199dcce5b743b454759", Symbol: "GT", CoinGeckoId: "gatechain-token", Decimals: 18, Price: 18.34},                                        // Addr: 0xe66747a101bff2dba3697199dcce5b743b454759, Notional: 3.618184892
+		{Chain: 2, Addr: "000000000000000000000000e6f47303032a09c8c0f8ebb713c00e6ed345e8c3", Symbol: "RISITA", CoinGeckoId: "risitas", Decimals: 18, Price: 0.00000172},                                       // Addr: 0xe6f47303032a09c8c0f8ebb713c00e6ed345e8c3, Notional: 0.2847044577892508
+		{Chain: 2, Addr: "000000000000000000000000e74dc43867e0cbeb208f1a012fc60dcbbf0e3044", Symbol: "CWAP", CoinGeckoId: "defire", Decimals: 18, Price: 0.00516272},                                          // Addr: 0xe74dc43867e0cbeb208f1a012fc60dcbbf0e3044, Notional: 0.01032544
+		{Chain: 2, Addr: "000000000000000000000000e7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd", Symbol: "NFTL", CoinGeckoId: "nftlaunch", Decimals: 18, Price: 0.00104422},                                       // Addr: 0xe7f72bc0252ca7b16dbb72eeee1afcdb2429f2dd, Notional: 1.0546622
+		{Chain: 2, Addr: "000000000000000000000000e831f96a7a1dce1aa2eb760b1e296c6a74caa9d5", Symbol: "NEXM", CoinGeckoId: "nexum", Decimals: 8, Price: 0.00452156},                                            // Addr: 0xe831f96a7a1dce1aa2eb760b1e296c6a74caa9d5, Notional: 2935.0231970589175
+		{Chain: 2, Addr: "000000000000000000000000e939f011a3d8fc0aa874c97e8156053a903d7176", Symbol: "DOLZ", CoinGeckoId: "dolz-io", Decimals: 18, Price: 0.00643153},                                         // Addr: 0xe939f011a3d8fc0aa874c97e8156053a903d7176, Notional: 229.96085253765693
+		{Chain: 2, Addr: "000000000000000000000000e9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5", Symbol: "ZENF", CoinGeckoId: "zenland", Decimals: 18, Price: 0.00139139},                                         // Addr: 0xe9b7b5d5e8d2bcc78884f9f9099bfa42a9e5c1a5, Notional: 18323.54814535227
+		{Chain: 2, Addr: "000000000000000000000000ea068fba19ce95f12d252ad8cb2939225c4ea02d", Symbol: "FIEF", CoinGeckoId: "fief", Decimals: 18, Price: 0.01982615},                                            // Addr: 0xea068fba19ce95f12d252ad8cb2939225c4ea02d, Notional: 156048.07930857898
+		{Chain: 2, Addr: "000000000000000000000000eaa63125dd63f10874f99cdbbb18410e7fc79dd3", Symbol: "HEMULE", CoinGeckoId: "hemule", Decimals: 18, Price: 0.00135531},                                        // Addr: 0xeaa63125dd63f10874f99cdbbb18410e7fc79dd3, Notional: 3001.92572279077
+		{Chain: 2, Addr: "000000000000000000000000eb4c2781e4eba804ce9a9803c67d0893436bb27d", Symbol: "renBTC", CoinGeckoId: "renbtc", Decimals: 8, Price: 24581},                                              // Addr: 0xeb4c2781e4eba804ce9a9803c67d0893436bb27d, Notional: 24.581
+		{Chain: 2, Addr: "000000000000000000000000ebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83", Symbol: "ID", CoinGeckoId: "everid", Decimals: 18, Price: 0.01389116},                                            // Addr: 0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83, Notional: 359.9833758878177
+		{Chain: 2, Addr: "000000000000000000000000ed35af169af46a02ee13b9d79eb57d6d68c1749e", Symbol: "OMI", CoinGeckoId: "ecomi", Decimals: 18, Price: 0.00021611},                                            // Addr: 0xed35af169af46a02ee13b9d79eb57d6d68c1749e, Notional: 4.3222
+		{Chain: 2, Addr: "000000000000000000000000f0d33beda4d734c72684b5f9abbebf715d0a7935", Symbol: "NTX", CoinGeckoId: "nunet", Decimals: 6, Price: 0.01329238},                                             // Addr: 0xf0d33beda4d734c72684b5f9abbebf715d0a7935, Notional: 3.1254373093999996
+		{Chain: 2, Addr: "000000000000000000000000f1182229b71e79e504b1d2bf076c15a277311e05", Symbol: "LBR", CoinGeckoId: "lybra-finance", Decimals: 18, Price: 0.04172701},                                    // Addr: 0xf1182229b71e79e504b1d2bf076c15a277311e05, Notional: 0.004172701
+		{Chain: 2, Addr: "000000000000000000000000f16e81dce15b08f326220742020379b855b87df9", Symbol: "ICE", CoinGeckoId: "ice-token", Decimals: 18, Price: 0.16271},                                           // Addr: 0xf16e81dce15b08f326220742020379b855b87df9, Notional: 120.6434517558178
+		{Chain: 2, Addr: "000000000000000000000000f17a3fe536f8f7847f1385ec1bc967b2ca9cae8d", Symbol: "AMKT", CoinGeckoId: "alongside-crypto-market-index", Decimals: 18, Price: 285.7},                        // Addr: 0xf17a3fe536f8f7847f1385ec1bc967b2ca9cae8d, Notional: 28.57
+		{Chain: 2, Addr: "000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2", Symbol: "BICO", CoinGeckoId: "biconomy", Decimals: 18, Price: 0.104492},                                          // Addr: 0xf17e65822b568b3903685a7c9f496cf7656cc6c2, Notional: 11142.227502392427
+		{Chain: 2, Addr: "000000000000000000000000f19308f923582a6f7c465e5ce7a9dc1bec6665b1", Symbol: "TITANX", CoinGeckoId: "titanx", Decimals: 18, Price: 1.32219e-7},                                        // Addr: 0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1, Notional: 230.92201915794908
+		{Chain: 2, Addr: "000000000000000000000000f1f955016ecbcd7321c7266bccfb96c68ea5e49b", Symbol: "RLY", CoinGeckoId: "rally-2", Decimals: 18, Price: 0.00125748},                                          // Addr: 0xf1f955016ecbcd7321c7266bccfb96c68ea5e49b, Notional: 50547.78886457924
+		{Chain: 2, Addr: "000000000000000000000000f21661d0d1d76d3ecb8e1b9f1c923dbfffae4097", Symbol: "RIO", CoinGeckoId: "realio-network", Decimals: 18, Price: 0.260276},                                     // Addr: 0xf21661d0d1d76d3ecb8e1b9f1c923dbfffae4097, Notional: 4.148530749276921
+		{Chain: 2, Addr: "000000000000000000000000f2fdd9c25d7bc8002ce89716d1be484b2d976944", Symbol: "𝕏PAY", CoinGeckoId: "payments", Decimals: 18, Price: 0.00021002},                                        // Addr: 0xf2fdd9c25d7bc8002ce89716d1be484b2d976944, Notional: 5.2505
+		{Chain: 2, Addr: "000000000000000000000000f3ae5d769e153ef72b4e3591ac004e89f48107a1", Symbol: "DPR", CoinGeckoId: "deeper-network", Decimals: 18, Price: 0.00119401},                                   // Addr: 0xf3ae5d769e153ef72b4e3591ac004e89f48107a1, Notional: 22.69734782545926
+		{Chain: 2, Addr: "000000000000000000000000f418588522d5dd018b425e472991e52ebbeeeeee", Symbol: "PUSH", CoinGeckoId: "ethereum-push-notification-service", Decimals: 18, Price: 0.03470062},              // Addr: 0xf418588522d5dd018b425e472991e52ebbeeeeee, Notional: 0.03470062
+		{Chain: 2, Addr: "000000000000000000000000f629cbd94d3791c9250152bd8dfbdf380e2a3b9c", Symbol: "ENJ", CoinGeckoId: "enjincoin", Decimals: 18, Price: 0.076267},                                          // Addr: 0xf629cbd94d3791c9250152bd8dfbdf380e2a3b9c, Notional: 145.23480346339
+		{Chain: 2, Addr: "000000000000000000000000f64265e65c4529879a7abf467e00d39e39c0b0da", Symbol: "RFKJ", CoinGeckoId: "independence-token", Decimals: 18, Price: 0.00000185},                              // Addr: 0xf64265e65c4529879a7abf467e00d39e39c0b0da, Notional: 2974.225207343221
+		{Chain: 2, Addr: "000000000000000000000000f6e06b54855eff198a2d9a8686113665499a6134", Symbol: "Celt", CoinGeckoId: "celestial", Decimals: 18, Price: 0.00001329},                                       // Addr: 0xf6e06b54855eff198a2d9a8686113665499a6134, Notional: 0.01997487
+		{Chain: 2, Addr: "000000000000000000000000f70ce9ee486106882d3dc43ddbd84e0fa71ac2a5", Symbol: "DUCKER", CoinGeckoId: "ducker", Decimals: 18, Price: 8.76292e-7},                                        // Addr: 0xf70ce9ee486106882d3dc43ddbd84e0fa71ac2a5, Notional: 441.06331336290583
+		{Chain: 2, Addr: "000000000000000000000000f7413489c474ca4399eee604716c72879eea3615", Symbol: "APYS", CoinGeckoId: "apyswap", Decimals: 18, Price: 0.00233419},                                         // Addr: 0xf7413489c474ca4399eee604716c72879eea3615, Notional: 0.35917828044284095
+		{Chain: 2, Addr: "000000000000000000000000f819d9cb1c2a819fd991781a822de3ca8607c3c9", Symbol: "UNIBOT", CoinGeckoId: "unibot", Decimals: 18, Price: 3.74},                                              // Addr: 0xf819d9cb1c2a819fd991781a822de3ca8607c3c9, Notional: 366.02442430620005
+		{Chain: 2, Addr: "000000000000000000000000f831938caf837cd505de196bbb408d81a06376ab", Symbol: "JEFF", CoinGeckoId: "jeff", Decimals: 18, Price: 0.00253905},                                            // Addr: 0xf831938caf837cd505de196bbb408d81a06376ab, Notional: 2113.4295447447034
+		{Chain: 2, Addr: "000000000000000000000000f8c3527cc04340b208c854e985240c02f7b7793f", Symbol: "FRONT", CoinGeckoId: "frontier-token", Decimals: 18, Price: 0.18354},                                    // Addr: 0xf8c3527cc04340b208c854e985240c02f7b7793f, Notional: 681.8438128856844
+		{Chain: 2, Addr: "000000000000000000000000f99d58e463a2e07e5692127302c20a191861b4d6", Symbol: "ANY", CoinGeckoId: "anyswap", Decimals: 18, Price: 0.641778},                                            // Addr: 0xf99d58e463a2e07e5692127302c20a191861b4d6, Notional: 3.7856375016603
+		{Chain: 2, Addr: "000000000000000000000000fa3e941d1f6b7b10ed84a0c211bfa8aee907965e", Symbol: "HAY", CoinGeckoId: "haycoin", Decimals: 18, Price: 99681},                                               // Addr: 0xfa3e941d1f6b7b10ed84a0c211bfa8aee907965e, Notional: 10945.7413437
+		{Chain: 2, Addr: "000000000000000000000000faba6f8e4a5e8ab82f62fe7c39859fa577269be3", Symbol: "ONDO", CoinGeckoId: "ondo-finance", Decimals: 18, Price: 0.849821},                                      // Addr: 0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3, Notional: 607378.966194
+		{Chain: 2, Addr: "000000000000000000000000fad45e47083e4607302aa43c65fb3106f1cd7607", Symbol: "HOGE", CoinGeckoId: "hoge-finance", Decimals: 9, Price: 0.00000667},                                     // Addr: 0xfad45e47083e4607302aa43c65fb3106f1cd7607, Notional: 9485.561741631236
+		{Chain: 2, Addr: "000000000000000000000000fb5c6815ca3ac72ce9f5006869ae67f18bf77006", Symbol: "PSTAKE", CoinGeckoId: "pstake-finance", Decimals: 18, Price: 0.051344},                                  // Addr: 0xfb5c6815ca3ac72ce9f5006869ae67f18bf77006, Notional: 1061.0638298413512
+		{Chain: 2, Addr: "000000000000000000000000fc05987bd2be489accf0f509e44b0145d68240f7", Symbol: "ESS", CoinGeckoId: "essentia", Decimals: 18, Price: 0.00022657},                                         // Addr: 0xfc05987bd2be489accf0f509e44b0145d68240f7, Notional: 0.00022657
+		{Chain: 2, Addr: "000000000000000000000000fc5e4ed56153b57aa8ef769eba3e79e58e19be93", Symbol: "SOLAV", CoinGeckoId: "solav", Decimals: 18, Price: 9.80223e-7},                                          // Addr: 0xfc5e4ed56153b57aa8ef769eba3e79e58e19be93, Notional: 0.000985124115
+		{Chain: 2, Addr: "000000000000000000000000fcaf0e4498e78d65526a507360f755178b804ba8", Symbol: "SHIB", CoinGeckoId: "niccagewaluigielmo42069inu", Decimals: 18, Price: 0.00003299},                      // Addr: 0xfcaf0e4498e78d65526a507360f755178b804ba8, Notional: 7.582233964773884
+		{Chain: 2, Addr: "000000000000000000000000fd09911130e6930bf87f2b0554c44f400bd80d3e", Symbol: "ETHIX", CoinGeckoId: "ethichub", Decimals: 18, Price: 0.17463},                                          // Addr: 0xfd09911130e6930bf87f2b0554c44f400bd80d3e, Notional: 3817261.4854207016
+		{Chain: 2, Addr: "000000000000000000000000fe80d611c6403f70e5b1b9b722d2b3510b740b2b", Symbol: "EQB", CoinGeckoId: "equilibria-finance", Decimals: 18, Price: 0.3896},                                   // Addr: 0xfe80d611c6403f70e5b1b9b722d2b3510b740b2b, Notional: 376202.11417268176
+		{Chain: 2, Addr: "000000000000000000000000ff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa", Symbol: "ORBS", CoinGeckoId: "orbs", Decimals: 18, Price: 0.01933224},                                            // Addr: 0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa, Notional: 7268.724023429437
+		{Chain: 2, Addr: "000000000000000000000000ff836a5821e69066c87e268bc51b849fab94240c", Symbol: "шайлушай", CoinGeckoId: "real-smurf-cat", Decimals: 18, Price: 0.00002656},                              // Addr: 0xff836a5821e69066c87e268bc51b849fab94240c, Notional: 57652.65477678875
+		{Chain: 2, Addr: "000000000000000000000000ffbf315f70e458e49229654dea4ce192d26f9b25", Symbol: "VOLT", CoinGeckoId: "voltage", Decimals: 18, Price: 0.00155692},                                         // Addr: 0xffbf315f70e458e49229654dea4ce192d26f9b25, Notional: 0.155692
+		{Chain: 3, Addr: "0000000000000000000000002c71557d2edfedd8330e52be500058a014d329e7", Symbol: "BTL", CoinGeckoId: "bitlocus", Decimals: 6, Price: 0.00005985},                                          // Addr: terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl, Notional: 29616.631339222808
+		{Chain: 3, Addr: "00000000000000000000000034aa51100370594b15479392149157eeb479b9a8", Symbol: "ASTRO", CoinGeckoId: "astroport", Decimals: 6, Price: 0.00020221},                                       // Addr: terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3, Notional: 0.14135292652598
+		{Chain: 3, Addr: "0000000000000000000000005b7d58fe96a636927960029ea47996db5808d015", Symbol: "XRUNE", CoinGeckoId: "thorstarter", Decimals: 6, Price: 0.00265434},                                     // Addr: terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm, Notional: 20.391137969555338
+		{Chain: 3, Addr: "0000000000000000000000008f5cd460d57ac54e111646fc569179144c7f0c28", Symbol: "PLY", CoinGeckoId: "playnity", Decimals: 6, Price: 0.00025219},                                          // Addr: terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu, Notional: 22775.057525339213
+		{Chain: 3, Addr: "000000000000000000000000a21d626429c68c8c768ba0b2913895571703fd5b", Symbol: "MIR", CoinGeckoId: "mirror-protocol", Decimals: 6, Price: 0.02046236},                                   // Addr: terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6, Notional: 460.4472385382616
+		{Chain: 3, Addr: "000000000000000000000000a8a9afbd2157e093e8448dd6450abec8ad79aeeb", Symbol: "ANC", CoinGeckoId: "anchor-protocol", Decimals: 6, Price: 0.00314273},                                   // Addr: terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76, Notional: 379.3356897379766
+		{Chain: 3, Addr: "000000000000000000000000ab05561fadecc41babc73132847ff55a5cef2f37", Symbol: "TNS", CoinGeckoId: "terra-name-service", Decimals: 6, Price: 0.0010459},                                 // Addr: terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y, Notional: 0.826261
+		{Chain: 3, Addr: "0100000000000000000000000000000000000000000000000000000075757364", Symbol: "UST", CoinGeckoId: "terrausd", Decimals: 6, Price: 0.01216763},                                          // Addr: uusd, Notional: 1703638.1211902797
+		{Chain: 3, Addr: "010000000000000000000000000000000000000000000000000000756c756e61", Symbol: "LUNA", CoinGeckoId: "terra-luna", Decimals: 6, Price: 0.00006074},                                       // Addr: uluna, Notional: 4819576.881343387
+		{Chain: 4, Addr: "0000000000000000000000000231f91e02debd20345ae8ab7d71a41f8e140ce7", Symbol: "bwJUP", CoinGeckoId: "jupiter", Decimals: 18, Price: 0.0006665},                                         // Addr: 0x0231f91e02debd20345ae8ab7d71a41f8e140ce7, Notional: 18.219083107159104
+		{Chain: 4, Addr: "000000000000000000000000027a9d301fb747cd972cfb29a63f3bda551dfc5c", Symbol: "mWOM", CoinGeckoId: "magpie-wom", Decimals: 18, Price: 0.00270813},                                      // Addr: 0x027a9d301fb747cd972cfb29a63f3bda551dfc5c, Notional: 1.3192875179719659
+		{Chain: 4, Addr: "000000000000000000000000031b41e504677879370e9dbcf937283a8691fa7f", Symbol: "FET", CoinGeckoId: "fetch-ai", Decimals: 18, Price: 0.777723},                                           // Addr: 0x031b41e504677879370e9dbcf937283a8691fa7f, Notional: 0.15554460000000003
+		{Chain: 4, Addr: "000000000000000000000000039cb485212f996a9dbb85a9a75d898f94d38da6", Symbol: "DEXE", CoinGeckoId: "dexe", Decimals: 18, Price: 8.91},                                                  // Addr: 0x039cb485212f996a9dbb85a9a75d898f94d38da6, Notional: 18.711000000000002
+		{Chain: 4, Addr: "00000000000000000000000003ff0ff224f904be3118461335064bb48df47938", Symbol: "ONE", CoinGeckoId: "wrapped-one", Decimals: 18, Price: 0.01204436},                                      // Addr: 0x03ff0ff224f904be3118461335064bb48df47938, Notional: 205.21577051517272
+		{Chain: 4, Addr: "0000000000000000000000000782b6d8c4551b9760e74c0545a9bcd90bdc41e5", Symbol: "HAY", CoinGeckoId: "helio-protocol-hay", Decimals: 18, Price: 0.999434},                                 // Addr: 0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5, Notional: 17.47763838443722
+		{Chain: 4, Addr: "00000000000000000000000008b450e4a48c04cdf6db2bd4cf24057f7b9563ff", Symbol: "QUO", CoinGeckoId: "quo", Decimals: 18, Price: 0.00043327},                                              // Addr: 0x08b450e4a48c04cdf6db2bd4cf24057f7b9563ff, Notional: 8061.428352659088
+		{Chain: 4, Addr: "0000000000000000000000000a356f512f6fce740111ee04ab1699017a908680", Symbol: "UFARM", CoinGeckoId: "unifarm", Decimals: 18, Price: 0.00023343},                                        // Addr: 0x0a356f512f6fce740111ee04ab1699017a908680, Notional: 0.1589361606221574
+		{Chain: 4, Addr: "0000000000000000000000000b15ddf19d47e6a86a56148fb4afffc6929bcb89", Symbol: "IDIA", CoinGeckoId: "idia", Decimals: 18, Price: 0.02829531},                                            // Addr: 0x0b15ddf19d47e6a86a56148fb4afffc6929bcb89, Notional: 3753235.1119032856
+		{Chain: 4, Addr: "0000000000000000000000000b33542240d6fa323c796749f6d6869fdb7f13ca", Symbol: "ETHM", CoinGeckoId: "ethereum-meta", Decimals: 18, Price: 3.6581e-14},                                   // Addr: 0x0b33542240d6fa323c796749f6d6869fdb7f13ca, Notional: 0.0007743894856432907
+		{Chain: 4, Addr: "0000000000000000000000000c7d31befe4945089a3b8f835d6e8c1d4df6d952", Symbol: "POKO", CoinGeckoId: "poko", Decimals: 9, Price: 0.00000395},                                             // Addr: 0x0c7d31befe4945089a3b8f835d6e8c1d4df6d952, Notional: 17869.22621099765
+		{Chain: 4, Addr: "0000000000000000000000000cf8e180350253271f4b917ccfb0accc4862f262", Symbol: "BTCBR", CoinGeckoId: "bitcoin-br", Decimals: 18, Price: 2.2727e-14},                                     // Addr: 0x0cf8e180350253271f4b917ccfb0accc4862f262, Notional: 0.00115907722727
+		{Chain: 4, Addr: "0000000000000000000000000d8ce2a99bb6e3b7db580ed848240e4a0f9ae153", Symbol: "FIL", CoinGeckoId: "binance-peg-filecoin", Decimals: 18, Price: 2.52},                                   // Addr: 0x0d8ce2a99bb6e3b7db580ed848240e4a0f9ae153, Notional: 179.32319999999999
+		{Chain: 4, Addr: "0000000000000000000000000e09fabb73bd3ade0a17ecc321fd13a19e81ce82", Symbol: "Cake", CoinGeckoId: "pancakeswap-token", Decimals: 18, Price: 2.41},                                     // Addr: 0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82, Notional: 447.4087582124001
+		{Chain: 4, Addr: "0000000000000000000000000eb3a705fc54725037cc9e008bdede697f62f335", Symbol: "ATOM", CoinGeckoId: "cosmos", Decimals: 18, Price: 4.37},                                                // Addr: 0x0eb3a705fc54725037cc9e008bdede697f62f335, Notional: 435.8176100177
+		{Chain: 4, Addr: "0000000000000000000000000ebd9537a25f56713e34c45b38f421a1e7191469", Symbol: "MOOV", CoinGeckoId: "dotmoovs", Decimals: 18, Price: 0.0010922},                                         // Addr: 0x0ebd9537a25f56713e34c45b38f421a1e7191469, Notional: 243.90546505636604
+		{Chain: 4, Addr: "00000000000000000000000010c9524dbf934b3b625dce3bdc0efdc367f4e84b", Symbol: "MVX", CoinGeckoId: "mavaverse-token", Decimals: 8, Price: 1.00838e-7},                                   // Addr: 0x10c9524dbf934b3b625dce3bdc0efdc367f4e84b, Notional: 0.016067383492629032
+		{Chain: 4, Addr: "00000000000000000000000010f6f2b97f3ab29583d9d38babf2994df7220c21", Symbol: "TEDDY", CoinGeckoId: "teddy-doge", Decimals: 18, Price: 1.50024e-10},                                    // Addr: 0x10f6f2b97f3ab29583d9d38babf2994df7220c21, Notional: 0.30783698513606866
+		{Chain: 4, Addr: "000000000000000000000000111111111117dc0aa78b770fa6a738034120c302", Symbol: "1INCH", CoinGeckoId: "1inch", Decimals: 18, Price: 0.209226},                                            // Addr: 0x111111111117dc0aa78b770fa6a738034120c302, Notional: 16.32715156401078
+		{Chain: 4, Addr: "000000000000000000000000114597f4260caf4cde1eeb0b9d9865b0b7b9a46a", Symbol: "AGF", CoinGeckoId: "augmented-finance", Decimals: 18, Price: 0.00006308},                                // Addr: 0x114597f4260caf4cde1eeb0b9d9865b0b7b9a46a, Notional: 0.0012615999999999999
+		{Chain: 4, Addr: "00000000000000000000000011a38e06699b238d6d9a0c7a01f3ac63a07ad318", Symbol: "USDFI", CoinGeckoId: "usdfi", Decimals: 18, Price: 0.724382},                                            // Addr: 0x11a38e06699b238d6d9a0c7a01f3ac63a07ad318, Notional: 0.724382
+		{Chain: 4, Addr: "000000000000000000000000129385c4acd0075e45a0c9a5177bdfec9678a138", Symbol: "MTK", CoinGeckoId: "metakings", Decimals: 18, Price: 0.00010591},                                        // Addr: 0x129385c4acd0075e45a0c9a5177bdfec9678a138, Notional: 0.0042363999999999995
+		{Chain: 4, Addr: "00000000000000000000000012bb890508c125661e03b09ec06e404bc9289040", Symbol: "RACA", CoinGeckoId: "radio-caca", Decimals: 18, Price: 0.00007078},                                      // Addr: 0x12bb890508c125661e03b09ec06e404bc9289040, Notional: 126.20534065547938
+		{Chain: 4, Addr: "00000000000000000000000012e34cdf6a031a10fe241864c32fb03a4fdad739", Symbol: "FREE", CoinGeckoId: "freedom-coin", Decimals: 18, Price: 5.5463e-8},                                     // Addr: 0x12e34cdf6a031a10fe241864c32fb03a4fdad739, Notional: 0.00001275649
+		{Chain: 4, Addr: "00000000000000000000000012f31b73d812c6bb0d735a218c086d44d5fe5f89", Symbol: "agEUR", CoinGeckoId: "ageur", Decimals: 18, Price: 1.14},                                                // Addr: 0x12f31b73d812c6bb0d735a218c086d44d5fe5f89, Notional: 17.8777950048
+		{Chain: 4, Addr: "0000000000000000000000001446f3cedf4d86a9399e49f7937766e6de2a3aab", Symbol: "KRW", CoinGeckoId: "krown", Decimals: 18, Price: 0.00000405},                                            // Addr: 0x1446f3cedf4d86a9399e49f7937766e6de2a3aab, Notional: 0.1614617230357395
+		{Chain: 4, Addr: "00000000000000000000000014778860e937f509e651192a90589de711fb88a9", Symbol: "CYBER", CoinGeckoId: "cyberconnect", Decimals: 18, Price: 1.16},                                         // Addr: 0x14778860e937f509e651192a90589de711fb88a9, Notional: 15.222959293199999
+		{Chain: 4, Addr: "000000000000000000000000154a9f9cbd3449ad22fdae23044319d6ef2a1fab", Symbol: "SKILL", CoinGeckoId: "cryptoblades", Decimals: 18, Price: 0.074377},                                     // Addr: 0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab, Notional: 0.000074377
+		{Chain: 4, Addr: "0000000000000000000000001591e923e0836a3949b59637fbe8959f000894b9", Symbol: "MAI", CoinGeckoId: "multi-ai", Decimals: 18, Price: 0.00036258},                                         // Addr: 0x1591e923e0836a3949b59637fbe8959f000894b9, Notional: 2.3772793609123717
+		{Chain: 4, Addr: "0000000000000000000000001613957159e9b0ac6c80e824f7eea748a32a0ae2", Symbol: "CGG", CoinGeckoId: "chain-guardians", Decimals: 18, Price: 0.00120178},                                  // Addr: 0x1613957159e9b0ac6c80e824f7eea748a32a0ae2, Notional: 0.9985835479118413
+		{Chain: 4, Addr: "00000000000000000000000016faf9daa401aa42506af503aa3d80b871c467a3", Symbol: "DCK", CoinGeckoId: "dexcheck", Decimals: 18, Price: 0.00870273},                                         // Addr: 0x16faf9daa401aa42506af503aa3d80b871c467a3, Notional: 94675.44069089113
+		{Chain: 4, Addr: "0000000000000000000000001796ae0b0fa4862485106a0de9b654efe301d0b2", Symbol: "PMON", CoinGeckoId: "polychain-monsters", Decimals: 18, Price: 0.04947109},                              // Addr: 0x1796ae0b0fa4862485106a0de9b654efe301d0b2, Notional: 0.018041516827607202
+		{Chain: 4, Addr: "00000000000000000000000019b99162adaab85134e781ac0048c275c31b205a", Symbol: "TAUR", CoinGeckoId: "marnotaur", Decimals: 18, Price: 0.00085954},                                       // Addr: 0x19b99162adaab85134e781ac0048c275c31b205a, Notional: 3.506640231541423
+		{Chain: 4, Addr: "00000000000000000000000019c018e13cff682e729cc7b5fb68c8a641bf98a4", Symbol: "burn", CoinGeckoId: "burnedfi", Decimals: 18, Price: 1.84},                                              // Addr: 0x19c018e13cff682e729cc7b5fb68c8a641bf98a4, Notional: 68.609667552
+		{Chain: 4, Addr: "0000000000000000000000001a131f7b106d58f33eaf0fe5b47db2f2045e5732", Symbol: "DEGEN", CoinGeckoId: "degenreborn", Decimals: 18, Price: 3.301e-9},                                      // Addr: 0x1a131f7b106d58f33eaf0fe5b47db2f2045e5732, Notional: 597.9909584753752
+		{Chain: 4, Addr: "0000000000000000000000001a28ed8472f644e8898a169a644503b779748d6e", Symbol: "SOFI", CoinGeckoId: "rai-finance", Decimals: 18, Price: 0.01213801},                                     // Addr: 0x1a28ed8472f644e8898a169a644503b779748d6e, Notional: 40.73604386527099
+		{Chain: 4, Addr: "0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                                // Addr: 0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3, Notional: 1526.7160142802352
+		{Chain: 4, Addr: "0000000000000000000000001cb9ca00538265a22e56b758026948608ba5d86f", Symbol: "LSR", CoinGeckoId: "lasereyes", Decimals: 8, Price: 0.00072701},                                         // Addr: 0x1cb9ca00538265a22e56b758026948608ba5d86f, Notional: 0.11341356000000001
+		{Chain: 4, Addr: "0000000000000000000000001ce0c2827e2ef14d5c4f29a091d735a204794041", Symbol: "AVAX", CoinGeckoId: "binance-peg-avalanche", Decimals: 18, Price: 21.24},                                // Addr: 0x1ce0c2827e2ef14d5c4f29a091d735a204794041, Notional: 2683.8184307255997
+		{Chain: 4, Addr: "0000000000000000000000001d1cb8997570e73949930c01fe5796c88d7336c6", Symbol: "PBR", CoinGeckoId: "polkabridge", Decimals: 18, Price: 0.00038419},                                      // Addr: 0x1d1cb8997570e73949930c01fe5796c88d7336c6, Notional: 0.00038419
+		{Chain: 4, Addr: "0000000000000000000000001d2f0da169ceb9fc7b3144628db156f3f6c60dbe", Symbol: "XRP", CoinGeckoId: "binance-peg-xrp", Decimals: 18, Price: 2.3},                                         // Addr: 0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe, Notional: 3086.6288420459996
+		{Chain: 4, Addr: "0000000000000000000000001da87b114f35e1dc91f72bf57fc07a768ad40bb0", Symbol: "EQZ", CoinGeckoId: "equalizer", Decimals: 18, Price: 0.00090513},                                        // Addr: 0x1da87b114f35e1dc91f72bf57fc07a768ad40bb0, Notional: 0.0090513
+		{Chain: 4, Addr: "0000000000000000000000001ee098cbaf1f846d5df1993f7e2d10afb35a878d", Symbol: "SABLE", CoinGeckoId: "sable", Decimals: 18, Price: 0.00391217},                                          // Addr: 0x1ee098cbaf1f846d5df1993f7e2d10afb35a878d, Notional: 4181.116784915732
+		{Chain: 4, Addr: "0000000000000000000000001fa4a73a3f0133f0025378af00236f3abdee5d63", Symbol: "NEAR", CoinGeckoId: "wrapped-near", Decimals: 18, Price: 2.47},                                          // Addr: 0x1fa4a73a3f0133f0025378af00236f3abdee5d63, Notional: 61.888814
+		{Chain: 4, Addr: "000000000000000000000000200c234721b5e549c3693ccc93cf191f90dc2af9", Symbol: "METAL", CoinGeckoId: "drunk-robots", Decimals: 18, Price: 0.00057635},                                   // Addr: 0x200c234721b5e549c3693ccc93cf191f90dc2af9, Notional: 2.343649015983816
+		{Chain: 4, Addr: "0000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f8", Symbol: "ETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                                // Addr: 0x2170ed0880ac9a755fd29b2688956bd959f933f8, Notional: 162710.124881629
+		{Chain: 4, Addr: "00000000000000000000000021f9b5b2626603e3f40bfc13d01afb8c431d382f", Symbol: "ZINU", CoinGeckoId: "zombie-inu", Decimals: 9, Price: 2.14988e-10},                                      // Addr: 0x21f9b5b2626603e3f40bfc13d01afb8c431d382f, Notional: 1.4877980460076683
+		{Chain: 4, Addr: "00000000000000000000000022168882276e5d5e1da694343b41dd7726eeb288", Symbol: "WSB", CoinGeckoId: "wall-street-bets-dapp", Decimals: 18, Price: 0.00019742},                            // Addr: 0x22168882276e5d5e1da694343b41dd7726eeb288, Notional: 0.8781078145143643
+		{Chain: 4, Addr: "0000000000000000000000002222227e22102fe3322098e4cbfe18cfebd57c95", Symbol: "TLM", CoinGeckoId: "alien-worlds", Decimals: 4, Price: 0.00485928},                                      // Addr: 0x2222227e22102fe3322098e4cbfe18cfebd57c95, Notional: 4.384042416
+		{Chain: 4, Addr: "0000000000000000000000002235e79086dd23135119366da45851c741874e5b", Symbol: "CREDI", CoinGeckoId: "credefi", Decimals: 18, Price: 0.00649156},                                        // Addr: 0x2235e79086dd23135119366da45851c741874e5b, Notional: 16.94323668317718
+		{Chain: 4, Addr: "0000000000000000000000002326c7395d02a8c89a9d7a0b0c1cf159d49ce51c", Symbol: "TBAC", CoinGeckoId: "blockaura", Decimals: 8, Price: 0.00414222},                                        // Addr: 0x2326c7395d02a8c89a9d7a0b0c1cf159d49ce51c, Notional: 0.0021953766000000004
+		{Chain: 4, Addr: "00000000000000000000000023396cf899ca06c4472205fc903bdb4de249d6fc", Symbol: "UST", CoinGeckoId: "wrapped-ust", Decimals: 18, Price: 0.01263232},                                      // Addr: 0x23396cf899ca06c4472205fc903bdb4de249d6fc, Notional: 0.7008265023007488
+		{Chain: 4, Addr: "00000000000000000000000023e8a70534308a4aaf76fb8c32ec13d17a3bd89e", Symbol: "lUSD", CoinGeckoId: "lusd", Decimals: 18, Price: 0.00000676},                                            // Addr: 0x23e8a70534308a4aaf76fb8c32ec13d17a3bd89e, Notional: 47.86246519400106
+		{Chain: 4, Addr: "0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5", Symbol: "ezETH", CoinGeckoId: "renzo-restaked-eth", Decimals: 18, Price: 2716.88},                                // Addr: 0x2416092f143378750bb29b79ed961ab195cceea5, Notional: 47.1401501792
+		{Chain: 4, Addr: "000000000000000000000000245d9f531757f83064ad808b4c9b220c703a4934", Symbol: "GODE", CoinGeckoId: "gode-chain", Decimals: 6, Price: 0.00023452},                                       // Addr: 0x245d9f531757f83064ad808b4c9b220c703a4934, Notional: 0.00012898600000000001
+		{Chain: 4, Addr: "000000000000000000000000250632378e573c6be1ac2f97fcdf00515d0aa91b", Symbol: "BETH", CoinGeckoId: "binance-eth", Decimals: 18, Price: 2765.22},                                        // Addr: 0x250632378e573c6be1ac2f97fcdf00515d0aa91b, Notional: 548.5139612915999
+		{Chain: 4, Addr: "0000000000000000000000002541be91fe0d220ffcbe65f11d88217a87a43bda", Symbol: "$Lordz", CoinGeckoId: "meme-lordz", Decimals: 9, Price: 0.00243802},                                     // Addr: 0x2541be91fe0d220ffcbe65f11d88217a87a43bda, Notional: 0.00243802
+		{Chain: 4, Addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 1157.815190843234
+		{Chain: 4, Addr: "00000000000000000000000025a528af62e56512a19ce8c3cab427807c28cc19", Symbol: "FORM", CoinGeckoId: "formation-fi", Decimals: 18, Price: 0.00013867},                                    // Addr: 0x25a528af62e56512a19ce8c3cab427807c28cc19, Notional: 0.2333729222246576
+		{Chain: 4, Addr: "00000000000000000000000025b24b3c47918b7962b3e49c4f468367f73cc0e0", Symbol: "AXL", CoinGeckoId: "axl-inu", Decimals: 18, Price: 0.00000354},                                          // Addr: 0x25b24b3c47918b7962b3e49c4f468367f73cc0e0, Notional: 0.0354
+		{Chain: 4, Addr: "00000000000000000000000025d887ce7a35172c62febfd67a1856f20faebb00", Symbol: "PEPE", CoinGeckoId: "pepe", Decimals: 18, Price: 0.00001198},                                            // Addr: 0x25d887ce7a35172c62febfd67a1856f20faebb00, Notional: 59.9470637001841
+		{Chain: 4, Addr: "00000000000000000000000027ae27110350b98d564b9a3eed31baebc82d878d", Symbol: "CUMMIES", CoinGeckoId: "cumrocket", Decimals: 18, Price: 0.00302542},                                    // Addr: 0x27ae27110350b98d564b9a3eed31baebc82d878d, Notional: 3.7675543594585563
+		{Chain: 4, Addr: "0000000000000000000000002859e4544c4bb03966803b044a93563bd2d0dd4d", Symbol: "SHIB", CoinGeckoId: "binance-peg-shib", Decimals: 18, Price: 0.00001266},                                // Addr: 0x2859e4544c4bb03966803b044a93563bd2d0dd4d, Notional: 1737.0145163905852
+		{Chain: 4, Addr: "0000000000000000000000002a48ece377b87ce941406657b9278b4459595e06", Symbol: "LunaT", CoinGeckoId: "lunatics", Decimals: 9, Price: 2.48842e-7},                                        // Addr: 0x2a48ece377b87ce941406657b9278b4459595e06, Notional: 0.3601637771928285
+		{Chain: 4, Addr: "0000000000000000000000002ab0e9e4ee70fff1fb9d67031e44f6410170d00e", Symbol: "bXEN", CoinGeckoId: "xen-crypto-bsc", Decimals: 18, Price: 2.52777e-10},                                 // Addr: 0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e, Notional: 0.5576017224208353
+		{Chain: 4, Addr: "0000000000000000000000002c717059b366714d267039af8f59125cadce6d8c", Symbol: "MHUNT", CoinGeckoId: "metashooter", Decimals: 18, Price: 0.00021239},                                    // Addr: 0x2c717059b366714d267039af8f59125cadce6d8c, Notional: 0.0075520417038921995
+		{Chain: 4, Addr: "0000000000000000000000002cd96e8c3ff6b5e01169f6e3b61d28204e7810bb", Symbol: "LBlock", CoinGeckoId: "lucky-block", Decimals: 9, Price: 0.00005039},                                    // Addr: 0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb, Notional: 2571.5555590738877
+		{Chain: 4, Addr: "0000000000000000000000002d6f3dc5b202ccd91db114b592872bca32a7e292", Symbol: "SAUDISHIB", CoinGeckoId: "saudi-shiba-inu", Decimals: 8, Price: 8.955e-12},                              // Addr: 0x2d6f3dc5b202ccd91db114b592872bca32a7e292, Notional: 1.284845077682733
+		{Chain: 4, Addr: "0000000000000000000000002d94172436d869c1e3c094bead272508fab0d9e3", Symbol: "RCG", CoinGeckoId: "recharge", Decimals: 18, Price: 0.00950839},                                         // Addr: 0x2d94172436d869c1e3c094bead272508fab0d9e3, Notional: 0.0093182222
+		{Chain: 4, Addr: "0000000000000000000000002dff88a56767223a5529ea5960da7a3f5f766406", Symbol: "ID", CoinGeckoId: "space-id", Decimals: 18, Price: 0.182742},                                            // Addr: 0x2dff88a56767223a5529ea5960da7a3f5f766406, Notional: 608.6031125319599
+		{Chain: 4, Addr: "0000000000000000000000002f25d402829ca4085b8ea4d3bc68bf203f5a9fab", Symbol: "Eagon", CoinGeckoId: "eagonswap-token", Decimals: 18, Price: 0.00007782},                                // Addr: 0x2f25d402829ca4085b8ea4d3bc68bf203f5a9fab, Notional: 1.6413002011647486
+		{Chain: 4, Addr: "0000000000000000000000002f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840", Symbol: "DOLA", CoinGeckoId: "dola-usd", Decimals: 18, Price: 0.999268},                                          // Addr: 0x2f29bc0ffaf9bff337b31cbe6cb5fb3bf12e5840, Notional: 298.40199814927655
+		{Chain: 4, Addr: "0000000000000000000000002ff0b946a6782190c4fe5d4971cfe79f0b6e4df2", Symbol: "MYST", CoinGeckoId: "mysterium", Decimals: 18, Price: 0.232532},                                         // Addr: 0x2ff0b946a6782190c4fe5d4971cfe79f0b6e4df2, Notional: 0.23259583700995998
+		{Chain: 4, Addr: "0000000000000000000000003019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1", Symbol: "GMT", CoinGeckoId: "stepn", Decimals: 8, Price: 0.051683},                                               // Addr: 0x3019bf2a2ef8040c242c9a4c5c4bd4c81678b2a1, Notional: 86.35798792962237
+		{Chain: 4, Addr: "00000000000000000000000030842a9c941d9de3af582c41ad12b11d776ba69e", Symbol: "GPT", CoinGeckoId: "qna3-ai", Decimals: 18, Price: 0.00119685},                                          // Addr: 0x30842a9c941d9de3af582c41ad12b11d776ba69e, Notional: 2328.220582636511
+		{Chain: 4, Addr: "00000000000000000000000031471e0791fcdbe82fbf4c44943255e923f1b794", Symbol: "PVU", CoinGeckoId: "plant-vs-undead-token", Decimals: 18, Price: 0.00093748},                            // Addr: 0x31471e0791fcdbe82fbf4c44943255e923f1b794, Notional: 0.0000093748
+		{Chain: 4, Addr: "000000000000000000000000317eb4ad9cfac6232f0046831322e895507bcbeb", Symbol: "TDX", CoinGeckoId: "tidex-token", Decimals: 18, Price: 0.00969256},                                      // Addr: 0x317eb4ad9cfac6232f0046831322e895507bcbeb, Notional: 9.041189687473304
+		{Chain: 4, Addr: "00000000000000000000000031d0a7ada4d4c131eb612db48861211f63e57610", Symbol: "START", CoinGeckoId: "bscstarter", Decimals: 18, Price: 0.01325918},                                     // Addr: 0x31d0a7ada4d4c131eb612db48861211f63e57610, Notional: 0.0013259180000000001
+		{Chain: 4, Addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", Symbol: "USDV", CoinGeckoId: "verified-usd-foundation-usdv", Decimals: 6, Price: 0.131685},                       // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 2.81489856
+		{Chain: 4, Addr: "0000000000000000000000003419875b4d3bca7f3fdda2db7a476a79fd31b4fe", Symbol: "DZHV", CoinGeckoId: "dizzyhavoc", Decimals: 18, Price: 0.00018483},                                      // Addr: 0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe, Notional: 0.25176032100483237
+		{Chain: 4, Addr: "000000000000000000000000352cb5e19b12fc216548a2677bd0fce83bae434b", Symbol: "BTT", CoinGeckoId: "bittorrent", Decimals: 18, Price: 7.04693e-7},                                       // Addr: 0x352cb5e19b12fc216548a2677bd0fce83bae434b, Notional: 0.031616051445
+		{Chain: 4, Addr: "00000000000000000000000035bedbf9291b22218a0da863170dcc9329ef2563", Symbol: "TAP", CoinGeckoId: "tap-fantasy", Decimals: 18, Price: 0.00037027},                                      // Addr: 0x35bedbf9291b22218a0da863170dcc9329ef2563, Notional: 17.185219651158622
+		{Chain: 4, Addr: "000000000000000000000000368eb5efdca39126e8e76aae5187166de7c2766c", Symbol: "CST", CoinGeckoId: "cryptoskates", Decimals: 18, Price: 0.00015159},                                     // Addr: 0x368eb5efdca39126e8e76aae5187166de7c2766c, Notional: 0.08264202399612239
+		{Chain: 4, Addr: "000000000000000000000000371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", Symbol: "JOE", CoinGeckoId: "joe", Decimals: 18, Price: 0.161424},                                                // Addr: 0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07, Notional: 2.11023121774752
+		{Chain: 4, Addr: "000000000000000000000000373e768f79c820aa441540d254dca6d045c6d25b", Symbol: "DERC", CoinGeckoId: "derace", Decimals: 18, Price: 0.03239622},                                          // Addr: 0x373e768f79c820aa441540d254dca6d045c6d25b, Notional: 0.1623822076426482
+		{Chain: 4, Addr: "00000000000000000000000037fe635d1e25b2f7276c1b9dbbcc7b087f80c050", Symbol: "OciCat", CoinGeckoId: "ocicat-token", Decimals: 18, Price: 6.7695e-10},                                  // Addr: 0x37fe635d1e25b2f7276c1b9dbbcc7b087f80c050, Notional: 96.54591072607501
+		{Chain: 4, Addr: "00000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de93", Symbol: "MUBI", CoinGeckoId: "multibit", Decimals: 18, Price: 0.00499869},                                        // Addr: 0x38e382f74dfb84608f3c1f10187f6bef5951de93, Notional: 0.9686192330036295
+		{Chain: 4, Addr: "00000000000000000000000039ae8eefb05138f418bb27659c21632dc1ddab10", Symbol: "KAI", CoinGeckoId: "kardiachain", Decimals: 18, Price: 0.00099467},                                      // Addr: 0x39ae8eefb05138f418bb27659c21632dc1ddab10, Notional: 66.13320214358623
+		{Chain: 4, Addr: "0000000000000000000000003c1748d647e6a56b37b66fcd2b5626d0461d3aa0", Symbol: "DNXC", CoinGeckoId: "dinox", Decimals: 18, Price: 0.00011285},                                           // Addr: 0x3c1748d647e6a56b37b66fcd2b5626d0461d3aa0, Notional: 3.1076224571790383
+		{Chain: 4, Addr: "0000000000000000000000003ee2200efb3400fabb9aacf31297cbdd1d435d47", Symbol: "ADA", CoinGeckoId: "binance-peg-cardano", Decimals: 18, Price: 0.683617},                                // Addr: 0x3ee2200efb3400fabb9aacf31297cbdd1d435d47, Notional: 1326.6885623247758
+		{Chain: 4, Addr: "00000000000000000000000040c8225329bd3e28a043b029e0d07a5344d2c27c", Symbol: "AOG", CoinGeckoId: "ageofgods", Decimals: 18, Price: 0.00156667},                                        // Addr: 0x40c8225329bd3e28a043b029e0d07a5344d2c27c, Notional: 0.5199996194141483
+		{Chain: 4, Addr: "00000000000000000000000040e51e0ec04283e300f12f6bb98da157bb22036e", Symbol: "BLXM", CoinGeckoId: "bloxmove-erc20", Decimals: 18, Price: 0.00793991},                                  // Addr: 0x40e51e0ec04283e300f12f6bb98da157bb22036e, Notional: 174.8820557655276
+		{Chain: 4, Addr: "00000000000000000000000041065e3428188ba6eb27fbdde8526ae3af8e3830", Symbol: "SWASH", CoinGeckoId: "swash", Decimals: 18, Price: 0.00393283},                                          // Addr: 0x41065e3428188ba6eb27fbdde8526ae3af8e3830, Notional: 55.56744984805508
+		{Chain: 4, Addr: "0000000000000000000000004268b8f0b87b6eae5d897996e6b845ddbd99adf3", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                         // Addr: 0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3, Notional: 24.594830509801998
+		{Chain: 4, Addr: "00000000000000000000000042981d0bfbaf196529376ee702f2a9eb9092fcb5", Symbol: "SFM", CoinGeckoId: "safemoon-2", Decimals: 9, Price: 0.00001651},                                        // Addr: 0x42981d0bfbaf196529376ee702f2a9eb9092fcb5, Notional: 0.1092822219536229
+		{Chain: 4, Addr: "00000000000000000000000042c95788f791a2be3584446854c8d9bb01be88a9", Symbol: "HBR", CoinGeckoId: "harbor-3", Decimals: 18, Price: 0.00003795},                                         // Addr: 0x42c95788f791a2be3584446854c8d9bb01be88a9, Notional: 393.9597165039135
+		{Chain: 4, Addr: "0000000000000000000000004338665cbb7b2485a8855a139b75d5e34ab0db94", Symbol: "LTC", CoinGeckoId: "binance-peg-litecoin", Decimals: 18, Price: 88.73},                                  // Addr: 0x4338665cbb7b2485a8855a139b75d5e34ab0db94, Notional: 894.6669138387
+		{Chain: 4, Addr: "00000000000000000000000044c99ca267c2b2646ceec72e898273085ab87ca5", Symbol: "RPTR", CoinGeckoId: "raptor-finance-2", Decimals: 18, Price: 0.00010501},                                // Addr: 0x44c99ca267c2b2646ceec72e898273085ab87ca5, Notional: 318.5889591442828
+		{Chain: 4, Addr: "00000000000000000000000044ec807ce2f4a6f2737a92e985f318d035883e47", Symbol: "HFT", CoinGeckoId: "hashflow", Decimals: 18, Price: 0.062586},                                           // Addr: 0x44ec807ce2f4a6f2737a92e985f318d035883e47, Notional: 0.23970438000000002
+		{Chain: 4, Addr: "00000000000000000000000045f7967926e95fd161e56ed66b663c9114c5226f", Symbol: "TOKO", CoinGeckoId: "toko", Decimals: 18, Price: 0.0002853},                                             // Addr: 0x45f7967926e95fd161e56ed66b663c9114c5226f, Notional: 0.140092214842602
+		{Chain: 4, Addr: "0000000000000000000000004691937a7508860f876c9c0a2a617e7d9e945d4b", Symbol: "WOO", CoinGeckoId: "woo-network", Decimals: 18, Price: 0.079828},                                        // Addr: 0x4691937a7508860f876c9c0a2a617e7d9e945d4b, Notional: 0.8321456958723998
+		{Chain: 4, Addr: "00000000000000000000000046d502fac9aea7c5bc7b13c8ec9d02378c33d36f", Symbol: "WSPP", CoinGeckoId: "wolfsafepoorpeople", Decimals: 0, Price: 9.97e-12},                                 // Addr: 0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f, Notional: 15.138349511614221
+		{Chain: 4, Addr: "000000000000000000000000477bc8d23c634c154061869478bce96be6045d12", Symbol: "SFUND", CoinGeckoId: "seedify-fund", Decimals: 18, Price: 0.823429},                                     // Addr: 0x477bc8d23c634c154061869478bce96be6045d12, Notional: 0.01646858
+		{Chain: 4, Addr: "00000000000000000000000047bead2563dcbf3bf2c9407fea4dc236faba485a", Symbol: "SXP", CoinGeckoId: "swipe", Decimals: 18, Price: 0.182122},                                              // Addr: 0x47bead2563dcbf3bf2c9407fea4dc236faba485a, Notional: 598.211806073828
+		{Chain: 4, Addr: "000000000000000000000000482e6bd0a178f985818c5dfb9ac77918e8412fba", Symbol: "ZEUM", CoinGeckoId: "colizeum", Decimals: 18, Price: 0.00127786},                                        // Addr: 0x482e6bd0a178f985818c5dfb9ac77918e8412fba, Notional: 0.154418216209394
+		{Chain: 4, Addr: "0000000000000000000000004841181ae4079072ebe83a29b718388a387169e3", Symbol: "SUI", CoinGeckoId: "salmonation", Decimals: 9, Price: 0.00391361},                                       // Addr: 0x4841181ae4079072ebe83a29b718388a387169e3, Notional: 47.606875480271036
+		{Chain: 4, Addr: "000000000000000000000000489580eb70a50515296ef31e8179ff3e77e24965", Symbol: "RADAR", CoinGeckoId: "dappradar", Decimals: 18, Price: 0.00325235},                                      // Addr: 0x489580eb70a50515296ef31e8179ff3e77e24965, Notional: 9.346436787749399
+		{Chain: 4, Addr: "0000000000000000000000004a2c860cec6471b9f5f5a336eb4f38bb21683c98", Symbol: "GST", CoinGeckoId: "green-satoshi-token-bsc", Decimals: 8, Price: 0.00319339},                           // Addr: 0x4a2c860cec6471b9f5f5a336eb4f38bb21683c98, Notional: 326.26397801363595
+		{Chain: 4, Addr: "0000000000000000000000004aac18de824ec1b553dbf342829834e4ff3f7a9f", Symbol: "ANCHOR", CoinGeckoId: "anchorswap", Decimals: 18, Price: 8.0019e-8},                                     // Addr: 0x4aac18de824ec1b553dbf342829834e4ff3f7a9f, Notional: 0.00002465861886901143
+		{Chain: 4, Addr: "0000000000000000000000004afc8c2be6a0783ea16e16066fde140d15979296", Symbol: "HARE", CoinGeckoId: "hare-token", Decimals: 9, Price: 2.9e-17},                                          // Addr: 0x4afc8c2be6a0783ea16e16066fde140d15979296, Notional: 2.6100000000000005e-13
+		{Chain: 4, Addr: "0000000000000000000000004b0f1812e5df2a09796481ff14017e6005508003", Symbol: "TWT", CoinGeckoId: "trust-wallet-token", Decimals: 18, Price: 0.804037},                                 // Addr: 0x4b0f1812e5df2a09796481ff14017e6005508003, Notional: 7920.21127531111
+		{Chain: 4, Addr: "0000000000000000000000004b5c23cac08a567ecf0c1ffca8372a45a5d33743", Symbol: "FARM", CoinGeckoId: "harvest-finance", Decimals: 18, Price: 29.71},                                      // Addr: 0x4b5c23cac08a567ecf0c1ffca8372a45a5d33743, Notional: 0.4881641187
+		{Chain: 4, Addr: "0000000000000000000000004b5decb9327b4d511a58137a1ade61434aacdd43", Symbol: "PKN", CoinGeckoId: "poken", Decimals: 18, Price: 0.00006353},                                            // Addr: 0x4b5decb9327b4d511a58137a1ade61434aacdd43, Notional: 3.1992320672716144
+		{Chain: 4, Addr: "0000000000000000000000004b8285ab433d8f69cb48d5ad62b415ed1a221e4f", Symbol: "MCRT", CoinGeckoId: "magiccraft", Decimals: 9, Price: 0.00057245},                                       // Addr: 0x4b8285ab433d8f69cb48d5ad62b415ed1a221e4f, Notional: 13044.566884857839
+		{Chain: 4, Addr: "0000000000000000000000004ba0057f784858a48fe351445c672ff2a3d43515", Symbol: "KALM", CoinGeckoId: "kalmar", Decimals: 18, Price: 0.00158776},                                          // Addr: 0x4ba0057f784858a48fe351445c672ff2a3d43515, Notional: 96.98138718695746
+		{Chain: 4, Addr: "0000000000000000000000004d2d32d8652058bf98c772953e1df5c5c85d9f45", Symbol: "DAO", CoinGeckoId: "dao-maker", Decimals: 18, Price: 0.130032},                                          // Addr: 0x4d2d32d8652058bf98c772953e1df5c5c85d9f45, Notional: 966059.9671845379
+		{Chain: 4, Addr: "0000000000000000000000004da996c5fe84755c80e108cf96fe705174c5e36a", Symbol: "WOW", CoinGeckoId: "wowswap", Decimals: 18, Price: 0.0319526},                                           // Addr: 0x4da996c5fe84755c80e108cf96fe705174c5e36a, Notional: 0.23179623081417597
+		{Chain: 4, Addr: "0000000000000000000000004f39c3319188a723003670c3f9b9e7ef991e52f3", Symbol: "FIGHT", CoinGeckoId: "crypto-fight-club", Decimals: 18, Price: 0.00013742},                              // Addr: 0x4f39c3319188a723003670c3f9b9e7ef991e52f3, Notional: 0.00041226
+		{Chain: 4, Addr: "0000000000000000000000005012c90f14d190607662ca8344120812aaa2639d", Symbol: "PNP", CoinGeckoId: "penpie", Decimals: 18, Price: 2.92},                                                 // Addr: 0x5012c90f14d190607662ca8344120812aaa2639d, Notional: 283.3451301032
+		{Chain: 4, Addr: "00000000000000000000000050d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1", Symbol: "CUB", CoinGeckoId: "cub-finance", Decimals: 18, Price: 0.00112613},                                      // Addr: 0x50d809c74e0b8e49e7b4c65bb3109abe3ff4c1c1, Notional: 0.0000138536625213
+		{Chain: 4, Addr: "000000000000000000000000524df384bffb18c0c8f3f43d012011f8f9795579", Symbol: "YAY", CoinGeckoId: "yay-games", Decimals: 18, Price: 0.00050779},                                        // Addr: 0x524df384bffb18c0c8f3f43d012011f8f9795579, Notional: 0.005077900000000001
+		{Chain: 4, Addr: "00000000000000000000000052f24a5e03aee338da5fd9df68d2b6fae1178827", Symbol: "ankrBNB", CoinGeckoId: "ankr-staked-bnb", Decimals: 18, Price: 724.9},                                   // Addr: 0x52f24a5e03aee338da5fd9df68d2b6fae1178827, Notional: 1.4036528659999998
+		{Chain: 4, Addr: "0000000000000000000000005512014efa6cd57764fa743756f7a6ce3358cc83", Symbol: "EZ", CoinGeckoId: "easyfi", Decimals: 18, Price: 0.00138751},                                            // Addr: 0x5512014efa6cd57764fa743756f7a6ce3358cc83, Notional: 0.008857285428706299
+		{Chain: 4, Addr: "000000000000000000000000552594612f935441c01c6854edf111f343c1ca07", Symbol: "GWT", CoinGeckoId: "galaxy-war", Decimals: 18, Price: 0.00011302},                                       // Addr: 0x552594612f935441c01c6854edf111f343c1ca07, Notional: 2.0766120137886124
+		{Chain: 4, Addr: "00000000000000000000000055d398326f99059ff775485246999027b3197955", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 18, Price: 1},                                                   // Addr: 0x55d398326f99059ff775485246999027b3197955, Notional: 341366.14532391
+		{Chain: 4, Addr: "000000000000000000000000570a5d26f7765ecb712c0924e4de545b89fd43df", Symbol: "SOL", CoinGeckoId: "wrapped-solana", Decimals: 18, Price: 156.53},                                       // Addr: 0x570a5d26f7765ecb712c0924e4de545b89fd43df, Notional: 36985.2809946202
+		{Chain: 4, Addr: "00000000000000000000000059c49b54d4425c7ff1e49f40958a14d48cc87c26", Symbol: "MC", CoinGeckoId: "tap-fantasy-mc", Decimals: 18, Price: 0.086592},                                      // Addr: 0x59c49b54d4425c7ff1e49f40958a14d48cc87c26, Notional: 0.6151737098496001
+		{Chain: 4, Addr: "00000000000000000000000059f4f336bf3d0c49dbfba4a74ebd2a6ace40539a", Symbol: "CAT", CoinGeckoId: "catcoin-cash", Decimals: 9, Price: 8.6928e-11},                                      // Addr: 0x59f4f336bf3d0c49dbfba4a74ebd2a6ace40539a, Notional: 12.364343757069422
+		{Chain: 4, Addr: "0000000000000000000000005b65cd9feb54f1df3d0c60576003344079f8dc06", Symbol: "UNW", CoinGeckoId: "uniwhale", Decimals: 18, Price: 0.00177014},                                         // Addr: 0x5b65cd9feb54f1df3d0c60576003344079f8dc06, Notional: 3842.1200014292917
+		{Chain: 4, Addr: "0000000000000000000000005b6dcf557e2abe2323c48445e8cc948910d8c2c9", Symbol: "MIR", CoinGeckoId: "mirror-protocol", Decimals: 18, Price: 0.02046236},                                  // Addr: 0x5b6dcf557e2abe2323c48445e8cc948910d8c2c9, Notional: 141.61937891674592
+		{Chain: 4, Addr: "0000000000000000000000005de3939b2f811a61d830e6f52d13b066881412ab", Symbol: "XPR", CoinGeckoId: "proton", Decimals: 4, Price: 0.0035465},                                             // Addr: 0x5de3939b2f811a61d830e6f52d13b066881412ab, Notional: 232.35035581515
+		{Chain: 4, Addr: "0000000000000000000000005e7f472b9481c80101b22d0ba4ef4253aa61dabc", Symbol: "MUDOL2", CoinGeckoId: "hero-blaze-three-kingdoms", Decimals: 18, Price: 0.00091424},                     // Addr: 0x5e7f472b9481c80101b22d0ba4ef4253aa61dabc, Notional: 26537.419681996624
+		{Chain: 4, Addr: "0000000000000000000000005e95a952a7f79f978585afd54a053af0f51372fa", Symbol: "SBG", CoinGeckoId: "sb-group", Decimals: 9, Price: 3.67439e-7},                                          // Addr: 0x5e95a952a7f79f978585afd54a053af0f51372fa, Notional: 0.000367439
+		{Chain: 4, Addr: "0000000000000000000000005fb4968fc85868df3ad2d6e59883a10570f01d18", Symbol: "SHR", CoinGeckoId: "sharering", Decimals: 18, Price: 0.00166124},                                        // Addr: 0x5fb4968fc85868df3ad2d6e59883a10570f01d18, Notional: 74.58303104
+		{Chain: 4, Addr: "000000000000000000000000603c7f932ed1fc6575303d8fb018fdcbb0f39a95", Symbol: "BANANA", CoinGeckoId: "apeswap-finance", Decimals: 18, Price: 1.0003e-8},                                // Addr: 0x603c7f932ed1fc6575303d8fb018fdcbb0f39a95, Notional: 0.00047446269585502056
+		{Chain: 4, Addr: "00000000000000000000000062823659d09f9f9d2222058878f89437425eb261", Symbol: "ERTHA", CoinGeckoId: "ertha", Decimals: 18, Price: 0.00055977},                                          // Addr: 0x62823659d09f9f9d2222058878f89437425eb261, Notional: 0.01175517
+		{Chain: 4, Addr: "00000000000000000000000063eaeb6e33e11252b10553900a9f38a9ed172871", Symbol: "TUP", CoinGeckoId: "tenup", Decimals: 18, Price: 0.00781119},                                            // Addr: 0x63eaeb6e33e11252b10553900a9f38a9ed172871, Notional: 0.388216143
+		{Chain: 4, Addr: "00000000000000000000000064619f611248256f7f4b72fe83872f89d5d60d64", Symbol: "QUINT", CoinGeckoId: "quint", Decimals: 18, Price: 0.00028771},                                          // Addr: 0x64619f611248256f7f4b72fe83872f89d5d60d64, Notional: 67.51859043355265
+		{Chain: 4, Addr: "00000000000000000000000065c8743a5a266c3512eabd34e65ade42d4355ef1", Symbol: "BPLC", CoinGeckoId: "blackpearl-chain", Decimals: 18, Price: 1.761e-9},                                  // Addr: 0x65c8743a5a266c3512eabd34e65ade42d4355ef1, Notional: 0.4710776086457592
+		{Chain: 4, Addr: "000000000000000000000000678e840c640f619e17848045d23072844224dd37", Symbol: "CRTS", CoinGeckoId: "cratos", Decimals: 18, Price: 0.00022528},                                          // Addr: 0x678e840c640f619e17848045d23072844224dd37, Notional: 4276.564712819361
+		{Chain: 4, Addr: "00000000000000000000000067ee3cb086f8a16f34bee3ca72fad36f7db929e2", Symbol: "DODO", CoinGeckoId: "dodo", Decimals: 18, Price: 0.04436955},                                            // Addr: 0x67ee3cb086f8a16f34bee3ca72fad36f7db929e2, Notional: 0.4436955
+		{Chain: 4, Addr: "00000000000000000000000068784ffaa6ff05e3e04575df77960dc1d9f42b4a", Symbol: "ABR", CoinGeckoId: "allbridge", Decimals: 18, Price: 0.081603},                                          // Addr: 0x68784ffaa6ff05e3e04575df77960dc1d9f42b4a, Notional: 1.8400742538137098
+		{Chain: 4, Addr: "0000000000000000000000006ae9701b9c423f40d54556c9a443409d79ce170a", Symbol: "POLC", CoinGeckoId: "polka-city", Decimals: 18, Price: 0.00211648},                                      // Addr: 0x6ae9701b9c423f40d54556c9a443409d79ce170a, Notional: 0.6561088
+		{Chain: 4, Addr: "0000000000000000000000006bff4fb161347ad7de4a625ae5aa3a1ca7077819", Symbol: "ADX", CoinGeckoId: "adex", Decimals: 18, Price: 0.09564},                                                // Addr: 0x6bff4fb161347ad7de4a625ae5aa3a1ca7077819, Notional: 1.24332
+		{Chain: 4, Addr: "0000000000000000000000006d106c0b8d2f47c5465bdbd58d1be253762cbbc1", Symbol: "DEFI", CoinGeckoId: "de-fi", Decimals: 18, Price: 0.00270398},                                           // Addr: 0x6d106c0b8d2f47c5465bdbd58d1be253762cbbc1, Notional: 0.860501834577584
+		{Chain: 4, Addr: "0000000000000000000000006d1dc3928604b00180bb570bdae94b9698d33b79", Symbol: "UCT", CoinGeckoId: "unitedcrowd", Decimals: 18, Price: 0.00146549},                                      // Addr: 0x6d1dc3928604b00180bb570bdae94b9698d33b79, Notional: 0.146549
+		{Chain: 4, Addr: "0000000000000000000000006d57f5c286e04850c2c085350f2e60aaa7b7c15b", Symbol: "GrokGirl", CoinGeckoId: "grok-girl", Decimals: 9, Price: 6.841e-14},                                     // Addr: 0x6d57f5c286e04850c2c085350f2e60aaa7b7c15b, Notional: 0.012619417605308776
+		{Chain: 4, Addr: "0000000000000000000000006d86f0a41c3966cef8ea139648db707e912563c9", Symbol: "MCOIN", CoinGeckoId: "mcoin1", Decimals: 18, Price: 0.087514},                                           // Addr: 0x6d86f0a41c3966cef8ea139648db707e912563c9, Notional: 0.0087514
+		{Chain: 4, Addr: "0000000000000000000000006e2a5ea25b161befa6a8444c71ae3a89c39933c6", Symbol: "B2M", CoinGeckoId: "bit2me", Decimals: 18, Price: 0.01310904},                                           // Addr: 0x6e2a5ea25b161befa6a8444c71ae3a89c39933c6, Notional: 119.292264
+		{Chain: 4, Addr: "0000000000000000000000006f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e", Symbol: "ARPA", CoinGeckoId: "arpa", Decimals: 18, Price: 0.02209258},                                            // Addr: 0x6f769e65c14ebd1f68817f5f1dcdb61cfa2d6f7e, Notional: 9.485449223000002
+		{Chain: 4, Addr: "0000000000000000000000006ff1bfa14a57594a5874b37ff6ac5efbd9f9599a", Symbol: "TOTM", CoinGeckoId: "totemfi", Decimals: 18, Price: 0.00250259},                                         // Addr: 0x6ff1bfa14a57594a5874b37ff6ac5efbd9f9599a, Notional: 0.24759651677205097
+		{Chain: 4, Addr: "0000000000000000000000007083609fce4d1d8dc0c979aab8c869ea2c873402", Symbol: "DOT", CoinGeckoId: "binance-peg-polkadot", Decimals: 18, Price: 4.07},                                   // Addr: 0x7083609fce4d1d8dc0c979aab8c869ea2c873402, Notional: 4339.1096245409
+		{Chain: 4, Addr: "0000000000000000000000007130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c", Symbol: "BTCB", CoinGeckoId: "binance-bitcoin", Decimals: 18, Price: 108654},                                     // Addr: 0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c, Notional: 860390.41439442
+		{Chain: 4, Addr: "000000000000000000000000715d400f88c167884bbcc41c5fea407ed4d2f8a0", Symbol: "AXS", CoinGeckoId: "axie-infinity", Decimals: 18, Price: 2.48},                                          // Addr: 0x715d400f88c167884bbcc41c5fea407ed4d2f8a0, Notional: 251.7129988112
+		{Chain: 4, Addr: "00000000000000000000000071be881e9c5d4465b3fff61e89c6f3651e69b5bb", Symbol: "BRZ", CoinGeckoId: "brz", Decimals: 4, Price: 0.178599},                                                 // Addr: 0x71be881e9c5d4465b3fff61e89c6f3651e69b5bb, Notional: 58.017885150000005
+		{Chain: 4, Addr: "0000000000000000000000007269d98af4aa705e0b1a5d8512fadb4d45817d5a", Symbol: "SHI", CoinGeckoId: "shirtum", Decimals: 18, Price: 0.0002542},                                           // Addr: 0x7269d98af4aa705e0b1a5d8512fadb4d45817d5a, Notional: 0.025419999999999998
+		{Chain: 4, Addr: "00000000000000000000000072b7d61e8fc8cf971960dd9cfa59b8c829d91991", Symbol: "AQUA", CoinGeckoId: "planet-finance", Decimals: 18, Price: 1.65},                                        // Addr: 0x72b7d61e8fc8cf971960dd9cfa59b8c829d91991, Notional: 0.1650011385
+		{Chain: 4, Addr: "00000000000000000000000072eb7ca07399ec402c5b7aa6a65752b6a1dc0c27", Symbol: "ASTRO", CoinGeckoId: "astroswap", Decimals: 18, Price: 0.00001865},                                      // Addr: 0x72eb7ca07399ec402c5b7aa6a65752b6a1dc0c27, Notional: 0.0009325
+		{Chain: 4, Addr: "000000000000000000000000734c5f3f8f6ad9697b26ecc6388678aafd3db3b2", Symbol: "METAMUSK", CoinGeckoId: "musk-metaverse", Decimals: 18, Price: 3.40371e-10},                             // Addr: 0x734c5f3f8f6ad9697b26ecc6388678aafd3db3b2, Notional: 0.000011070447011338354
+		{Chain: 4, Addr: "0000000000000000000000007559c49c3aec50e763a486bb232fa8d0d76078e4", Symbol: "ATR", CoinGeckoId: "artrade", Decimals: 9, Price: 0.01651613},                                           // Addr: 0x7559c49c3aec50e763a486bb232fa8d0d76078e4, Notional: 3280406.0408269484
+		{Chain: 4, Addr: "000000000000000000000000766afcf83fd5eaf884b3d529b432ca27a6d84617", Symbol: "BLID", CoinGeckoId: "bolide", Decimals: 18, Price: 0.00097788},                                          // Addr: 0x766afcf83fd5eaf884b3d529b432ca27a6d84617, Notional: 31.61519786257427
+		{Chain: 4, Addr: "00000000000000000000000077edfae59a7948d66e9911a30cc787d2172343d4", Symbol: "LBL", CoinGeckoId: "label-foundation", Decimals: 18, Price: 0.00144272},                                 // Addr: 0x77edfae59a7948d66e9911a30cc787d2172343d4, Notional: 22.122486940335037
+		{Chain: 4, Addr: "00000000000000000000000079ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936", Symbol: "CATGIRL", CoinGeckoId: "catgirl", Decimals: 9, Price: 1.1985e-11},                                       // Addr: 0x79ebc9a2ce02277a4b5b3a768b1c0a4ed75bd936, Notional: 2.397e-9
+		{Chain: 4, Addr: "0000000000000000000000007af173f350d916358af3e218bdf2178494beb748", Symbol: "TRADE", CoinGeckoId: "unitrade", Decimals: 18, Price: 0.00343684},                                       // Addr: 0x7af173f350d916358af3e218bdf2178494beb748, Notional: 1.894729255153548
+		{Chain: 4, Addr: "0000000000000000000000007b610012bdc4d6deba2c2d91684e408f40863429", Symbol: "OSEA", CoinGeckoId: "omnisea", Decimals: 18, Price: 0.00165386},                                         // Addr: 0x7b610012bdc4d6deba2c2d91684e408f40863429, Notional: 0.2205480107280034
+		{Chain: 4, Addr: "0000000000000000000000007b65b489fe53fce1f6548db886c08ad73111ddd8", Symbol: "IRON", CoinGeckoId: "iron-bsc", Decimals: 18, Price: 0.0161403},                                         // Addr: 0x7b65b489fe53fce1f6548db886c08ad73111ddd8, Notional: 1.936836
+		{Chain: 4, Addr: "0000000000000000000000007dc6dc21ce07e6499fdcc30dcdb943a8ee4db802", Symbol: "GPTG", CoinGeckoId: "gpt-guru", Decimals: 18, Price: 0.00004669},                                        // Addr: 0x7dc6dc21ce07e6499fdcc30dcdb943a8ee4db802, Notional: 710.22014465269
+		{Chain: 4, Addr: "0000000000000000000000007ddc52c4de30e94be3a6a0a2b259b2850f421989", Symbol: "GMT", CoinGeckoId: "gmt-token", Decimals: 18, Price: 0.425071},                                          // Addr: 0x7ddc52c4de30e94be3a6a0a2b259b2850f421989, Notional: 114.76916999999999
+		{Chain: 4, Addr: "0000000000000000000000007e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", Symbol: "OVR", CoinGeckoId: "ovr", Decimals: 18, Price: 0.106057},                                                // Addr: 0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe, Notional: 19.80836554433891
+		{Chain: 4, Addr: "0000000000000000000000007e624fa0e1c4abfd309cc15719b7e2580887f570", Symbol: "POLS", CoinGeckoId: "polkastarter", Decimals: 18, Price: 0.219331},                                      // Addr: 0x7e624fa0e1c4abfd309cc15719b7e2580887f570, Notional: 1.535317
+		{Chain: 4, Addr: "0000000000000000000000007e8db69dcff9209e486a100e611b0af300c3374e", Symbol: "TRDC", CoinGeckoId: "traders-coin", Decimals: 18, Price: 0.00021106},                                    // Addr: 0x7e8db69dcff9209e486a100e611b0af300c3374e, Notional: 0.36923260516627604
+		{Chain: 4, Addr: "0000000000000000000000007eefb6aeb8bc2c1ba6be1d4273ec0758a1321272", Symbol: "ENG", CoinGeckoId: "endless-battlefield", Decimals: 18, Price: 0.00006497},                              // Addr: 0x7eefb6aeb8bc2c1ba6be1d4273ec0758a1321272, Notional: 0.06497
+		{Chain: 4, Addr: "0000000000000000000000008076c74c5e3f5852037f31ff0093eeb8c8add8d3", Symbol: "SAFEMOON", CoinGeckoId: "safemoon", Decimals: 9, Price: 8.149e-9},                                       // Addr: 0x8076c74c5e3f5852037f31ff0093eeb8c8add8d3, Notional: 3.6670500008149e-7
+		{Chain: 4, Addr: "000000000000000000000000818835503f55283cd51a4399f595e295a9338753", Symbol: "AGI", CoinGeckoId: "delysium", Decimals: 18, Price: 0.056002},                                           // Addr: 0x818835503f55283cd51a4399f595e295a9338753, Notional: 56.0188006
+		{Chain: 4, Addr: "00000000000000000000000082443a77684a7da92fdcb639c8d2bd068a596245", Symbol: "SWAP", CoinGeckoId: "trustswap", Decimals: 18, Price: 0.086337},                                         // Addr: 0x82443a77684a7da92fdcb639c8d2bd068a596245, Notional: 0.259011
+		{Chain: 4, Addr: "0000000000000000000000008263cd1601fe73c066bf49cc09841f35348e3be0", Symbol: "ALU", CoinGeckoId: "altura", Decimals: 18, Price: 0.01987491},                                           // Addr: 0x8263cd1601fe73c066bf49cc09841f35348e3be0, Notional: 318.012251825499
+		{Chain: 4, Addr: "00000000000000000000000082d2f8e02afb160dd5a480a617692e62de9038c4", Symbol: "ALEPH", CoinGeckoId: "aleph", Decimals: 18, Price: 0.058575},                                            // Addr: 0x82d2f8e02afb160dd5a480a617692e62de9038c4, Notional: 24.406489617048
+		{Chain: 4, Addr: "000000000000000000000000833f307ac507d47309fd8cdd1f835bef8d702a93", Symbol: "REVV", CoinGeckoId: "revv", Decimals: 18, Price: 0.00113577},                                            // Addr: 0x833f307ac507d47309fd8cdd1f835bef8d702a93, Notional: 0.023851169999999998
+		{Chain: 4, Addr: "00000000000000000000000083adb07bb91ddde95a24982f1b2d343963ba3995", Symbol: "Fwcl", CoinGeckoId: "legends", Decimals: 9, Price: 0.02347393},                                          // Addr: 0x83adb07bb91ddde95a24982f1b2d343963ba3995, Notional: 0.11736965
+		{Chain: 4, Addr: "00000000000000000000000083d8ea5a4650b68cd2b57846783d86df940f7458", Symbol: "HUDI", CoinGeckoId: "hudi", Decimals: 18, Price: 0.0213436},                                             // Addr: 0x83d8ea5a4650b68cd2b57846783d86df940f7458, Notional: 0.581081099671328
+		{Chain: 4, Addr: "000000000000000000000000842668e2b9a73240abf6532dedc89c9c3e050c98", Symbol: "LIGHT", CoinGeckoId: "light-defi", Decimals: 9, Price: 0.00007386},                                      // Addr: 0x842668e2b9a73240abf6532dedc89c9c3e050c98, Notional: 0.66592176745986
+		{Chain: 4, Addr: "00000000000000000000000084e9a6f9d240fdd33801f7135908bfa16866939a", Symbol: "GMEE", CoinGeckoId: "gamee", Decimals: 18, Price: 0.00209308},                                           // Addr: 0x84e9a6f9d240fdd33801f7135908bfa16866939a, Notional: 4.019538586309876
+		{Chain: 4, Addr: "00000000000000000000000084f4f7cdb4574c9556a494dab18ffc1d1d22316c", Symbol: "KINGSHIB", CoinGeckoId: "king-shiba", Decimals: 9, Price: 0.0020107},                                    // Addr: 0x84f4f7cdb4574c9556a494dab18ffc1d1d22316c, Notional: 2.2009122202412836
+		{Chain: 4, Addr: "0000000000000000000000008519ea49c997f50ceffa444d240fb655e89248aa", Symbol: "RAMP", CoinGeckoId: "ramp", Decimals: 18, Price: 0.04574279},                                            // Addr: 0x8519ea49c997f50ceffa444d240fb655e89248aa, Notional: 64.43080129189087
+		{Chain: 4, Addr: "000000000000000000000000854a63b35b70a7becbed508ff0b6ff5038d0c917", Symbol: "MNTO", CoinGeckoId: "minato", Decimals: 18, Price: 0.572417},                                            // Addr: 0x854a63b35b70a7becbed508ff0b6ff5038d0c917, Notional: 16.71883199411731
+		{Chain: 4, Addr: "0000000000000000000000008578eb576e126f67913a8bc0622e0a22eba0989a", Symbol: "PANDA", CoinGeckoId: "hashpanda", Decimals: 9, Price: 8.40021e-10},                                      // Addr: 0x8578eb576e126f67913a8bc0622e0a22eba0989a, Notional: 0.06082168908101033
+		{Chain: 4, Addr: "0000000000000000000000008595f9da7b868b1822194faed312235e43007b49", Symbol: "BTT", CoinGeckoId: "bittorrent-old", Decimals: 18, Price: 0.00084344},                                   // Addr: 0x8595f9da7b868b1822194faed312235e43007b49, Notional: 0.00084344
+		{Chain: 4, Addr: "000000000000000000000000872d068c25511be88c1f5990c53eeffcdf46c9b4", Symbol: "VENT", CoinGeckoId: "vent-finance", Decimals: 18, Price: 0.00067303},                                    // Addr: 0x872d068c25511be88c1f5990c53eeffcdf46c9b4, Notional: 0.20325506000000002
+		{Chain: 4, Addr: "000000000000000000000000885c5fb8f0e67b2b0cf3a437e6cc6ebc0f9f9014", Symbol: "GEMG", CoinGeckoId: "gemguardian", Decimals: 18, Price: 0.00344796},                                     // Addr: 0x885c5fb8f0e67b2b0cf3a437e6cc6ebc0f9f9014, Notional: 0.1352950244266644
+		{Chain: 4, Addr: "00000000000000000000000088d7e9b65dc24cf54f5edef929225fc3e1580c25", Symbol: "JMPT", CoinGeckoId: "jumptoken", Decimals: 18, Price: 1.031},                                            // Addr: 0x88d7e9b65dc24cf54f5edef929225fc3e1580c25, Notional: 714013.872594576
+		{Chain: 4, Addr: "0000000000000000000000008929e9dbd2785e3ba16175e596cdd61520fee0d1", Symbol: "ALTD", CoinGeckoId: "altitude", Decimals: 18, Price: 0.00089463},                                        // Addr: 0x8929e9dbd2785e3ba16175e596cdd61520fee0d1, Notional: 0.037085474566008
+		{Chain: 4, Addr: "0000000000000000000000008a5d7fcd4c90421d21d30fcc4435948ac3618b2f", Symbol: "MONSTA", CoinGeckoId: "cake-monster", Decimals: 18, Price: 0.0000019},                                   // Addr: 0x8a5d7fcd4c90421d21d30fcc4435948ac3618b2f, Notional: 0.0000018049999999999999
+		{Chain: 4, Addr: "0000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 18, Price: 0.999705},                                          // Addr: 0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d, Notional: 330500.3622956615
+		{Chain: 4, Addr: "0000000000000000000000008bd778b12b15416359a227f0533ce2d91844e1ed", Symbol: "SAKE", CoinGeckoId: "sake-token", Decimals: 18, Price: 0.001337},                                        // Addr: 0x8bd778b12b15416359a227f0533ce2d91844e1ed, Notional: 2.6002616850572604
+		{Chain: 4, Addr: "0000000000000000000000008bfca09e5877ea59f85883d13a6873334b937d41", Symbol: "MADPEPE", CoinGeckoId: "mad-pepe", Decimals: 18, Price: 6.1944e-11},                                     // Addr: 0x8bfca09e5877ea59f85883d13a6873334b937d41, Notional: 0.0009293458320000001
+		{Chain: 4, Addr: "0000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", Symbol: "KEX", CoinGeckoId: "kira-network", Decimals: 6, Price: 0.01802587},                                      // Addr: 0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e, Notional: 0.0001802587
+		{Chain: 4, Addr: "0000000000000000000000008da443f84fea710266c8eb6bc34b71702d033ef2", Symbol: "CTSI", CoinGeckoId: "cartesi", Decimals: 18, Price: 0.063691},                                           // Addr: 0x8da443f84fea710266c8eb6bc34b71702d033ef2, Notional: 1.38145779
+		{Chain: 4, Addr: "0000000000000000000000008ebc361536094fd5b4ffb8521e31900614c9f55d", Symbol: "DARC", CoinGeckoId: "darcmatter-coin", Decimals: 18, Price: 0.0001726},                                  // Addr: 0x8ebc361536094fd5b4ffb8521e31900614c9f55d, Notional: 1145.0949026416592
+		{Chain: 4, Addr: "0000000000000000000000008f36cc333f55b09bb71091409a3d7ade399e3b1c", Symbol: "CHER", CoinGeckoId: "cherry-network", Decimals: 18, Price: 0.00042127},                                  // Addr: 0x8f36cc333f55b09bb71091409a3d7ade399e3b1c, Notional: 0.3269382661512146
+		{Chain: 4, Addr: "0000000000000000000000008ff795a6f4d97e7887c79bea79aba5cc76444adf", Symbol: "BCH", CoinGeckoId: "binance-peg-bitcoin-cash", Decimals: 18, Price: 423.27},                             // Addr: 0x8ff795a6f4d97e7887c79bea79aba5cc76444adf, Notional: 0.001566099
+		{Chain: 4, Addr: "0000000000000000000000009029fdfae9a03135846381c7ce16595c3554e10a", Symbol: "OOE", CoinGeckoId: "openocean", Decimals: 18, Price: 0.00492637},                                        // Addr: 0x9029fdfae9a03135846381c7ce16595c3554e10a, Notional: 0.00492637
+		{Chain: 4, Addr: "00000000000000000000000092868a5255c628da08f550a858a802f5351c5223", Symbol: "BRIDGE", CoinGeckoId: "cross-chain-bridge", Decimals: 18, Price: 0.0009657},                             // Addr: 0x92868a5255c628da08f550a858a802f5351c5223, Notional: 0.0782217
+		{Chain: 4, Addr: "000000000000000000000000928e55dab735aa8260af3cedada18b5f70c72f1b", Symbol: "FRONT", CoinGeckoId: "frontier-token", Decimals: 18, Price: 0.18354},                                    // Addr: 0x928e55dab735aa8260af3cedada18b5f70c72f1b, Notional: 1.2868264563168001
+		{Chain: 4, Addr: "000000000000000000000000935a544bf5816e3a7c13db2efe3009ffda0acda2", Symbol: "BLZ", CoinGeckoId: "bluzelle", Decimals: 18, Price: 0.03660723},                                         // Addr: 0x935a544bf5816e3a7c13db2efe3009ffda0acda2, Notional: 16.88325861298306
+		{Chain: 4, Addr: "00000000000000000000000093c27727e72ec7510a06ea450366c1418c4ce547", Symbol: "PXP", CoinGeckoId: "pirate-x-pirate", Decimals: 18, Price: 0.00009937},                                  // Addr: 0x93c27727e72ec7510a06ea450366c1418c4ce547, Notional: 0.00019874
+		{Chain: 4, Addr: "000000000000000000000000947950bcc74888a40ffa2593c5798f11fc9124c4", Symbol: "SUSHI", CoinGeckoId: "sushi", Decimals: 18, Price: 0.671409},                                            // Addr: 0x947950bcc74888a40ffa2593c5798f11fc9124c4, Notional: 3.10180265811675
+		{Chain: 4, Addr: "0000000000000000000000009573c88ae3e37508f87649f87c4dd5373c9f31e0", Symbol: "MONI", CoinGeckoId: "monsta-infinite", Decimals: 18, Price: 0.0024957},                                  // Addr: 0x9573c88ae3e37508f87649f87c4dd5373c9f31e0, Notional: 0.0027969557723010003
+		{Chain: 4, Addr: "000000000000000000000000959229d94c9060552daea25ac17193bca65d7884", Symbol: "IOI", CoinGeckoId: "ioi-token", Decimals: 6, Price: 0.00039005},                                         // Addr: 0x959229d94c9060552daea25ac17193bca65d7884, Notional: 0.00990669077575
+		{Chain: 4, Addr: "000000000000000000000000961c8c0b1aad0c0b10a51fef6a867e3091bcef17", Symbol: "DYP", CoinGeckoId: "defi-yield-protocol", Decimals: 18, Price: 0.04119439},                              // Addr: 0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17, Notional: 643.3161916813281
+		{Chain: 4, Addr: "000000000000000000000000965f527d9159dce6288a2219db51fc6eef120dd1", Symbol: "BSW", CoinGeckoId: "biswap", Decimals: 18, Price: 0.0263524},                                            // Addr: 0x965f527d9159dce6288a2219db51fc6eef120dd1, Notional: 0.0527048
+		{Chain: 4, Addr: "0000000000000000000000009678e42cebeb63f23197d726b29b1cb20d0064e5", Symbol: "IOTX", CoinGeckoId: "binance-peg-iotex", Decimals: 18, Price: 0.02105095},                               // Addr: 0x9678e42cebeb63f23197d726b29b1cb20d0064e5, Notional: 117.07611930322666
+		{Chain: 4, Addr: "0000000000000000000000009767c8e438aa18f550208e6d1fdf5f43541cc2c8", Symbol: "MMIT", CoinGeckoId: "mangoman-intelligent", Decimals: 18, Price: 3.11143e-10},                           // Addr: 0x9767c8e438aa18f550208e6d1fdf5f43541cc2c8, Notional: 3.11143e-8
+		{Chain: 4, Addr: "00000000000000000000000098f8669f6481ebb341b522fcd3663f79a3d1a6a7", Symbol: "NEST", CoinGeckoId: "nest", Decimals: 18, Price: 0.00014605},                                            // Addr: 0x98f8669f6481ebb341b522fcd3663f79a3d1a6a7, Notional: 0.010369550067182999
+		{Chain: 4, Addr: "000000000000000000000000998305efdc264b9674178899fffbb44a47134a76", Symbol: "GMRX", CoinGeckoId: "gaimin", Decimals: 18, Price: 0.00013872},                                          // Addr: 0x998305efdc264b9674178899fffbb44a47134a76, Notional: 80271.44598985295
+		{Chain: 4, Addr: "0000000000000000000000009b17baadf0f21f03e35249e0e59723f34994f806", Symbol: "SURE", CoinGeckoId: "insure", Decimals: 18, Price: 0.00163092},                                          // Addr: 0x9b17baadf0f21f03e35249e0e59723f34994f806, Notional: 0.489276
+		{Chain: 4, Addr: "0000000000000000000000009bf543d8460583ff8a669aae01d9cdbee4defe3c", Symbol: "SKO", CoinGeckoId: "sugar-kingdom-odyssey", Decimals: 18, Price: 0.00078126},                            // Addr: 0x9bf543d8460583ff8a669aae01d9cdbee4defe3c, Notional: 959.7624566771999
+		{Chain: 4, Addr: "0000000000000000000000009d7107c8e30617cadc11f9692a19c82ae8bba938", Symbol: "ROO", CoinGeckoId: "lucky-roo", Decimals: 18, Price: 2.3906e-8},                                         // Addr: 0x9d7107c8e30617cadc11f9692a19c82ae8bba938, Notional: 0.23425291084606253
+		{Chain: 4, Addr: "0000000000000000000000009df465460938f9ebdf51c38cc87d72184471f8f0", Symbol: "GENE", CoinGeckoId: "genopets", Decimals: 18, Price: 0.065715},                                          // Addr: 0x9df465460938f9ebdf51c38cc87d72184471f8f0, Notional: 5.52419997468495
+		{Chain: 4, Addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", Symbol: "OMNI", CoinGeckoId: "omnicat", Decimals: 18, Price: 0.00001466},                                         // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 29.729173866045688
+		{Chain: 4, Addr: "0000000000000000000000009e24415d1e549ebc626a13a482bb117a2b43e9cf", Symbol: "LOVELY", CoinGeckoId: "lovely-inu-finance", Decimals: 8, Price: 0.00000601},                             // Addr: 0x9e24415d1e549ebc626a13a482bb117a2b43e9cf, Notional: 200700.91777788202
+		{Chain: 4, Addr: "0000000000000000000000009e3a9f1612028eee48f85ca85f8bed2f37d76848", Symbol: "QDX", CoinGeckoId: "quidax", Decimals: 18, Price: 0.04817222},                                           // Addr: 0x9e3a9f1612028eee48f85ca85f8bed2f37d76848, Notional: 24.08611
+		{Chain: 4, Addr: "0000000000000000000000009e6b3e35c8f563b45d864f9ff697a144ad28a371", Symbol: "DOGO", CoinGeckoId: "dogemon-go", Decimals: 18, Price: 8.00285e-7},                                      // Addr: 0x9e6b3e35c8f563b45d864f9ff697a144ad28a371, Notional: 13.587901282838232
+		{Chain: 4, Addr: "0000000000000000000000009eb6935aea6afb5bc6d1a74be0c2f78280ab6448", Symbol: "ACA", CoinGeckoId: "aca-token", Decimals: 9, Price: 0.00026033},                                         // Addr: 0x9eb6935aea6afb5bc6d1a74be0c2f78280ab6448, Notional: 1.678586978663714
+		{Chain: 4, Addr: "0000000000000000000000009ed7e4b1bff939ad473da5e7a218c771d1569456", Symbol: "REUNI", CoinGeckoId: "reunit-wallet", Decimals: 6, Price: 0.02307287},                                   // Addr: 0x9ed7e4b1bff939ad473da5e7a218c771d1569456, Notional: 0.4326163125
+		{Chain: 4, Addr: "0000000000000000000000009f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435", Symbol: " BTCPAY", CoinGeckoId: "bitcoin-pay", Decimals: 18, Price: 0.00544746},                                  // Addr: 0x9f5c37e0fd9bf729b1f0a6f39ce57be5e9bfd435, Notional: 0.0000233316346038
+		{Chain: 4, Addr: "0000000000000000000000009fb9a33956351cf4fa040f65a13b835a3c8764e3", Symbol: "MULTI", CoinGeckoId: "multichain", Decimals: 18, Price: 0.603485},                                       // Addr: 0x9fb9a33956351cf4fa040f65a13b835a3c8764e3, Notional: 12904.253907460194
+		{Chain: 4, Addr: "000000000000000000000000a0d96fd642156fc7e964949642257b3572f10cd6", Symbol: "BLOK", CoinGeckoId: "bloktopia", Decimals: 18, Price: 0.00029531},                                       // Addr: 0xa0d96fd642156fc7e964949642257b3572f10cd6, Notional: 23.00224744327553
+		{Chain: 4, Addr: "000000000000000000000000a2120b9e674d3fc3875f415a7df52e382f141225", Symbol: "ATA", CoinGeckoId: "automata", Decimals: 18, Price: 0.04708697},                                         // Addr: 0xa2120b9e674d3fc3875f415a7df52e382f141225, Notional: 1.002952461
+		{Chain: 4, Addr: "000000000000000000000000a260e12d2b924cb899ae80bb58123ac3fee1e2f0", Symbol: "HOOK", CoinGeckoId: "hooked-protocol", Decimals: 18, Price: 0.11292},                                    // Addr: 0xa260e12d2b924cb899ae80bb58123ac3fee1e2f0, Notional: 0.22584
+		{Chain: 4, Addr: "000000000000000000000000a2b726b1145a4773f68593cf171187d8ebe4d495", Symbol: "INJ", CoinGeckoId: "injective-protocol", Decimals: 18, Price: 13.61},                                    // Addr: 0xa2b726b1145a4773f68593cf171187d8ebe4d495, Notional: 2232.1364523007
+		{Chain: 4, Addr: "000000000000000000000000a38898a4ae982cb0131104a6746f77fa0da57aaa", Symbol: "QBIT", CoinGeckoId: "project-quantum", Decimals: 2, Price: 0.00000173},                                  // Addr: 0xa38898a4ae982cb0131104a6746f77fa0da57aaa, Notional: 0.00001557
+		{Chain: 4, Addr: "000000000000000000000000a5496935a247fa81b1462e553ad139d2fd0af795", Symbol: "FLAG", CoinGeckoId: "flag-network", Decimals: 18, Price: 0.00000897},                                    // Addr: 0xa5496935a247fa81b1462e553ad139d2fd0af795, Notional: 4.137014479358604
+		{Chain: 4, Addr: "000000000000000000000000a58950f05fea2277d2608748412bf9f802ea4901", Symbol: "WSG", CoinGeckoId: "wall-street-games", Decimals: 18, Price: 1.28179e-10},                               // Addr: 0xa58950f05fea2277d2608748412bf9f802ea4901, Notional: 0.19803576945670032
+		{Chain: 4, Addr: "000000000000000000000000a6168c7e5eb7c5c379f3a1d7cf1073e09b2f031e", Symbol: "GRAV", CoinGeckoId: "graviton-zero", Decimals: 18, Price: 0.00008058},                                   // Addr: 0xa6168c7e5eb7c5c379f3a1d7cf1073e09b2f031e, Notional: 0.000015858144
+		{Chain: 4, Addr: "000000000000000000000000a67b8e40111a0edd30c3210b77aadb86ad234c43", Symbol: "Bandex", CoinGeckoId: "banana-index", Decimals: 9, Price: 1.2007e-8},                                    // Addr: 0xa67b8e40111a0edd30c3210b77aadb86ad234c43, Notional: 4.967892563718809
+		{Chain: 4, Addr: "000000000000000000000000a719b8ab7ea7af0ddb4358719a34631bb79d15dc", Symbol: "FRM", CoinGeckoId: "ferrum-network", Decimals: 18, Price: 0.00074829},                                   // Addr: 0xa719b8ab7ea7af0ddb4358719a34631bb79d15dc, Notional: 0.07444046444793749
+		{Chain: 4, Addr: "000000000000000000000000a75d9ca2a0a1d547409d82e1b06618ec284a2ced", Symbol: "WMX", CoinGeckoId: "wombex", Decimals: 18, Price: 0.00024996},                                           // Addr: 0xa75d9ca2a0a1d547409d82e1b06618ec284a2ced, Notional: 2267.304663033472
+		{Chain: 4, Addr: "000000000000000000000000a7bd657c5838472ddf85ff0797a2e6fce8fd4833", Symbol: "ARBI", CoinGeckoId: "arbipad", Decimals: 18, Price: 0.00000213},                                         // Addr: 0xa7bd657c5838472ddf85ff0797a2e6fce8fd4833, Notional: 14.307287554444384
+		{Chain: 4, Addr: "000000000000000000000000aa076b62efc6f357882e07665157a271ab46a063", Symbol: "NSFW", CoinGeckoId: "pleasure-coin", Decimals: 18, Price: 0.00002964},                                   // Addr: 0xaa076b62efc6f357882e07665157a271ab46a063, Notional: 45505.65399195587
+		{Chain: 4, Addr: "000000000000000000000000aa2ded323944b25c0b6f1f891bc96f010b65622c", Symbol: "TheRadio", CoinGeckoId: "radioreum", Decimals: 18, Price: 0.00047533},                                   // Addr: 0xaa2ded323944b25c0b6f1f891bc96f010b65622c, Notional: 0.0027513133387156
+		{Chain: 4, Addr: "000000000000000000000000aa9826732f3a4973ff8b384b3f4e3c70c2984651", Symbol: "XPRESS", CoinGeckoId: "cryptoexpress", Decimals: 18, Price: 0.01249521},                                 // Addr: 0xaa9826732f3a4973ff8b384b3f4e3c70c2984651, Notional: 2.148867216042374
+		{Chain: 4, Addr: "000000000000000000000000ac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f", Symbol: "ANI", CoinGeckoId: "anime-token", Decimals: 18, Price: 0.00127477},                                      // Addr: 0xac472d0eed2b8a2f57a6e304ea7ebd8e88d1d36f, Notional: 3848.799594823
+		{Chain: 4, Addr: "000000000000000000000000ac51066d7bec65dc4589368da368b212745d63e8", Symbol: "ALICE", CoinGeckoId: "my-neighbor-alice", Decimals: 6, Price: 0.432288},                                 // Addr: 0xac51066d7bec65dc4589368da368b212745d63e8, Notional: 0.2593728
+		{Chain: 4, Addr: "000000000000000000000000ace8c5e6e492aa7aebf31a8053f8a487f62ceb84", Symbol: "NADA", CoinGeckoId: "nothing", Decimals: 18, Price: 6.71115e-7},                                         // Addr: 0xace8c5e6e492aa7aebf31a8053f8a487f62ceb84, Notional: 0.268446
+		{Chain: 4, Addr: "000000000000000000000000ad29abb318791d579433d831ed122afeaf29dcfe", Symbol: "FTM", CoinGeckoId: "wrapped-fantom", Decimals: 18, Price: 0.386855},                                     // Addr: 0xad29abb318791d579433d831ed122afeaf29dcfe, Notional: 1319.912169305869
+		{Chain: 4, Addr: "000000000000000000000000ad6742a35fb341a9cc6ad674738dd8da98b94fb1", Symbol: "WOM", CoinGeckoId: "wombat-exchange", Decimals: 18, Price: 0.00330808},                                  // Addr: 0xad6742a35fb341a9cc6ad674738dd8da98b94fb1, Notional: 232276.79432057132
+		{Chain: 4, Addr: "000000000000000000000000ad86d0e9764ba90ddd68747d64bffbd79879a238", Symbol: "PAID", CoinGeckoId: "paid-network", Decimals: 18, Price: 0.02128385},                                    // Addr: 0xad86d0e9764ba90ddd68747d64bffbd79879a238, Notional: 0.1268284189004
+		{Chain: 4, Addr: "000000000000000000000000ae9269f27437f0fcbc232d39ec814844a51d6b8f", Symbol: "BURGER", CoinGeckoId: "burger-swap", Decimals: 18, Price: 0.00815518},                                   // Addr: 0xae9269f27437f0fcbc232d39ec814844a51d6b8f, Notional: 0.0010673965244778
+		{Chain: 4, Addr: "000000000000000000000000aec945e04baf28b135fa7c640f624f8d90f1c3a6", Symbol: "C98", CoinGeckoId: "coin98", Decimals: 18, Price: 0.051361},                                             // Addr: 0xaec945e04baf28b135fa7c640f624f8d90f1c3a6, Notional: 21.60055949001582
+		{Chain: 4, Addr: "000000000000000000000000aef0d72a118ce24fee3cd1d43d383897d05b4e99", Symbol: "WIN", CoinGeckoId: "winklink-bsc", Decimals: 18, Price: 0.00005221},                                     // Addr: 0xaef0d72a118ce24fee3cd1d43d383897d05b4e99, Notional: 10.142216452338674
+		{Chain: 4, Addr: "000000000000000000000000af20f5f19698f1d19351028cd7103b63d30de7d7", Symbol: "WAGMI", CoinGeckoId: "wagmi-2", Decimals: 18, Price: 0.00736235},                                        // Addr: 0xaf20f5f19698f1d19351028cd7103b63d30de7d7, Notional: 0.7840902750000001
+		{Chain: 4, Addr: "000000000000000000000000af7bfa6240745fd41d1ed4b5fade9dcaf369ba6c", Symbol: "Mverse", CoinGeckoId: "maticverse", Decimals: 18, Price: 1.33214e-7},                                    // Addr: 0xaf7bfa6240745fd41d1ed4b5fade9dcaf369ba6c, Notional: 14.810228927360843
+		{Chain: 4, Addr: "000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                   // Addr: 0xb0d502e938ed5f4df2e681fe6e419ff29631d62b, Notional: 14.07809106197025
+		{Chain: 4, Addr: "000000000000000000000000b46584e0efde3092e04010a13f2eae62adb3b9f0", Symbol: "PEPE", CoinGeckoId: "pepe-coin-bsc-c45e8b31-8ae1-43f4-bd34-e75551d97285", Decimals: 18, Price: 1.31e-9}, // Addr: 0xb46584e0efde3092e04010a13f2eae62adb3b9f0, Notional: 241.62628452077215
+		{Chain: 4, Addr: "000000000000000000000000b6c53431608e626ac81a9776ac3e999c5556717c", Symbol: "TLOS", CoinGeckoId: "wrapped-telos", Decimals: 18, Price: 0.05208},                                      // Addr: 0xb6c53431608e626ac81a9776ac3e999c5556717c, Notional: 0.5120542675752
+		{Chain: 4, Addr: "000000000000000000000000b8501a9a9aaae239a2490f44e00b284baa0b131a", Symbol: "CREMAT", CoinGeckoId: "cremation-coin", Decimals: 18, Price: 1.2641e-8},                                 // Addr: 0xb8501a9a9aaae239a2490f44e00b284baa0b131a, Notional: 0.15430458016233248
+		{Chain: 4, Addr: "000000000000000000000000b955b4cab9aa3b49e23aeb5204ebc5ff6678e86d", Symbol: "Afin", CoinGeckoId: "afin-coin", Decimals: 18, Price: 0.00121705},                                       // Addr: 0xb955b4cab9aa3b49e23aeb5204ebc5ff6678e86d, Notional: 10.722338795520477
+		{Chain: 4, Addr: "000000000000000000000000ba2ae424d960c26247dd6c32edc70b295c744c43", Symbol: "DOGE", CoinGeckoId: "binance-peg-dogecoin", Decimals: 8, Price: 0.187108},                               // Addr: 0xba2ae424d960c26247dd6c32edc70b295c744c43, Notional: 41077.514449959075
+		{Chain: 4, Addr: "000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c", Symbol: "WBNB", CoinGeckoId: "wbnb", Decimals: 18, Price: 661.74},                                                // Addr: 0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c, Notional: 4163417.4259970696
+		{Chain: 4, Addr: "000000000000000000000000bd100d061e120b2c67a24453cf6368e63f1be056", Symbol: "iDYP", CoinGeckoId: "idefiyieldprotocol", Decimals: 18, Price: 0.00035127},                              // Addr: 0xbd100d061e120b2c67a24453cf6368e63f1be056, Notional: 0.9877852908
+		{Chain: 4, Addr: "000000000000000000000000bd83010eb60f12112908774998f65761cf9f6f9a", Symbol: "STARS", CoinGeckoId: "mogul-productions", Decimals: 18, Price: 0.00001504},                              // Addr: 0xbd83010eb60f12112908774998f65761cf9f6f9a, Notional: 0.0062752896
+		{Chain: 4, Addr: "000000000000000000000000bdeae1ca48894a1759a8374d63925f21f2ee2639", Symbol: "EDU", CoinGeckoId: "edu-coin", Decimals: 18, Price: 0.147429},                                           // Addr: 0xbdeae1ca48894a1759a8374d63925f21f2ee2639, Notional: 7.37292429
+		{Chain: 4, Addr: "000000000000000000000000bf05279f9bf1ce69bbfed670813b7e431142afa4", Symbol: "MM", CoinGeckoId: "million", Decimals: 18, Price: 1.042},                                                // Addr: 0xbf05279f9bf1ce69bbfed670813b7e431142afa4, Notional: 188.10924593164
+		{Chain: 4, Addr: "000000000000000000000000bf0cf158e84ebacca1b7746e794d507073e5adfe", Symbol: "BEPR", CoinGeckoId: "blockchain-euro-project", Decimals: 9, Price: 0.006188},                            // Addr: 0xbf0cf158e84ebacca1b7746e794d507073e5adfe, Notional: 1358.5347248593812
+		{Chain: 4, Addr: "000000000000000000000000bf37f781473f3b50e82c668352984865eac9853f", Symbol: "MILK", CoinGeckoId: "the-crypto-you", Decimals: 18, Price: 3.2174e-8},                                   // Addr: 0xbf37f781473f3b50e82c668352984865eac9853f, Notional: 3.2174e-8
+		{Chain: 4, Addr: "000000000000000000000000bf5140a22578168fd562dccf235e5d43a02ce9b1", Symbol: "UNI", CoinGeckoId: "uniswap", Decimals: 18, Price: 6.64},                                                // Addr: 0xbf5140a22578168fd562dccf235e5d43a02ce9b1, Notional: 25.052573322399997
+		{Chain: 4, Addr: "000000000000000000000000bf7c81fff98bbe61b40ed186e4afd6ddd01337fe", Symbol: "EGLD", CoinGeckoId: "wrapped-elrond", Decimals: 18, Price: 15.36},                                       // Addr: 0xbf7c81fff98bbe61b40ed186e4afd6ddd01337fe, Notional: 137.6114829312
+		{Chain: 4, Addr: "000000000000000000000000bfbee3dac982148ac793161f7362344925506903", Symbol: "CATZ", CoinGeckoId: "catzcoin", Decimals: 18, Price: 0.00000126},                                        // Addr: 0xbfbee3dac982148ac793161f7362344925506903, Notional: 0.15260112
+		{Chain: 4, Addr: "000000000000000000000000bfea674ce7d16e26e39e3c088810367a708ef94c", Symbol: "APRIL", CoinGeckoId: "april", Decimals: 18, Price: 0.00039064},                                          // Addr: 0xbfea674ce7d16e26e39e3c088810367a708ef94c, Notional: 1.1719199999999999
+		{Chain: 4, Addr: "000000000000000000000000c0366a104b429f0806bfa98d0008daa9555b2bed", Symbol: "SMARS", CoinGeckoId: "safemars-protocol", Decimals: 9, Price: 4.225e-9},                                 // Addr: 0xc0366a104b429f0806bfa98d0008daa9555b2bed, Notional: 0.001630894628834747
+		{Chain: 4, Addr: "000000000000000000000000c0c6e4c6e70c6231b20979bda581a66f062a7967", Symbol: "bATRI", CoinGeckoId: "atari", Decimals: 0, Price: 0.00018727},                                           // Addr: 0xc0c6e4c6e70c6231b20979bda581a66f062a7967, Notional: 0.43147008
+		{Chain: 4, Addr: "000000000000000000000000c0ecb8499d8da2771abcbf4091db7f65158f1468", Symbol: "SWTH", CoinGeckoId: "switcheo", Decimals: 8, Price: 0.00108346},                                         // Addr: 0xc0ecb8499d8da2771abcbf4091db7f65158f1468, Notional: 0.00108346
+		{Chain: 4, Addr: "000000000000000000000000c146b7cdbaff065090077151d391f4c96aa09e0c", Symbol: "MCC", CoinGeckoId: "multi-chain-capital-2", Decimals: 9, Price: 1.12958e-7},                             // Addr: 0xc146b7cdbaff065090077151d391f4c96aa09e0c, Notional: 0.00000169437
+		{Chain: 4, Addr: "000000000000000000000000c14a7747cfec02cfea62e72bb93538de6b2078e6", Symbol: "GBL", CoinGeckoId: "waweswaps-global-token", Decimals: 18, Price: 23.63},                                // Addr: 0xc14a7747cfec02cfea62e72bb93538de6b2078e6, Notional: 11265.4177727113
+		{Chain: 4, Addr: "000000000000000000000000c19fe21b4ef356f2f65894392dde4252aa083605", Symbol: "WSO", CoinGeckoId: "widi-soul", Decimals: 18, Price: 0.00001221},                                        // Addr: 0xc19fe21b4ef356f2f65894392dde4252aa083605, Notional: 0.0008631623108294999
+		{Chain: 4, Addr: "000000000000000000000000c27a719105a987b4c34116223cae8bd8f4b5def4", Symbol: "ACE", CoinGeckoId: "endurance", Decimals: 18, Price: 0.591557},                                          // Addr: 0xc27a719105a987b4c34116223cae8bd8f4b5def4, Notional: 2505.138381977104
+		{Chain: 4, Addr: "000000000000000000000000c335df7c25b72eec661d5aa32a7c2b7b2a1d1874", Symbol: "ICE", CoinGeckoId: "ice", Decimals: 18, Price: 0.00502176},                                              // Addr: 0xc335df7c25b72eec661d5aa32a7c2b7b2a1d1874, Notional: 491530.2342086346
+		{Chain: 4, Addr: "000000000000000000000000c342774492b54ce5f8ac662113ed702fc1b34972", Symbol: "BGEO", CoinGeckoId: "geodb", Decimals: 18, Price: 0.0001376},                                            // Addr: 0xc342774492b54ce5f8ac662113ed702fc1b34972, Notional: 137.60000000000002
+		{Chain: 4, Addr: "000000000000000000000000c3d912863152e1afc935ad0d42d469e7c6b05b77", Symbol: "LUCKY", CoinGeckoId: "lucky-lion", Decimals: 18, Price: 0.00010776},                                     // Addr: 0xc3d912863152e1afc935ad0d42d469e7c6b05b77, Notional: 0.0030499748355144
+		{Chain: 4, Addr: "000000000000000000000000c49dde62b4a0810074721faca54aab52369f486a", Symbol: "PKR", CoinGeckoId: "polker", Decimals: 18, Price: 0.00100631},                                           // Addr: 0xc49dde62b4a0810074721faca54aab52369f486a, Notional: 0.7949849
+		{Chain: 4, Addr: "000000000000000000000000c5326b32e8baef125acd68f8bc646fd646104f1c", Symbol: "ZAP", CoinGeckoId: "zap", Decimals: 18, Price: 0.00105042},                                              // Addr: 0xc5326b32e8baef125acd68f8bc646fd646104f1c, Notional: 4392.30120320386
+		{Chain: 4, Addr: "000000000000000000000000c598275452fa319d75ee5f176fd3b8384925b425", Symbol: "STRM", CoinGeckoId: "streamcoin", Decimals: 18, Price: 0.00136763},                                      // Addr: 0xc598275452fa319d75ee5f176fd3b8384925b425, Notional: 0.00273526
+		{Chain: 4, Addr: "000000000000000000000000c5e6689c9c8b02be7c49912ef19e79cf24977f03", Symbol: "ALPA", CoinGeckoId: "alpaca", Decimals: 18, Price: 0.0071577},                                           // Addr: 0xc5e6689c9c8b02be7c49912ef19e79cf24977f03, Notional: 10.231272234324603
+		{Chain: 4, Addr: "000000000000000000000000c6f509274fcc1f485644167cb911fd0c61545e6c", Symbol: "OBS", CoinGeckoId: "obsidium", Decimals: 18, Price: 0.00253105},                                         // Addr: 0xc6f509274fcc1f485644167cb911fd0c61545e6c, Notional: 2.784155
+		{Chain: 4, Addr: "000000000000000000000000c703da39ae3b9db67c207c7bad8100e1afdc0f9c", Symbol: "FRGX", CoinGeckoId: "frgx-finance", Decimals: 18, Price: 0.0086139},                                     // Addr: 0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c, Notional: 3683.880381992119
+		{Chain: 4, Addr: "000000000000000000000000c732b6586a93b6b7cf5fed3470808bc74998224d", Symbol: "KMON", CoinGeckoId: "kryptomon", Decimals: 18, Price: 0.00001347},                                       // Addr: 0xc732b6586a93b6b7cf5fed3470808bc74998224d, Notional: 91.0362661592344
+		{Chain: 4, Addr: "000000000000000000000000c748673057861a797275cd8a068abb95a902e8de", Symbol: "BabyDoge", CoinGeckoId: "baby-doge-coin", Decimals: 9, Price: 1.395e-9},                                 // Addr: 0xc748673057861a797275cd8a068abb95a902e8de, Notional: 15.95961280519153
+		{Chain: 4, Addr: "000000000000000000000000c74cd0042c837ce59210857504ebb0859e06aa22", Symbol: "SAFUYIELD", CoinGeckoId: "safu-protocol", Decimals: 9, Price: 5.53874e-10},                              // Addr: 0xc74cd0042c837ce59210857504ebb0859e06aa22, Notional: 0.00050336069120108
+		{Chain: 4, Addr: "000000000000000000000000c864019047b864b6ab609a968ae2725dfaee808a", Symbol: "BIT", CoinGeckoId: "biconomy-exchange-token", Decimals: 9, Price: 0.00001069},                           // Addr: 0xc864019047b864b6ab609a968ae2725dfaee808a, Notional: 23149.46452309903
+		{Chain: 4, Addr: "000000000000000000000000c8a11f433512c16ed895245f34bcc2ca44eb06bd", Symbol: "KSN", CoinGeckoId: "kissan", Decimals: 18, Price: 0.04442481},                                           // Addr: 0xc8a11f433512c16ed895245f34bcc2ca44eb06bd, Notional: 131340.87132632645
+		{Chain: 4, Addr: "000000000000000000000000c94595b56e301f3ffedb8ccc2d672882d623e53a", Symbol: "ACY", CoinGeckoId: "acy-finance", Decimals: 18, Price: 0.00365938},                                      // Addr: 0xc94595b56e301f3ffedb8ccc2d672882d623e53a, Notional: 0.036593799999999996
+		{Chain: 4, Addr: "000000000000000000000000c9ad37e9baf41377540df5a77831db98c1915128", Symbol: "GINUX", CoinGeckoId: "green-shiba-inu", Decimals: 18, Price: 5.6089e-8},                                 // Addr: 0xc9ad37e9baf41377540df5a77831db98c1915128, Notional: 23.727250851169735
+		{Chain: 4, Addr: "000000000000000000000000ca3f508b8e4dd382ee878a314789373d80a5190a", Symbol: "BIFI", CoinGeckoId: "beefy-finance", Decimals: 18, Price: 145.24},                                       // Addr: 0xca3f508b8e4dd382ee878a314789373d80a5190a, Notional: 1.7467041692
+		{Chain: 4, Addr: "000000000000000000000000ca830317146bfdde71e7c0b880e2ec1f66e273ee", Symbol: "GULL", CoinGeckoId: "polygod", Decimals: 18, Price: 0.00302048},                                         // Addr: 0xca830317146bfdde71e7c0b880e2ec1f66e273ee, Notional: 3.02048
+		{Chain: 4, Addr: "000000000000000000000000cafe001067cdef266afb7eb5a286dcfd277f3de5", Symbol: "PSP", CoinGeckoId: "paraswap", Decimals: 18, Price: 0.01879275},                                         // Addr: 0xcafe001067cdef266afb7eb5a286dcfd277f3de5, Notional: 0.1346813750626425
+		{Chain: 4, Addr: "000000000000000000000000cbd9f6d748dd3d19416f8914528a65c7838e27d8", Symbol: "RGAME", CoinGeckoId: "r-games", Decimals: 18, Price: 0.00017427},                                        // Addr: 0xcbd9f6d748dd3d19416f8914528a65c7838e27d8, Notional: 0.0282386083362108
+		{Chain: 4, Addr: "000000000000000000000000cc42724c6683b7e57334c4e856f4c9965ed682bd", Symbol: "MATIC", CoinGeckoId: "matic-network", Decimals: 18, Price: 0.213435},                                    // Addr: 0xcc42724c6683b7e57334c4e856f4c9965ed682bd, Notional: 1542.3230854575334
+		{Chain: 4, Addr: "000000000000000000000000ce355300b9d7909f577640a3fb179cf911a23fbb", Symbol: "PPP", CoinGeckoId: "playposeidon-nft", Decimals: 18, Price: 0.00024635},                                 // Addr: 0xce355300b9d7909f577640a3fb179cf911a23fbb, Notional: 2.4635
+		{Chain: 4, Addr: "000000000000000000000000ce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", Symbol: "TRX", CoinGeckoId: "tron-bsc", Decimals: 6, Price: 0.287786},                                            // Addr: 0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3, Notional: 427528.41941832256
+		{Chain: 4, Addr: "000000000000000000000000d06716e1ff2e492cc5034c2e81805562dd3b45fa", Symbol: "MGP", CoinGeckoId: "magpie", Decimals: 18, Price: 0.04863448},                                           // Addr: 0xd06716e1ff2e492cc5034c2e81805562dd3b45fa, Notional: 5553692.2048638975
+		{Chain: 4, Addr: "000000000000000000000000d069599e718f963bd84502b49ba8f8657faf5b3a", Symbol: "PLAY", CoinGeckoId: "xcad-network-play", Decimals: 18, Price: 0.00022962},                               // Addr: 0xd069599e718f963bd84502b49ba8f8657faf5b3a, Notional: 575.783441817958
+		{Chain: 4, Addr: "000000000000000000000000d17479997f34dd9156deef8f95a52d81d265be9c", Symbol: "USDD", CoinGeckoId: "usdd", Decimals: 18, Price: 1.001},                                                 // Addr: 0xd17479997f34dd9156deef8f95a52d81d265be9c, Notional: 0.004042778739999999
+		{Chain: 4, Addr: "000000000000000000000000d32d01a43c869edcd1117c640fbdcfcfd97d9d65", Symbol: "NMX", CoinGeckoId: "nominex", Decimals: 18, Price: 0.00288823},                                          // Addr: 0xd32d01a43c869edcd1117c640fbdcfcfd97d9d65, Notional: 0.0057636196514775
+		{Chain: 4, Addr: "000000000000000000000000d3b71117e6c1558c1553305b44988cd944e97300", Symbol: "YEL", CoinGeckoId: "yel-finance", Decimals: 18, Price: 0.00361491},                                      // Addr: 0xd3b71117e6c1558c1553305b44988cd944e97300, Notional: 0.171370533482967
+		{Chain: 4, Addr: "000000000000000000000000d691d9a68c887bdf34da8c36f63487333acfd103", Symbol: "MAV", CoinGeckoId: "maverick-protocol", Decimals: 18, Price: 0.054174},                                  // Addr: 0xd691d9a68c887bdf34da8c36f63487333acfd103, Notional: 0.67734928155018
+		{Chain: 4, Addr: "000000000000000000000000d74b782e05aa25c50e7330af541d46e18f36661c", Symbol: "QUACK", CoinGeckoId: "richquack", Decimals: 9, Price: 3.15281e-10},                                      // Addr: 0xd74b782e05aa25c50e7330af541d46e18f36661c, Notional: 38.26334796016399
+		{Chain: 4, Addr: "000000000000000000000000d9907fcda91ac644f70477b8fc1607ad15b2d7a8", Symbol: "multiBTC", CoinGeckoId: "multibtc", Decimals: 8, Price: 1586.64},                                        // Addr: 0xd9907fcda91ac644f70477b8fc1607ad15b2d7a8, Notional: 0.031732800000000005
+		{Chain: 4, Addr: "000000000000000000000000dd325c38b12903b727d16961e61333f4871a70e0", Symbol: "TRUNK", CoinGeckoId: "elephant-money-trunk", Decimals: 18, Price: 0.04923914},                           // Addr: 0xdd325c38b12903b727d16961e61333f4871a70e0, Notional: 1421225.6906451648
+		{Chain: 4, Addr: "000000000000000000000000de7d1ce109236b12809c45b23d22f30dba0ef424", Symbol: "USDS", CoinGeckoId: "spiceusd", Decimals: 18, Price: 0.117148},                                          // Addr: 0xde7d1ce109236b12809c45b23d22f30dba0ef424, Notional: 0.117148
+		{Chain: 4, Addr: "000000000000000000000000e2604c9561d490624aa35e156e65e590eb749519", Symbol: "GM", CoinGeckoId: "goldminer", Decimals: 18, Price: 2.55872e-7},                                         // Addr: 0xe2604c9561d490624aa35e156e65e590eb749519, Notional: 13.757940663120891
+		{Chain: 4, Addr: "000000000000000000000000e29142e14e52bdfbb8108076f66f49661f10ec10", Symbol: "SEILOR", CoinGeckoId: "kryptonite", Decimals: 18, Price: 0.00091257},                                    // Addr: 0xe29142e14e52bdfbb8108076f66f49661f10ec10, Notional: 915.0143057722609
+		{Chain: 4, Addr: "000000000000000000000000e2e7329499e8ddb1f2b04ee4b35a8d7f6881e4ea", Symbol: "$ANRX", CoinGeckoId: "anrkey-x", Decimals: 18, Price: 0.00006427},                                       // Addr: 0xe2e7329499e8ddb1f2b04ee4b35a8d7f6881e4ea, Notional: 16.0996986273
+		{Chain: 4, Addr: "000000000000000000000000e4ca1f75eca6214393fce1c1b316c237664eaa8e", Symbol: "ORN", CoinGeckoId: "orion-protocol", Decimals: 8, Price: 0.28231},                                       // Addr: 0xe4ca1f75eca6214393fce1c1b316c237664eaa8e, Notional: 156.1369599743058
+		{Chain: 4, Addr: "000000000000000000000000e4cc45bb5dbda06db6183e8bf016569f40497aa5", Symbol: "GAL", CoinGeckoId: "project-galaxy", Decimals: 18, Price: 0.816756},                                     // Addr: 0xe4cc45bb5dbda06db6183e8bf016569f40497aa5, Notional: 8.112837348000001
+		{Chain: 4, Addr: "000000000000000000000000e4e11e02aa14c7f24db749421986eaec1369e8c9", Symbol: "MNTC", CoinGeckoId: "minativerse", Decimals: 18, Price: 1.78},                                           // Addr: 0xe4e11e02aa14c7f24db749421986eaec1369e8c9, Notional: 3.5778
+		{Chain: 4, Addr: "000000000000000000000000e4fae3faa8300810c835970b9187c268f55d998f", Symbol: "CATE", CoinGeckoId: "catecoin", Decimals: 9, Price: 9.8069e-8},                                          // Addr: 0xe4fae3faa8300810c835970b9187c268f55d998f, Notional: 0.000661791954456165
+		{Chain: 4, Addr: "000000000000000000000000e552fb52a4f19e44ef5a967632dbc320b0820639", Symbol: "Metis", CoinGeckoId: "metis-token", Decimals: 18, Price: 17.94},                                         // Addr: 0xe552fb52a4f19e44ef5a967632dbc320b0820639, Notional: 151859.61127762622
+		{Chain: 4, Addr: "000000000000000000000000e60eaf5a997dfae83739e035b005a33afdcc6df5", Symbol: "DERI", CoinGeckoId: "deri-protocol", Decimals: 18, Price: 0.00487729},                                   // Addr: 0xe60eaf5a997dfae83739e035b005a33afdcc6df5, Notional: 0.002438645
+		{Chain: 4, Addr: "000000000000000000000000e7c9c6bc87b86f9e5b57072f907ee6460b593924", Symbol: "TOWER", CoinGeckoId: "tower", Decimals: 18, Price: 0.00040559},                                          // Addr: 0xe7c9c6bc87b86f9e5b57072f907ee6460b593924, Notional: 0.6108292655882519
+		{Chain: 4, Addr: "000000000000000000000000e8670901e86818745b28c8b30b17986958fce8cc", Symbol: "XCT", CoinGeckoId: "citadel-one", Decimals: 6, Price: 0.00042801},                                       // Addr: 0xe8670901e86818745b28c8b30b17986958fce8cc, Notional: 0.00042801
+		{Chain: 4, Addr: "000000000000000000000000e9c803f48dffe50180bd5b01dc04da939e3445fc", Symbol: "VLX", CoinGeckoId: "velas", Decimals: 18, Price: 0.00286492},                                            // Addr: 0xe9c803f48dffe50180bd5b01dc04da939e3445fc, Notional: 29.727049425236412
+		{Chain: 4, Addr: "000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d56", Symbol: "BUSD", CoinGeckoId: "binance-usd", Decimals: 18, Price: 0.992597},                                       // Addr: 0xe9e7cea3dedca5984780bafc599bd69add087d56, Notional: 103621.01127664669
+		{Chain: 4, Addr: "000000000000000000000000ebbaeff6217d22e7744394061d874015709b8141", Symbol: "WAM", CoinGeckoId: "wam", Decimals: 18, Price: 0.00113947},                                              // Addr: 0xebbaeff6217d22e7744394061d874015709b8141, Notional: 22270.940382590496
+		{Chain: 4, Addr: "000000000000000000000000eca41281c24451168a37211f0bc2b8645af45092", Symbol: "TPT", CoinGeckoId: "token-pocket", Decimals: 4, Price: 0.00995549},                                      // Addr: 0xeca41281c24451168a37211f0bc2b8645af45092, Notional: 1.9910980000000003
+		{Chain: 4, Addr: "000000000000000000000000ed28a457a5a76596ac48d87c0f577020f6ea1c4c", Symbol: "pBTC", CoinGeckoId: "ptokens-btc", Decimals: 18, Price: 673.02},                                         // Addr: 0xed28a457a5a76596ac48d87c0f577020f6ea1c4c, Notional: 0.1346511114
+		{Chain: 4, Addr: "000000000000000000000000f16e81dce15b08f326220742020379b855b87df9", Symbol: "ICE", CoinGeckoId: "ice-token", Decimals: 18, Price: 0.16271},                                           // Addr: 0xf16e81dce15b08f326220742020379b855b87df9, Notional: 0.9737203279482
+		{Chain: 4, Addr: "000000000000000000000000f21768ccbc73ea5b6fd3c687208a7c2def2d966e", Symbol: "REEF", CoinGeckoId: "reef", Decimals: 18, Price: 0.00037335},                                            // Addr: 0xf21768ccbc73ea5b6fd3c687208a7c2def2d966e, Notional: 148.3522377527372
+		{Chain: 4, Addr: "000000000000000000000000f218184af829cf2b0019f8e6f0b2423498a36983", Symbol: "MATH", CoinGeckoId: "math", Decimals: 18, Price: 0.105831},                                              // Addr: 0xf218184af829cf2b0019f8e6f0b2423498a36983, Notional: 96.21024725181077
+		{Chain: 4, Addr: "000000000000000000000000f2c9c8e016a511eb0bf4823e340c3567d6de1390", Symbol: "LAIKA", CoinGeckoId: "laikaverse", Decimals: 18, Price: 0.00000686},                                     // Addr: 0xf2c9c8e016a511eb0bf4823e340c3567d6de1390, Notional: 6.86e-14
+		{Chain: 4, Addr: "000000000000000000000000f486ad071f3bee968384d2e39e2d8af0fcf6fd46", Symbol: "VELO", CoinGeckoId: "velo", Decimals: 18, Price: 0.01330744},                                            // Addr: 0xf486ad071f3bee968384d2e39e2d8af0fcf6fd46, Notional: 66.1797845180992
+		{Chain: 4, Addr: "000000000000000000000000f585b5b4f22816baf7629aea55b701662630397b", Symbol: "VOW", CoinGeckoId: "vow", Decimals: 18, Price: 0.068439},                                                // Addr: 0xf585b5b4f22816baf7629aea55b701662630397b, Notional: 3.73294200915132
+		{Chain: 4, Addr: "000000000000000000000000f64ed9ad397a1ae657f31131d4b189220a7f1cc7", Symbol: "DFIAT", CoinGeckoId: "defiato", Decimals: 18, Price: 0.0009003},                                         // Addr: 0xf64ed9ad397a1ae657f31131d4b189220a7f1cc7, Notional: 0.412922595
+		{Chain: 4, Addr: "000000000000000000000000f7844cb890f4c339c497aeab599abdc3c874b67a", Symbol: "NFTART", CoinGeckoId: "nft-art-finance", Decimals: 9, Price: 1.1482e-11},                                // Addr: 0xf7844cb890f4c339c497aeab599abdc3c874b67a, Notional: 7.3376335287e-12
+		{Chain: 4, Addr: "000000000000000000000000f7de7e8a6bd59ed41a4b5fe50278b3b7f31384df", Symbol: "RDNT", CoinGeckoId: "radiant-capital", Decimals: 18, Price: 0.02413825},                                 // Addr: 0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df, Notional: 2.6036299420001425
+		{Chain: 4, Addr: "000000000000000000000000f915fdda4c882731c0456a4214548cd13a822886", Symbol: "UNV", CoinGeckoId: "unvest", Decimals: 18, Price: 0.00108215},                                           // Addr: 0xf915fdda4c882731c0456a4214548cd13a822886, Notional: 12.620033300000001
+		{Chain: 4, Addr: "000000000000000000000000f92d62ed69242d655e685c96b98f32f1409c3262", Symbol: "A4M", CoinGeckoId: "alienform", Decimals: 9, Price: 0.00001377},                                         // Addr: 0xf92d62ed69242d655e685c96b98f32f1409c3262, Notional: 0.5534327706163263
+		{Chain: 4, Addr: "000000000000000000000000f952fc3ca7325cc27d15885d37117676d25bfda6", Symbol: "EGG", CoinGeckoId: "goose-finance", Decimals: 18, Price: 0.00887314},                                    // Addr: 0xf952fc3ca7325cc27d15885d37117676d25bfda6, Notional: 0.1774628
+		{Chain: 4, Addr: "000000000000000000000000fa40d8fc324bcdd6bbae0e086de886c571c225d4", Symbol: "WZRD", CoinGeckoId: "wizardia", Decimals: 18, Price: 0.00064372},                                        // Addr: 0xfa40d8fc324bcdd6bbae0e086de886c571c225d4, Notional: 1971.0010434527198
+		{Chain: 4, Addr: "000000000000000000000000fafd4cb703b25cb22f43d017e7e0d75febc26743", Symbol: "WEYU", CoinGeckoId: "weyu", Decimals: 18, Price: 0.00004538},                                            // Addr: 0xfafd4cb703b25cb22f43d017e7e0d75febc26743, Notional: 172423.10197421524
+		{Chain: 4, Addr: "000000000000000000000000fb288d60d3b66f9c3e231a9a39ed3f158a4269aa", Symbol: "PPAY", CoinGeckoId: "plasma-finance", Decimals: 18, Price: 0.00025769},                                  // Addr: 0xfb288d60d3b66f9c3e231a9a39ed3f158a4269aa, Notional: 0.0132826079223225
+		{Chain: 4, Addr: "000000000000000000000000fb5b838b6cfeedc2873ab27866079ac55363d37e", Symbol: "FLOKI", CoinGeckoId: "floki", Decimals: 9, Price: 0.00008564},                                           // Addr: 0xfb5b838b6cfeedc2873ab27866079ac55363d37e, Notional: 681.0228212218906
+		{Chain: 4, Addr: "000000000000000000000000fb6115445bff7b52feb98650c87f44907e58f802", Symbol: "AAVE", CoinGeckoId: "aave", Decimals: 18, Price: 269.32},                                                // Addr: 0xfb6115445bff7b52feb98650c87f44907e58f802, Notional: 176.006760496
+		{Chain: 4, Addr: "000000000000000000000000fb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe", Symbol: "SHILL", CoinGeckoId: "shill-token", Decimals: 18, Price: 0.00033394},                                    // Addr: 0xfb9c339b4bace4fe63ccc1dd9a3c3c531441d5fe, Notional: 1.9454207958367071
+		{Chain: 4, Addr: "000000000000000000000000fbc4f3f645c4003a2e4f4e9b51077d2daa9a9341", Symbol: "ZEDXION", CoinGeckoId: "zedxion", Decimals: 18, Price: 0.421832},                                        // Addr: 0xfbc4f3f645c4003a2e4f4e9b51077d2daa9a9341, Notional: 122209.35957824721
+		{Chain: 4, Addr: "000000000000000000000000fce146bf3146100cfe5db4129cf6c82b0ef4ad8c", Symbol: "renBTC", CoinGeckoId: "renbtc", Decimals: 8, Price: 24581},                                              // Addr: 0xfce146bf3146100cfe5db4129cf6c82b0ef4ad8c, Notional: 19.93740329
+		{Chain: 4, Addr: "000000000000000000000000fd7b3a77848f1c2d67e05e54d78d174a0c850335", Symbol: "ONT", CoinGeckoId: "binance-peg-ontology", Decimals: 18, Price: 0.137598},                               // Addr: 0xfd7b3a77848f1c2d67e05e54d78d174a0c850335, Notional: 0.0137598
+		{Chain: 4, Addr: "000000000000000000000000fdfd27ae39cebefdbaac8615f18aa68ddd0f15f5", Symbol: "GHD", CoinGeckoId: "giftedhands", Decimals: 18, Price: 0.00000397},                                      // Addr: 0xfdfd27ae39cebefdbaac8615f18aa68ddd0f15f5, Notional: 0.00039303
+		{Chain: 4, Addr: "000000000000000000000000fe19f0b51438fd612f6fd59c1dbb3ea319f433ba", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                  // Addr: 0xfe19f0b51438fd612f6fd59c1dbb3ea319f433ba, Notional: 1006.4597964420999
+		{Chain: 4, Addr: "000000000000000000000000fe56d5892bdffc7bf58f2e84be1b2c32d21c308b", Symbol: "KNC", CoinGeckoId: "kyber-network-crystal", Decimals: 18, Price: 0.346574},                              // Addr: 0xfe56d5892bdffc7bf58f2e84be1b2c32d21c308b, Notional: 1.40731731080614
+		{Chain: 4, Addr: "000000000000000000000000ffba7529ac181c2ee1844548e6d7061c9a597df4", Symbol: "CAPS", CoinGeckoId: "coin-capsule", Decimals: 18, Price: 0.00110793},                                    // Addr: 0xffba7529ac181c2ee1844548e6d7061c9a597df4, Notional: 0.01661895
+		{Chain: 5, Addr: "000000000000000000000000011734f6ed20e8d011d85cf7894814b897420acf", Symbol: "ACRE", CoinGeckoId: "arable-protocol", Decimals: 18, Price: 0.000037},                                   // Addr: 0x011734f6ed20e8d011d85cf7894814b897420acf, Notional: 0.0012903437901299998
+		{Chain: 5, Addr: "0000000000000000000000000308a3a9c433256ad7ef24dbef9c49c8cb01300a", Symbol: "GPO", CoinGeckoId: "goldpesa-option", Decimals: 18, Price: 0.799578},                                    // Addr: 0x0308a3a9c433256ad7ef24dbef9c49c8cb01300a, Notional: 19.189872
+		{Chain: 5, Addr: "000000000000000000000000039d2e8f097331278bd6c1415d839310e0d5ece4", Symbol: "LINDA", CoinGeckoId: "linda-2", Decimals: 18, Price: 0.00000443},                                        // Addr: 0x039d2e8f097331278bd6c1415d839310e0d5ece4, Notional: 5.024799030397095
+		{Chain: 5, Addr: "00000000000000000000000003b54a6e9a984069379fae1a4fc4dbae93b3bccd", Symbol: "wstETH", CoinGeckoId: "wrapped-steth", Decimals: 18, Price: 3114.69},                                    // Addr: 0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd, Notional: 28.990350937800002
+		{Chain: 5, Addr: "00000000000000000000000004429fbb948bbd09327763214b45e505a5293346", Symbol: "ABR", CoinGeckoId: "allbridge", Decimals: 18, Price: 0.081603},                                          // Addr: 0x04429fbb948bbd09327763214b45e505a5293346, Notional: 29.82556820378673
+		{Chain: 5, Addr: "00000000000000000000000008e175a1eac9744a0f1ccaeb8f669af6a2bda3ce", Symbol: "E8", CoinGeckoId: "energy8", Decimals: 9, Price: 3.752e-9},                                              // Addr: 0x08e175a1eac9744a0f1ccaeb8f669af6a2bda3ce, Notional: 47.977376566829655
+		{Chain: 5, Addr: "0000000000000000000000000b3f868e0be5597d5db7feb59e1cadbb0fdda50a", Symbol: "SUSHI", CoinGeckoId: "sushi", Decimals: 18, Price: 0.671409},                                            // Addr: 0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a, Notional: 252.44389907997274
+		{Chain: 5, Addr: "0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270", Symbol: "WPOL", CoinGeckoId: "wmatic", Decimals: 18, Price: 0.213487},                                            // Addr: 0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270, Notional: 140014.8767337275
+		{Chain: 5, Addr: "0000000000000000000000000d6ae2a429df13e44a07cd2969e085e4833f64a0", Symbol: "PBR", CoinGeckoId: "polkabridge", Decimals: 18, Price: 0.00038419},                                      // Addr: 0x0d6ae2a429df13e44a07cd2969e085e4833f64a0, Notional: 4.035064882392215
+		{Chain: 5, Addr: "0000000000000000000000000df0f72ee0e5c9b7ca761ecec42754992b2da5bf", Symbol: "ATA", CoinGeckoId: "automata", Decimals: 18, Price: 0.04708697},                                         // Addr: 0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf, Notional: 2309.4119089347655
+		{Chain: 5, Addr: "000000000000000000000000111111517e4929d3dcbdfa7cce55d30d4b6bc4d6", Symbol: "ICHI", CoinGeckoId: "ichi-farm", Decimals: 18, Price: 0.392478},                                         // Addr: 0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6, Notional: 0.00972655071198
+		{Chain: 5, Addr: "0000000000000000000000001379e8886a944d2d9d440b3d88df536aea08d9f3", Symbol: "MYST", CoinGeckoId: "mysterium", Decimals: 18, Price: 0.232532},                                         // Addr: 0x1379e8886a944d2d9d440b3d88df536aea08d9f3, Notional: 0.37623281830536
+		{Chain: 5, Addr: "00000000000000000000000018e73a5333984549484348a94f4d219f4fab7b81", Symbol: "DUCKIES", CoinGeckoId: "duckies", Decimals: 8, Price: 0.00344149},                                       // Addr: 0x18e73a5333984549484348a94f4d219f4fab7b81, Notional: 0.0344149
+		{Chain: 5, Addr: "00000000000000000000000018ec0a6e18e5bc3784fdd3a3634b31245ab704f6", Symbol: "EURe", CoinGeckoId: "monerium-eur-money", Decimals: 18, Price: 1.14},                                    // Addr: 0x18ec0a6e18e5bc3784fdd3a3634b31245ab704f6, Notional: 0.34199999999999997
+		{Chain: 5, Addr: "0000000000000000000000001a13f4ca1d028320a707d99520abfefca3998b7f", Symbol: "amUSDC", CoinGeckoId: "aave-polygon-usdc", Decimals: 6, Price: 0.998776},                                // Addr: 0x1a13f4ca1d028320a707d99520abfefca3998b7f, Notional: 19.552286672448
+		{Chain: 5, Addr: "0000000000000000000000001b815d120b3ef02039ee11dc2d33de7aa4a8c603", Symbol: "WOO", CoinGeckoId: "woo-network", Decimals: 18, Price: 0.079828},                                        // Addr: 0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603, Notional: 5.53527352
+		{Chain: 5, Addr: "0000000000000000000000001bfd67037b42cf73acf2047067bd4f2c47d9bfd6", Symbol: "WBTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                      // Addr: 0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6, Notional: 41027.44160944
+		{Chain: 5, Addr: "0000000000000000000000001d734a02ef1e1f5886e66b0673b71af5b53ffa94", Symbol: "SD", CoinGeckoId: "stader", Decimals: 18, Price: 0.505725},                                              // Addr: 0x1d734a02ef1e1f5886e66b0673b71af5b53ffa94, Notional: 76.79013877133775
+		{Chain: 5, Addr: "000000000000000000000000200c234721b5e549c3693ccc93cf191f90dc2af9", Symbol: "METAL", CoinGeckoId: "drunk-robots", Decimals: 18, Price: 0.00057635},                                   // Addr: 0x200c234721b5e549c3693ccc93cf191f90dc2af9, Notional: 0.0668041867598175
+		{Chain: 5, Addr: "000000000000000000000000229b1b6c23ff8953d663c4cbb519717e323a0a84", Symbol: "BLOK", CoinGeckoId: "bloktopia", Decimals: 18, Price: 0.00029531},                                       // Addr: 0x229b1b6c23ff8953d663c4cbb519717e323a0a84, Notional: 0.0232863255059168
+		{Chain: 5, Addr: "00000000000000000000000022e3f02f86bc8ea0d73718a2ae8851854e62adc5", Symbol: "FLAME", CoinGeckoId: "firestarter", Decimals: 18, Price: 0.00413405},                                    // Addr: 0x22e3f02f86bc8ea0d73718a2ae8851854e62adc5, Notional: 603.1350920813709
+		{Chain: 5, Addr: "000000000000000000000000236aa50979d5f3de3bd1eeb40e81137f22ab794b", Symbol: "tBTC", CoinGeckoId: "tbtc", Decimals: 18, Price: 108503},                                                // Addr: 0x236aa50979d5f3de3bd1eeb40e81137f22ab794b, Notional: 0.029295810000000002
+		{Chain: 5, Addr: "00000000000000000000000023d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c", Symbol: "HEX", CoinGeckoId: "hex", Decimals: 8, Price: 0.00199475},                                               // Addr: 0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c, Notional: 1.23328091826706
+		{Chain: 5, Addr: "00000000000000000000000023e8b6a3f6891254988b84da3738d2bfe5e703b9", Symbol: "WELT", CoinGeckoId: "fabwelt", Decimals: 18, Price: 0.00055983},                                         // Addr: 0x23e8b6a3f6891254988b84da3738d2bfe5e703b9, Notional: 0.27431669999999997
+		{Chain: 5, Addr: "00000000000000000000000024834bbec7e39ef42f4a75eaf8e5b6486d3f0e57", Symbol: "LUNA", CoinGeckoId: "wrapped-terra", Decimals: 18, Price: 0.00001547},                                   // Addr: 0x24834bbec7e39ef42f4a75eaf8e5b6486d3f0e57, Notional: 5.452282832676971
+		{Chain: 5, Addr: "00000000000000000000000025788a1a171ec66da6502f9975a15b609ff54cf6", Symbol: "POOL", CoinGeckoId: "pooltogether", Decimals: 18, Price: 0.263616},                                      // Addr: 0x25788a1a171ec66da6502f9975a15b609ff54cf6, Notional: 4.481472
+		{Chain: 5, Addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 2.3
+		{Chain: 5, Addr: "0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: 0x2791bca1f2de4661ed88a30c99a7a9449aa84174, Notional: 3831432.255606813
+		{Chain: 5, Addr: "0000000000000000000000002ab0e9e4ee70fff1fb9d67031e44f6410170d00e", Symbol: "mXEN", CoinGeckoId: "xen-crypto-matic", Decimals: 18, Price: 5.2404e-11},                                // Addr: 0x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e, Notional: 5.436646390151747
+		{Chain: 5, Addr: "0000000000000000000000002ab4f9ac80f33071211729e45cfc346c1f8446d5", Symbol: "CGG", CoinGeckoId: "chain-guardians", Decimals: 18, Price: 0.00120178},                                  // Addr: 0x2ab4f9ac80f33071211729e45cfc346c1f8446d5, Notional: 0.00120178
+		{Chain: 5, Addr: "0000000000000000000000002ad2934d5bfb7912304754479dd1f096d5c807da", Symbol: "AGC", CoinGeckoId: "argocoin", Decimals: 18, Price: 0.059188},                                           // Addr: 0x2ad2934d5bfb7912304754479dd1f096d5c807da, Notional: 5.9188
+		{Chain: 5, Addr: "0000000000000000000000002c89bbc92bd86f8075d1decc58c7f4e0107f286b", Symbol: "AVAX", CoinGeckoId: "wrapped-avax", Decimals: 18, Price: 21.28},                                         // Addr: 0x2c89bbc92bd86f8075d1decc58c7f4e0107f286b, Notional: 2031.8060544096002
+		{Chain: 5, Addr: "0000000000000000000000002d66953fc2eb650f0fd992dbe1e71d743a4e9fee", Symbol: "NOTES", CoinGeckoId: "backstage-pass-notes", Decimals: 9, Price: 0.00067453},                            // Addr: 0x2d66953fc2eb650f0fd992dbe1e71d743a4e9fee, Notional: 0.067453
+		{Chain: 5, Addr: "0000000000000000000000002e1ad108ff1d8c782fcbbb89aad783ac49586756", Symbol: "TUSD", CoinGeckoId: "true-usd", Decimals: 18, Price: 0.998935},                                          // Addr: 0x2e1ad108ff1d8c782fcbbb89aad783ac49586756, Notional: 4.730352094016149
+		{Chain: 5, Addr: "0000000000000000000000002f25d402829ca4085b8ea4d3bc68bf203f5a9fab", Symbol: "Eagon", CoinGeckoId: "eagonswap-token", Decimals: 18, Price: 0.00007782},                                // Addr: 0x2f25d402829ca4085b8ea4d3bc68bf203f5a9fab, Notional: 0.2225516283530874
+		{Chain: 5, Addr: "0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                   // Addr: 0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590, Notional: 41.12922628105548
+		{Chain: 5, Addr: "00000000000000000000000030ea765d4dda26e0f89e1b23a7c7b2526b7d29ec", Symbol: "POLYPAD", CoinGeckoId: "polypad", Decimals: 18, Price: 0.00029092},                                      // Addr: 0x30ea765d4dda26e0f89e1b23a7c7b2526b7d29ec, Notional: 45.661996604293435
+		{Chain: 5, Addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", Symbol: "USDV", CoinGeckoId: "verified-usd-foundation-usdv", Decimals: 6, Price: 0.131685},                       // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 0.395398566165
+		{Chain: 5, Addr: "00000000000000000000000034c1b299a74588d6abdc1b85a53345a48428a521", Symbol: "EZ", CoinGeckoId: "easyfi", Decimals: 18, Price: 0.00138751},                                            // Addr: 0x34c1b299a74588d6abdc1b85a53345a48428a521, Notional: 0.00555004
+		{Chain: 5, Addr: "0000000000000000000000003a9a81d576d83ff21f26f325066054540720fc34", Symbol: "DATA", CoinGeckoId: "streamr", Decimals: 18, Price: 0.01400043},                                         // Addr: 0x3a9a81d576d83ff21f26f325066054540720fc34, Notional: 0.11200344
+		{Chain: 5, Addr: "0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: 0x3c499c542cef5e3811e1192ce70d8cc03d5c3359, Notional: 56768.984972654325
+		{Chain: 5, Addr: "0000000000000000000000003c69d114664d48357d820dbdd121a8071eac99bf", Symbol: "GALAXIS", CoinGeckoId: "galaxis-token", Decimals: 18, Price: 0.00037737},                                // Addr: 0x3c69d114664d48357d820dbdd121a8071eac99bf, Notional: 56.66669220841864
+		{Chain: 5, Addr: "000000000000000000000000411bc96881a62572ff33c9d8ce60df99e3d96cd8", Symbol: "MRST", CoinGeckoId: "the-mars", Decimals: 18, Price: 0.00036894},                                        // Addr: 0x411bc96881a62572ff33c9d8ce60df99e3d96cd8, Notional: 0.06050616
+		{Chain: 5, Addr: "00000000000000000000000042d61d766b85431666b39b89c43011f24451bff6", Symbol: "PSP", CoinGeckoId: "paraswap", Decimals: 18, Price: 0.01879275},                                         // Addr: 0x42d61d766b85431666b39b89c43011f24451bff6, Notional: 0.0375855
+		{Chain: 5, Addr: "000000000000000000000000430ef9263e76dae63c84292c3409d61c598e9682", Symbol: "PYR", CoinGeckoId: "vulcan-forged", Decimals: 18, Price: 1.042},                                         // Addr: 0x430ef9263e76dae63c84292c3409d61c598e9682, Notional: 11.431782
+		{Chain: 5, Addr: "000000000000000000000000431d5dff03120afa4bdf332c61a6e1766ef37bdb", Symbol: "JPYC", CoinGeckoId: "jpy-coin", Decimals: 18, Price: 0.00709666},                                        // Addr: 0x431d5dff03120afa4bdf332c61a6e1766ef37bdb, Notional: 0.7806326
+		{Chain: 5, Addr: "000000000000000000000000444444444444c1a66f394025ac839a535246fcc8", Symbol: "GENI", CoinGeckoId: "genius", Decimals: 9, Price: 8.04002e-7},                                           // Addr: 0x444444444444c1a66f394025ac839a535246fcc8, Notional: 1.9281241415910055
+		{Chain: 5, Addr: "00000000000000000000000045c32fa6df82ead1e2ef74d17b76547eddfaff89", Symbol: "FRAX", CoinGeckoId: "frax", Decimals: 18, Price: 0.999384},                                              // Addr: 0x45c32fa6df82ead1e2ef74d17b76547eddfaff89, Notional: 10.001937428909281
+		{Chain: 5, Addr: "00000000000000000000000046d502fac9aea7c5bc7b13c8ec9d02378c33d36f", Symbol: "WSPP", CoinGeckoId: "wolfsafepoorpeople-polygon", Decimals: 18, Price: 1.3101e-8},                       // Addr: 0x46d502fac9aea7c5bc7b13c8ec9d02378c33d36f, Notional: 0.39303
+		{Chain: 5, Addr: "00000000000000000000000049a0400587a7f65072c87c4910449fdcc5c47242", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                  // Addr: 0x49a0400587a7f65072c87c4910449fdcc5c47242, Notional: 51.561409899999994
+		{Chain: 5, Addr: "0000000000000000000000004a81f8796e0c6ad4877a51c86693b0de8093f2ef", Symbol: "ICE", CoinGeckoId: "iron-finance", Decimals: 18, Price: 0.00000328},                                     // Addr: 0x4a81f8796e0c6ad4877a51c86693b0de8093f2ef, Notional: 0.4314348
+		{Chain: 5, Addr: "0000000000000000000000004c9f66b2806538cf00ef596e09fb05bcb0d17dc8", Symbol: "MNTO", CoinGeckoId: "minato", Decimals: 18, Price: 0.572417},                                            // Addr: 0x4c9f66b2806538cf00ef596e09fb05bcb0d17dc8, Notional: 1.144834
+		{Chain: 5, Addr: "0000000000000000000000004e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59", Symbol: "ICE", CoinGeckoId: "ice-token", Decimals: 18, Price: 0.16271},                                           // Addr: 0x4e1581f01046efdd7a1a2cdb0f82cdd7f71f2e59, Notional: 16.8481187039871
+		{Chain: 5, Addr: "0000000000000000000000004e78011ce80ee02d2c3e649fb657e45898257815", Symbol: "KLIMA", CoinGeckoId: "klima-dao", Decimals: 9, Price: 0.151445},                                         // Addr: 0x4e78011ce80ee02d2c3e649fb657e45898257815, Notional: 0.1023849101919
+		{Chain: 5, Addr: "0000000000000000000000004fb71290ac171e1d144f7221d882becac7196eb5", Symbol: "TRYB", CoinGeckoId: "bilira", Decimals: 6, Price: 0.02546433},                                           // Addr: 0x4fb71290ac171e1d144f7221d882becac7196eb5, Notional: 7.99506466850754
+		{Chain: 5, Addr: "00000000000000000000000050b728d8d964fd00c2d0aad81718b71311fef68a", Symbol: "SNX", CoinGeckoId: "havven", Decimals: 18, Price: 0.66506},                                              // Addr: 0x50b728d8d964fd00c2d0aad81718b71311fef68a, Notional: 1.1946507895168
+		{Chain: 5, Addr: "00000000000000000000000052ede6bba83b7b4ba1d738df0df713d6a2036b71", Symbol: "0xMR", CoinGeckoId: "0xmonero", Decimals: 18, Price: 0.0253346},                                         // Addr: 0x52ede6bba83b7b4ba1d738df0df713d6a2036b71, Notional: 0.9022484735548358
+		{Chain: 5, Addr: "00000000000000000000000053e0bca35ec356bd5dddfebbd1fc0fd03fabad39", Symbol: "LINK", CoinGeckoId: "chainlink", Decimals: 18, Price: 14.06},                                            // Addr: 0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39, Notional: 869.0849407414
+		{Chain: 5, Addr: "000000000000000000000000554cd6bdd03214b10aafa3e0d4d42de0c5d2937b", Symbol: "IDRT", CoinGeckoId: "rupiah-token", Decimals: 6, Price: 0.00006133},                                     // Addr: 0x554cd6bdd03214b10aafa3e0d4d42de0c5d2937b, Notional: 3.32061551248237
+		{Chain: 5, Addr: "000000000000000000000000590eb2920486486c2d9bb3eb651f73b81df87bcf", Symbol: "BOBC", CoinGeckoId: "bobcoin", Decimals: 18, Price: 1.2},                                                // Addr: 0x590eb2920486486c2d9bb3eb651f73b81df87bcf, Notional: 1.2
+		{Chain: 5, Addr: "000000000000000000000000596ebe76e2db4470966ea395b0d063ac6197a8c5", Symbol: "JRT", CoinGeckoId: "jarvis-reward-token", Decimals: 18, Price: 0.0017131},                               // Addr: 0x596ebe76e2db4470966ea395b0d063ac6197a8c5, Notional: 171.3117131
+		{Chain: 5, Addr: "0000000000000000000000005d47baba0d66083c52009271faf3f50dcc01023c", Symbol: "BANANA", CoinGeckoId: "apeswap-finance", Decimals: 18, Price: 1.0003e-8},                                // Addr: 0x5d47baba0d66083c52009271faf3f50dcc01023c, Notional: 0.000071129892568
+		{Chain: 5, Addr: "0000000000000000000000005f0197ba06860dac7e31258bdf749f92b6a636d4", Symbol: "1FLR", CoinGeckoId: "flare-token", Decimals: 18, Price: 0.00000312},                                     // Addr: 0x5f0197ba06860dac7e31258bdf749f92b6a636d4, Notional: 0.156
+		{Chain: 5, Addr: "00000000000000000000000061299774020da444af134c82fa83e3810b309991", Symbol: "RNDR", CoinGeckoId: "render-token", Decimals: 18, Price: 3.99},                                          // Addr: 0x61299774020da444af134c82fa83e3810b309991, Notional: 122.70772548090001
+		{Chain: 5, Addr: "000000000000000000000000613a489785c95afeb3b404cc41565ccff107b6e0", Symbol: "RADIO", CoinGeckoId: "radioshack", Decimals: 18, Price: 0.00004824},                                     // Addr: 0x613a489785c95afeb3b404cc41565ccff107b6e0, Notional: 0.0018870860937888
+		{Chain: 5, Addr: "00000000000000000000000065a05db8322701724c197af82c9cae41195b0aa8", Symbol: "FOX", CoinGeckoId: "shapeshift-fox-token", Decimals: 18, Price: 0.02935515},                             // Addr: 0x65a05db8322701724c197af82c9cae41195b0aa8, Notional: 0.014677575
+		{Chain: 5, Addr: "000000000000000000000000692597b009d13c4049a947cab2239b7d6517875f", Symbol: "UST", CoinGeckoId: "wrapped-ust", Decimals: 18, Price: 0.01263232},                                      // Addr: 0x692597b009d13c4049a947cab2239b7d6517875f, Notional: 201.18227123909355
+		{Chain: 5, Addr: "0000000000000000000000006a3e7c3c6ef65ee26975b12293ca1aad7e1daed2", Symbol: "ALPHA", CoinGeckoId: "aavegotchi-alpha", Decimals: 18, Price: 0.00059249},                               // Addr: 0x6a3e7c3c6ef65ee26975b12293ca1aad7e1daed2, Notional: 0.0002488458
+		{Chain: 5, Addr: "0000000000000000000000006ae7dfc73e0dde2aa99ac063dcf7e8a63265108c", Symbol: "JPYC", CoinGeckoId: "jpyc", Decimals: 18, Price: 0.00705277},                                            // Addr: 0x6ae7dfc73e0dde2aa99ac063dcf7e8a63265108c, Notional: 5.6422159999999995
+		{Chain: 5, Addr: "0000000000000000000000006ccf12b480a99c54b23647c995f4525d544a7e72", Symbol: "START", CoinGeckoId: "bscstarter", Decimals: 18, Price: 0.01325918},                                     // Addr: 0x6ccf12b480a99c54b23647c995f4525d544a7e72, Notional: 36.615406992575515
+		{Chain: 5, Addr: "000000000000000000000000709a4b6217584188ddb93c82f5d716d969acce1c", Symbol: "HANU", CoinGeckoId: "hanu-yokia", Decimals: 12, Price: 1.41456e-7},                                      // Addr: 0x709a4b6217584188ddb93c82f5d716d969acce1c, Notional: 0.5348080669396069
+		{Chain: 5, Addr: "00000000000000000000000070c006878a5a50ed185ac4c87d837633923de296", Symbol: "REVV", CoinGeckoId: "revv", Decimals: 18, Price: 0.00113577},                                            // Addr: 0x70c006878a5a50ed185ac4c87d837633923de296, Notional: 1.012439616955409
+		{Chain: 5, Addr: "000000000000000000000000714db550b574b3e927af3d93e26127d15721d4c2", Symbol: "GMT", CoinGeckoId: "stepn", Decimals: 8, Price: 0.051683},                                               // Addr: 0x714db550b574b3e927af3d93e26127d15721d4c2, Notional: 9.09916957699459
+		{Chain: 5, Addr: "000000000000000000000000723b17718289a91af252d616de2c77944962d122", Symbol: "GAIA", CoinGeckoId: "gaia-everworld", Decimals: 18, Price: 0.00093097},                                  // Addr: 0x723b17718289a91af252d616de2c77944962d122, Notional: 0.0090104428960368
+		{Chain: 5, Addr: "000000000000000000000000750e4c4984a9e0f12978ea6742bc1c5d248f40ed", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                         // Addr: 0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed, Notional: 81.54909757510299
+		{Chain: 5, Addr: "0000000000000000000000007844f79fc841e4f92d974c417031c76f8578c2d5", Symbol: "OPN", CoinGeckoId: "open-ticketing-ecosystem", Decimals: 18, Price: 0.00039846},                         // Addr: 0x7844f79fc841e4f92d974c417031c76f8578c2d5, Notional: 0.84951672
+		{Chain: 5, Addr: "00000000000000000000000078a0a62fba6fb21a83fe8a3433d44c73a4017a6f", Symbol: "OX", CoinGeckoId: "open-exchange-token", Decimals: 18, Price: 0.00305853},                               // Addr: 0x78a0a62fba6fb21a83fe8a3433d44c73a4017a6f, Notional: 0.20871281124245458
+		{Chain: 5, Addr: "0000000000000000000000007bebd226154e865954a87650faefa8f485d36081", Symbol: "ZIG", CoinGeckoId: "zignaly", Decimals: 18, Price: 0.095405},                                            // Addr: 0x7bebd226154e865954a87650faefa8f485d36081, Notional: 1.2883796324271
+		{Chain: 5, Addr: "0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                               // Addr: 0x7ceb23fd6bc0add59e62ac25578270cff1b9f619, Notional: 151750.1482476265
+		{Chain: 5, Addr: "0000000000000000000000007e4c577ca35913af564ee2a24d882a4946ec492b", Symbol: "MOONED", CoinGeckoId: "moonedge", Decimals: 18, Price: 0.00201835},                                      // Addr: 0x7e4c577ca35913af564ee2a24d882a4946ec492b, Notional: 0.0256128631752305
+		{Chain: 5, Addr: "00000000000000000000000081382e9693de2afc33f69b70a6c12ca9b3a73f47", Symbol: "DOSE", CoinGeckoId: "dose-token", Decimals: 18, Price: 0.00006937},                                      // Addr: 0x81382e9693de2afc33f69b70a6c12ca9b3a73f47, Notional: 0.006243299999999999
+		{Chain: 5, Addr: "00000000000000000000000082617aa52dddf5ed9bb7b370ed777b3182a30fd1", Symbol: "YGG", CoinGeckoId: "yield-guild-games", Decimals: 18, Price: 0.184956},                                  // Addr: 0x82617aa52dddf5ed9bb7b370ed777b3182a30fd1, Notional: 55.583357668819566
+		{Chain: 5, Addr: "000000000000000000000000831753dd7087cac61ab5644b308642cc1c33dc13", Symbol: "QUICK", CoinGeckoId: "quick", Decimals: 18, Price: 24.56},                                               // Addr: 0x831753dd7087cac61ab5644b308642cc1c33dc13, Notional: 3.8293561496
+		{Chain: 5, Addr: "0000000000000000000000008765f05adce126d70bcdf1b0a48db573316662eb", Symbol: "PLA", CoinGeckoId: "playdapp", Decimals: 18, Price: 0.00690315},                                         // Addr: 0x8765f05adce126d70bcdf1b0a48db573316662eb, Notional: 10.73439825
+		{Chain: 5, Addr: "00000000000000000000000088c949b4eb85a90071f2c0bef861bddee1a7479d", Symbol: "mSHEESHA", CoinGeckoId: "sheesha-finance-polygon", Decimals: 18, Price: 0.00011139},                     // Addr: 0x88c949b4eb85a90071f2c0bef861bddee1a7479d, Notional: 0.0055695
+		{Chain: 5, Addr: "0000000000000000000000008d1566569d5b695d44a9a234540f68d393cdc40d", Symbol: "GAME", CoinGeckoId: "gamecredits", Decimals: 18, Price: 0.00125442},                                     // Addr: 0x8d1566569d5b695d44a9a234540f68d393cdc40d, Notional: 0.01003536
+		{Chain: 5, Addr: "0000000000000000000000008eef5a82e6aa222a60f009ac18c24ee12dbf4b41", Symbol: "TXL", CoinGeckoId: "autobahn-network", Decimals: 18, Price: 0.00085596},                                 // Addr: 0x8eef5a82e6aa222a60f009ac18c24ee12dbf4b41, Notional: 0.0000085596
+		{Chain: 5, Addr: "0000000000000000000000008f36cc333f55b09bb71091409a3d7ade399e3b1c", Symbol: "CHER", CoinGeckoId: "cherry-network", Decimals: 18, Price: 0.00042127},                                  // Addr: 0x8f36cc333f55b09bb71091409a3d7ade399e3b1c, Notional: 0.0042127
+		{Chain: 5, Addr: "0000000000000000000000008f3cf7ad23cd3cadbd9735aff958023239c6a063", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                                // Addr: 0x8f3cf7ad23cd3cadbd9735aff958023239c6a063, Notional: 2479.068857822384
+		{Chain: 5, Addr: "0000000000000000000000009085b4d52c3e0b8b6f9af6213e85a433c7d76f19", Symbol: "OWL", CoinGeckoId: "owldao", Decimals: 18, Price: 0.00608358},                                           // Addr: 0x9085b4d52c3e0b8b6f9af6213e85a433c7d76f19, Notional: 1.3118638820513449
+		{Chain: 5, Addr: "00000000000000000000000091c5a5488c0decde1eacd8a4f10e0942fb925067", Symbol: "AUDT", CoinGeckoId: "auditchain", Decimals: 18, Price: 0.01031894},                                      // Addr: 0x91c5a5488c0decde1eacd8a4f10e0942fb925067, Notional: 103.1894
+		{Chain: 5, Addr: "000000000000000000000000930a7dc10ae084fbbddc6537d7df7d4c65a40944", Symbol: "UNLOCK", CoinGeckoId: "unlock", Decimals: 18, Price: 0.00176187},                                        // Addr: 0x930a7dc10ae084fbbddc6537d7df7d4c65a40944, Notional: 0.176187
+		{Chain: 5, Addr: "0000000000000000000000009c2c5fd7b07e95ee044ddeba0e97a665f142394f", Symbol: "1INCH", CoinGeckoId: "1inch", Decimals: 18, Price: 0.209226},                                            // Addr: 0x9c2c5fd7b07e95ee044ddeba0e97a665f142394f, Notional: 0.65693820797802
+		{Chain: 5, Addr: "0000000000000000000000009c891326fd8b1a713974f73bb604677e1e63396d", Symbol: "ISLAMI", CoinGeckoId: "islamicoin", Decimals: 7, Price: 0.00007913},                                     // Addr: 0x9c891326fd8b1a713974f73bb604677e1e63396d, Notional: 0.07912999999999999
+		{Chain: 5, Addr: "0000000000000000000000009c9e5fd8bbc25984b178fdce6117defa39d2db39", Symbol: "BUSD", CoinGeckoId: "binance-peg-busd", Decimals: 18, Price: 0.999305},                                  // Addr: 0x9c9e5fd8bbc25984b178fdce6117defa39d2db39, Notional: 8.0917107098398
+		{Chain: 5, Addr: "0000000000000000000000009ca6a77c8b38159fd2da9bd25bc3e259c33f5e39", Symbol: "SPORK", CoinGeckoId: "sporkdao", Decimals: 18, Price: 0.00914394},                                       // Addr: 0x9ca6a77c8b38159fd2da9bd25bc3e259c33f5e39, Notional: 0.0914394
+		{Chain: 5, Addr: "0000000000000000000000009cb74c8032b007466865f060ad2c46145d45553d", Symbol: "IDEX", CoinGeckoId: "aurora-dao", Decimals: 18, Price: 0.02376906},                                      // Addr: 0x9cb74c8032b007466865f060ad2c46145d45553d, Notional: 0.14423039937415202
+		{Chain: 5, Addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", Symbol: "OMNI", CoinGeckoId: "omnicat", Decimals: 18, Price: 0.00001466},                                         // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 20.31994569171681
+		{Chain: 5, Addr: "0000000000000000000000009ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1", Symbol: "FORT", CoinGeckoId: "forta", Decimals: 18, Price: 0.069629},                                             // Addr: 0x9ff62d1fc52a907b6dcba8077c2ddca6e6a9d3e1, Notional: 210.9468063241307
+		{Chain: 5, Addr: "000000000000000000000000a1c57f48f0deb89f569dfbe6e2b7f46d33606fd4", Symbol: "MANA", CoinGeckoId: "decentraland", Decimals: 18, Price: 0.284862},                                      // Addr: 0xa1c57f48f0deb89f569dfbe6e2b7f46d33606fd4, Notional: 476.78775587545374
+		{Chain: 5, Addr: "000000000000000000000000a3fa99a148fa48d14ed51d610c367c61876997f1", Symbol: "miMATIC", CoinGeckoId: "mimatic", Decimals: 18, Price: 0.995702},                                        // Addr: 0xa3fa99a148fa48d14ed51d610c367c61876997f1, Notional: 29.78532230128142
+		{Chain: 5, Addr: "000000000000000000000000a5eb60ca85898f8b26e18ff7c7e43623ccba772c", Symbol: "COSMIC", CoinGeckoId: "cosmicswap", Decimals: 18, Price: 0.0238228},                                     // Addr: 0xa5eb60ca85898f8b26e18ff7c7e43623ccba772c, Notional: 17.087560626320897
+		{Chain: 5, Addr: "000000000000000000000000a649325aa7c5093d12d6f98eb4378deae68ce23f", Symbol: "BNB", CoinGeckoId: "wbnb", Decimals: 18, Price: 661.74},                                                 // Addr: 0xa649325aa7c5093d12d6f98eb4378deae68ce23f, Notional: 3589.2894595632
+		{Chain: 5, Addr: "000000000000000000000000a7051c5a22d963b81d71c2ba64d46a877fbc1821", Symbol: "EROWAN", CoinGeckoId: "sifchain", Decimals: 18, Price: 0.00000182},                                      // Addr: 0xa7051c5a22d963b81d71c2ba64d46a877fbc1821, Notional: 0.0000176913267986
+		{Chain: 5, Addr: "000000000000000000000000aa404804ba583c025fa64c9a276a6127ceb355c6", Symbol: "CPR", CoinGeckoId: "cipher-2", Decimals: 2, Price: 0.00062955},                                          // Addr: 0xaa404804ba583c025fa64c9a276a6127ceb355c6, Notional: 20952.721137411
+		{Chain: 5, Addr: "000000000000000000000000aaa5b9e6c589642f98a1cda99b9d024b8407285a", Symbol: "TITAN", CoinGeckoId: "iron-titanium-token", Decimals: 18, Price: 8.595e-9},                              // Addr: 0xaaa5b9e6c589642f98a1cda99b9d024b8407285a, Notional: 5.2013259629833835
+		{Chain: 5, Addr: "000000000000000000000000adbe0eac80f955363f4ff47b0f70189093908c04", Symbol: "XMT", CoinGeckoId: "metalswap", Decimals: 18, Price: 0.014588},                                          // Addr: 0xadbe0eac80f955363f4ff47b0f70189093908c04, Notional: 14.150360000000001
+		{Chain: 5, Addr: "000000000000000000000000b140665dde25c644c6b418e417c930de8a8a6ac9", Symbol: "ATRI", CoinGeckoId: "atari", Decimals: 0, Price: 0.00018727},                                            // Addr: 0xb140665dde25c644c6b418e417c930de8a8a6ac9, Notional: 0.01198528
+		{Chain: 5, Addr: "000000000000000000000000b25e20de2f2ebb4cffd4d16a55c7b395e8a94762", Symbol: "REQ", CoinGeckoId: "request-network", Decimals: 18, Price: 0.150383},                                    // Addr: 0xb25e20de2f2ebb4cffd4d16a55c7b395e8a94762, Notional: 9.67841262374856
+		{Chain: 5, Addr: "000000000000000000000000b33eaad8d922b1083446dc23f610c2567fb5180f", Symbol: "UNI", CoinGeckoId: "uniswap", Decimals: 18, Price: 6.64},                                                // Addr: 0xb33eaad8d922b1083446dc23f610c2567fb5180f, Notional: 3.630729092
+		{Chain: 5, Addr: "000000000000000000000000b6a5ae40e79891e4deadad06c8a7ca47396df21c", Symbol: "CBY", CoinGeckoId: "carbify", Decimals: 18, Price: 0.200883},                                            // Addr: 0xb6a5ae40e79891e4deadad06c8a7ca47396df21c, Notional: 0.1004415
+		{Chain: 5, Addr: "000000000000000000000000b7b31a6bc18e48888545ce79e83e06003be70930", Symbol: "APE", CoinGeckoId: "apecoin", Decimals: 18, Price: 0.715966},                                            // Addr: 0xb7b31a6bc18e48888545ce79e83e06003be70930, Notional: 0.13288151400432
+		{Chain: 5, Addr: "000000000000000000000000b87904db461005fc716a6bf9f2d451c33b10b80b", Symbol: "AMKT", CoinGeckoId: "alongside-crypto-market-index", Decimals: 18, Price: 285.7},                        // Addr: 0xb87904db461005fc716a6bf9f2d451c33b10b80b, Notional: 14.720392514999999
+		{Chain: 5, Addr: "000000000000000000000000ba777ae3a3c91fcd83ef85bfe65410592bdd0f7c", Symbol: "CONE", CoinGeckoId: "bitcone", Decimals: 18, Price: 5.09105e-7},                                         // Addr: 0xba777ae3a3c91fcd83ef85bfe65410592bdd0f7c, Notional: 2.6628075188499998
+		{Chain: 5, Addr: "000000000000000000000000bac3368b5110f3a3dda8b5a0f7b66edb37c47afe", Symbol: "AIPEPE", CoinGeckoId: "ai-pepe-king", Decimals: 18, Price: 1.37882e-10},                                 // Addr: 0xbac3368b5110f3a3dda8b5a0f7b66edb37c47afe, Notional: 0.000013788200000000001
+		{Chain: 5, Addr: "000000000000000000000000bbba073c31bf03b8acf7c28ef0738decf3695683", Symbol: "SAND", CoinGeckoId: "the-sandbox", Decimals: 18, Price: 0.282032},                                       // Addr: 0xbbba073c31bf03b8acf7c28ef0738decf3695683, Notional: 71.66981429410448
+		{Chain: 5, Addr: "000000000000000000000000bbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb", Symbol: "CAW", CoinGeckoId: "crow-with-knife", Decimals: 18, Price: 2.0024e-8},                                   // Addr: 0xbbbbbbbbb7949dcc7d1539c91b81a5bf09e37bdb, Notional: 941.159704617551
+		{Chain: 5, Addr: "000000000000000000000000bbfe0b60de96a189bf09079de86a2db7bf0c7883", Symbol: "eLunr", CoinGeckoId: "lunr-token", Decimals: 4, Price: 0.00308821},                                      // Addr: 0xbbfe0b60de96a189bf09079de86a2db7bf0c7883, Notional: 6.301459461153
+		{Chain: 5, Addr: "000000000000000000000000bc5eb84c052fd012bb902c258c9fd241b17c0005", Symbol: "XNET", CoinGeckoId: "xnet-mobile", Decimals: 18, Price: 0.02744334},                                     // Addr: 0xbc5eb84c052fd012bb902c258c9fd241b17c0005, Notional: 1643434.6944175493
+		{Chain: 5, Addr: "000000000000000000000000bd1463f02f61676d53fd183c2b19282bff93d099", Symbol: "jCHF", CoinGeckoId: "jarvis-synthetic-swiss-franc", Decimals: 18, Price: 0.150331},                      // Addr: 0xbd1463f02f61676d53fd183c2b19282bff93d099, Notional: 2.82728897150496
+		{Chain: 5, Addr: "000000000000000000000000c2132d05d31c914a87c6611c10748aeb04b58e8f", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                    // Addr: 0xc2132d05d31c914a87c6611c10748aeb04b58e8f, Notional: 372681.322999
+		{Chain: 5, Addr: "000000000000000000000000c3c7d422809852031b44ab29eec9f1eff2a58756", Symbol: "LDO", CoinGeckoId: "lido-dao", Decimals: 18, Price: 0.838962},                                           // Addr: 0xc3c7d422809852031b44ab29eec9f1eff2a58756, Notional: 8.39800962
+		{Chain: 5, Addr: "000000000000000000000000cf32822ff397ef82425153a9dcb726e5ff61dca7", Symbol: "GMEE", CoinGeckoId: "gamee", Decimals: 18, Price: 0.00209308},                                           // Addr: 0xcf32822ff397ef82425153a9dcb726e5ff61dca7, Notional: 28.28164514291615
+		{Chain: 5, Addr: "000000000000000000000000d3b71117e6c1558c1553305b44988cd944e97300", Symbol: "YEL", CoinGeckoId: "yel-finance", Decimals: 18, Price: 0.00361491},                                      // Addr: 0xd3b71117e6c1558c1553305b44988cd944e97300, Notional: 3.6149099999999996
+		{Chain: 5, Addr: "000000000000000000000000d60deba014459f07bbcc077a5b817f31dafd5229", Symbol: "VATRENI", CoinGeckoId: "croatian-ff-fan-token", Decimals: 18, Price: 0.463485},                          // Addr: 0xd60deba014459f07bbcc077a5b817f31dafd5229, Notional: 0.463485
+		{Chain: 5, Addr: "000000000000000000000000d6df932a45c0f255f85145f286ea0b292b21c90b", Symbol: "AAVE", CoinGeckoId: "aave", Decimals: 18, Price: 269.32},                                                // Addr: 0xd6df932a45c0f255f85145f286ea0b292b21c90b, Notional: 1410.5799204404
+		{Chain: 5, Addr: "000000000000000000000000d838290e877e0188a4a44700463419ed96c16107", Symbol: "NCT", CoinGeckoId: "toucan-protocol-base-carbon-tonne", Decimals: 18, Price: 0.160652},                  // Addr: 0xd838290e877e0188a4a44700463419ed96c16107, Notional: 7.22934
+		{Chain: 5, Addr: "000000000000000000000000d86b5923f3ad7b585ed81b448170ae026c65ae9a", Symbol: "IRON", CoinGeckoId: "iron-stablecoin", Decimals: 18, Price: 0.00009311},                                 // Addr: 0xd86b5923f3ad7b585ed81b448170ae026c65ae9a, Notional: 18.742230804105013
+		{Chain: 5, Addr: "000000000000000000000000d8ca34fd379d9ca3c6ee3b3905678320f5b45195", Symbol: "gOHM", CoinGeckoId: "governance-ohm", Decimals: 18, Price: 5267.74},                                     // Addr: 0xd8ca34fd379d9ca3c6ee3b3905678320f5b45195, Notional: 38.9470883674
+		{Chain: 5, Addr: "000000000000000000000000dab529f40e671a1d4bf91361c21bf9f0c9712ab7", Symbol: "BUSD", CoinGeckoId: "binance-usd", Decimals: 18, Price: 0.992597},                                       // Addr: 0xdab529f40e671a1d4bf91361c21bf9f0c9712ab7, Notional: 352.0756500165602
+		{Chain: 5, Addr: "000000000000000000000000dc3326e71d45186f113a2f448984ca0e8d201995", Symbol: "XSGD", CoinGeckoId: "xsgd", Decimals: 6, Price: 0.779723},                                               // Addr: 0xdc3326e71d45186f113a2f448984ca0e8d201995, Notional: 1.563344615
+		{Chain: 5, Addr: "000000000000000000000000e0339c80ffde91f3e20494df88d4206d86024cdf", Symbol: "ELON", CoinGeckoId: "dogelon-mars", Decimals: 18, Price: 1.27901e-7},                                    // Addr: 0xe0339c80ffde91f3e20494df88d4206d86024cdf, Notional: 110.69745883530081
+		{Chain: 5, Addr: "000000000000000000000000e0bceef36f3a6efdd5eebfacd591423f8549b9d5", Symbol: "FACTR", CoinGeckoId: "defactor", Decimals: 18, Price: 0.01891814},                                       // Addr: 0xe0bceef36f3a6efdd5eebfacd591423f8549b9d5, Notional: 1.0123959587391727
+		{Chain: 5, Addr: "000000000000000000000000e20b9e246db5a0d21bf9209e4858bc9a3ff7a034", Symbol: "wBAN", CoinGeckoId: "banano", Decimals: 18, Price: 0.00154673},                                          // Addr: 0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034, Notional: 16.47120586673326
+		{Chain: 5, Addr: "000000000000000000000000e261d618a959afffd53168cd07d12e37b26761db", Symbol: "DIMO", CoinGeckoId: "dimo", Decimals: 18, Price: 0.060256},                                              // Addr: 0xe261d618a959afffd53168cd07d12e37b26761db, Notional: 1464.5195959970151
+		{Chain: 5, Addr: "000000000000000000000000e4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78", Symbol: "DODO", CoinGeckoId: "dodo", Decimals: 18, Price: 0.04436955},                                            // Addr: 0xe4bf2864ebec7b7fdf6eeca9bacae7cdfdaffe78, Notional: 0.000021769476012
+		{Chain: 5, Addr: "000000000000000000000000e5417af564e4bfda1c483642db72007871397896", Symbol: "GNS", CoinGeckoId: "gains-network", Decimals: 18, Price: 1.19},                                          // Addr: 0xe5417af564e4bfda1c483642db72007871397896, Notional: 27.37006664
+		{Chain: 5, Addr: "000000000000000000000000e613a914bbb433855378183c3ab13003285da40a", Symbol: "B2M", CoinGeckoId: "bit2me", Decimals: 18, Price: 0.01310904},                                           // Addr: 0xe613a914bbb433855378183c3ab13003285da40a, Notional: 26.24429808
+		{Chain: 5, Addr: "000000000000000000000000e78aee6ccb05471a69677fb74da80f5d251c042b", Symbol: "TAKI", CoinGeckoId: "taki", Decimals: 18, Price: 0.00028552},                                            // Addr: 0xe78aee6ccb05471a69677fb74da80f5d251c042b, Notional: 0.1100837382806112
+		{Chain: 5, Addr: "000000000000000000000000e8d17b127ba8b9899a160d9a07b69bca8e08bfc6", Symbol: "NSDX", CoinGeckoId: "nasdex-token", Decimals: 18, Price: 0.00793524},                                    // Addr: 0xe8d17b127ba8b9899a160d9a07b69bca8e08bfc6, Notional: 0.3570858
+		{Chain: 5, Addr: "000000000000000000000000e9993763e0b7f7d915a62a5f22a6e151f91d98a8", Symbol: "TORG", CoinGeckoId: "torg", Decimals: 18, Price: 1.9398e-8},                                             // Addr: 0xe9993763e0b7f7d915a62a5f22a6e151f91d98a8, Notional: 0.00601684024485803
+		{Chain: 5, Addr: "000000000000000000000000e9e7c09e82328c3107d367f6c617cf9977e63ed0", Symbol: "A51", CoinGeckoId: "a51-finance", Decimals: 18, Price: 0.03000464},                                      // Addr: 0xe9e7c09e82328c3107d367f6c617cf9977e63ed0, Notional: 13879.780455082275
+		{Chain: 5, Addr: "000000000000000000000000edcfb6984a3c70501baa8b7f5421ae795ecc1496", Symbol: "META", CoinGeckoId: "abcmeta", Decimals: 8, Price: 3.63265e-7},                                          // Addr: 0xedcfb6984a3c70501baa8b7f5421ae795ecc1496, Notional: 0.011104647785000001
+		{Chain: 5, Addr: "000000000000000000000000ee327f889d5947c1dc1934bb208a1e792f953e96", Symbol: "frxETH", CoinGeckoId: "frax-ether", Decimals: 18, Price: 2576.06},                                       // Addr: 0xee327f889d5947c1dc1934bb208a1e792f953e96, Notional: 163.92695984559998
+		{Chain: 5, Addr: "000000000000000000000000ee7666aacaefaa6efeef62ea40176d3eb21953b9", Symbol: "MCHC", CoinGeckoId: "mch-coin", Decimals: 18, Price: 0.02589926},                                        // Addr: 0xee7666aacaefaa6efeef62ea40176d3eb21953b9, Notional: 15.86528622056336
+		{Chain: 5, Addr: "000000000000000000000000ee9801669c6138e84bd50deb500827b776777d28", Symbol: "O3", CoinGeckoId: "o3-swap", Decimals: 18, Price: 0.00216262},                                           // Addr: 0xee9801669c6138e84bd50deb500827b776777d28, Notional: 3.0787062152595164
+		{Chain: 5, Addr: "000000000000000000000000eee3371b89fc43ea970e908536fcddd975135d8a", Symbol: "DOG", CoinGeckoId: "the-doge-nft", Decimals: 18, Price: 0.00109697},                                     // Addr: 0xeee3371b89fc43ea970e908536fcddd975135d8a, Notional: 0.00109697
+		{Chain: 5, Addr: "000000000000000000000000eeeeeb57642040be42185f49c52f7e9b38f8eeee", Symbol: "ELK", CoinGeckoId: "elk-finance", Decimals: 18, Price: 0.03284014},                                      // Addr: 0xeeeeeb57642040be42185f49c52f7e9b38f8eeee, Notional: 0.06568028
+		{Chain: 5, Addr: "000000000000000000000000efee2de82343be622dcb4e545f75a3b9f50c272d", Symbol: "TRY", CoinGeckoId: "tryhards", Decimals: 18, Price: 0.00000727},                                         // Addr: 0xefee2de82343be622dcb4e545f75a3b9f50c272d, Notional: 0.0092141010449073
+		{Chain: 5, Addr: "000000000000000000000000f21441f9ec4c1fe69cb7cf186eceab31af2b658d", Symbol: "VENT", CoinGeckoId: "vent-finance", Decimals: 18, Price: 0.00067303},                                    // Addr: 0xf21441f9ec4c1fe69cb7cf186eceab31af2b658d, Notional: 4.105483
+		{Chain: 5, Addr: "000000000000000000000000f28164a485b0b2c90639e47b0f377b4a438a16b1", Symbol: "dQUICK", CoinGeckoId: "dragons-quick", Decimals: 18, Price: 0.068364},                                   // Addr: 0xf28164a485b0b2c90639e47b0f377b4a438a16b1, Notional: 0.0001664253216
+		{Chain: 5, Addr: "000000000000000000000000fbdd194376de19a88118e84e279b977f165d01b8", Symbol: "BIFI", CoinGeckoId: "beefy-finance", Decimals: 18, Price: 145.24},                                       // Addr: 0xfbdd194376de19a88118e84e279b977f165d01b8, Notional: 11554.0974423024
+		{Chain: 6, Addr: "0000000000000000000000000da67235dd5787d67955420c84ca1cecd4e5bb3b", Symbol: "wMEMO", CoinGeckoId: "wrapped-memory", Decimals: 18, Price: 119.53},                                     // Addr: 0x0da67235dd5787d67955420c84ca1cecd4e5bb3b, Notional: 46.4719348264
+		{Chain: 6, Addr: "000000000000000000000000130966628846bfd36ff31a822705796e8cb8c18d", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                  // Addr: 0x130966628846bfd36ff31a822705796e8cb8c18d, Notional: 135.88739750585998
+		{Chain: 6, Addr: "000000000000000000000000152b9d0fdc40c096757f570a51e494bd4b943e50", Symbol: "BTC.b", CoinGeckoId: "bitcoin-avalanche-bridged-btc-b", Decimals: 8, Price: 108678},                     // Addr: 0x152b9d0fdc40c096757f570a51e494bd4b943e50, Notional: 1284.06426018
+		{Chain: 6, Addr: "0000000000000000000000001f1e7c893855525b303f99bdf5c3c05be09ca251", Symbol: "SYN", CoinGeckoId: "synapse-2", Decimals: 18, Price: 0.167259},                                          // Addr: 0x1f1e7c893855525b303f99bdf5c3c05be09ca251, Notional: 46.18821157055999
+		{Chain: 6, Addr: "00000000000000000000000020cf1b6e9d856321ed4686877cf4538f2c84b4de", Symbol: "ANKR", CoinGeckoId: "ankr", Decimals: 18, Price: 0.01626111},                                            // Addr: 0x20cf1b6e9d856321ed4686877cf4538f2c84b4de, Notional: 1.6261109999999999
+		{Chain: 6, Addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.0000023},                                            // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 11.011431926945992
+		{Chain: 6, Addr: "000000000000000000000000264c1383ea520f73dd837f915ef3a732e204a493", Symbol: "BNB", CoinGeckoId: "wbnb", Decimals: 18, Price: 661.74},                                                 // Addr: 0x264c1383ea520f73dd837f915ef3a732e204a493, Notional: 8341.532302784999
+		{Chain: 6, Addr: "0000000000000000000000002b2c81e08f1af8835a78bb2a90ae924ace0ea4be", Symbol: "sAVAX", CoinGeckoId: "benqi-liquid-staked-avax", Decimals: 18, Price: 25.75},                            // Addr: 0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be, Notional: 544286.08625144
+		{Chain: 6, Addr: "0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                   // Addr: 0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590, Notional: 2.40649825604265
+		{Chain: 6, Addr: "00000000000000000000000031c994ac062c1970c086260bc61babb708643fac", Symbol: "XETA", CoinGeckoId: "xana", Decimals: 18, Price: 0.00078411},                                            // Addr: 0x31c994ac062c1970c086260bc61babb708643fac, Notional: 0.0078411
+		{Chain: 6, Addr: "000000000000000000000000321e7092a180bb43555132ec53aaa65a5bf84251", Symbol: "gOHM", CoinGeckoId: "governance-ohm", Decimals: 18, Price: 5267.74},                                     // Addr: 0x321e7092a180bb43555132ec53aaa65a5bf84251, Notional: 23.602425134399997
+		{Chain: 6, Addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", Symbol: "USDV", CoinGeckoId: "verified-usd-foundation-usdv", Decimals: 6, Price: 0.131685},                       // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 0.9905640674399999
+		{Chain: 6, Addr: "0000000000000000000000003419875b4d3bca7f3fdda2db7a476a79fd31b4fe", Symbol: "DZHV", CoinGeckoId: "dizzyhavoc", Decimals: 18, Price: 0.00018483},                                      // Addr: 0x3419875b4d3bca7f3fdda2db7a476a79fd31b4fe, Notional: 0.1384924878388194
+		{Chain: 6, Addr: "0000000000000000000000003eefb18003d033661f84e48360ebecd181a84709", Symbol: "ISA", CoinGeckoId: "islander", Decimals: 18, Price: 0.00000863},                                         // Addr: 0x3eefb18003d033661f84e48360ebecd181a84709, Notional: 0.0006601261514997001
+		{Chain: 6, Addr: "000000000000000000000000420fca0121dc28039145009570975747295f2329", Symbol: "COQ", CoinGeckoId: "coq-inu", Decimals: 18, Price: 6.49991e-7},                                          // Addr: 0x420fca0121dc28039145009570975747295f2329, Notional: 6.49991e-15
+		{Chain: 6, Addr: "000000000000000000000000431d5dff03120afa4bdf332c61a6e1766ef37bdb", Symbol: "JPYC", CoinGeckoId: "jpy-coin", Decimals: 18, Price: 0.00709666},                                        // Addr: 0x431d5dff03120afa4bdf332c61a6e1766ef37bdb, Notional: 2.4441535877075204
+		{Chain: 6, Addr: "000000000000000000000000444444444444c1a66f394025ac839a535246fcc8", Symbol: "GENI", CoinGeckoId: "genius", Decimals: 9, Price: 8.04002e-7},                                           // Addr: 0x444444444444c1a66f394025ac839a535246fcc8, Notional: 0.4611647204774788
+		{Chain: 6, Addr: "000000000000000000000000491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f", Symbol: "BRZ", CoinGeckoId: "brz", Decimals: 4, Price: 0.178599},                                                 // Addr: 0x491a4eb4f1fc3bff8e1d2fc856a6a46663ad556f, Notional: 0.178599
+		{Chain: 6, Addr: "00000000000000000000000049d5c2bdffac6ce2bfdb6640f4f80f226bc10bab", Symbol: "WETH.e", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                             // Addr: 0x49d5c2bdffac6ce2bfdb6640f4f80f226bc10bab, Notional: 13892.689591462498
+		{Chain: 6, Addr: "0000000000000000000000004bfc90322dd638f81f034517359bd447f8e0235a", Symbol: "NEWO", CoinGeckoId: "new-order", Decimals: 18, Price: 0.00157669},                                       // Addr: 0x4bfc90322dd638f81f034517359bd447f8e0235a, Notional: 12912.823191858739
+		{Chain: 6, Addr: "000000000000000000000000502580fc390606b47fc3b741d6d49909383c28a9", Symbol: "HATCHY", CoinGeckoId: "hatchypocket", Decimals: 18, Price: 0.00052912},                                  // Addr: 0x502580fc390606b47fc3b741d6d49909383c28a9, Notional: 0.0026297264
+		{Chain: 6, Addr: "0000000000000000000000005085434227ab73151fad2de546210cbc8663df96", Symbol: "DBY", CoinGeckoId: "metaderby", Decimals: 18, Price: 0.00054153},                                        // Addr: 0x5085434227ab73151fad2de546210cbc8663df96, Notional: 4819.66790382
+		{Chain: 6, Addr: "00000000000000000000000050b7545627a5162f82a992c33b87adc75187b218", Symbol: "WBTC.e", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                    // Addr: 0x50b7545627a5162f82a992c33b87adc75187b218, Notional: 3628.5470918
+		{Chain: 6, Addr: "000000000000000000000000564a341df6c126f90cf3ecb92120fd7190acb401", Symbol: "TRYB", CoinGeckoId: "bilira", Decimals: 6, Price: 0.02546433},                                           // Addr: 0x564a341df6c126f90cf3ecb92120fd7190acb401, Notional: 0.02546433
+		{Chain: 6, Addr: "0000000000000000000000005947bb275c521040051d82396192181b413227a3", Symbol: "LINK.e", CoinGeckoId: "chainlink", Decimals: 18, Price: 14.06},                                          // Addr: 0x5947bb275c521040051d82396192181b413227a3, Notional: 1.4060000000000001
+		{Chain: 6, Addr: "00000000000000000000000062edc0692bd897d2295872a9ffcac5425011c661", Symbol: "GMX", CoinGeckoId: "gmx", Decimals: 18, Price: 17.04},                                                   // Addr: 0x62edc0692bd897d2295872a9ffcac5425011c661, Notional: 61.909724591999996
+		{Chain: 6, Addr: "00000000000000000000000063682bdc5f875e9bf69e201550658492c9763f89", Symbol: "BSGG", CoinGeckoId: "betswap-gg", Decimals: 18, Price: 0.0007367},                                       // Addr: 0x63682bdc5f875e9bf69e201550658492c9763f89, Notional: 0.554274428656686
+		{Chain: 6, Addr: "00000000000000000000000063a72806098bd3d9520cc43356dd78afe5d386d9", Symbol: "AAVE.e", CoinGeckoId: "aave", Decimals: 18, Price: 269.32},                                              // Addr: 0x63a72806098bd3d9520cc43356dd78afe5d386d9, Notional: 2.5340695848
+		{Chain: 6, Addr: "00000000000000000000000068ee0d0aad9e1984af85ca224117e4d20eaf68be", Symbol: "ROY", CoinGeckoId: "crypto-royale", Decimals: 18, Price: 0.00062346},                                    // Addr: 0x68ee0d0aad9e1984af85ca224117e4d20eaf68be, Notional: 0.04301874000000001
+		{Chain: 6, Addr: "0000000000000000000000006e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd", Symbol: "JOE", CoinGeckoId: "joe", Decimals: 18, Price: 0.161424},                                                // Addr: 0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd, Notional: 0.01775664161424
+		{Chain: 6, Addr: "000000000000000000000000714f020c54cc9d104b6f4f6998c63ce2a31d1888", Symbol: "FITFI", CoinGeckoId: "step-app-fitfi", Decimals: 18, Price: 0.0015073},                                  // Addr: 0x714f020c54cc9d104b6f4f6998c63ce2a31d1888, Notional: 0.000150730015073
+		{Chain: 6, Addr: "000000000000000000000000820802fa8a99901f52e39acd21177b0be6ee2974", Symbol: "EUROe", CoinGeckoId: "euroe-stablecoin", Decimals: 6, Price: 1.14},                                      // Addr: 0x820802fa8a99901f52e39acd21177b0be6ee2974, Notional: 1.5038412599999997
+		{Chain: 6, Addr: "0000000000000000000000008729438eb15e2c8b576fcc6aecda6a148776c0f5", Symbol: "QI", CoinGeckoId: "benqi", Decimals: 18, Price: 0.00803733},                                             // Addr: 0x8729438eb15e2c8b576fcc6aecda6a148776c0f5, Notional: 0.00803733
+		{Chain: 6, Addr: "0000000000000000000000008929e9dbd2785e3ba16175e596cdd61520fee0d1", Symbol: "ALTD", CoinGeckoId: "altitude", Decimals: 18, Price: 0.00089463},                                        // Addr: 0x8929e9dbd2785e3ba16175e596cdd61520fee0d1, Notional: 0.0647059486788759
+		{Chain: 6, Addr: "0000000000000000000000008f47416cae600bccf9530e9f3aeaa06bdd1caa79", Symbol: "THOR", CoinGeckoId: "thor", Decimals: 18, Price: 0.01266575},                                            // Addr: 0x8f47416cae600bccf9530e9f3aeaa06bdd1caa79, Notional: 0.056862887918095
+		{Chain: 6, Addr: "000000000000000000000000921f99719eb6c01b4b8f0ba7973a7c24891e740a", Symbol: "MAGE", CoinGeckoId: "metabrands", Decimals: 18, Price: 0.01934287},                                      // Addr: 0x921f99719eb6c01b4b8f0ba7973a7c24891e740a, Notional: 536.0410470152927
+		{Chain: 6, Addr: "000000000000000000000000961c8c0b1aad0c0b10a51fef6a867e3091bcef17", Symbol: "DYP", CoinGeckoId: "defi-yield-protocol", Decimals: 18, Price: 0.04119439},                              // Addr: 0x961c8c0b1aad0c0b10a51fef6a867e3091bcef17, Notional: 249.78860415537616
+		{Chain: 6, Addr: "0000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", Symbol: "USDt", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                    // Addr: 0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7, Notional: 27458.566618
+		{Chain: 6, Addr: "00000000000000000000000098443b96ea4b0858fdf3219cd13e98c7a4690588", Symbol: "BAT.e", CoinGeckoId: "basic-attention-token", Decimals: 18, Price: 0.135288},                            // Addr: 0x98443b96ea4b0858fdf3219cd13e98c7a4690588, Notional: 6.698536131679919
+		{Chain: 6, Addr: "000000000000000000000000a4fb4f0ff2431262d236778495145ecbc975c38b", Symbol: "INFRA.e", CoinGeckoId: "bware-infra", Decimals: 18, Price: 0.132315},                                    // Addr: 0xa4fb4f0ff2431262d236778495145ecbc975c38b, Notional: 0.015877799999999997
+		{Chain: 6, Addr: "000000000000000000000000a7d7079b0fead91f3e65f86e8915cb59c1a4c664", Symbol: "USDC.e", CoinGeckoId: "usd-coin-avalanche-bridged-usdc-e", Decimals: 6, Price: 0.999716},                // Addr: 0xa7d7079b0fead91f3e65f86e8915cb59c1a4c664, Notional: 30188.663875870676
+		{Chain: 6, Addr: "000000000000000000000000b279f8dd152b99ec1d84a489d32c35bc0c7f5674", Symbol: "STEAK", CoinGeckoId: "steakhut-finance", Decimals: 18, Price: 0.249477},                                 // Addr: 0xb279f8dd152b99ec1d84a489d32c35bc0c7f5674, Notional: 1.37793822259905
+		{Chain: 6, Addr: "000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c7", Symbol: "WAVAX", CoinGeckoId: "wrapped-avax", Decimals: 18, Price: 21.28},                                        // Addr: 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7, Notional: 5708692.405210156
+		{Chain: 6, Addr: "000000000000000000000000b97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: 0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e, Notional: 128738.50176720455
+		{Chain: 6, Addr: "000000000000000000000000bbaaa0420d474b34be197f95a323c2ff3829e811", Symbol: "LODE", CoinGeckoId: "lode-token", Decimals: 18, Price: 0.00082998},                                      // Addr: 0xbbaaa0420d474b34be197f95a323c2ff3829e811, Notional: 0.000029049300000000003
+		{Chain: 6, Addr: "000000000000000000000000bd100d061e120b2c67a24453cf6368e63f1be056", Symbol: "iDYP", CoinGeckoId: "idefiyieldprotocol", Decimals: 18, Price: 0.00035127},                              // Addr: 0xbd100d061e120b2c67a24453cf6368e63f1be056, Notional: 0.000035127
+		{Chain: 6, Addr: "000000000000000000000000c0c5aa69dbe4d6dddfbc89c0957686ec60f24389", Symbol: "aXEN", CoinGeckoId: "xen-crypto", Decimals: 18, Price: 4.242e-8},                                        // Addr: 0xc0c5aa69dbe4d6dddfbc89c0957686ec60f24389, Notional: 54.56592451574459
+		{Chain: 6, Addr: "000000000000000000000000c17c30e98541188614df99239cabd40280810ca3", Symbol: "RISE", CoinGeckoId: "everrise", Decimals: 18, Price: 0.00003096},                                        // Addr: 0xc17c30e98541188614df99239cabd40280810ca3, Notional: 0.6593277977622288
+		{Chain: 6, Addr: "000000000000000000000000c7198437980c041c805a1edcba50c1ce5db95118", Symbol: "USDT.e", CoinGeckoId: "tether-avalanche-bridged-usdt-e", Decimals: 6, Price: 1},                         // Addr: 0xc7198437980c041c805a1edcba50c1ce5db95118, Notional: 6488.663556
+		{Chain: 6, Addr: "000000000000000000000000ce1bffbd5374dac86a2893119683f4911a2f7814", Symbol: "SPELL", CoinGeckoId: "spell-token", Decimals: 18, Price: 0.00053216},                                    // Addr: 0xce1bffbd5374dac86a2893119683f4911a2f7814, Notional: 29.234950558356136
+		{Chain: 6, Addr: "000000000000000000000000d24c2ad096400b6fbcd2ad8b24e7acbc21a1da64", Symbol: "FRAX", CoinGeckoId: "frax", Decimals: 18, Price: 0.999384},                                              // Addr: 0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64, Notional: 7.49088339161808
+		{Chain: 6, Addr: "000000000000000000000000d402298a793948698b9a63311404fbbee944eafd", Symbol: "SHRAP", CoinGeckoId: "shrapnel-2", Decimals: 18, Price: 0.00489368},                                     // Addr: 0xd402298a793948698b9a63311404fbbee944eafd, Notional: 0.148131204232
+		{Chain: 6, Addr: "000000000000000000000000d586e7f844cea2f87f50152665bcbc2c279d8d70", Symbol: "DAI.e", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                              // Addr: 0xd586e7f844cea2f87f50152665bcbc2c279d8d70, Notional: 872.8221820709066
+		{Chain: 6, Addr: "000000000000000000000000e8385cecb013561b69beb63ff59f4d10734881f3", Symbol: "GEC", CoinGeckoId: "gecko-inu", Decimals: 18, Price: 7.221e-9},                                          // Addr: 0xe8385cecb013561b69beb63ff59f4d10734881f3, Notional: 0.7435490096305292
+		{Chain: 6, Addr: "000000000000000000000000ec3492a2508ddf4fdc0cd76f31f340b30d1793e6", Symbol: "CLY", CoinGeckoId: "colony", Decimals: 18, Price: 0.061198},                                             // Addr: 0xec3492a2508ddf4fdc0cd76f31f340b30d1793e6, Notional: 0.061198
+		{Chain: 6, Addr: "000000000000000000000000ed2b42d3c9c6e97e11755bb37df29b6375ede3eb", Symbol: "HON", CoinGeckoId: "heroes-of-nft", Decimals: 18, Price: 0.0067914},                                     // Addr: 0xed2b42d3c9c6e97e11755bb37df29b6375ede3eb, Notional: 0.020538080353098002
+		{Chain: 6, Addr: "000000000000000000000000fab550568c688d5d8a52c7d794cb93edc26ec0ec", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                         // Addr: 0xfab550568c688d5d8a52c7d794cb93edc26ec0ec, Notional: 0.5997857999999999
+		{Chain: 6, Addr: "000000000000000000000000fb98b335551a418cd0737375a2ea0ded62ea213b", Symbol: "PENDLE", CoinGeckoId: "pendle", Decimals: 18, Price: 4.24},                                              // Addr: 0xfb98b335551a418cd0737375a2ea0ded62ea213b, Notional: 449.43752850400006
+		{Chain: 7, Addr: "00000000000000000000000021c718c22d52d0f3a789b752d4c2fd5908a8a733", Symbol: "wROSE", CoinGeckoId: "oasis-network", Decimals: 18, Price: 0.02831149},                                  // Addr: 0x21c718c22d52d0f3a789b752d4c2fd5908a8a733, Notional: 49972.24628144279
+		{Chain: 8, Addr: "0000000000000000000000000000000000000000000000000000000000000000", Symbol: "ALGO", CoinGeckoId: "algorand", Decimals: 6, Price: 0.194342},                                           // Addr: 0, Notional: 811.7687469723538
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000000029fcf5", Symbol: "RIO", CoinGeckoId: "realio-network", Decimals: 7, Price: 0.260276},                                      // Addr: 2751733, Notional: 3057.4067249612513
+		{Chain: 8, Addr: "00000000000000000000000000000000000000000000000000000000019e8502", Symbol: "Planets", CoinGeckoId: "planetwatch", Decimals: 6, Price: 0.00001635},                                   // Addr: 27165954, Notional: 0.01635
+		{Chain: 8, Addr: "0000000000000000000000000000000000000000000000000000000001e1ab70", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: 31566704, Notional: 13397.323952187944
+		{Chain: 8, Addr: "0000000000000000000000000000000000000000000000000000000008338636", Symbol: "HDL", CoinGeckoId: "headline", Decimals: 6, Price: 0.0024618},                                           // Addr: 137594422, Notional: 91.3398607916388
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000000d83314a", Symbol: "YLDY", CoinGeckoId: "yieldly", Decimals: 6, Price: 0.0000055},                                           // Addr: 226701642, Notional: 3.749033431539
+		{Chain: 8, Addr: "00000000000000000000000000000000000000000000000000000000112883e4", Symbol: "OPUL", CoinGeckoId: "opulous", Decimals: 8, Price: 0.03156293},                                          // Addr: 287867876, Notional: 16.5077280193
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000001704d555", Symbol: "goBTC", CoinGeckoId: "gobtc", Decimals: 8, Price: 108381},                                               // Addr: 386192725, Notional: 224.13949467
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000001704e1e4", Symbol: "goETH", CoinGeckoId: "goeth", Decimals: 8, Price: 2559.73},                                              // Addr: 386195940, Notional: 80.86673418699999
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000001729723f", Symbol: "chip", CoinGeckoId: "algo-casino-chips", Decimals: 1, Price: 0.00100395},                                // Addr: 388592191, Notional: 0.43029297
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000001a777316", Symbol: "ZONE", CoinGeckoId: "zone", Decimals: 6, Price: 0.00061667},                                             // Addr: 444035862, Notional: 0.00555003
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000001dc164ef", Symbol: "MCOIN", CoinGeckoId: "maricoin", Decimals: 3, Price: 0.00089124},                                        // Addr: 499213551, Notional: 21888.195084711482
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000002f461f17", Symbol: "gALGO", CoinGeckoId: "governance-algo", Decimals: 6, Price: 0.193719},                                   // Addr: 793124631, Notional: 0.0387438
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000002f787b65", Symbol: "COOP", CoinGeckoId: "coop-coin", Decimals: 6, Price: 0.01530708},                                        // Addr: 796425061, Notional: 483.71556684773486
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000003717361a", Symbol: "FRY", CoinGeckoId: "fryscrypto", Decimals: 6, Price: 0.206031},                                          // Addr: 924268058, Notional: 8578520.739424603
+		{Chain: 8, Addr: "0000000000000000000000000000000000000000000000000000000043dc2404", Symbol: "GORA", CoinGeckoId: "goracle-network", Decimals: 8, Price: 0.02505356},                                  // Addr: 1138500612, Notional: 0.11199758191323798
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000009422e582", Symbol: "FRY", CoinGeckoId: "fry", Decimals: 6, Price: 0.117349},                                                 // Addr: 2485314946, Notional: 1173.49
+		{Chain: 9, Addr: "0000000000000000000000004988a896b1227218e4a686fde5eabdcabd91571f", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                    // Addr: 0x4988a896b1227218e4a686fde5eabdcabd91571f, Notional: 507.188226
+		{Chain: 9, Addr: "0000000000000000000000005ce9f0b6afb36135b5ddbf11705ceb65e634a9dc", Symbol: "atUST", CoinGeckoId: "wrapped-ust", Decimals: 18, Price: 0.01263232},                                    // Addr: 0x5ce9f0b6afb36135b5ddbf11705ceb65e634a9dc, Notional: 0.012545035974374402
+		{Chain: 9, Addr: "0000000000000000000000007ca1c28663b76cfde424a9494555b94846205585", Symbol: "XNL", CoinGeckoId: "chronicle", Decimals: 18, Price: 0.00103403},                                        // Addr: 0x7ca1c28663b76cfde424a9494555b94846205585, Notional: 0.16234271
+		{Chain: 9, Addr: "0000000000000000000000008bec47865ade3b172a928df8f990bc7f2a3b9f79", Symbol: "AURORA", CoinGeckoId: "aurora-near", Decimals: 18, Price: 0.080323},                                     // Addr: 0x8bec47865ade3b172a928df8f990bc7f2a3b9f79, Notional: 0.0000040161500000000005
+		{Chain: 9, Addr: "000000000000000000000000b12bfca5a55806aaf64e99521918a4bf0fc40802", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                           // Addr: 0xb12bfca5a55806aaf64e99521918a4bf0fc40802, Notional: 329.437000407165
+		{Chain: 9, Addr: "000000000000000000000000c4bdd27c33ec7daa6fcfd8532ddb524bf4038096", Symbol: "atLUNA", CoinGeckoId: "wrapped-terra", Decimals: 18, Price: 0.00001547},                                 // Addr: 0xc4bdd27c33ec7daa6fcfd8532ddb524bf4038096, Notional: 0.0129881149193523
+		{Chain: 9, Addr: "000000000000000000000000c9bdeed33cd01541e1eed10f90519d2c06fe3feb", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                               // Addr: 0xc9bdeed33cd01541e1eed10f90519d2c06fe3feb, Notional: 6841.5940645
+		{Chain: 9, Addr: "000000000000000000000000dcd6d4e2b3e1d1e1e6fa8c21c8a323dcbecff970", Symbol: "ROSE", CoinGeckoId: "rose", Decimals: 18, Price: 0.00007776},                                            // Addr: 0xdcd6d4e2b3e1d1e1e6fa8c21c8a323dcbecff970, Notional: 0.00785376
+		{Chain: 10, Addr: "00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0x04068da6c83afcfa0e13ba15a6696662335d5b75, Notional: 217736.56752846285
+		{Chain: 10, Addr: "000000000000000000000000049d68029688eabf473097a2fc38ef61633a3c7a", Symbol: "fUSDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                  // Addr: 0x049d68029688eabf473097a2fc38ef61633a3c7a, Notional: 2466.550891
+		{Chain: 10, Addr: "0000000000000000000000000615dbba33fe61a31c7ed131bda6655ed76748b1", Symbol: "ANKR", CoinGeckoId: "ankr", Decimals: 18, Price: 0.01626111},                                           // Addr: 0x0615dbba33fe61a31c7ed131bda6655ed76748b1, Notional: 9.673074546738304
+		{Chain: 10, Addr: "000000000000000000000000174c7106aeecdc11389f7dd21342f05f46ccb40f", Symbol: "DEVIL", CoinGeckoId: "devil-finance", Decimals: 18, Price: 0.00005218},                                 // Addr: 0x174c7106aeecdc11389f7dd21342f05f46ccb40f, Notional: 0.11479600000104359
+		{Chain: 10, Addr: "0000000000000000000000001b6382dbdea11d97f24495c9a90b7c88469134a4", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                        // Addr: 0x1b6382dbdea11d97f24495c9a90b7c88469134a4, Notional: 11.080319913111
+		{Chain: 10, Addr: "0000000000000000000000001e4f97b9f9f913c46f1632781732927b9019c68b", Symbol: "CRV", CoinGeckoId: "curve-dao-token", Decimals: 18, Price: 0.6725},                                     // Addr: 0x1e4f97b9f9f913c46f1632781732927b9019c68b, Notional: 6714.538614747999
+		{Chain: 10, Addr: "0000000000000000000000002130d2a1e51112d349ccf78d2a1ee65843ba36e0", Symbol: "UNIDX", CoinGeckoId: "unidex", Decimals: 18, Price: 0.14695},                                           // Addr: 0x2130d2a1e51112d349ccf78d2a1ee65843ba36e0, Notional: 0.170085120274
+		{Chain: 10, Addr: "00000000000000000000000021ada0d2ac28c3a5fa3cd2ee30882da8812279b6", Symbol: "OATH", CoinGeckoId: "oath", Decimals: 18, Price: 0.00077744},                                           // Addr: 0x21ada0d2ac28c3a5fa3cd2ee30882da8812279b6, Notional: 0.07774400000000001
+		{Chain: 10, Addr: "00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83", Symbol: "WFTM", CoinGeckoId: "wrapped-fantom", Decimals: 18, Price: 0.386855},                                   // Addr: 0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83, Notional: 53634.79513516709
+		{Chain: 10, Addr: "000000000000000000000000248cb87dda803028dfead98101c9465a2fbda0d4", Symbol: "CHARM", CoinGeckoId: "charm", Decimals: 18, Price: 4.48257e-7},                                         // Addr: 0x248cb87dda803028dfead98101c9465a2fbda0d4, Notional: 0.001793028
+		{Chain: 10, Addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.0000023},                                           // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 0.018423
+		{Chain: 10, Addr: "000000000000000000000000260b3e40c714ce8196465ec824cd8bb915081812", Symbol: "IronICE", CoinGeckoId: "iron-bsc", Decimals: 18, Price: 0.0161403},                                     // Addr: 0x260b3e40c714ce8196465ec824cd8bb915081812, Notional: 36.837329496
+		{Chain: 10, Addr: "00000000000000000000000027e611fd27b276acbd5ffd632e5eaebec9761e40", Symbol: "DAI+USDC", CoinGeckoId: "curve-fi-dai-usdc", Decimals: 18, Price: 1},                                   // Addr: 0x27e611fd27b276acbd5ffd632e5eaebec9761e40, Notional: 17.51097737
+		{Chain: 10, Addr: "00000000000000000000000028a92dde19d9989f39a49905d7c9c2fac7799bdf", Symbol: "USDC", CoinGeckoId: "layerzero-usdc", Decimals: 6, Price: 0.914455},                                    // Addr: 0x28a92dde19d9989f39a49905d7c9c2fac7799bdf, Notional: 2305.645202733
+		{Chain: 10, Addr: "00000000000000000000000029b0da86e484e1c0029b56e817912d778ac0ec69", Symbol: "YFI", CoinGeckoId: "yearn-finance", Decimals: 18, Price: 5273.72},                                      // Addr: 0x29b0da86e484e1c0029b56e817912d778ac0ec69, Notional: 54.319316
+		{Chain: 10, Addr: "0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                  // Addr: 0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590, Notional: 2.56615148334393
+		{Chain: 10, Addr: "0000000000000000000000002f733095b80a04b38b0d10cc884524a3d09b836a", Symbol: "USDC.e", CoinGeckoId: "wormhole-bridged-usdc-fantom", Decimals: 6, Price: 0.921081},                    // Addr: 0x2f733095b80a04b38b0d10cc884524a3d09b836a, Notional: 5477.561582516458
+		{Chain: 10, Addr: "000000000000000000000000321162cd933e2be498cd2267a90534a804051b11", Symbol: "BTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                      // Addr: 0x321162cd933e2be498cd2267a90534a804051b11, Notional: 117209.10397247999
+		{Chain: 10, Addr: "0000000000000000000000003dc57b391262e3aae37a08d91241f9ba9d58b570", Symbol: "YOSHI", CoinGeckoId: "yoshi-exchange", Decimals: 18, Price: 0.00717667},                                // Addr: 0x3dc57b391262e3aae37a08d91241f9ba9d58b570, Notional: 0.006459003
+		{Chain: 10, Addr: "00000000000000000000000040df1ae6074c35047bff66675488aa2f9f6384f3", Symbol: "MATIC", CoinGeckoId: "wmatic", Decimals: 18, Price: 0.213487},                                          // Addr: 0x40df1ae6074c35047bff66675488aa2f9f6384f3, Notional: 835.0782076330321
+		{Chain: 10, Addr: "00000000000000000000000042ae8468a1fddb965d420bd71368a87ec3a2b4b8", Symbol: "Metti", CoinGeckoId: "metti-inu", Decimals: 18, Price: 1.5292e-11},                                     // Addr: 0x42ae8468a1fddb965d420bd71368a87ec3a2b4b8, Notional: 0.000001743288
+		{Chain: 10, Addr: "00000000000000000000000044f7237df00e386af8e79b817d05ed9f6fe0f296", Symbol: "SOL", CoinGeckoId: "wrapped-solana", Decimals: 18, Price: 156.53},                                      // Addr: 0x44f7237df00e386af8e79b817d05ed9f6fe0f296, Notional: 1997.439540074
+		{Chain: 10, Addr: "000000000000000000000000468003b688943977e6130f4f68f23aad939a1040", Symbol: "SPELL", CoinGeckoId: "spell-token", Decimals: 18, Price: 0.00053216},                                   // Addr: 0x468003b688943977e6130f4f68f23aad939a1040, Notional: 0.10579708089381759
+		{Chain: 10, Addr: "000000000000000000000000511d35c52a3c244e7b8bd92c0c297755fbd89212", Symbol: "AVAX", CoinGeckoId: "wrapped-avax", Decimals: 18, Price: 21.28},                                        // Addr: 0x511d35c52a3c244e7b8bd92c0c297755fbd89212, Notional: 1012.5345489728
+		{Chain: 10, Addr: "000000000000000000000000526f1dc408cfe7fc5330ab9f1e78474ceff2a5dd", Symbol: "VEMP", CoinGeckoId: "vempire-ddao", Decimals: 18, Price: 0.000649},                                     // Addr: 0x526f1dc408cfe7fc5330ab9f1e78474ceff2a5dd, Notional: 1.066956
+		{Chain: 10, Addr: "00000000000000000000000056ee926bd8c72b2d5fa1af4d9e4cbb515a1e3adc", Symbol: "SNX", CoinGeckoId: "havven", Decimals: 18, Price: 0.66506},                                             // Addr: 0x56ee926bd8c72b2d5fa1af4d9e4cbb515a1e3adc, Notional: 0.11394622618499999
+		{Chain: 10, Addr: "0000000000000000000000005c4fdfc5233f935f20d2adba572f770c2e377ab0", Symbol: "HEC", CoinGeckoId: "hector-dao", Decimals: 9, Price: 0.01777726},                                       // Addr: 0x5c4fdfc5233f935f20d2adba572f770c2e377ab0, Notional: 7.346485577242277
+		{Chain: 10, Addr: "0000000000000000000000005d5530eb3147152fe78d5c4bfeede054c8d1442a", Symbol: "FEED", CoinGeckoId: "feeder-finance", Decimals: 18, Price: 0.00030381},                                 // Addr: 0x5d5530eb3147152fe78d5c4bfeede054c8d1442a, Notional: 1.1135932827648525
+		{Chain: 10, Addr: "000000000000000000000000657a1861c15a3ded9af0b6799a195a249ebdcbc6", Symbol: "CREAM", CoinGeckoId: "cream-2", Decimals: 18, Price: 1.21},                                             // Addr: 0x657a1861c15a3ded9af0b6799a195a249ebdcbc6, Notional: 0.00847
+		{Chain: 10, Addr: "0000000000000000000000006626c47c00f1d87902fc13eecfac3ed06d5e8d8a", Symbol: "WOO", CoinGeckoId: "woo-network", Decimals: 18, Price: 0.079828},                                       // Addr: 0x6626c47c00f1d87902fc13eecfac3ed06d5e8d8a, Notional: 7.3184506319131195
+		{Chain: 10, Addr: "000000000000000000000000695921034f0387eac4e11620ee91b1b15a6a09fe", Symbol: "WETH", CoinGeckoId: "bridged-wrapped-ether-stargate", Decimals: 18, Price: 2574.37},                    // Addr: 0x695921034f0387eac4e11620ee91b1b15a6a09fe, Notional: 292.44495660049995
+		{Chain: 10, Addr: "0000000000000000000000006a07a792ab2965c72a5b8088d3a069a7ac3a993b", Symbol: "AAVE", CoinGeckoId: "aave", Decimals: 18, Price: 269.32},                                               // Addr: 0x6a07a792ab2965c72a5b8088d3a069a7ac3a993b, Notional: 1197.4736674172
+		{Chain: 10, Addr: "00000000000000000000000074b23882a30290451a17c44f4f05243b6b58c76d", Symbol: "ETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                               // Addr: 0x74b23882a30290451a17c44f4f05243b6b58c76d, Notional: 42495.886688267994
+		{Chain: 10, Addr: "00000000000000000000000074e23df9110aa9ea0b6ff2faee01e740ca1c642e", Symbol: "TOR", CoinGeckoId: "tor", Decimals: 18, Price: 0.01843365},                                             // Addr: 0x74e23df9110aa9ea0b6ff2faee01e740ca1c642e, Notional: 1.9693973878538265
+		{Chain: 10, Addr: "00000000000000000000000082f0b8b456c1a451378467398982d4834b6829c1", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                 // Addr: 0x82f0b8b456c1a451378467398982d4834b6829c1, Notional: 342.15693268756996
+		{Chain: 10, Addr: "000000000000000000000000841fad6eae12c286d1fd18d1d525dffa75c7effe", Symbol: "BOO", CoinGeckoId: "spookyswap", Decimals: 18, Price: 0.129654},                                        // Addr: 0x841fad6eae12c286d1fd18d1d525dffa75c7effe, Notional: 0.0025057385828999995
+		{Chain: 10, Addr: "00000000000000000000000085dec8c4b2680793661bca91a8f129607571863d", Symbol: "BRUSH", CoinGeckoId: "paint-swap", Decimals: 18, Price: 0.01651998},                                    // Addr: 0x85dec8c4b2680793661bca91a8f129607571863d, Notional: 0.3699624227258622
+		{Chain: 10, Addr: "0000000000000000000000008d11ec38a3eb5e956b052f67da8bdc9bef8abf3e", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                               // Addr: 0x8d11ec38a3eb5e956b052f67da8bdc9bef8abf3e, Notional: 27145.654027579447
+		{Chain: 10, Addr: "000000000000000000000000904f51a2e7eeaf76aaf0418cbaf0b71149686f4a", Symbol: "FAME", CoinGeckoId: "fantom-maker", Decimals: 18, Price: 0.00001004},                                   // Addr: 0x904f51a2e7eeaf76aaf0418cbaf0b71149686f4a, Notional: 515.3810946655562
+		{Chain: 10, Addr: "00000000000000000000000097bdafe3830734acf12da25359674277fcc33729", Symbol: "KIRBY", CoinGeckoId: "blue-kirby", Decimals: 18, Price: 0.00000714},                                    // Addr: 0x97bdafe3830734acf12da25359674277fcc33729, Notional: 14.112931966488773
+		{Chain: 10, Addr: "0000000000000000000000009879abdea01a879644185341f7af7d8343556b7a", Symbol: "TUSD", CoinGeckoId: "true-usd", Decimals: 18, Price: 0.998935},                                         // Addr: 0x9879abdea01a879644185341f7af7d8343556b7a, Notional: 378.87593944577685
+		{Chain: 10, Addr: "0000000000000000000000009fb9a33956351cf4fa040f65a13b835a3c8764e3", Symbol: "MULTI", CoinGeckoId: "multichain", Decimals: 18, Price: 0.603485},                                      // Addr: 0x9fb9a33956351cf4fa040f65a13b835a3c8764e3, Notional: 387.35073782727227
+		{Chain: 10, Addr: "000000000000000000000000a23c4e69e5eaf4500f2f9301717f12b578b948fb", Symbol: "PROTO", CoinGeckoId: "protofi", Decimals: 18, Price: 0.0000271},                                        // Addr: 0xa23c4e69e5eaf4500f2f9301717f12b578b948fb, Notional: 0.004607
+		{Chain: 10, Addr: "000000000000000000000000ad996a45fd2373ed0b10efa4a8ecb9de445a4302", Symbol: "ALPACA", CoinGeckoId: "alpaca-finance", Decimals: 18, Price: 0.04213116},                               // Addr: 0xad996a45fd2373ed0b10efa4a8ecb9de445a4302, Notional: 3.0625245127440865
+		{Chain: 10, Addr: "000000000000000000000000ae75a438b2e0cb8bb01ec1e1e376de11d44477cc", Symbol: "SUSHI", CoinGeckoId: "sushi", Decimals: 18, Price: 0.671409},                                           // Addr: 0xae75a438b2e0cb8bb01ec1e1e376de11d44477cc, Notional: 45.08479596113811
+		{Chain: 10, Addr: "000000000000000000000000b3654dc3d10ea7645f8319668e8f54d2574fbdc8", Symbol: "LINK", CoinGeckoId: "chainlink", Decimals: 18, Price: 14.06},                                           // Addr: 0xb3654dc3d10ea7645f8319668e8f54d2574fbdc8, Notional: 3528.6382416175998
+		{Chain: 10, Addr: "000000000000000000000000b715f8dce2f0e9b894c753711bd55ee3c04dca4e", Symbol: "CONK", CoinGeckoId: "shibapoconk", Decimals: 18, Price: 5.1064e-11},                                    // Addr: 0xb715f8dce2f0e9b894c753711bd55ee3c04dca4e, Notional: 0.001685112
+		{Chain: 10, Addr: "000000000000000000000000be41772587872a92184873d55b09c6bb6f59f895", Symbol: "MARS", CoinGeckoId: "projectmars", Decimals: 9, Price: 5.2462e-8},                                      // Addr: 0xbe41772587872a92184873d55b09c6bb6f59f895, Notional: 0.00552397055110936
+		{Chain: 10, Addr: "000000000000000000000000cc1b99ddac1a33c201a742a1851662e87bc7f22c", Symbol: "USDT", CoinGeckoId: "bridged-tether-stargate", Decimals: 6, Price: 0.998639},                           // Addr: 0xcc1b99ddac1a33c201a742a1851662e87bc7f22c, Notional: 2661.870810468006
+		{Chain: 10, Addr: "000000000000000000000000d67de0e0a0fd7b15dc8348bb9be742f3c5850454", Symbol: "BNB", CoinGeckoId: "wbnb", Decimals: 18, Price: 661.74},                                                // Addr: 0xd67de0e0a0fd7b15dc8348bb9be742f3c5850454, Notional: 13217.2845826098
+		{Chain: 10, Addr: "000000000000000000000000d8321aa83fb0a4ecd6348d4577431310a6e0814d", Symbol: "GEIST", CoinGeckoId: "geist-finance", Decimals: 18, Price: 0.00008337},                                 // Addr: 0xd8321aa83fb0a4ecd6348d4577431310a6e0814d, Notional: 0.0008336999999999999
+		{Chain: 10, Addr: "000000000000000000000000dc301622e621166bd8e82f2ca0a26c13ad0be355", Symbol: "FRAX", CoinGeckoId: "frax", Decimals: 18, Price: 0.999384},                                             // Addr: 0xdc301622e621166bd8e82f2ca0a26c13ad0be355, Notional: 144.5621269909956
+		{Chain: 10, Addr: "000000000000000000000000de5ed76e7c05ec5e4572cfc88d1acea165109e44", Symbol: "DEUS", CoinGeckoId: "deus-finance-2", Decimals: 18, Price: 11.01},                                      // Addr: 0xde5ed76e7c05ec5e4572cfc88d1acea165109e44, Notional: 1.0982195345999999
+		{Chain: 10, Addr: "000000000000000000000000e2d27f06f63d98b8e11b38b5b08a75d0c8dd62b9", Symbol: "UST", CoinGeckoId: "wrapped-ust", Decimals: 6, Price: 0.01263232},                                      // Addr: 0xe2d27f06f63d98b8e11b38b5b08a75d0c8dd62b9, Notional: 221.0565512923315
+		{Chain: 10, Addr: "000000000000000000000000e47d957f83f8887063150aaf7187411351643392", Symbol: "CHILL", CoinGeckoId: "chillpill", Decimals: 18, Price: 1.9588e-11},                                     // Addr: 0xe47d957f83f8887063150aaf7187411351643392, Notional: 0.0078665408
+		{Chain: 10, Addr: "000000000000000000000000e64b9fd040d1f9d4715c645e0d567ef69958d3d9", Symbol: "MOD", CoinGeckoId: "modefi", Decimals: 18, Price: 0.00405775},                                          // Addr: 0xe64b9fd040d1f9d4715c645e0d567ef69958d3d9, Notional: 0.06824491725789249
+		{Chain: 10, Addr: "000000000000000000000000e705af5f63fcabdcdf5016aa838eaaac35d12890", Symbol: "MCRT", CoinGeckoId: "magiccraft", Decimals: 9, Price: 0.00057245},                                      // Addr: 0xe705af5f63fcabdcdf5016aa838eaaac35d12890, Notional: 0.5014996282921684
+		{Chain: 10, Addr: "000000000000000000000000ee9801669c6138e84bd50deb500827b776777d28", Symbol: "O3", CoinGeckoId: "o3-swap", Decimals: 18, Price: 0.00216262},                                          // Addr: 0xee9801669c6138e84bd50deb500827b776777d28, Notional: 1.2585436873854685
+		{Chain: 10, Addr: "000000000000000000000000ef4b763385838fffc708000f884026b8c0434275", Symbol: "fmXEN", CoinGeckoId: "xen-crypto-fantom", Decimals: 18, Price: 1.552e-11},                              // Addr: 0xef4b763385838fffc708000f884026b8c0434275, Notional: 0.00029795202018957753
+		{Chain: 10, Addr: "000000000000000000000000fb98b335551a418cd0737375a2ea0ded62ea213b", Symbol: "miMATIC", CoinGeckoId: "mimatic", Decimals: 18, Price: 0.995702},                                       // Addr: 0xfb98b335551a418cd0737375a2ea0ded62ea213b, Notional: 25.83277578599264
+		{Chain: 11, Addr: "0000000000000000000000000000000000000000000100000000000000000081", Symbol: "aUSD", CoinGeckoId: "acala-dollar", Decimals: 12, Price: 0.51763},                                      // Addr: 0x0000000000000000000100000000000000000081, Notional: 5.1058603195018
+		{Chain: 12, Addr: "0000000000000000000000000000000000000000000100000000000000000001", Symbol: "aUSD", CoinGeckoId: "acala-dollar-acala", Decimals: 12, Price: 0.28254},                                // Addr: 0x0000000000000000000100000000000000000001, Notional: 115.2772313384208
+		{Chain: 13, Addr: "00000000000000000000000034d21b1e550d73cee41151c77f3c73359527a396", Symbol: "oETH", CoinGeckoId: "orbit-bridge-klaytn-ethereum", Decimals: 18, Price: 243.33},                       // Addr: 0x34d21b1e550d73cee41151c77f3c73359527a396, Notional: 0.48666000000000004
+		{Chain: 13, Addr: "0000000000000000000000005c74070fdea071359b86082bd9f9b3deaafbe32b", Symbol: "KDAI", CoinGeckoId: "klaytn-dai", Decimals: 18, Price: 0.104658},                                       // Addr: 0x5c74070fdea071359b86082bd9f9b3deaafbe32b, Notional: 0.00209316
+		{Chain: 13, Addr: "0000000000000000000000006270b58be569a7c0b8f47594f191631ae5b2c86c", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0x6270b58be569a7c0b8f47594f191631ae5b2c86c, Notional: 45558.11544507877
+		{Chain: 13, Addr: "000000000000000000000000754288077d0ff82af7a5317c7cb8c444d421d103", Symbol: "oUSDC", CoinGeckoId: "orbit-bridge-klaytn-usdc", Decimals: 6, Price: 0.316973},                         // Addr: 0x754288077d0ff82af7a5317c7cb8c444d421d103, Notional: 1.331658092356
+		{Chain: 13, Addr: "0000000000000000000000009eaefb09fe4aabfbe6b1ca316a3c36afc83a393f", Symbol: "oXRP", CoinGeckoId: "orbit-bridge-klaytn-ripple", Decimals: 6, Price: 2.3},                             // Addr: 0x9eaefb09fe4aabfbe6b1ca316a3c36afc83a393f, Notional: 0.11499999999999999
+		{Chain: 13, Addr: "000000000000000000000000c6a2ad8cc6e4a7e08fc37cc5954be07d499e7654", Symbol: "KSP", CoinGeckoId: "klayswap-protocol", Decimals: 18, Price: 0.077896},                                 // Addr: 0xc6a2ad8cc6e4a7e08fc37cc5954be07d499e7654, Notional: 0.10515960000000002
+		{Chain: 13, Addr: "000000000000000000000000cd670d77f3dcab82d43dff9bd2c4b87339fb3560", Symbol: "KOKOS", CoinGeckoId: "kokonut-swap", Decimals: 18, Price: 0.155415},                                    // Addr: 0xcd670d77f3dcab82d43dff9bd2c4b87339fb3560, Notional: 1862809.6498754409
+		{Chain: 13, Addr: "000000000000000000000000ce899f5fcf55b0c1d7478910f812cfe68c5bcf0f", Symbol: "ABC", CoinGeckoId: "angry-bulls-club", Decimals: 18, Price: 0.00138323},                                // Addr: 0xce899f5fcf55b0c1d7478910f812cfe68c5bcf0f, Notional: 1.9961951975052126
+		{Chain: 13, Addr: "000000000000000000000000cee8faf64bb97a73bb51e115aa89c17ffa8dd167", Symbol: "oUSDT", CoinGeckoId: "orbit-bridge-klaytn-usd-tether", Decimals: 6, Price: 0.134457},                   // Addr: 0xcee8faf64bb97a73bb51e115aa89c17ffa8dd167, Notional: 13.870786881155999
+		{Chain: 13, Addr: "000000000000000000000000d068c52d81f4409b9502da926ace3301cc41f623", Symbol: "MBX", CoinGeckoId: "marblex", Decimals: 18, Price: 0.196478},                                           // Addr: 0xd068c52d81f4409b9502da926ace3301cc41f623, Notional: 0.019647800000000003
+		{Chain: 13, Addr: "000000000000000000000000e4f05a66ec68b54a58b17c22107b02e0232cc817", Symbol: "WKLAY", CoinGeckoId: "wrapped-klay", Decimals: 18, Price: 0.132122},                                    // Addr: 0xe4f05a66ec68b54a58b17c22107b02e0232cc817, Notional: 2804.8693432707005
+		{Chain: 13, Addr: "000000000000000000000000e950bdcfa4d1e45472e76cf967db93dbfc51ba3e", Symbol: "KAI", CoinGeckoId: "kai-protocol", Decimals: 18, Price: 0.04369236},                                    // Addr: 0xe950bdcfa4d1e45472e76cf967db93dbfc51ba3e, Notional: 36390.40153603419
+		{Chain: 14, Addr: "00000000000000000000000000be915b9dcf56a3cbe739d9b9c202ca692409ec", Symbol: "UBE", CoinGeckoId: "ubeswap", Decimals: 18, Price: 0.00005292},                                         // Addr: 0x00be915b9dcf56a3cbe739d9b9c202ca692409ec, Notional: 0.0712940742449208
+		{Chain: 14, Addr: "0000000000000000000000002def4285787d58a2f811af24755a8150622f4361", Symbol: "cETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                              // Addr: 0x2def4285787d58a2f811af24755a8150622f4361, Notional: 1.2125067434999999
+		{Chain: 14, Addr: "00000000000000000000000046c9757c5497c5b1f2eb73ae79b6b67d119b0b58", Symbol: "PACT", CoinGeckoId: "impactmarket", Decimals: 18, Price: 3.64368e-7},                                   // Addr: 0x46c9757c5497c5b1f2eb73ae79b6b67d119b0b58, Notional: 92.8714850383918
+		{Chain: 14, Addr: "000000000000000000000000471ece3750da237f93b8e339c536989b8978a438", Symbol: "CELO", CoinGeckoId: "celo", Decimals: 18, Price: 0.325399},                                             // Addr: 0x471ece3750da237f93b8e339c536989b8978a438, Notional: 101641.10854290142
+		{Chain: 14, Addr: "00000000000000000000000048065fbbe25f71c9282ddf5e1cd6d6a887483d5e", Symbol: "USD₮", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                 // Addr: 0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e, Notional: 1.871171
+		{Chain: 14, Addr: "00000000000000000000000062b8b11039fcfe5ab0c56e502b1c372a3d2a9c7a", Symbol: "G$", CoinGeckoId: "gooddollar", Decimals: 18, Price: 0.0000901},                                        // Addr: 0x62b8b11039fcfe5ab0c56e502b1c372a3d2a9c7a, Notional: 0.0000901
+		{Chain: 14, Addr: "000000000000000000000000639a647fbe20b6c8ac19e48e2de44ea792c62c5c", Symbol: "BIFI", CoinGeckoId: "beefy-finance", Decimals: 18, Price: 145.24},                                      // Addr: 0x639a647fbe20b6c8ac19e48e2de44ea792c62c5c, Notional: 88.54954557600001
+		{Chain: 14, Addr: "00000000000000000000000074c0c58b99b68cf16a717279ac2d056a34ba2bfe", Symbol: "SOURCE", CoinGeckoId: "resource-protocol", Decimals: 18, Price: 0.00107548},                            // Addr: 0x74c0c58b99b68cf16a717279ac2d056a34ba2bfe, Notional: 0.004624563999999999
+		{Chain: 14, Addr: "000000000000000000000000765de816845861e75a25fca122bb6898b8b1282a", Symbol: "cUSD", CoinGeckoId: "celo-dollar", Decimals: 18, Price: 1},                                             // Addr: 0x765de816845861e75a25fca122bb6898b8b1282a, Notional: 474.7896842
+		{Chain: 14, Addr: "000000000000000000000000c16b81af351ba9e64c1a069e3ab18c244a1e3049", Symbol: "agEUR", CoinGeckoId: "ageur", Decimals: 18, Price: 1.14},                                               // Addr: 0xc16b81af351ba9e64c1a069e3ab18c244a1e3049, Notional: 85.97733333299999
+		{Chain: 14, Addr: "000000000000000000000000ceba9300f2b948710d2653dd7b07f33a8b32118c", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0xceba9300f2b948710d2653dd7b07f33a8b32118c, Notional: 16.16609359512
+		{Chain: 14, Addr: "000000000000000000000000d629eb00deced2a080b7ec630ef6ac117e614f1b", Symbol: "BTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 18, Price: 108818},                                     // Addr: 0xd629eb00deced2a080b7ec630ef6ac117e614f1b, Notional: 14.037522
+		{Chain: 14, Addr: "000000000000000000000000d8763cba276a3738e6de85b4b3bf5fded6d6ca73", Symbol: "cEUR", CoinGeckoId: "celo-euro", Decimals: 18, Price: 1.14},                                            // Addr: 0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73, Notional: 2071.4687673768
+		{Chain: 14, Addr: "000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                        // Addr: 0xeb466342c4d449bc9f53a865d5cb90586f405215, Notional: 0.226883973495
+		{Chain: 15, Addr: "152fd354c086478f67c36eaa07d209631825c097490fbdb38b2a9876039be6e0", Symbol: "PURGE", CoinGeckoId: "forgive-me-father", Decimals: 18, Price: 0.00631378},                             // Addr: purge-558.meme-cooking.near, Notional: 7.92299797857942
+		{Chain: 15, Addr: "67499b7b8f58eaeb3cd81aea1d1ce9f7f722fd7750ceb2bed13e255073c25e2a", Symbol: "SWEAT", CoinGeckoId: "sweatcoin", Decimals: 18, Price: 0.00305004},                                     // Addr: token.sweat, Notional: 3357076.2274749624
+		{Chain: 15, Addr: "7cfae19928f9a3b68d342084a420284cb9a7984f52504300acb4e6f7f569393b", Symbol: "SHITZU", CoinGeckoId: "shitzu", Decimals: 18, Price: 0.00192153},                                       // Addr: token.0xshitzu.near, Notional: 0.00576459
+		{Chain: 15, Addr: "95a38d5f6bda0f5e212cd90fd5ae1f40b3a44a1de54df58fb501266cdfc8af7b", Symbol: "WALC", CoinGeckoId: "walc", Decimals: 24, Price: 0.00519835},                                           // Addr: walc.near, Notional: 1559.505
+		{Chain: 15, Addr: "9bef49ce5caa641ff4455e44855fe85a80fb71aecf70b59fc54164b309304e66", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1, Notional: 5.298335529795
+		{Chain: 15, Addr: "b2b94adfe162631bd59009afb38dfecb30e266e9e54f7a373f8a7ca8f9282011", Symbol: "FAST", CoinGeckoId: "edge-video-ai", Decimals: 24, Price: 0.00275298},                                  // Addr: edge-fast.near, Notional: 0.00550596
+		{Chain: 15, Addr: "b55c490bafb82aeb4b950fa479341c1b5fbfa814f8253b6acdf8426b7cd9d3c0", Symbol: "wNEAR", CoinGeckoId: "wrapped-near", Decimals: 24, Price: 2.47},                                        // Addr: wrap.near, Notional: 201.4293257457
+		{Chain: 15, Addr: "d1d057c9a9a579e4f31531ae77c9a91c0d7622df1d69707aa198a7212a2f5fa5", Symbol: "ASI", CoinGeckoId: "sender-ai", Decimals: 18, Price: 0.00463993},                                       // Addr: token.sendertge.near, Notional: 0.9358738809999999
+		{Chain: 15, Addr: "f2cc590922eb9d32267bd416a259c2944789f9eb1a6584f4b7149e0f820a237b", Symbol: "SOL", CoinGeckoId: "wrapped-solana", Decimals: 24, Price: 156.53},                                      // Addr: sol.token.a11bd.near, Notional: 27.241188262199998
+		{Chain: 16, Addr: "00000000000000000000000030d2a9f5fdf90ace8c17952cbb4ee48a55d916a7", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                              // Addr: 0x30d2a9f5fdf90ace8c17952cbb4ee48a55d916a7, Notional: 1808.519979695
+		{Chain: 16, Addr: "000000000000000000000000322e86852e492a7ee17f28a78c663da38fb33bfb", Symbol: "FRAX", CoinGeckoId: "frax", Decimals: 18, Price: 0.999384},                                             // Addr: 0x322e86852e492a7ee17f28a78c663da38fb33bfb, Notional: 5.00691384
+		{Chain: 16, Addr: "0000000000000000000000003405a1bd46b85c5c029483fbecf2f3e611026e45", Symbol: "MATIC", CoinGeckoId: "matic-network", Decimals: 18, Price: 0.213435},                                   // Addr: 0x3405a1bd46b85c5c029483fbecf2f3e611026e45, Notional: 33.44738789224711
+		{Chain: 16, Addr: "0000000000000000000000004792c1ecb969b036eb51330c63bd27899a13d84e", Symbol: "AVAX", CoinGeckoId: "wrapped-avax", Decimals: 18, Price: 21.28},                                        // Addr: 0x4792c1ecb969b036eb51330c63bd27899a13d84e, Notional: 420.5115032048
+		{Chain: 16, Addr: "000000000000000000000000511ab53f793683763e5a8829738301368a2411e3", Symbol: "WELL", CoinGeckoId: "moonwell-artemis", Decimals: 18, Price: 0.0325245},                                // Addr: 0x511ab53f793683763e5a8829738301368a2411e3, Notional: 2209109.573281743
+		{Chain: 16, Addr: "000000000000000000000000765277eebeca2e31912c9946eae1021199b39c61", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                               // Addr: 0x765277eebeca2e31912c9946eae1021199b39c61, Notional: 23.990232
+		{Chain: 16, Addr: "000000000000000000000000818ec0a7fe18ff94269904fced6ae3dae6d6dc0b", Symbol: "USDC", CoinGeckoId: "multichain-bridged-usdc-moonbeam", Decimals: 6, Price: 0.055248},                  // Addr: 0x818ec0a7fe18ff94269904fced6ae3dae6d6dc0b, Notional: 64.8822484488
+		{Chain: 16, Addr: "0000000000000000000000008f552a71efe5eefc207bf75485b356a0b3f01ec9", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0x8f552a71efe5eefc207bf75485b356a0b3f01ec9, Notional: 1034.738746994925
+		{Chain: 16, Addr: "000000000000000000000000922d641a426dcffaef11680e5358f34d97d112e1", Symbol: "WBTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                     // Addr: 0x922d641a426dcffaef11680e5358f34d97d112e1, Notional: 1396.7824071
+		{Chain: 16, Addr: "000000000000000000000000a423e7eeb60547d9c7b65005477b63ae7ce67e62", Symbol: "EFT", CoinGeckoId: "energyfi", Decimals: 18, Price: 0.00021998},                                        // Addr: 0xa423e7eeb60547d9c7b65005477b63ae7ce67e62, Notional: 5.499499999999999
+		{Chain: 16, Addr: "000000000000000000000000a649325aa7c5093d12d6f98eb4378deae68ce23f", Symbol: "BUSD", CoinGeckoId: "binance-usd", Decimals: 18, Price: 0.992597},                                      // Addr: 0xa649325aa7c5093d12d6f98eb4378deae68ce23f, Notional: 2993.0067326228354
+		{Chain: 16, Addr: "000000000000000000000000acc15dc74880c9944775448304b263d191c6077f", Symbol: "WGLMR", CoinGeckoId: "wrapped-moonbeam", Decimals: 18, Price: 0.085134},                                // Addr: 0xacc15dc74880c9944775448304b263d191c6077f, Notional: 5420.163726285476
+		{Chain: 16, Addr: "000000000000000000000000ca01a1d0993565291051daff390892518acfad3a", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                        // Addr: 0xca01a1d0993565291051daff390892518acfad3a, Notional: 17.00392743
+		{Chain: 16, Addr: "000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58", Symbol: "GLINT", CoinGeckoId: "beamswap", Decimals: 18, Price: 0.000097},                                        // Addr: 0xcd3b51d98478d53f4515a306be565c6eebef1d58, Notional: 0.002425
+		{Chain: 16, Addr: "000000000000000000000000ecf2adaff1de8a512f6e8bfe67a2c836edb25da3", Symbol: "xcRMRK", CoinGeckoId: "rmrk", Decimals: 10, Price: 0.093246},                                           // Addr: 0xecf2adaff1de8a512f6e8bfe67a2c836edb25da3, Notional: 0.056036611699139996
+		{Chain: 16, Addr: "000000000000000000000000efaeee334f0fd1712f9a8cc375f427d9cdd40d73", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                   // Addr: 0xefaeee334f0fd1712f9a8cc375f427d9cdd40d73, Notional: 561.934496
+		{Chain: 16, Addr: "000000000000000000000000fa9343c3897324496a05fc75abed6bac29f8a40f", Symbol: "ETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                               // Addr: 0xfa9343c3897324496a05fc75abed6bac29f8a40f, Notional: 2298.7839595825
+		{Chain: 16, Addr: "000000000000000000000000ffffffff1fcacbd218edc0eba20fc2308c778080", Symbol: "xcDOT", CoinGeckoId: "xcdot", Decimals: 10, Price: 4.08},                                               // Addr: 0xffffffff1fcacbd218edc0eba20fc2308c778080, Notional: 188.7739488576
+		{Chain: 16, Addr: "000000000000000000000000ffffffff52c56a9257bb97f4b2b6f7b2d624ecda", Symbol: "xcaUSD", CoinGeckoId: "acala-dollar-acala", Decimals: 12, Price: 0.28254},                              // Addr: 0xffffffff52c56a9257bb97f4b2b6f7b2d624ecda, Notional: 9.7805951538966
+		{Chain: 16, Addr: "000000000000000000000000ffffffffea09fb06d082fd1275cd48b191cbcd1d", Symbol: "xcUSDT", CoinGeckoId: "xcusdt", Decimals: 6, Price: 1},                                                 // Addr: 0xffffffffea09fb06d082fd1275cd48b191cbcd1d, Notional: 45.797239
+		{Chain: 18, Addr: "00e079a77f9591f05ef4c2208aff66d85b83afe8db60b398acc7b1277c58887e", Symbol: "LunaX", CoinGeckoId: "lunax", Decimals: 6, Price: 1.056},                                               // Addr: terra14xsm2wzvu7xaf567r693vgfkhmvfs08l68h4tjj5wjgyn5ky8e2qvzyanh, Notional: 1.016810784
+		{Chain: 18, Addr: "01fa6c6fbc36d8c245b0a852a43eb5d644e8b4c477b27bfab9537c10945939da", Symbol: "LUNA", CoinGeckoId: "terra-luna-2", Decimals: 6, Price: 0.173261},                                      // Addr: uluna, Notional: 370.45893045786903
+		{Chain: 19, Addr: "017038850bf3af746c36803cce35009268f00d22ae2b55ffb59ac5f2a6add40b", Symbol: "INJ", CoinGeckoId: "injective-protocol", Decimals: 18, Price: 13.61},                                   // Addr: inj, Notional: 2057.2535204238998
+		{Chain: 21, Addr: "01087411ef48aaac1eb6e24803213e3a60a03b147dac930e5e341f17a85e524e", Symbol: "FUD", CoinGeckoId: "fud-the-pug", Decimals: 5, Price: 5.7568e-8},                                       // Addr: 0x76cb819b01abed502bee8a702b4c2d547532c12f25001c9dea795a5e631c26f1::fud::FUD, Notional: 0.000011513600000000001
+		{Chain: 21, Addr: "3e50a0a576877092bfaa4f8e4ec8cd7dd0a4a281bec3f806583949cf7873d07b", Symbol: "SUIP", CoinGeckoId: "suipad", Decimals: 9, Price: 0.02943876},                                          // Addr: 0xe4239cd951f6c53d9c41e25270d80d31f925ad1655e5ba5b543843d4a66975ee::SUIP::SUIP, Notional: 28613.88824503019
+		{Chain: 21, Addr: "4c0dce55eff2db5419bbd2d239d1aa22b4a400c01bbb648b058a9883989025da", Symbol: "CETUS", CoinGeckoId: "cetus-protocol", Decimals: 9, Price: 0.117955},                                   // Addr: 0x6864a6f921804860930db6ddbe2e16acdf8504495ea7481637a1c8b9a8fe54b::cetus::CETUS, Notional: 0.0000013777144
+		{Chain: 21, Addr: "5075594c01d46f3bcbc4a7ef1462058273bece7793eebd0464963597c9fd0935", Symbol: "SPT", CoinGeckoId: "seapad", Decimals: 9, Price: 0.02330372},                                           // Addr: 0xb779486cfd6c19e9218cc7dc17c453014d2d9ba12d2ee4dbb0ec4e1e02ae1cca::spt::SPT, Notional: 3.40791270908
+		{Chain: 21, Addr: "5d26a1e9a55c88147ac870bfa31b729d7f49f8804b8b3adfdf3582d301cca844", Symbol: "SCA", CoinGeckoId: "scallop-2", Decimals: 9, Price: 0.124342},                                          // Addr: 0x7016aae72cfc67f2fadf55769c0a7dd54291a583b63051a5ed71081cce836ac6::sca::SCA, Notional: 18477.55354742766
+		{Chain: 21, Addr: "9258181f5ceac8dbffb7030890243caed69a9599d2886d957a9cb7656af3bdb3", Symbol: "SUI", CoinGeckoId: "sui", Decimals: 9, Price: 3.39},                                                    // Addr: 0x2::sui::SUI, Notional: 523889.57498454844
+		{Chain: 21, Addr: "95a4518ae9e019c757df6703dce9ea5ecac8b319b9afed3a44c4d50363a66b42", Symbol: "TURBOS", CoinGeckoId: "turbos-finance", Decimals: 9, Price: 0.00182762},                                // Addr: 0x5d1f47ea69bb0de31c313d7acf89b890dbb8991ea8e03c6c355171f84bb1ba4a::turbos::TURBOS, Notional: 97073.7997762407
+		{Chain: 22, Addr: "0cb75f840d0b043dda136e86fb2b01415a873169531ad5be0df923c12864d9bd", Symbol: "Cake", CoinGeckoId: "pancakeswap-token", Decimals: 8, Price: 2.41},                                     // Addr: 0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT, Notional: 175.08376539710002
+		{Chain: 22, Addr: "0d080af8d4c0959b482427505b893d59abca4d1c9670de1a1fe02dc9d7c66728", Symbol: "tAPT", CoinGeckoId: "tortuga-staked-aptos", Decimals: 8, Price: 20.5},                                  // Addr: 0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin, Notional: 45.0690655
+		{Chain: 22, Addr: "2603e2b07403ec1ff0315cbbeffac190f08a85dd61157c503c8f88efb2a7e123", Symbol: "MOVE", CoinGeckoId: "bluemove", Decimals: 8, Price: 0.0163188},                                         // Addr: 0x27fafcc4e39daac97556af8a803dbb52bcb03f0821898dc845ac54225b9793eb::move_coin::MoveCoin, Notional: 36.84435155936342
+		{Chain: 22, Addr: "5a03e1706af81b4176d7a25ec23b7ce4098f79082daf20e312d4bf6e52d2e195", Symbol: "SLT", CoinGeckoId: "sui-launch-token", Decimals: 8, Price: 0.00000593},                                 // Addr: 0x8b2df69c9766e18486c37e3cfc53c6ce6e9aa58bbc606a8a0a219f24cf9eafc1::sui_launch_token::SuiLaunchToken, Notional: 0.19020295196120132
+		{Chain: 22, Addr: "6155e0a106aeb3b0944388613027aee11c84921969ff775727e8046b17b17154", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC, Notional: 17620.33759254783
+		{Chain: 22, Addr: "61f76dbc4bdb1add1afecc1f726638bc9b5b2ac42b62f8d598b27431e5c82b7c", Symbol: "GUI", CoinGeckoId: "gui-inu", Decimals: 6, Price: 0.00000552},                                          // Addr: 0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002, Notional: 5.37614347048416
+		{Chain: 22, Addr: "69e4491bcf06bae41346240afbdab99cdbe40b38d2bb22eb1cf9b4a4d9e635f8", Symbol: "MBX", CoinGeckoId: "marblex", Decimals: 8, Price: 0.196478},                                            // Addr: 0x665d06fcd9c94430099f82973f2a5e5f13142e42fa172e72ce14f51a64bd8ad9::coin_mbx::MBX, Notional: 0.04925423871806
+		{Chain: 22, Addr: "8604102ac84987cb6d5e3ba0bce7530f2d9036b80752dce5202227221787957a", Symbol: "APC", CoinGeckoId: "apass-coin", Decimals: 8, Price: 0.00556475},                                       // Addr: 0x777821c78442e17d82c3d7a371f42de7189e4248e529fe6eee6bca40ddbb::apcoin::ApCoin, Notional: 0.013911875
+		{Chain: 22, Addr: "93601512902fe46ad6c51440c23a1a7e166c4b60e773579eda639c113a81325a", Symbol: "USDT", CoinGeckoId: "layerzero-bridged-usdt-aptos", Decimals: 6, Price: 0.999419},                      // Addr: 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT, Notional: 7301.190736152285
+		{Chain: 22, Addr: "a4b99ea559e3faeb5ddaf5bf39101894d0ce210d5e79306034d031cb6ac79693", Symbol: "MAU", CoinGeckoId: "mau", Decimals: 8, Price: 0.0000304},                                               // Addr: 0x83b619e2d9e6e10d15ed4b714111a4cd9526c1c2ae0eec4b252a619d3e8bdda3::MAU::MAU, Notional: 0.000608
+		{Chain: 22, Addr: "a867703f5395cb2965feb7ebff5cdf39b771fc6156085da3ae4147a00be91b38", Symbol: "APT", CoinGeckoId: "aptos", Decimals: 8, Price: 4.86},                                                  // Addr: 0x1::aptos_coin::AptosCoin, Notional: 118502.17197724081
+		{Chain: 22, Addr: "b029b48ea7d6c38a48a0400a156544700a9fc7ac9b82a18a3e644326177996be", Symbol: "MOD", CoinGeckoId: "move-dollar", Decimals: 8, Price: 0.996581},                                        // Addr: 0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD, Notional: 1.03644424
+		{Chain: 22, Addr: "b848656c196bccfa7b9708992b6af7714afce6a56e4689da5aed63b14e99757b", Symbol: "WETH", CoinGeckoId: "layerzero-bridged-weth-aptos", Decimals: 6, Price: 2594.24},                       // Addr: 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH, Notional: 22520.625976639996
+		{Chain: 22, Addr: "c0ef1c9f58413f5fce5cf859b363b291eb43995b9e790da04afe15772f502fbf", Symbol: "ANI", CoinGeckoId: "animeswap", Decimals: 8, Price: 0.00023862},                                        // Addr: 0x16fe2df00ea7dde4a63409201f7f4e536bde7bb7335526a35d05111e68aa322c::AnimeCoin::ANI, Notional: 0.4120218959827404
+		{Chain: 22, Addr: "d64be880bc9b995c0028588e916e21e7e796ae5cf32cac551edeaf95f2f9fdbd", Symbol: "doodoo", CoinGeckoId: "doodoo", Decimals: 8, Price: 0.128434},                                          // Addr: 0x73eb84966be67e4697fc5ae75173ca6c35089e802650f75422ab49a8729704ec::coin::DooDoo, Notional: 626632.5372073188
+		{Chain: 22, Addr: "eb1cbad587018a828b7e2d49456ed3e96d01baa8f7590723c558fecdfdffe842", Symbol: "ALT", CoinGeckoId: "aptos-launch-token", Decimals: 8, Price: 0.0035765},                                // Addr: 0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::aptos_launch_token::AptosLaunchToken, Notional: 0.0464960200125
+		{Chain: 22, Addr: "ec43792d3639b37cfcf7a3381d4fd71e2a7c75e708a518970eb0d475a03097cf", Symbol: "BNB", CoinGeckoId: "wrapped-bnb-celer", Decimals: 8, Price: 562.95},                                    // Addr: 0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin, Notional: 28.358555584500003
+		{Chain: 22, Addr: "f7835a613217e1b032007d111c9d34db23cf5f976e27e1afda8b97c3e35df17b", Symbol: "WETH", CoinGeckoId: "wrapped-ether-celer", Decimals: 8, Price: 1964.46},                                // Addr: 0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin, Notional: 60.2505186042
+		{Chain: 23, Addr: "00000000000000000000000009090e22118b375f2c7b95420c04414e4bf68e1a", Symbol: "BELA", CoinGeckoId: "beluga-protocol", Decimals: 18, Price: 0.00000558},                                // Addr: 0x09090e22118b375f2c7b95420c04414e4bf68e1a, Notional: 0.000558
+		{Chain: 23, Addr: "00000000000000000000000009e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b", Symbol: "AIDOGE", CoinGeckoId: "arbdoge-ai", Decimals: 6, Price: 1.26043e-10},                                   // Addr: 0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b, Notional: 1.26043e-7
+		{Chain: 23, Addr: "00000000000000000000000009fd3d6e6889940ca1158b9221309bd69fafa32b", Symbol: "DROP", CoinGeckoId: "droparb", Decimals: 18, Price: 1.9741e-11},                                        // Addr: 0x09fd3d6e6889940ca1158b9221309bd69fafa32b, Notional: 0.02516034467347783
+		{Chain: 23, Addr: "0000000000000000000000000c880f6761f1af8d9aa9c466984b80dab9a8c9e8", Symbol: "PENDLE", CoinGeckoId: "pendle", Decimals: 18, Price: 4.24},                                             // Addr: 0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8, Notional: 25.44
+		{Chain: 23, Addr: "00000000000000000000000010393c20975cf177a3513071bc110f7962cd67da", Symbol: "JONES", CoinGeckoId: "jones-dao", Decimals: 18, Price: 0.094007},                                       // Addr: 0x10393c20975cf177a3513071bc110f7962cd67da, Notional: 0.00088381151085
+		{Chain: 23, Addr: "00000000000000000000000013a7dedb7169a17be92b0e3c7c2315b46f4772b3", Symbol: "Boop", CoinGeckoId: "boop-2", Decimals: 18, Price: 0.0000269},                                          // Addr: 0x13a7dedb7169a17be92b0e3c7c2315b46f4772b3, Notional: 27887.419916502728
+		{Chain: 23, Addr: "00000000000000000000000016f1967565aad72dd77588a332ce445e7cef752b", Symbol: "CAW", CoinGeckoId: "crow-with-knife", Decimals: 0, Price: 2.0024e-8},                                   // Addr: 0x16f1967565aad72dd77588a332ce445e7cef752b, Notional: 136043.07336993894
+		{Chain: 23, Addr: "00000000000000000000000018c11fd286c5ec11c3b683caa813b77f5163a122", Symbol: "GNS", CoinGeckoId: "gains-network", Decimals: 18, Price: 1.19},                                         // Addr: 0x18c11fd286c5ec11c3b683caa813b77f5163a122, Notional: 0.38661500639999996
+		{Chain: 23, Addr: "000000000000000000000000191c10aa4af7c30e871e70c95db0e4eb77237530", Symbol: "aArbLINK", CoinGeckoId: "aave-v3-link", Decimals: 18, Price: 14.04},                                    // Addr: 0x191c10aa4af7c30e871e70c95db0e4eb77237530, Notional: 1.2543824592
+		{Chain: 23, Addr: "0000000000000000000000001b896893dfc86bb67cf57767298b9073d2c1ba2c", Symbol: "Cake", CoinGeckoId: "pancakeswap-token", Decimals: 18, Price: 2.41},                                    // Addr: 0x1b896893dfc86bb67cf57767298b9073d2c1ba2c, Notional: 8.120607788000001
+		{Chain: 23, Addr: "0000000000000000000000002297aebd383787a160dd0d9f71508148769342e3", Symbol: "BTC.b", CoinGeckoId: "bitcoin-avalanche-bridged-btc-b", Decimals: 8, Price: 108678},                    // Addr: 0x2297aebd383787a160dd0d9f71508148769342e3, Notional: 780.5362638
+		{Chain: 23, Addr: "00000000000000000000000024ef78c7092d255ed14a0281ac1800c359af3afe", Symbol: "RAB", CoinGeckoId: "rabbit-wallet", Decimals: 18, Price: 0.00188675},                                   // Addr: 0x24ef78c7092d255ed14a0281ac1800c359af3afe, Notional: 0.0188675
+		{Chain: 23, Addr: "0000000000000000000000002598c30330d5771ae9f983979209486ae26de875", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.0000023},                                           // Addr: 0x2598c30330d5771ae9f983979209486ae26de875, Notional: 1.6234256100425029
+		{Chain: 23, Addr: "00000000000000000000000025d887ce7a35172c62febfd67a1856f20faebb00", Symbol: "PEPE", CoinGeckoId: "pepe", Decimals: 18, Price: 0.00001198},                                           // Addr: 0x25d887ce7a35172c62febfd67a1856f20faebb00, Notional: 0.00001198
+		{Chain: 23, Addr: "000000000000000000000000289ba1701c2f088cf0faf8b3705246331cb8a839", Symbol: "LPT", CoinGeckoId: "livepeer", Decimals: 18, Price: 7.7},                                               // Addr: 0x289ba1701c2f088cf0faf8b3705246331cb8a839, Notional: 1139.100982866
+		{Chain: 23, Addr: "0000000000000000000000002f2a2543b76a4166549f7aab2e75bef0aefc5b0f", Symbol: "WBTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                     // Addr: 0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f, Notional: 977.69382006
+		{Chain: 23, Addr: "0000000000000000000000003082cc23568ea640225c2467653db90e9250aaa0", Symbol: "RDNT", CoinGeckoId: "radiant-capital", Decimals: 18, Price: 0.02413825},                                // Addr: 0x3082cc23568ea640225c2467653db90e9250aaa0, Notional: 0.17118846899999998
+		{Chain: 23, Addr: "0000000000000000000000003269a3c00ab86c753856fd135d97b87facb0d848", Symbol: "FFM", CoinGeckoId: "florence-finance-medici", Decimals: 18, Price: 0.00076227},                         // Addr: 0x3269a3c00ab86c753856fd135d97b87facb0d848, Notional: 19457.53998015928
+		{Chain: 23, Addr: "000000000000000000000000371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", Symbol: "JOE", CoinGeckoId: "joe", Decimals: 18, Price: 0.161424},                                               // Addr: 0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07, Notional: 303.8376471542352
+		{Chain: 23, Addr: "0000000000000000000000003b475f6f2f41853706afc9fa6a6b8c5df1a2724c", Symbol: "ZYB", CoinGeckoId: "zyberswap", Decimals: 18, Price: 0.00160351},                                       // Addr: 0x3b475f6f2f41853706afc9fa6a6b8c5df1a2724c, Notional: 0.00801755
+		{Chain: 23, Addr: "0000000000000000000000004186bfc76e2e237523cbc30fd220fe055156b41f", Symbol: "rsETH", CoinGeckoId: "kelpdao-bridged-rseth-arbitrum", Decimals: 18, Price: 2704.28},                   // Addr: 0x4186bfc76e2e237523cbc30fd220fe055156b41f, Notional: 0.1690445428
+		{Chain: 23, Addr: "00000000000000000000000042069d11a2cc72388a2e06210921e839cfbd3280", Symbol: "GNOME", CoinGeckoId: "gnomeland", Decimals: 18, Price: 0.00016284},                                     // Addr: 0x42069d11a2cc72388a2e06210921e839cfbd3280, Notional: 0.0016284000000000001
+		{Chain: 23, Addr: "0000000000000000000000004425742f1ec8d98779690b5a3a6276db85ddc01a", Symbol: "DOG", CoinGeckoId: "the-doge-nft", Decimals: 18, Price: 0.00109697},                                    // Addr: 0x4425742f1ec8d98779690b5a3a6276db85ddc01a, Notional: 0.22473301483716862
+		{Chain: 23, Addr: "00000000000000000000000046f74778b265df3a15ec9695ccd2fd3869ca848c", Symbol: "ANKR", CoinGeckoId: "ankr", Decimals: 18, Price: 0.01626111},                                           // Addr: 0x46f74778b265df3a15ec9695ccd2fd3869ca848c, Notional: 2552.9783310969024
+		{Chain: 23, Addr: "0000000000000000000000004d15a3a2286d883af0aa1b3f21367843fac63e07", Symbol: "TUSD", CoinGeckoId: "true-usd", Decimals: 18, Price: 0.998935},                                         // Addr: 0x4d15a3a2286d883af0aa1b3f21367843fac63e07, Notional: 11.98722
+		{Chain: 23, Addr: "000000000000000000000000509fd25ee2ac7833a017f17ee8a6fb4aaf947876", Symbol: "mWOM", CoinGeckoId: "magpie-wom", Decimals: 18, Price: 0.00270813},                                     // Addr: 0x509fd25ee2ac7833a017f17ee8a6fb4aaf947876, Notional: 0.029389126139172002
+		{Chain: 23, Addr: "00000000000000000000000051318b7d00db7acc4026c88c3952b66278b6a67f", Symbol: "PLS", CoinGeckoId: "plutusdao", Decimals: 18, Price: 0.01775226},                                       // Addr: 0x51318b7d00db7acc4026c88c3952b66278b6a67f, Notional: 0.0015220198348967998
+		{Chain: 23, Addr: "00000000000000000000000051b902f19a56f0c8e409a34a215ad2673edf3284", Symbol: "NFTE", CoinGeckoId: "nftearth", Decimals: 18, Price: 0.00001511},                                       // Addr: 0x51b902f19a56f0c8e409a34a215ad2673edf3284, Notional: 0.0060553617661057
+		{Chain: 23, Addr: "00000000000000000000000051fc0f6660482ea73330e414efd7808811a57fa2", Symbol: "PREMIA", CoinGeckoId: "premia", Decimals: 18, Price: 0.10843},                                          // Addr: 0x51fc0f6660482ea73330e414efd7808811a57fa2, Notional: 0.5095227103736
+		{Chain: 23, Addr: "000000000000000000000000539bde0d7dbd336b79148aa742883198bbf60342", Symbol: "MAGIC", CoinGeckoId: "magic", Decimals: 18, Price: 0.131669},                                           // Addr: 0x539bde0d7dbd336b79148aa742883198bbf60342, Notional: 1.96489817367989
+		{Chain: 23, Addr: "00000000000000000000000057f12fe6a4e5fe819eec699fadf9db2d06606bb4", Symbol: "NPM", CoinGeckoId: "neptune-mutual", Decimals: 18, Price: 0.04894073},                                  // Addr: 0x57f12fe6a4e5fe819eec699fadf9db2d06606bb4, Notional: 0.04894073
+		{Chain: 23, Addr: "000000000000000000000000580e933d90091b9ce380740e3a4a39c67eb85b4c", Symbol: "GSWIFT", CoinGeckoId: "gameswift", Decimals: 18, Price: 0.01000533},                                    // Addr: 0x580e933d90091b9ce380740e3a4a39c67eb85b4c, Notional: 0.05002665
+		{Chain: 23, Addr: "0000000000000000000000005979d7b546e38e414f7e9822514be443a4800529", Symbol: "wstETH", CoinGeckoId: "wrapped-steth", Decimals: 18, Price: 3114.69},                                   // Addr: 0x5979d7b546e38e414f7e9822514be443a4800529, Notional: 59.3218562427
+		{Chain: 23, Addr: "000000000000000000000000625e7708f30ca75bfd92586e17077590c60eb4cd", Symbol: "aArbUSDC", CoinGeckoId: "aave-usdc", Decimals: 6, Price: 1.002},                                        // Addr: 0x625e7708f30ca75bfd92586e17077590c60eb4cd, Notional: 0.01002
+		{Chain: 23, Addr: "0000000000000000000000006694340fc020c5e6b96567843da2df01b2ce1eb6", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                  // Addr: 0x6694340fc020c5e6b96567843da2df01b2ce1eb6, Notional: 24.614109578492158
+		{Chain: 23, Addr: "00000000000000000000000068ead55c258d6fa5e46d67fc90f53211eab885be", Symbol: "POP", CoinGeckoId: "popcorn", Decimals: 18, Price: 0.0191736},                                          // Addr: 0x68ead55c258d6fa5e46d67fc90f53211eab885be, Notional: 2.001330996136056
+		{Chain: 23, Addr: "0000000000000000000000006c2c06790b3e3e3c38e12ee22f8183b37a13ee55", Symbol: "DPX", CoinGeckoId: "dopex", Decimals: 18, Price: 3.84},                                                 // Addr: 0x6c2c06790b3e3e3c38e12ee22f8183b37a13ee55, Notional: 0.000428352
+		{Chain: 23, Addr: "0000000000000000000000006c84a8f1c29108f47a79964b5fe888d4f4d0de40", Symbol: "tBTC", CoinGeckoId: "tbtc", Decimals: 18, Price: 108503},                                               // Addr: 0x6c84a8f1c29108f47a79964b5fe888d4f4d0de40, Notional: 185.00412518
+		{Chain: 23, Addr: "0000000000000000000000006fd58f5a2f3468e35feb098b5f59f04157002407", Symbol: "pogai", CoinGeckoId: "pogai", Decimals: 18, Price: 0.00000926},                                         // Addr: 0x6fd58f5a2f3468e35feb098b5f59f04157002407, Notional: 0.06204199999999999
+		{Chain: 23, Addr: "0000000000000000000000007f7d7806f4eb90d63b0b278daf32a2db2c2001bd", Symbol: "BONUS", CoinGeckoId: "bonusblock", Decimals: 18, Price: 0.00117107},                                    // Addr: 0x7f7d7806f4eb90d63b0b278daf32a2db2c2001bd, Notional: 154.21842816487927
+		{Chain: 23, Addr: "00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                              // Addr: 0x82af49447d8a07e3bd95bd0d56f35241523fbab1, Notional: 250062.371243087
+		{Chain: 23, Addr: "000000000000000000000000847503fbf003ce8b005546aa3c03b80b7c2f9771", Symbol: "BYTE", CoinGeckoId: "byte", Decimals: 9, Price: 0.00000303},                                            // Addr: 0x847503fbf003ce8b005546aa3c03b80b7c2f9771, Notional: 106.80279573751653
+		{Chain: 23, Addr: "00000000000000000000000088266f9eb705f5282a2507a9c418821a2ac9f8bd", Symbol: "NCASH", CoinGeckoId: "nutcash", Decimals: 18, Price: 0.00718537},                                       // Addr: 0x88266f9eb705f5282a2507a9c418821a2ac9f8bd, Notional: 7731.349137853293
+		{Chain: 23, Addr: "000000000000000000000000894134a25a5fac1c2c26f1d8fbf05111a3cb9487", Symbol: "GRAI", CoinGeckoId: "grai", Decimals: 18, Price: 1.011},                                                // Addr: 0x894134a25a5fac1c2c26f1d8fbf05111a3cb9487, Notional: 0.30329999999999996
+		{Chain: 23, Addr: "000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548", Symbol: "ARB", CoinGeckoId: "arbitrum", Decimals: 18, Price: 0.354061},                                          // Addr: 0x912ce59144191c1204e64559fe8253a0e49e6548, Notional: 24155.80626707179
+		{Chain: 23, Addr: "000000000000000000000000921f99719eb6c01b4b8f0ba7973a7c24891e740a", Symbol: "XCAD", CoinGeckoId: "xcad-network", Decimals: 18, Price: 0.03980405},                                   // Addr: 0x921f99719eb6c01b4b8f0ba7973a7c24891e740a, Notional: 3.2782827345506806
+		{Chain: 23, Addr: "0000000000000000000000009623063377ad1b27544c965ccd7342f7ea7e88c7", Symbol: "GRT", CoinGeckoId: "the-graph", Decimals: 18, Price: 0.094888},                                         // Addr: 0x9623063377ad1b27544c965ccd7342f7ea7e88c7, Notional: 105.9533016884404
+		{Chain: 23, Addr: "00000000000000000000000099c409e5f62e4bd2ac142f17cafb6810b8f0baae", Symbol: "BIFI", CoinGeckoId: "beefy-finance", Decimals: 18, Price: 145.24},                                      // Addr: 0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae, Notional: 405.9175057956
+		{Chain: 23, Addr: "0000000000000000000000009d2f299715d94d8a7e6f5eaa8e654e8c74a988a7", Symbol: "FXS", CoinGeckoId: "frax-share", Decimals: 18, Price: 2.75},                                            // Addr: 0x9d2f299715d94d8a7e6f5eaa8e654e8c74a988a7, Notional: 6.9195799475
+		{Chain: 23, Addr: "0000000000000000000000009dce8e754913d928eb39bc4fc3cf047e364f7f2c", Symbol: "BLOK", CoinGeckoId: "bloktopia", Decimals: 18, Price: 0.00029531},                                      // Addr: 0x9dce8e754913d928eb39bc4fc3cf047e364f7f2c, Notional: 1.57488823
+		{Chain: 23, Addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", Symbol: "OMNI", CoinGeckoId: "omnicat", Decimals: 18, Price: 0.00001466},                                        // Addr: 0x9e20461bc2c4c980f62f1b279d71734207a6a356, Notional: 15.548360873310925
+		{Chain: 23, Addr: "000000000000000000000000a684cd057951541187f288294a1e1c2646aa2d24", Symbol: "VSTA", CoinGeckoId: "vesta-finance", Decimals: 18, Price: 0.03095485},                                  // Addr: 0xa684cd057951541187f288294a1e1c2646aa2d24, Notional: 0.001664483763999
+		{Chain: 23, Addr: "000000000000000000000000aa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30", Symbol: "$SHARBI", CoinGeckoId: "sharbi", Decimals: 9, Price: 0.00000442},                                       // Addr: 0xaa54e84a3e6e5a80288d2c2f8e36ea5ca3a3ca30, Notional: 0.000012155
+		{Chain: 23, Addr: "000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0xaf88d065e77c8cc2239327c5edb3a432268e5831, Notional: 564272.1160175034
+		{Chain: 23, Addr: "000000000000000000000000b0ffa8000886e57f86dd5264b9582b2ad87b2b91", Symbol: "W", CoinGeckoId: "wormhole", Decimals: 18, Price: 0.074222},                                            // Addr: 0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91, Notional: 40790.58140415372
+		{Chain: 23, Addr: "000000000000000000000000b261104a83887ae92392fb5ce5899fcfe5481456", Symbol: "NFTE", CoinGeckoId: "nftearth", Decimals: 18, Price: 0.00001511},                                       // Addr: 0xb261104a83887ae92392fb5ce5899fcfe5481456, Notional: 0.0001511
+		{Chain: 23, Addr: "000000000000000000000000b6093b61544572ab42a0e43af08abafd41bf25a6", Symbol: "WXM", CoinGeckoId: "weatherxm-network", Decimals: 18, Price: 0.20992},                                  // Addr: 0xb6093b61544572ab42a0e43af08abafd41bf25a6, Notional: 209.92
+		{Chain: 23, Addr: "000000000000000000000000b827710314a05bcbee9180e11c2abe5823289422", Symbol: "ABI", CoinGeckoId: "abachi-2", Decimals: 18, Price: 0.960946},                                          // Addr: 0xb827710314a05bcbee9180e11c2abe5823289422, Notional: 0.960946
+		{Chain: 23, Addr: "000000000000000000000000b9af4762c039d63e30039f1712dfab77026408c7", Symbol: "AIBB", CoinGeckoId: "bullbear-ai", Decimals: 18, Price: 4.2187e-11},                                    // Addr: 0xb9af4762c039d63e30039f1712dfab77026408c7, Notional: 4.2187e-10
+		{Chain: 23, Addr: "000000000000000000000000bfbcfe8873fe28dfa25f1099282b088d52bbad9c", Symbol: "EQB", CoinGeckoId: "equilibria-finance", Decimals: 18, Price: 0.3896},                                  // Addr: 0xbfbcfe8873fe28dfa25f1099282b088d52bbad9c, Notional: 91.330988183592
+		{Chain: 23, Addr: "000000000000000000000000c3abc47863524ced8daf3ef98d74dd881e131c38", Symbol: "LUA", CoinGeckoId: "lumi-finance", Decimals: 18, Price: 1.95},                                          // Addr: 0xc3abc47863524ced8daf3ef98d74dd881e131c38, Notional: 585596.1747550004
+		{Chain: 23, Addr: "000000000000000000000000c628534100180582e43271448098cb2c185795bd", Symbol: "FLASH", CoinGeckoId: "flash-stake", Decimals: 18, Price: 0.00650277},                                   // Addr: 0xc628534100180582e43271448098cb2c185795bd, Notional: 3.3615650033012283
+		{Chain: 23, Addr: "000000000000000000000000d56734d7f9979dd94fae3d67c7e928234e71cd4c", Symbol: "TIA.n", CoinGeckoId: "bridged-tia-hyperlane", Decimals: 6, Price: 2.04},                                // Addr: 0xd56734d7f9979dd94fae3d67c7e928234e71cd4c, Notional: 3.07069164
+		{Chain: 23, Addr: "000000000000000000000000d5a56b510247db33695b0bea29992ac6670081ea", Symbol: "GOB", CoinGeckoId: "goons-of-balatroon", Decimals: 18, Price: 0.00039337},                              // Addr: 0xd5a56b510247db33695b0bea29992ac6670081ea, Notional: 3.4077643099999997
+		{Chain: 23, Addr: "000000000000000000000000d77b108d4f6cefaa0cae9506a934e825becca46e", Symbol: "WINR", CoinGeckoId: "winr-protocol", Decimals: 18, Price: 0.00728464},                                  // Addr: 0xd77b108d4f6cefaa0cae9506a934e825becca46e, Notional: 81198.38712443053
+		{Chain: 23, Addr: "000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                               // Addr: 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, Notional: 1628.4801404868795
+		{Chain: 23, Addr: "000000000000000000000000db13df2ea134e7df2208d74b96db063837db5b5c", Symbol: "LAMB", CoinGeckoId: "lamb-by-opnx", Decimals: 18, Price: 0.01007507},                                   // Addr: 0xdb13df2ea134e7df2208d74b96db063837db5b5c, Notional: 1672451.8576176807
+		{Chain: 23, Addr: "000000000000000000000000de903e2712288a1da82942dddf2c20529565ac30", Symbol: "SWPR", CoinGeckoId: "swapr", Decimals: 18, Price: 0.00931953},                                          // Addr: 0xde903e2712288a1da82942dddf2c20529565ac30, Notional: 0.30754449
+		{Chain: 23, Addr: "000000000000000000000000dfb8be6f8c87f74295a87de951974362cedcfa30", Symbol: "EMC", CoinGeckoId: "edge-matrix-computing", Decimals: 18, Price: 0.00791489},                           // Addr: 0xdfb8be6f8c87f74295a87de951974362cedcfa30, Notional: 0.022953181000000003
+		{Chain: 23, Addr: "000000000000000000000000e6045890b20945d00e6f3c01878265c03c5435d3", Symbol: "IDIA", CoinGeckoId: "idia", Decimals: 18, Price: 0.02829531},                                           // Addr: 0xe6045890b20945d00e6f3c01878265c03c5435d3, Notional: 24005.211037750672
+		{Chain: 23, Addr: "000000000000000000000000f8388c2b6edf00e2e27eef5200b1befb24ce141d", Symbol: "NOLA", CoinGeckoId: "nola", Decimals: 18, Price: 0.00004972},                                           // Addr: 0xf8388c2b6edf00e2e27eef5200b1befb24ce141d, Notional: 6.722967588100465
+		{Chain: 23, Addr: "000000000000000000000000f97f4df75117a78c1a5a0dbb814af92458539fb4", Symbol: "LINK", CoinGeckoId: "chainlink", Decimals: 18, Price: 14.06},                                           // Addr: 0xf97f4df75117a78c1a5a0dbb814af92458539fb4, Notional: 200.5600075946
+		{Chain: 23, Addr: "000000000000000000000000fa5ed56a203466cbbc2430a43c66b9d8723528e7", Symbol: "EURA", CoinGeckoId: "ageur", Decimals: 18, Price: 1.14},                                                // Addr: 0xfa5ed56a203466cbbc2430a43c66b9d8723528e7, Notional: 50.532453903
+		{Chain: 23, Addr: "000000000000000000000000fa7f8980b0f1e64a2062791cc3b0871572f1f7f0", Symbol: "UNI", CoinGeckoId: "uniswap", Decimals: 18, Price: 6.64},                                               // Addr: 0xfa7f8980b0f1e64a2062791cc3b0871572f1f7f0, Notional: 5.2678143855999995
+		{Chain: 23, Addr: "000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                   // Addr: 0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9, Notional: 51181.676096
+		{Chain: 23, Addr: "000000000000000000000000fea7a6a0b346362bf88a9e4a88416b77a57d6c2a", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                 // Addr: 0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a, Notional: 0.00100098999
+		{Chain: 23, Addr: "000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc8", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0xff970a61a04b1ca14834a43f5de4533ebddb5cc8, Notional: 803659.9592728686
+		{Chain: 24, Addr: "0000000000000000000000000b2c639c533813f4aa9d7837caf62653d097ff85", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0x0b2c639c533813f4aa9d7837caf62653d097ff85, Notional: 422403.09649005864
+		{Chain: 24, Addr: "000000000000000000000000135c78d7f52aab6e9f17bcf4a9e8627aa233d050", Symbol: "BOO", CoinGeckoId: "boo-2", Decimals: 18, Price: 0.00002857},                                           // Addr: 0x135c78d7f52aab6e9f17bcf4a9e8627aa233d050, Notional: 3.573765346680663
+		{Chain: 24, Addr: "00000000000000000000000014778860e937f509e651192a90589de711fb88a9", Symbol: "CYBER", CoinGeckoId: "cyberconnect", Decimals: 18, Price: 1.16},                                        // Addr: 0x14778860e937f509e651192a90589de711fb88a9, Notional: 6.633920241599999
+		{Chain: 24, Addr: "0000000000000000000000001f32b1c2345538c0c6f582fcb022739c4a194ebb", Symbol: "wstETH", CoinGeckoId: "wrapped-steth", Decimals: 18, Price: 3114.69},                                   // Addr: 0x1f32b1c2345538c0c6f582fcb022739c4a194ebb, Notional: 10396.427756254201
+		{Chain: 24, Addr: "000000000000000000000000296f55f8fb28e498b858d0bcda06d955b2cb3f97", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                  // Addr: 0x296f55f8fb28e498b858d0bcda06d955b2cb3f97, Notional: 62.37074917755405
+		{Chain: 24, Addr: "0000000000000000000000002dad3a13ef0c6366220f989157009e501e7938f8", Symbol: "EXTRA", CoinGeckoId: "extra-finance", Decimals: 18, Price: 0.02473336},                                 // Addr: 0x2dad3a13ef0c6366220f989157009e501e7938f8, Notional: 0.0108275249858688
+		{Chain: 24, Addr: "0000000000000000000000002e3d870790dc77a83dd1d18184acc7439a53f475", Symbol: "FRAX", CoinGeckoId: "frax", Decimals: 18, Price: 0.999384},                                             // Addr: 0x2e3d870790dc77a83dd1d18184acc7439a53f475, Notional: 0.00031780411199999997
+		{Chain: 24, Addr: "000000000000000000000000323665443cef804a3b5206103304bd4872ea4253", Symbol: "USDV", CoinGeckoId: "verified-usd-foundation-usdv", Decimals: 6, Price: 0.131685},                      // Addr: 0x323665443cef804a3b5206103304bd4872ea4253, Notional: 29.476760846024998
+		{Chain: 24, Addr: "000000000000000000000000375488f097176507e39b9653b88fdc52cde736bf", Symbol: "TAROT", CoinGeckoId: "tarot", Decimals: 18, Price: 0.01156111},                                         // Addr: 0x375488f097176507e39b9653b88fdc52cde736bf, Notional: 0.09052541472187069
+		{Chain: 24, Addr: "0000000000000000000000003ed9acaac7bd974eb83a8ea6432a239e3c829d5d", Symbol: "2192", CoinGeckoId: "lernitas", Decimals: 18, Price: 0.00000963},                                       // Addr: 0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d, Notional: 449.1340693156168
+		{Chain: 24, Addr: "0000000000000000000000004200000000000000000000000000000000000006", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                              // Addr: 0x4200000000000000000000000000000000000006, Notional: 28021.7509079885
+		{Chain: 24, Addr: "0000000000000000000000004200000000000000000000000000000000000042", Symbol: "OP", CoinGeckoId: "optimism", Decimals: 18, Price: 0.629793},                                           // Addr: 0x4200000000000000000000000000000000000042, Notional: 12422.784524628321
+		{Chain: 24, Addr: "00000000000000000000000042069d11a2cc72388a2e06210921e839cfbd3280", Symbol: "GNOME", CoinGeckoId: "gnomeland", Decimals: 18, Price: 0.00016284},                                     // Addr: 0x42069d11a2cc72388a2e06210921e839cfbd3280, Notional: 0.32568
+		{Chain: 24, Addr: "00000000000000000000000048a9f8b4b65a55cc46ea557a610acf227454ab09", Symbol: "OPC", CoinGeckoId: "op-chads", Decimals: 18, Price: 0.00002114},                                        // Addr: 0x48a9f8b4b65a55cc46ea557a610acf227454ab09, Notional: 6.754991033741716
+		{Chain: 24, Addr: "00000000000000000000000050bce64397c75488465253c0a034b8097fea6578", Symbol: "HAN", CoinGeckoId: "hanchain", Decimals: 18, Price: 0.00181155},                                        // Addr: 0x50bce64397c75488465253c0a034b8097fea6578, Notional: 18.11731155
+		{Chain: 24, Addr: "000000000000000000000000528cdc92eab044e1e39fe43b9514bfdab4412b98", Symbol: "GIV", CoinGeckoId: "giveth", Decimals: 18, Price: 0.00225785},                                          // Addr: 0x528cdc92eab044e1e39fe43b9514bfdab4412b98, Notional: 11334.973543076216
+		{Chain: 24, Addr: "000000000000000000000000625e7708f30ca75bfd92586e17077590c60eb4cd", Symbol: "aOptUSDC", CoinGeckoId: "aave-usdc", Decimals: 6, Price: 1.002},                                        // Addr: 0x625e7708f30ca75bfd92586e17077590c60eb4cd, Notional: 6.620390352
+		{Chain: 24, Addr: "00000000000000000000000068f180fcce6836688e9084f035309e29bf0a2095", Symbol: "WBTC", CoinGeckoId: "wrapped-bitcoin", Decimals: 8, Price: 108818},                                     // Addr: 0x68f180fcce6836688e9084f035309e29bf0a2095, Notional: 16820.9014494
+		{Chain: 24, Addr: "0000000000000000000000006d80113e533a2c0fe82eabd35f1875dcea89ea97", Symbol: "aOptSUSD", CoinGeckoId: "aave-susd", Decimals: 18, Price: 0.976296},                                    // Addr: 0x6d80113e533a2c0fe82eabd35f1875dcea89ea97, Notional: 16.30363436428776
+		{Chain: 24, Addr: "0000000000000000000000006f620ec89b8479e97a6985792d0c64f237566746", Symbol: "WPC", CoinGeckoId: "wepiggy-coin", Decimals: 18, Price: 0.00003592},                                    // Addr: 0x6f620ec89b8479e97a6985792d0c64f237566746, Notional: 0.00560352
+		{Chain: 24, Addr: "000000000000000000000000747e42eb0591547a0ab429b3627816208c734ea7", Symbol: "T", CoinGeckoId: "threshold-network-token", Decimals: 18, Price: 0.01477466},                           // Addr: 0x747e42eb0591547a0ab429b3627816208c734ea7, Notional: 1.1452637344302419
+		{Chain: 24, Addr: "00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e0979", Symbol: "fBOMB", CoinGeckoId: "fbomb", Decimals: 18, Price: 0.02816576},                                         // Addr: 0x74ccbe53f77b08632ce0cb91d3a545bf6b8e0979, Notional: 1.39420512
+		{Chain: 24, Addr: "0000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0x7f5c764cbc14f9669b88837ca1490cca17c31607, Notional: 450435.4396315974
+		{Chain: 24, Addr: "00000000000000000000000081ab7e0d570b01411fcc4afd3d50ec8c241cb74b", Symbol: "EQZ", CoinGeckoId: "equalizer", Decimals: 18, Price: 0.00090513},                                       // Addr: 0x81ab7e0d570b01411fcc4afd3d50ec8c241cb74b, Notional: 0.090513
+		{Chain: 24, Addr: "0000000000000000000000008b21e9b7daf2c4325bf3d18c1beb79a347fe902a", Symbol: "COLLAB", CoinGeckoId: "collab-land", Decimals: 18, Price: 0.00029025},                                  // Addr: 0x8b21e9b7daf2c4325bf3d18c1beb79a347fe902a, Notional: 0.045357602718599996
+		{Chain: 24, Addr: "0000000000000000000000008c6f28f2f1a3c87f0f938b96d27520d9751ec8d9", Symbol: "sUSD", CoinGeckoId: "nusd", Decimals: 18, Price: 0.966581},                                             // Addr: 0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9, Notional: 1.88807458236551
+		{Chain: 24, Addr: "00000000000000000000000094b008aa00579c1307b0ef2c499ad98a8ce58e58", Symbol: "USDT", CoinGeckoId: "tether", Decimals: 6, Price: 1},                                                   // Addr: 0x94b008aa00579c1307b0ef2c499ad98a8ce58e58, Notional: 142153.742498
+		{Chain: 24, Addr: "0000000000000000000000009e1028f5f1d5ede59748ffcee5532509976840e0", Symbol: "PERP", CoinGeckoId: "perpetual-protocol", Decimals: 18, Price: 0.250492},                               // Addr: 0x9e1028f5f1d5ede59748ffcee5532509976840e0, Notional: 0.059951319960839994
+		{Chain: 24, Addr: "000000000000000000000000c26921b5b9ee80773774d36c84328ccb22c3a819", Symbol: "wOptiDoge", CoinGeckoId: "wrapped-optidoge", Decimals: 18, Price: 2.69009e-7},                          // Addr: 0xc26921b5b9ee80773774d36c84328ccb22c3a819, Notional: 3.336805928612
+		{Chain: 24, Addr: "000000000000000000000000c40f949f8a4e094d1b49a23ea9241d289b7b2819", Symbol: "LUSD", CoinGeckoId: "liquity-usd", Decimals: 18, Price: 1.001},                                         // Addr: 0xc40f949f8a4e094d1b49a23ea9241d289b7b2819, Notional: 1.1011e-7
+		{Chain: 24, Addr: "000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc", Symbol: "HOP", CoinGeckoId: "hop-protocol", Decimals: 18, Price: 0.00965908},                                    // Addr: 0xc5102fe9359fd9a28f877a67e36b0f050d81a3cc, Notional: 0.40935388130675204
+		{Chain: 24, Addr: "000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                               // Addr: 0xda10009cbd5d07dd0cecc66161fc93d7c9000da1, Notional: 165.0672195572871
+		{Chain: 24, Addr: "000000000000000000000000dfa46478f9e5ea86d57387849598dbfb2e964b02", Symbol: "MAI", CoinGeckoId: "mimatic", Decimals: 18, Price: 0.995702},                                           // Addr: 0xdfa46478f9e5ea86d57387849598dbfb2e964b02, Notional: 4.97851
+		{Chain: 24, Addr: "000000000000000000000000e453d6649643f1f460c371dc3d1da98f7922fe51", Symbol: "FUSE", CoinGeckoId: "fuse-network-token", Decimals: 18, Price: 0.01041974},                             // Addr: 0xe453d6649643f1f460c371dc3d1da98f7922fe51, Notional: 0.0102113452
+		{Chain: 24, Addr: "000000000000000000000000e50fa9b3c56ffb159cb0fca61f5c9d750e8128c8", Symbol: "aOptWETH", CoinGeckoId: "aave-weth", Decimals: 18, Price: 2588.46},                                     // Addr: 0xe50fa9b3c56ffb159cb0fca61f5c9d750e8128c8, Notional: 0.0000776538
+		{Chain: 24, Addr: "000000000000000000000000fd389dc9533717239856190f42475d3f263a270d", Symbol: "GRAIN", CoinGeckoId: "granary", Decimals: 18, Price: 0.00063293},                                       // Addr: 0xfd389dc9533717239856190f42475d3f263a270d, Notional: 0.018354969999999998
+		{Chain: 24, Addr: "000000000000000000000000fdb794692724153d1488ccdbe0c56c252596735f", Symbol: "LDO", CoinGeckoId: "lido-dao", Decimals: 18, Price: 0.838962},                                          // Addr: 0xfdb794692724153d1488ccdbe0c56c252596735f, Notional: 1.34427389670972
+		{Chain: 28, Addr: "017ce8aec5af3bb3ac0158d49771d4c8feba2e54a614fa2a1c0c95e9c4c37185", Symbol: "XPLA", CoinGeckoId: "xpla", Decimals: 18, Price: 0.056906},                                             // Addr: axpla, Notional: 0.3616948347565
+		{Chain: 30, Addr: "0000000000000000000000000a1d576f3efef75b330424287a95a366e8281d54", Symbol: "aBasUSDbC", CoinGeckoId: "aave-v3-usdbc", Decimals: 6, Price: 0.99979},                                 // Addr: 0x0a1d576f3efef75b330424287a95a366e8281d54, Notional: 1.24926459933
+		{Chain: 30, Addr: "00000000000000000000000019b50c63d3d7f7a22308cb0fc8d41b66ff9c318a", Symbol: "GPX", CoinGeckoId: "grabpenny", Decimals: 18, Price: 0.0020874},                                        // Addr: 0x19b50c63d3d7f7a22308cb0fc8d41b66ff9c318a, Notional: 10437
+		{Chain: 30, Addr: "00000000000000000000000022a2488fe295047ba13bd8cccdbc8361dbd8cf7c", Symbol: "SONNE", CoinGeckoId: "sonne-finance", Decimals: 18, Price: 0.00075376},                                 // Addr: 0x22a2488fe295047ba13bd8cccdbc8361dbd8cf7c, Notional: 0.01055264
+		{Chain: 30, Addr: "000000000000000000000000236aa50979d5f3de3bd1eeb40e81137f22ab794b", Symbol: "tBTC", CoinGeckoId: "tbtc", Decimals: 18, Price: 108503},                                               // Addr: 0x236aa50979d5f3de3bd1eeb40e81137f22ab794b, Notional: 246.09782436000003
+		{Chain: 30, Addr: "000000000000000000000000255f1b39172f65dc6406b8bee8b08155c45fe1b6", Symbol: "HARAMBE", CoinGeckoId: "harambecoin", Decimals: 18, Price: 1.9964e-7},                                  // Addr: 0x255f1b39172f65dc6406b8bee8b08155c45fe1b6, Notional: 3.743946854909056
+		{Chain: 30, Addr: "00000000000000000000000026f3901ac8a79c50fb0d8289c74f0d09adc42e29", Symbol: "T", CoinGeckoId: "threshold-network-token", Decimals: 18, Price: 0.01477466},                           // Addr: 0x26f3901ac8a79c50fb0d8289c74f0d09adc42e29, Notional: 0.117939545659829
+		{Chain: 30, Addr: "0000000000000000000000002ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", Symbol: "cbETH", CoinGeckoId: "coinbase-wrapped-staked-eth", Decimals: 18, Price: 2852.69},                      // Addr: 0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22, Notional: 857.1270537706
+		{Chain: 30, Addr: "000000000000000000000000302ab9ae394d675676ddb41e294169224824fc9a", Symbol: "CHZ", CoinGeckoId: "cheezburger", Decimals: 18, Price: 1.77908e-7},                                     // Addr: 0x302ab9ae394d675676ddb41e294169224824fc9a, Notional: 15.098662663460349
+		{Chain: 30, Addr: "0000000000000000000000003055913c90fcc1a6ce9a358911721eeb942013a1", Symbol: "Cake", CoinGeckoId: "pancakeswap-token", Decimals: 18, Price: 2.41},                                    // Addr: 0x3055913c90fcc1a6ce9a358911721eeb942013a1, Notional: 11.028049838900001
+		{Chain: 30, Addr: "0000000000000000000000004200000000000000000000000000000000000006", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2586.35},                                              // Addr: 0x4200000000000000000000000000000000000006, Notional: 155733.953250226
+		{Chain: 30, Addr: "0000000000000000000000004a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 1.001},                                 // Addr: 0x4a3a6dd60a34bb2aba60d73b4c88315e9ceb6a3d, Notional: 25.255175675729998
+		{Chain: 30, Addr: "0000000000000000000000004ed4e862860bed51a9570b96d89af5e1b0efefed", Symbol: "DEGEN", CoinGeckoId: "degen-base", Decimals: 18, Price: 0.00443055},                                    // Addr: 0x4ed4e862860bed51a9570b96d89af5e1b0efefed, Notional: 27.96330431055004
+		{Chain: 30, Addr: "00000000000000000000000050c5725949a6f0c72e6c4a641f24049a917db0cb", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 0.999593},                                               // Addr: 0x50c5725949a6f0c72e6c4a641f24049a917db0cb, Notional: 687.660673559178
+		{Chain: 30, Addr: "000000000000000000000000532f27101965dd16442e59d40670faf5ebb142e4", Symbol: "BRETT", CoinGeckoId: "based-brett", Decimals: 18, Price: 0.052614},                                     // Addr: 0x532f27101965dd16442e59d40670faf5ebb142e4, Notional: 41.17650561
+		{Chain: 30, Addr: "00000000000000000000000054a65b16d18527160fafc6fcfebaed47c2976dfa", Symbol: "RFKJ", CoinGeckoId: "independence-token", Decimals: 18, Price: 0.00000185},                             // Addr: 0x54a65b16d18527160fafc6fcfebaed47c2976dfa, Notional: 0.00185
+		{Chain: 30, Addr: "00000000000000000000000060cbb875d3c6314280dd90a4fe6cafc1d7ce5dfd", Symbol: "EBASE", CoinGeckoId: "ebase", Decimals: 9, Price: 0.00000782},                                          // Addr: 0x60cbb875d3c6314280dd90a4fe6cafc1d7ce5dfd, Notional: 0.008542689225092598
+		{Chain: 30, Addr: "00000000000000000000000064b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7", Symbol: "MAV", CoinGeckoId: "maverick-protocol", Decimals: 18, Price: 0.054174},                                 // Addr: 0x64b88c73a5dfa78d1713fe1b4c69a22d7e0faaa7, Notional: 5.56719831460026
+		{Chain: 30, Addr: "0000000000000000000000006653dd4b92a0e5bf8ae570a98906d9d6fd2eec09", Symbol: "RCKT", CoinGeckoId: "rocketswap", Decimals: 18, Price: 0.04581254},                                     // Addr: 0x6653dd4b92a0e5bf8ae570a98906d9d6fd2eec09, Notional: 0.04581254
+		{Chain: 30, Addr: "000000000000000000000000717d31a60a9e811469673429c9f8ea24358990f1", Symbol: "EVERY", CoinGeckoId: "everyworld", Decimals: 18, Price: 0.00029745},                                    // Addr: 0x717d31a60a9e811469673429c9f8ea24358990f1, Notional: 396.8749012009273
+		{Chain: 30, Addr: "00000000000000000000000073e58c6f5e7b9def4bdda8f02f59f9ef2a342cca", Symbol: "GP", CoinGeckoId: "grabpenny", Decimals: 18, Price: 0.0020874},                                         // Addr: 0x73e58c6f5e7b9def4bdda8f02f59f9ef2a342cca, Notional: 4.1748
+		{Chain: 30, Addr: "00000000000000000000000076734b57dfe834f102fb61e1ebf844adf8dd931e", Symbol: "weirdo", CoinGeckoId: "weirdo-2", Decimals: 8, Price: 0.00001074},                                      // Addr: 0x76734b57dfe834f102fb61e1ebf844adf8dd931e, Notional: 9307.14355165199
+		{Chain: 30, Addr: "00000000000000000000000078a087d713be963bf307b18f2ff8122ef9a63ae9", Symbol: "BSWAP", CoinGeckoId: "baseswap", Decimals: 18, Price: 0.099266},                                        // Addr: 0x78a087d713be963bf307b18f2ff8122ef9a63ae9, Notional: 0.74468392900716
+		{Chain: 30, Addr: "0000000000000000000000007d49a065d17d6d4a55dc13649901fdbb98b2afba", Symbol: "SUSHI", CoinGeckoId: "sushi", Decimals: 18, Price: 0.671409},                                           // Addr: 0x7d49a065d17d6d4a55dc13649901fdbb98b2afba, Notional: 3.9263029543953905
+		{Chain: 30, Addr: "0000000000000000000000007f12d13b34f5f4f0a9449c16bcd42f0da47af200", Symbol: "NORMIE", CoinGeckoId: "normie-2", Decimals: 9, Price: 0.00201293},                                      // Addr: 0x7f12d13b34f5f4f0a9449c16bcd42f0da47af200, Notional: 1164.0748383590042
+		{Chain: 30, Addr: "000000000000000000000000833589fcd6edb6e08f4c7c32d4f71b54bda02913", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 0.999705},                                          // Addr: 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913, Notional: 69947.2746440222
+		{Chain: 30, Addr: "000000000000000000000000858c50c3af1913b0e849afdb74617388a1a5340d", Symbol: "SQT", CoinGeckoId: "subquery-network", Decimals: 18, Price: 0.00136249},                                // Addr: 0x858c50c3af1913b0e849afdb74617388a1a5340d, Notional: 3.0060012192578034
+		{Chain: 30, Addr: "0000000000000000000000008e16d46cb2da01cdd49601ec73d7b0344969ae33", Symbol: "coin", CoinGeckoId: "coin-on-base", Decimals: 18, Price: 0.00000273},                                   // Addr: 0x8e16d46cb2da01cdd49601ec73d7b0344969ae33, Notional: 6.521126201159306
+		{Chain: 30, Addr: "0000000000000000000000008fbd0648971d56f1f2c35fa075ff5bc75fb0e39d", Symbol: "MBS", CoinGeckoId: "monkeyball", Decimals: 18, Price: 0.00252492},                                      // Addr: 0x8fbd0648971d56f1f2c35fa075ff5bc75fb0e39d, Notional: 8.447208936854674
+		{Chain: 30, Addr: "000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd98631", Symbol: "AERO", CoinGeckoId: "aerodrome-finance", Decimals: 18, Price: 0.535287},                                // Addr: 0x940181a94a35a4569e4529a3cdfb74e38fd98631, Notional: 0.016077848214779998
+		{Chain: 30, Addr: "00000000000000000000000096e890c6b2501a69cad5dba402bfb871a2a2874c", Symbol: "AAG", CoinGeckoId: "aag-ventures", Decimals: 18, Price: 0.00256966},                                    // Addr: 0x96e890c6b2501a69cad5dba402bfb871a2a2874c, Notional: 0.00256966
+		{Chain: 30, Addr: "0000000000000000000000009a3b7959e998bf2b50ef1969067d623877050d92", Symbol: "PBB", CoinGeckoId: "pepe-but-blue", Decimals: 18, Price: 0.00001879},                                   // Addr: 0x9a3b7959e998bf2b50ef1969067d623877050d92, Notional: 0.1749140542475433
+		{Chain: 30, Addr: "0000000000000000000000009e1028f5f1d5ede59748ffcee5532509976840e0", Symbol: "COMP", CoinGeckoId: "compound-governance-token", Decimals: 18, Price: 47.25},                           // Addr: 0x9e1028f5f1d5ede59748ffcee5532509976840e0, Notional: 0.03591567
+		{Chain: 30, Addr: "000000000000000000000000a61beb4a3d02decb01039e378237032b351125b4", Symbol: "agEUR", CoinGeckoId: "ageur", Decimals: 18, Price: 1.14},                                               // Addr: 0xa61beb4a3d02decb01039e378237032b351125b4, Notional: 1.5517251816
+		{Chain: 30, Addr: "000000000000000000000000a88594d404727625a9437c3f886c7643872296ae", Symbol: "WELL", CoinGeckoId: "moonwell-artemis", Decimals: 18, Price: 0.0325245},                                // Addr: 0xa88594d404727625a9437c3f886c7643872296ae, Notional: 3.5203385064231445
+		{Chain: 30, Addr: "000000000000000000000000ac1bd2486aaf3b5c0fc3fd868558b082a531b2b4", Symbol: "TOSHI", CoinGeckoId: "toshi", Decimals: 18, Price: 0.00056249},                                         // Addr: 0xac1bd2486aaf3b5c0fc3fd868558b082a531b2b4, Notional: 0.4668667
+		{Chain: 30, Addr: "000000000000000000000000afb89a09d82fbde58f18ac6437b3fc81724e4df6", Symbol: "DOG", CoinGeckoId: "the-doge-nft", Decimals: 18, Price: 0.00109697},                                    // Addr: 0xafb89a09d82fbde58f18ac6437b3fc81724e4df6, Notional: 4786.807159793361
+		{Chain: 30, Addr: "000000000000000000000000b0ffa8000886e57f86dd5264b9582b2ad87b2b91", Symbol: "W", CoinGeckoId: "wormhole", Decimals: 18, Price: 0.074222},                                            // Addr: 0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91, Notional: 78.04165048550425
+		{Chain: 30, Addr: "000000000000000000000000b5c457ddb4ce3312a6c5a2b056a1652bd542a208", Symbol: "O404", CoinGeckoId: "omni404", Decimals: 18, Price: 438.1},                                             // Addr: 0xb5c457ddb4ce3312a6c5a2b056a1652bd542a208, Notional: 2.904603
+		{Chain: 30, Addr: "000000000000000000000000c1cba3fcea344f92d9239c08c0568f6f2f0ee452", Symbol: "wstETH", CoinGeckoId: "wrapped-steth", Decimals: 18, Price: 3114.69},                                   // Addr: 0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452, Notional: 6.22938
+		{Chain: 30, Addr: "000000000000000000000000c48e605c7b722a57277e087a6170b9e227e5ac0a", Symbol: "OMNI", CoinGeckoId: "omnicat", Decimals: 18, Price: 0.00001466},                                        // Addr: 0xc48e605c7b722a57277e087a6170b9e227e5ac0a, Notional: 33.44748281487881
+		{Chain: 30, Addr: "000000000000000000000000c5bebd5a6ae6be4fcf383eea014fb1dbd43789ca", Symbol: "BNS", CoinGeckoId: "base-name-service", Decimals: 18, Price: 0.0000194},                                // Addr: 0xc5bebd5a6ae6be4fcf383eea014fb1dbd43789ca, Notional: 0.0388
+		{Chain: 30, Addr: "000000000000000000000000d07379a755a8f11b57610154861d694b2a0f615a", Symbol: "BASE", CoinGeckoId: "base", Decimals: 18, Price: 0.00000281},                                           // Addr: 0xd07379a755a8f11b57610154861d694b2a0f615a, Notional: 0.7025098617259663
+		{Chain: 30, Addr: "000000000000000000000000d9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", Symbol: "USDbC", CoinGeckoId: "bridged-usd-coin-base", Decimals: 6, Price: 0.999398},                            // Addr: 0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca, Notional: 14728.859164770041
+		{Chain: 30, Addr: "000000000000000000000000dfbea88c4842d30c26669602888d746d30f9d60d", Symbol: "CAW", CoinGeckoId: "crow-with-knife", Decimals: 18, Price: 2.0024e-8},                                  // Addr: 0xdfbea88c4842d30c26669602888d746d30f9d60d, Notional: 195.62339528072826
+		{Chain: 30, Addr: "000000000000000000000000e3086852a4b125803c815a158249ae468a3254ca", Symbol: "$mfer", CoinGeckoId: "mfercoin", Decimals: 18, Price: 0.00789659},                                      // Addr: 0xe3086852a4b125803c815a158249ae468a3254ca, Notional: 20646.150794390338
+		{Chain: 30, Addr: "000000000000000000000000e3b53af74a4bf62ae5511055290838050bf764df", Symbol: "STG", CoinGeckoId: "stargate-finance", Decimals: 18, Price: 0.181347},                                  // Addr: 0xe3b53af74a4bf62ae5511055290838050bf764df, Notional: 2.02917873474126
+		{Chain: 30, Addr: "000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215", Symbol: "axlUSDC", CoinGeckoId: "axlusdc", Decimals: 6, Price: 0.999643},                                        // Addr: 0xeb466342c4d449bc9f53a865d5cb90586f405215, Notional: 131.70016824888597
+		{Chain: 30, Addr: "000000000000000000000000ec1df7edfcdc2e2042c63252c1cef480f64f9189", Symbol: "BOO", CoinGeckoId: "boo-2", Decimals: 18, Price: 0.00002857},                                           // Addr: 0xec1df7edfcdc2e2042c63252c1cef480f64f9189, Notional: 3.0285946661174004
+		{Chain: 30, Addr: "000000000000000000000000f7c1cefcf7e1dd8161e00099facd3e1db9e528ee", Symbol: "TOWER", CoinGeckoId: "tower", Decimals: 18, Price: 0.00040559},                                         // Addr: 0xf7c1cefcf7e1dd8161e00099facd3e1db9e528ee, Notional: 0.20036146
 	}
 }

+ 38 - 39
node/pkg/governor/governor.go

@@ -54,20 +54,20 @@ const maxEnqueuedTime = time.Hour * 24
 
 type (
 	// Layout of the config data for each token
-	tokenConfigEntry struct {
-		chain       uint16
-		addr        string
-		symbol      string
-		coinGeckoId string
-		decimals    int64
-		price       float64
+	TokenConfigEntry struct {
+		Chain       uint16
+		Addr        string
+		Symbol      string
+		CoinGeckoId string
+		Decimals    int64
+		Price       float64
 	}
 
 	// Layout of the config data for each chain
-	chainConfigEntry struct {
-		emitterChainID     vaa.ChainID
-		dailyLimit         uint64
-		bigTransactionSize uint64
+	ChainConfigEntry struct {
+		EmitterChainID     vaa.ChainID
+		DailyLimit         uint64
+		BigTransactionSize uint64
 	}
 
 	// Key to the map of the tokens being monitored
@@ -291,9 +291,9 @@ func (gov *ChainGovernor) initConfig() error {
 	defer gov.mutex.Unlock()
 
 	gov.dayLengthInMinutes = 24 * 60
-	configChains := chainList()
-	configTokens := tokenList()
-	flowCancelTokens := []tokenConfigEntry{}
+	configChains := ChainList()
+	configTokens := TokenList()
+	flowCancelTokens := []TokenConfigEntry{}
 	flowCancelCorridors := []corridor{}
 
 	if gov.env == common.UnsafeDevNet {
@@ -314,17 +314,17 @@ func (gov *ChainGovernor) initConfig() error {
 	}
 
 	for _, ct := range configTokens {
-		addr, err := vaa.StringToAddress(ct.addr)
+		addr, err := vaa.StringToAddress(ct.Addr)
 		if err != nil {
-			return fmt.Errorf("invalid address: %s", ct.addr)
+			return fmt.Errorf("invalid address: %s", ct.Addr)
 		}
 
-		cfgPrice := big.NewFloat(ct.price)
+		cfgPrice := big.NewFloat(ct.Price)
 		initialPrice := new(big.Float)
 		initialPrice.Set(cfgPrice)
 
 		// Transfers have a maximum of eight decimal places.
-		dec := ct.decimals
+		dec := ct.Decimals
 		if dec > 8 {
 			dec = 8
 		}
@@ -333,18 +333,18 @@ func (gov *ChainGovernor) initConfig() error {
 		decimals, _ := decimalsFloat.Int(nil)
 
 		// Some Solana tokens don't have the symbol set. In that case, use the chain and token address as the symbol.
-		symbol := ct.symbol
+		symbol := ct.Symbol
 		if symbol == "" {
-			symbol = fmt.Sprintf("%d:%s", ct.chain, ct.addr)
+			symbol = fmt.Sprintf("%d:%s", ct.Chain, ct.Addr)
 		}
 
-		key := tokenKey{chain: vaa.ChainID(ct.chain), addr: addr}
+		key := tokenKey{chain: vaa.ChainID(ct.Chain), addr: addr}
 		te := &tokenEntry{
 			cfgPrice:    cfgPrice,
 			price:       initialPrice,
 			decimals:    decimals,
 			symbol:      symbol,
-			coinGeckoId: ct.coinGeckoId,
+			coinGeckoId: ct.CoinGeckoId,
 			token:       key,
 		}
 		te.updatePrice()
@@ -367,7 +367,7 @@ func (gov *ChainGovernor) initConfig() error {
 				zap.String("coinGeckoId", te.coinGeckoId),
 				zap.String("price", te.price.String()),
 				zap.Int64("decimals", dec),
-				zap.Int64("origDecimals", ct.decimals),
+				zap.Int64("origDecimals", ct.Decimals),
 			)
 		}
 	}
@@ -376,11 +376,11 @@ func (gov *ChainGovernor) initConfig() error {
 	// correspond to the entries in the Flow Cancel Tokens List
 	if gov.flowCancelEnabled {
 		for _, flowCancelConfigEntry := range flowCancelTokens {
-			addr, err := vaa.StringToAddress(flowCancelConfigEntry.addr)
+			addr, err := vaa.StringToAddress(flowCancelConfigEntry.Addr)
 			if err != nil {
 				return err
 			}
-			key := tokenKey{chain: vaa.ChainID(flowCancelConfigEntry.chain), addr: addr}
+			key := tokenKey{chain: vaa.ChainID(flowCancelConfigEntry.Chain), addr: addr}
 
 			// Only add flow cancelling for tokens that are already configured for rate-limiting.
 			if _, ok := gov.tokens[key]; ok {
@@ -389,8 +389,8 @@ func (gov *ChainGovernor) initConfig() error {
 				gov.logger.Debug("token present in flow cancel list but absent from main token list:",
 					zap.Stringer("chain", key.chain),
 					zap.Stringer("addr", key.addr),
-					zap.String("symbol", flowCancelConfigEntry.symbol),
-					zap.String("coinGeckoId", flowCancelConfigEntry.coinGeckoId),
+					zap.String("symbol", flowCancelConfigEntry.Symbol),
+					zap.String("coinGeckoId", flowCancelConfigEntry.CoinGeckoId),
 				)
 			}
 		}
@@ -411,26 +411,26 @@ func (gov *ChainGovernor) initConfig() error {
 		var emitterAddr vaa.Address
 		var err error
 
-		emitterAddrBytes, exists := (*emitterMap)[cc.emitterChainID]
+		emitterAddrBytes, exists := (*emitterMap)[cc.EmitterChainID]
 		if !exists {
-			return fmt.Errorf("failed to look up token bridge emitter address for chain: %v", cc.emitterChainID)
+			return fmt.Errorf("failed to look up token bridge emitter address for chain: %v", cc.EmitterChainID)
 		}
 
 		emitterAddr, err = vaa.BytesToAddress(emitterAddrBytes)
 		if err != nil {
-			return fmt.Errorf("failed to convert emitter address for chain: %v", cc.emitterChainID)
+			return fmt.Errorf("failed to convert emitter address for chain: %v", cc.EmitterChainID)
 		}
 
 		ce := &chainEntry{
-			emitterChainId:          cc.emitterChainID,
+			emitterChainId:          cc.EmitterChainID,
 			emitterAddr:             emitterAddr,
-			dailyLimit:              cc.dailyLimit,
-			bigTransactionSize:      cc.bigTransactionSize,
-			checkForBigTransactions: cc.bigTransactionSize != 0,
+			dailyLimit:              cc.DailyLimit,
+			bigTransactionSize:      cc.BigTransactionSize,
+			checkForBigTransactions: cc.BigTransactionSize != 0,
 		}
 
 		if gov.env != common.GoTest {
-			gov.logger.Info("will monitor chain:", zap.Stringer("emitterChainId", cc.emitterChainID),
+			gov.logger.Info("will monitor chain:", zap.Stringer("emitterChainId", cc.EmitterChainID),
 				zap.Stringer("emitterAddr", ce.emitterAddr),
 				zap.String("dailyLimit", fmt.Sprint(ce.dailyLimit)),
 				zap.Uint64("bigTransactionSize", ce.bigTransactionSize),
@@ -438,7 +438,7 @@ func (gov *ChainGovernor) initConfig() error {
 			)
 		}
 
-		gov.chains[cc.emitterChainID] = ce
+		gov.chains[cc.EmitterChainID] = ce
 	}
 
 	if len(gov.chains) == 0 {
@@ -780,7 +780,6 @@ func (gov *ChainGovernor) CheckPendingForTime(now time.Time) ([]*common.MessageP
 		ce, ok := gov.chains[chainId]
 		if !ok {
 			gov.logger.Error("chainId not found in gov.chains", zap.Stringer("chainId", chainId))
-
 		}
 		// Keep going as long as we find something that will fit.
 		for {
@@ -870,7 +869,8 @@ func (gov *ChainGovernor) CheckPendingForTime(now time.Time) ([]*common.MessageP
 					msgsToPublish = append(msgsToPublish, &pe.dbData.Msg)
 
 					if countsTowardsTransfers {
-						dbTransfer := guardianDB.Transfer{Timestamp: now,
+						dbTransfer := guardianDB.Transfer{
+							Timestamp:      now,
 							Value:          value,
 							OriginChain:    pe.token.token.chain,
 							OriginAddress:  pe.token.token.addr,
@@ -1059,7 +1059,6 @@ func (gov *ChainGovernor) TrimAndSumValueForChain(chainEntry *chainEntry, startT
 	}
 
 	return uint64(sumValue), nil
-
 }
 
 // TrimAndSumValue iterates over a slice of transfer structs. It filters out transfers that have Timestamp values that

+ 39 - 39
node/pkg/governor/mainnet_chains.go

@@ -8,44 +8,44 @@ import (
 	"github.com/wormhole-foundation/wormhole/sdk/vaa"
 )
 
-func chainList() []chainConfigEntry {
-	return []chainConfigEntry{
-		{emitterChainID: vaa.ChainIDSolana, dailyLimit: 50_000_000, bigTransactionSize: 2_500_000},
-		{emitterChainID: vaa.ChainIDEthereum, dailyLimit: 100_000_000, bigTransactionSize: 5_000_000},
-		{emitterChainID: vaa.ChainIDTerra, dailyLimit: 150_000, bigTransactionSize: 15_000},
-		{emitterChainID: vaa.ChainIDBSC, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDPolygon, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDAvalanche, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDOasis, dailyLimit: 250_000, bigTransactionSize: 25_000},
-		{emitterChainID: vaa.ChainIDAlgorand, dailyLimit: 750_000, bigTransactionSize: 75_000},
-		{emitterChainID: vaa.ChainIDAurora, dailyLimit: 0, bigTransactionSize: 0},
-		{emitterChainID: vaa.ChainIDFantom, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDKarura, dailyLimit: 150_000, bigTransactionSize: 15_000},
-		{emitterChainID: vaa.ChainIDAcala, dailyLimit: 100_000, bigTransactionSize: 10_000},
-		{emitterChainID: vaa.ChainIDKlaytn, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDCelo, dailyLimit: 1_000_000, bigTransactionSize: 100_000},
-		{emitterChainID: vaa.ChainIDNear, dailyLimit: 150_000, bigTransactionSize: 15_000},
-		{emitterChainID: vaa.ChainIDMoonbeam, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDTerra2, dailyLimit: 100_000, bigTransactionSize: 10_000},
-		{emitterChainID: vaa.ChainIDInjective, dailyLimit: 150_000, bigTransactionSize: 15_000},
-		{emitterChainID: vaa.ChainIDSui, dailyLimit: 10_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDAptos, dailyLimit: 1_000_000, bigTransactionSize: 100_000},
-		{emitterChainID: vaa.ChainIDArbitrum, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDOptimism, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDXpla, dailyLimit: 50_000, bigTransactionSize: 5_000},
-		{emitterChainID: vaa.ChainIDBase, dailyLimit: 5_000_000, bigTransactionSize: 500_000},
-		{emitterChainID: vaa.ChainIDSei, dailyLimit: 150_000, bigTransactionSize: 15_000},
-		{emitterChainID: vaa.ChainIDScroll, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDMantle, dailyLimit: 100_000, bigTransactionSize: 10_000},
-		{emitterChainID: vaa.ChainIDBlast, dailyLimit: 0, bigTransactionSize: 0},
-		{emitterChainID: vaa.ChainIDXLayer, dailyLimit: 0, bigTransactionSize: 0},
-		{emitterChainID: vaa.ChainIDBerachain, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDSeiEVM, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDWormchain, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDSnaxchain, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDUnichain, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDWorldchain, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDInk, dailyLimit: 500_000, bigTransactionSize: 50_000},
-		{emitterChainID: vaa.ChainIDMezo, dailyLimit: 500_000, bigTransactionSize: 50_000},
+func ChainList() []ChainConfigEntry {
+	return []ChainConfigEntry{
+		{EmitterChainID: vaa.ChainIDSolana, DailyLimit: 50_000_000, BigTransactionSize: 2_500_000},
+		{EmitterChainID: vaa.ChainIDEthereum, DailyLimit: 100_000_000, BigTransactionSize: 5_000_000},
+		{EmitterChainID: vaa.ChainIDTerra, DailyLimit: 150_000, BigTransactionSize: 15_000},
+		{EmitterChainID: vaa.ChainIDBSC, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDPolygon, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDAvalanche, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDOasis, DailyLimit: 250_000, BigTransactionSize: 25_000},
+		{EmitterChainID: vaa.ChainIDAlgorand, DailyLimit: 750_000, BigTransactionSize: 75_000},
+		{EmitterChainID: vaa.ChainIDAurora, DailyLimit: 0, BigTransactionSize: 0},
+		{EmitterChainID: vaa.ChainIDFantom, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDKarura, DailyLimit: 150_000, BigTransactionSize: 15_000},
+		{EmitterChainID: vaa.ChainIDAcala, DailyLimit: 100_000, BigTransactionSize: 10_000},
+		{EmitterChainID: vaa.ChainIDKlaytn, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDCelo, DailyLimit: 1_000_000, BigTransactionSize: 100_000},
+		{EmitterChainID: vaa.ChainIDNear, DailyLimit: 150_000, BigTransactionSize: 15_000},
+		{EmitterChainID: vaa.ChainIDMoonbeam, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDTerra2, DailyLimit: 100_000, BigTransactionSize: 10_000},
+		{EmitterChainID: vaa.ChainIDInjective, DailyLimit: 150_000, BigTransactionSize: 15_000},
+		{EmitterChainID: vaa.ChainIDSui, DailyLimit: 10_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDAptos, DailyLimit: 1_000_000, BigTransactionSize: 100_000},
+		{EmitterChainID: vaa.ChainIDArbitrum, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDOptimism, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDXpla, DailyLimit: 50_000, BigTransactionSize: 5_000},
+		{EmitterChainID: vaa.ChainIDBase, DailyLimit: 5_000_000, BigTransactionSize: 500_000},
+		{EmitterChainID: vaa.ChainIDSei, DailyLimit: 150_000, BigTransactionSize: 15_000},
+		{EmitterChainID: vaa.ChainIDScroll, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDMantle, DailyLimit: 100_000, BigTransactionSize: 10_000},
+		{EmitterChainID: vaa.ChainIDBlast, DailyLimit: 0, BigTransactionSize: 0},
+		{EmitterChainID: vaa.ChainIDXLayer, DailyLimit: 0, BigTransactionSize: 0},
+		{EmitterChainID: vaa.ChainIDBerachain, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDSeiEVM, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDWormchain, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDSnaxchain, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDUnichain, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDWorldchain, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDInk, DailyLimit: 500_000, BigTransactionSize: 50_000},
+		{EmitterChainID: vaa.ChainIDMezo, DailyLimit: 500_000, BigTransactionSize: 50_000},
 	}
 }

+ 14 - 14
node/pkg/governor/mainnet_chains_test.go

@@ -1,15 +1,15 @@
 package governor
 
 import (
+	"testing"
+
 	"github.com/stretchr/testify/assert"
 	"github.com/wormhole-foundation/wormhole/sdk"
 	"github.com/wormhole-foundation/wormhole/sdk/vaa"
-
-	"testing"
 )
 
 func TestChainListSize(t *testing.T) {
-	chainConfigEntries := chainList()
+	chainConfigEntries := ChainList()
 
 	/* Assuming that governed chains will not go down over time,
 	   lets set a floor of expected chains to guard against parsing
@@ -18,7 +18,7 @@ func TestChainListSize(t *testing.T) {
 }
 
 func TestChainDailyLimitRange(t *testing.T) {
-	chainConfigEntries := chainList()
+	chainConfigEntries := ChainList()
 
 	/*
 		If a chain is deprecated, we want to make sure its still governed
@@ -38,19 +38,19 @@ func TestChainDailyLimitRange(t *testing.T) {
 
 	/* Assuming that a governed chains should always be more than zero and less than 50,000,001 */
 	for _, chainConfigEntry := range chainConfigEntries {
-		t.Run(chainConfigEntry.emitterChainID.String(), func(t *testing.T) {
-			assert.GreaterOrEqual(t, chainConfigEntry.dailyLimit, min_daily_limit)
-			assert.Less(t, chainConfigEntry.dailyLimit, max_daily_limit)
+		t.Run(chainConfigEntry.EmitterChainID.String(), func(t *testing.T) {
+			assert.GreaterOrEqual(t, chainConfigEntry.DailyLimit, min_daily_limit)
+			assert.Less(t, chainConfigEntry.DailyLimit, max_daily_limit)
 		})
 	}
 }
 
 func TestChainListChainPresent(t *testing.T) {
-	chainConfigEntries := chainList()
+	chainConfigEntries := ChainList()
 
 	entries := make([]vaa.ChainID, 0, len(chainConfigEntries))
 	for _, e := range chainConfigEntries {
-		entries = append(entries, e.emitterChainID)
+		entries = append(entries, e.EmitterChainID)
 	}
 
 	emitters := make([]vaa.ChainID, 0, len(sdk.KnownTokenbridgeEmitters))
@@ -62,20 +62,20 @@ func TestChainListChainPresent(t *testing.T) {
 }
 
 func TestChainListBigTransfers(t *testing.T) {
-	chainConfigEntries := chainList()
+	chainConfigEntries := ChainList()
 
 	for _, e := range chainConfigEntries {
 
 		// If the daily limit is 0 then both the big TX and daily limit should be 0.
-		if e.dailyLimit == 0 {
-			assert.Equal(t, e.bigTransactionSize, e.dailyLimit)
+		if e.DailyLimit == 0 {
+			assert.Equal(t, e.BigTransactionSize, e.DailyLimit)
 			continue
 		}
 
 		// it's always ideal to have bigTransactionSize be less than dailyLimit
-		assert.Less(t, e.bigTransactionSize, e.dailyLimit)
+		assert.Less(t, e.BigTransactionSize, e.DailyLimit)
 
 		// in fact, it's even better for bigTransactionSize not to exceed 1/3rd the limit (convention has it at 1/10th to start)
-		assert.Less(t, e.bigTransactionSize, e.dailyLimit/3)
+		assert.Less(t, e.BigTransactionSize, e.DailyLimit/3)
 	}
 }

+ 1 - 1
node/pkg/governor/mainnet_tokens.go

@@ -1,5 +1,5 @@
 package governor
 
-func tokenList() []tokenConfigEntry {
+func TokenList() []TokenConfigEntry {
 	return append(manualTokenList(), generatedMainnetTokenList()...)
 }

+ 19 - 19
node/pkg/governor/mainnet_tokens_test.go

@@ -10,7 +10,7 @@ import (
 )
 
 func TestTokenListSize(t *testing.T) {
-	tokenConfigEntries := tokenList()
+	tokenConfigEntries := TokenList()
 
 	// We should have a sensible number of tokens
 	// These numbers shouldn't have to change frequently
@@ -22,13 +22,13 @@ func TestTokenListSize(t *testing.T) {
 }
 
 func TestTokenListAddressSize(t *testing.T) {
-	tokenConfigEntries := tokenList()
+	tokenConfigEntries := TokenList()
 
 	/* Assume that token addresses must always be 32 bytes (64 chars) */
 	for _, tokenConfigEntry := range tokenConfigEntries {
-		testLabel := vaa.ChainID(tokenConfigEntry.chain).String() + ":" + tokenConfigEntry.symbol
+		testLabel := vaa.ChainID(tokenConfigEntry.Chain).String() + ":" + tokenConfigEntry.Symbol
 		t.Run(testLabel, func(t *testing.T) {
-			assert.Equal(t, len(tokenConfigEntry.addr), 64)
+			assert.Equal(t, len(tokenConfigEntry.Addr), 64)
 		})
 	}
 }
@@ -56,17 +56,17 @@ func TestGovernedChainHasGovernedAssets(t *testing.T) {
 		t.Logf("This test ignored the following chains: %s\n", strings.Join(ignoredOutput, "\n"))
 	}
 
-	tokenConfigEntries := tokenList()
+	tokenConfigEntries := TokenList()
 
-	for _, chainConfigEntry := range chainList() {
-		e := chainConfigEntry.emitterChainID
+	for _, chainConfigEntry := range ChainList() {
+		e := chainConfigEntry.EmitterChainID
 		if _, ignored := ignoredChains[e]; ignored {
 			continue
 		}
 		t.Run(e.String(), func(t *testing.T) {
 			found := false
 			for _, tokenConfigEntry := range tokenConfigEntries {
-				if tokenConfigEntry.chain == uint16(e) {
+				if tokenConfigEntry.Chain == uint16(e) {
 					found = true
 					break
 				}
@@ -76,9 +76,9 @@ func TestGovernedChainHasGovernedAssets(t *testing.T) {
 	}
 
 	// Make sure we're not ignoring any chains with governed tokens.
-	for _, tokenEntry := range tokenList() {
-		t.Run(vaa.ChainID(tokenEntry.chain).String(), func(t *testing.T) {
-			if _, exists := ignoredChains[vaa.ChainID(tokenEntry.chain)]; exists {
+	for _, tokenEntry := range TokenList() {
+		t.Run(vaa.ChainID(tokenEntry.Chain).String(), func(t *testing.T) {
+			if _, exists := ignoredChains[vaa.ChainID(tokenEntry.Chain)]; exists {
 				assert.Fail(t, "Chain is in ignoredChains but it has governed tokens")
 			}
 		})
@@ -86,36 +86,36 @@ func TestGovernedChainHasGovernedAssets(t *testing.T) {
 }
 
 func TestTokenListTokenAddressDuplicates(t *testing.T) {
-	tokenConfigEntries := tokenList()
+	tokenConfigEntries := TokenList()
 
 	/* Assume that all governed token entry addresses won't include duplicates */
 	addrs := make(map[string]string)
 	for _, e := range tokenConfigEntries {
 		// In a few cases, the same address exists on multiple chains, so we need to compare both the chain and the address.
 		// Also using that as the map payload so if we do have a duplicate, we can print out something meaningful.
-		key := fmt.Sprintf("%v:%v", e.chain, e.addr)
+		key := fmt.Sprintf("%v:%v", e.Chain, e.Addr)
 		assert.Equal(t, "", addrs[key])
-		addrs[key] = key + ":" + e.symbol
+		addrs[key] = key + ":" + e.Symbol
 	}
 }
 
 func TestTokenListEmptySymbols(t *testing.T) {
-	tokenConfigEntries := tokenList()
+	tokenConfigEntries := TokenList()
 
 	/* Assume that all governed token entry symbol strings will be greater than zero */
 	for _, tokenConfigEntry := range tokenConfigEntries {
 		// Some Solana tokens don't have the symbol set. For now, we'll still enforce this for other chains.
-		if len(tokenConfigEntry.symbol) == 0 && vaa.ChainID(tokenConfigEntry.chain) != vaa.ChainIDSolana {
-			assert.Equal(t, "", fmt.Sprintf("token %v:%v does not have the symbol set", tokenConfigEntry.chain, tokenConfigEntry.addr))
+		if len(tokenConfigEntry.Symbol) == 0 && vaa.ChainID(tokenConfigEntry.Chain) != vaa.ChainIDSolana {
+			assert.Equal(t, "", fmt.Sprintf("token %v:%v does not have the symbol set", tokenConfigEntry.Chain, tokenConfigEntry.Addr))
 		}
 	}
 }
 
 func TestTokenListEmptyCoinGeckoId(t *testing.T) {
-	tokenConfigEntries := tokenList()
+	tokenConfigEntries := TokenList()
 
 	/* Assume that all governed token entry coingecko id strings will be greater than zero */
 	for _, tokenConfigEntry := range tokenConfigEntries {
-		assert.Greater(t, len(tokenConfigEntry.coinGeckoId), 0)
+		assert.Greater(t, len(tokenConfigEntry.CoinGeckoId), 0)
 	}
 }

+ 75 - 75
node/pkg/governor/manual_tokens.go

@@ -1,89 +1,89 @@
 package governor
 
 // manualTokenList() returns a list of mainnet tokens that are added manually because they cannot be auto generated.
-func manualTokenList() []tokenConfigEntry {
-	return []tokenConfigEntry{
-		{chain: 2, addr: "0000000000000000000000006c3ea9036406852006290770bedfcaba0e23a0e8", symbol: "PYUSD", coinGeckoId: "paypal-usd", decimals: 6, price: 1.00},
-		{chain: 2, addr: "00000000000000000000000085f17cf997934a597031b2e18a9ab6ebd4b9f6a4", symbol: "NEAR", coinGeckoId: "near", decimals: 24, price: 4.34},   // Near on ethereum
-		{chain: 8, addr: "000000000000000000000000000000000000000000000000000000000004c5c1", symbol: "USDt", coinGeckoId: "tether", decimals: 6, price: 1.002}, // Addr: 312769, Notional: 22.31747085
-		{chain: 12, addr: "0000000000000000000000000000000000000000000100000000000000000002", symbol: "DOT", coinGeckoId: "polkadot", decimals: 10, price: 6.48},
-		{chain: 12, addr: "0000000000000000000000000000000000000000000100000000000000000000", symbol: "ACA", coinGeckoId: "acala", decimals: 12, price: 0.05694},
-		{chain: 13, addr: "0000000000000000000000005fff3a6c16c2208103f318f4713d4d90601a7313", symbol: "KLEVA", coinGeckoId: "kleva", decimals: 18, price: 0.086661},
-		{chain: 13, addr: "0000000000000000000000005096db80b21ef45230c9e423c373f1fc9c0198dd", symbol: "WEMIX", coinGeckoId: "wemix-token", decimals: 18, price: 1.74},
-		{chain: 15, addr: "0000000000000000000000000000000000000000000000000000000000000000", symbol: "NEAR", coinGeckoId: "near", decimals: 24, price: 4.34},
-		{chain: 32, addr: "01881043998ff2b738519d444d2dd0da3da4545de08290c1076746538d5333df", symbol: "SEI", coinGeckoId: "sei-network", decimals: 6, price: 0.3},
+func manualTokenList() []TokenConfigEntry {
+	return []TokenConfigEntry{
+		{Chain: 2, Addr: "0000000000000000000000006c3ea9036406852006290770bedfcaba0e23a0e8", Symbol: "PYUSD", CoinGeckoId: "paypal-usd", Decimals: 6, Price: 1.00},
+		{Chain: 2, Addr: "00000000000000000000000085f17cf997934a597031b2e18a9ab6ebd4b9f6a4", Symbol: "NEAR", CoinGeckoId: "near", Decimals: 24, Price: 4.34},   // Near on ethereum
+		{Chain: 8, Addr: "000000000000000000000000000000000000000000000000000000000004c5c1", Symbol: "USDt", CoinGeckoId: "tether", Decimals: 6, Price: 1.002}, // Addr: 312769, Notional: 22.31747085
+		{Chain: 12, Addr: "0000000000000000000000000000000000000000000100000000000000000002", Symbol: "DOT", CoinGeckoId: "polkadot", Decimals: 10, Price: 6.48},
+		{Chain: 12, Addr: "0000000000000000000000000000000000000000000100000000000000000000", Symbol: "ACA", CoinGeckoId: "acala", Decimals: 12, Price: 0.05694},
+		{Chain: 13, Addr: "0000000000000000000000005fff3a6c16c2208103f318f4713d4d90601a7313", Symbol: "KLEVA", CoinGeckoId: "kleva", Decimals: 18, Price: 0.086661},
+		{Chain: 13, Addr: "0000000000000000000000005096db80b21ef45230c9e423c373f1fc9c0198dd", Symbol: "WEMIX", CoinGeckoId: "wemix-token", Decimals: 18, Price: 1.74},
+		{Chain: 15, Addr: "0000000000000000000000000000000000000000000000000000000000000000", Symbol: "NEAR", CoinGeckoId: "near", Decimals: 24, Price: 4.34},
+		{Chain: 32, Addr: "01881043998ff2b738519d444d2dd0da3da4545de08290c1076746538d5333df", Symbol: "SEI", CoinGeckoId: "sei-network", Decimals: 6, Price: 0.3},
 		// BLAST (tokens over $50,000 24h volume)
-		{chain: 36, addr: "0000000000000000000000004300000000000000000000000000000000000003", symbol: "USDB", coinGeckoId: "usdb", decimals: 18, price: 1.00},
-		{chain: 36, addr: "0000000000000000000000004300000000000000000000000000000000000004", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 3157.42},
-		{chain: 36, addr: "0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5", symbol: "EZETH", coinGeckoId: "renzo-restaked-eth", decimals: 18, price: 3092.32},
-		{chain: 36, addr: "0000000000000000000000004fee793d435c6d2c10c135983bb9d6d4fc7b9bbd", symbol: "USD+", coinGeckoId: "usd", decimals: 18, price: 1.00},
-		{chain: 36, addr: "000000000000000000000000818a92bc81aad0053d72ba753fb5bc3d0c5c0923", symbol: "JUICE", coinGeckoId: "juice-finance", decimals: 18, price: 0.1051},
-		{chain: 36, addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", symbol: "OMNI", coinGeckoId: "omnicat", decimals: 18, price: 0.0004575},
-		{chain: 36, addr: "000000000000000000000000764933fbad8f5d04ccd088602096655c2ed9879f", symbol: "AI", coinGeckoId: "any-inu", decimals: 18, price: 0.00002742},
-		{chain: 36, addr: "0000000000000000000000005ffd9ebd27f2fcab044c0f0a26a45cb62fa29c06", symbol: "PAC", coinGeckoId: "pacmoon", decimals: 18, price: 0.05459},
-		{chain: 36, addr: "00000000000000000000000020fe91f17ec9080e3cac2d688b4ecb48c5ac3a9c", symbol: "YES", coinGeckoId: "yes-money", decimals: 18, price: 3.96},
-		{chain: 36, addr: "00000000000000000000000076da31d7c9cbeae102aff34d3398bc450c8374c1", symbol: "MIM", coinGeckoId: "magic-internet-money", decimals: 18, price: 0.9935},
-		{chain: 36, addr: "00000000000000000000000015d24de366f69b835be19f7cf9447e770315dd80", symbol: "KAP", coinGeckoId: "kapital-dao", decimals: 18, price: 0.1143},
-		{chain: 36, addr: "000000000000000000000000b9dfcd4cf589bb8090569cb52fac1b88dbe4981f", symbol: "BAG", coinGeckoId: "bag", decimals: 18, price: 0.002972},
-		{chain: 36, addr: "00000000000000000000000068449870eea84453044bd430822827e21fd8f101", symbol: "ZAI", coinGeckoId: "zaibot", decimals: 18, price: 0.2348},
-		{chain: 36, addr: "00000000000000000000000047c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", symbol: "DACKIE", coinGeckoId: "dackieswap", decimals: 18, price: 0.006554},
-		{chain: 36, addr: "000000000000000000000000d43d8adac6a4c7d9aeece7c3151fca8f23752cf8", symbol: "ANDY", coinGeckoId: "andyerc", decimals: 9, price: 0.1165},
-		{chain: 36, addr: "00000000000000000000000087e154e86fb691ab8a27116e93ed8d54e2b8c18c", symbol: "TES", coinGeckoId: "titan-trading-token", decimals: 18, price: 0.867},
-		{chain: 36, addr: "000000000000000000000000870a8f46b62b8bdeda4c02530c1750cddf2ed32e", symbol: "USDC+", coinGeckoId: "usdc-plus-overnight", decimals: 18, price: 1.00},
-		{chain: 36, addr: "00000000000000000000000042e12d42b3d6c4a74a88a61063856756ea2db357", symbol: "ORBIT", coinGeckoId: "orbit-protocol", decimals: 18, price: 0.3074},
+		{Chain: 36, Addr: "0000000000000000000000004300000000000000000000000000000000000003", Symbol: "USDB", CoinGeckoId: "usdb", Decimals: 18, Price: 1.00},
+		{Chain: 36, Addr: "0000000000000000000000004300000000000000000000000000000000000004", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 3157.42},
+		{Chain: 36, Addr: "0000000000000000000000002416092f143378750bb29b79ed961ab195cceea5", Symbol: "EZETH", CoinGeckoId: "renzo-restaked-eth", Decimals: 18, Price: 3092.32},
+		{Chain: 36, Addr: "0000000000000000000000004fee793d435c6d2c10c135983bb9d6d4fc7b9bbd", Symbol: "USD+", CoinGeckoId: "usd", Decimals: 18, Price: 1.00},
+		{Chain: 36, Addr: "000000000000000000000000818a92bc81aad0053d72ba753fb5bc3d0c5c0923", Symbol: "JUICE", CoinGeckoId: "juice-finance", Decimals: 18, Price: 0.1051},
+		{Chain: 36, Addr: "0000000000000000000000009e20461bc2c4c980f62f1b279d71734207a6a356", Symbol: "OMNI", CoinGeckoId: "omnicat", Decimals: 18, Price: 0.0004575},
+		{Chain: 36, Addr: "000000000000000000000000764933fbad8f5d04ccd088602096655c2ed9879f", Symbol: "AI", CoinGeckoId: "any-inu", Decimals: 18, Price: 0.00002742},
+		{Chain: 36, Addr: "0000000000000000000000005ffd9ebd27f2fcab044c0f0a26a45cb62fa29c06", Symbol: "PAC", CoinGeckoId: "pacmoon", Decimals: 18, Price: 0.05459},
+		{Chain: 36, Addr: "00000000000000000000000020fe91f17ec9080e3cac2d688b4ecb48c5ac3a9c", Symbol: "YES", CoinGeckoId: "yes-money", Decimals: 18, Price: 3.96},
+		{Chain: 36, Addr: "00000000000000000000000076da31d7c9cbeae102aff34d3398bc450c8374c1", Symbol: "MIM", CoinGeckoId: "magic-internet-money", Decimals: 18, Price: 0.9935},
+		{Chain: 36, Addr: "00000000000000000000000015d24de366f69b835be19f7cf9447e770315dd80", Symbol: "KAP", CoinGeckoId: "kapital-dao", Decimals: 18, Price: 0.1143},
+		{Chain: 36, Addr: "000000000000000000000000b9dfcd4cf589bb8090569cb52fac1b88dbe4981f", Symbol: "BAG", CoinGeckoId: "bag", Decimals: 18, Price: 0.002972},
+		{Chain: 36, Addr: "00000000000000000000000068449870eea84453044bd430822827e21fd8f101", Symbol: "ZAI", CoinGeckoId: "zaibot", Decimals: 18, Price: 0.2348},
+		{Chain: 36, Addr: "00000000000000000000000047c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", Symbol: "DACKIE", CoinGeckoId: "dackieswap", Decimals: 18, Price: 0.006554},
+		{Chain: 36, Addr: "000000000000000000000000d43d8adac6a4c7d9aeece7c3151fca8f23752cf8", Symbol: "ANDY", CoinGeckoId: "andyerc", Decimals: 9, Price: 0.1165},
+		{Chain: 36, Addr: "00000000000000000000000087e154e86fb691ab8a27116e93ed8d54e2b8c18c", Symbol: "TES", CoinGeckoId: "titan-trading-token", Decimals: 18, Price: 0.867},
+		{Chain: 36, Addr: "000000000000000000000000870a8f46b62b8bdeda4c02530c1750cddf2ed32e", Symbol: "USDC+", CoinGeckoId: "usdc-plus-overnight", Decimals: 18, Price: 1.00},
+		{Chain: 36, Addr: "00000000000000000000000042e12d42b3d6c4a74a88a61063856756ea2db357", Symbol: "ORBIT", CoinGeckoId: "orbit-protocol", Decimals: 18, Price: 0.3074},
 		// SCROLL (tokens over $50,000 24h volume)
-		{chain: 34, addr: "0000000000000000000000005300000000000000000000000000000000000004", symbol: "WETH", coinGeckoId: "bridged-wrapped-ether-scroll", decimals: 18, price: 1905.44},
-		{chain: 34, addr: "0000000000000000000000000018d96c579121a94307249d47f053e2d687b5e7", symbol: "MVX", coinGeckoId: "metavault-trade", decimals: 18, price: 2.06},
-		{chain: 34, addr: "00000000000000000000000047c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", symbol: "DACKIE", coinGeckoId: "dackieswap", decimals: 18, price: 0.00655},
-		{chain: 34, addr: "000000000000000000000000f55bec9cafdbe8730f096aa55dad6d22d44099df", symbol: "USDT", coinGeckoId: "bridged-tether-scroll", decimals: 6, price: 1.00},
-		{chain: 34, addr: "00000000000000000000000006efdbff2a14a7c8e15944d1f4a48f9f95f663a4", symbol: "USDC", coinGeckoId: "bridged-usd-coin-scroll", decimals: 6, price: 1.00},
-		{chain: 34, addr: "000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215", symbol: "AXLUSDC", coinGeckoId: "bridged-axelar-wrapped-usd-coin-scroll", decimals: 6, price: 1.01},
-		{chain: 34, addr: "0000000000000000000000003c1bca5a656e69edcd0d4e36bebb3fcdaca60cf1", symbol: "WBTC", coinGeckoId: "bridged-wrapped-bitcoin-scroll", decimals: 8, price: 64415.17},
-		{chain: 34, addr: "00000000000000000000000060d01ec2d5e98ac51c8b4cf84dfcce98d527c747", symbol: "IZI", coinGeckoId: "izumi-finance", decimals: 18, price: 0.0142},
-		{chain: 34, addr: "0000000000000000000000000a3bb08b3a15a19b4de82f8acfc862606fb69a2d", symbol: "IUSD", coinGeckoId: "izumi-bond-usd", decimals: 18, price: 0.9195},
-		{chain: 34, addr: "000000000000000000000000f610a9dfb7c89644979b4a0f27063e9e7d7cda32", symbol: "WSTETH", coinGeckoId: "bridged-wrapped-lido-staked-ether-scroll", decimals: 18, price: 3659.28},
-		{chain: 34, addr: "000000000000000000000000cA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 1.00},
-		{chain: 34, addr: "00000000000000000000000053878B874283351D26d206FA512aEcE1Bef6C0dD", symbol: "RETH", coinGeckoId: "rocket-pool-eth", decimals: 18, price: 3475.55},
+		{Chain: 34, Addr: "0000000000000000000000005300000000000000000000000000000000000004", Symbol: "WETH", CoinGeckoId: "bridged-wrapped-ether-scroll", Decimals: 18, Price: 1905.44},
+		{Chain: 34, Addr: "0000000000000000000000000018d96c579121a94307249d47f053e2d687b5e7", Symbol: "MVX", CoinGeckoId: "metavault-trade", Decimals: 18, Price: 2.06},
+		{Chain: 34, Addr: "00000000000000000000000047c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", Symbol: "DACKIE", CoinGeckoId: "dackieswap", Decimals: 18, Price: 0.00655},
+		{Chain: 34, Addr: "000000000000000000000000f55bec9cafdbe8730f096aa55dad6d22d44099df", Symbol: "USDT", CoinGeckoId: "bridged-tether-scroll", Decimals: 6, Price: 1.00},
+		{Chain: 34, Addr: "00000000000000000000000006efdbff2a14a7c8e15944d1f4a48f9f95f663a4", Symbol: "USDC", CoinGeckoId: "bridged-usd-coin-scroll", Decimals: 6, Price: 1.00},
+		{Chain: 34, Addr: "000000000000000000000000eb466342c4d449bc9f53a865d5cb90586f405215", Symbol: "AXLUSDC", CoinGeckoId: "bridged-axelar-wrapped-usd-coin-scroll", Decimals: 6, Price: 1.01},
+		{Chain: 34, Addr: "0000000000000000000000003c1bca5a656e69edcd0d4e36bebb3fcdaca60cf1", Symbol: "WBTC", CoinGeckoId: "bridged-wrapped-bitcoin-scroll", Decimals: 8, Price: 64415.17},
+		{Chain: 34, Addr: "00000000000000000000000060d01ec2d5e98ac51c8b4cf84dfcce98d527c747", Symbol: "IZI", CoinGeckoId: "izumi-finance", Decimals: 18, Price: 0.0142},
+		{Chain: 34, Addr: "0000000000000000000000000a3bb08b3a15a19b4de82f8acfc862606fb69a2d", Symbol: "IUSD", CoinGeckoId: "izumi-bond-usd", Decimals: 18, Price: 0.9195},
+		{Chain: 34, Addr: "000000000000000000000000f610a9dfb7c89644979b4a0f27063e9e7d7cda32", Symbol: "WSTETH", CoinGeckoId: "bridged-wrapped-lido-staked-ether-scroll", Decimals: 18, Price: 3659.28},
+		{Chain: 34, Addr: "000000000000000000000000cA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 1.00},
+		{Chain: 34, Addr: "00000000000000000000000053878B874283351D26d206FA512aEcE1Bef6C0dD", Symbol: "RETH", CoinGeckoId: "rocket-pool-eth", Decimals: 18, Price: 3475.55},
 		// X LAYER (tokens over $50,000 24h volume)
-		{chain: 37, addr: "0000000000000000000000001e4a5963abfd975d8c9021ce480b42188849d41d", symbol: "USDT", coinGeckoId: "polygon-hermez-bridged-usdt-x-layer", decimals: 6, price: 0.9969},
-		{chain: 37, addr: "000000000000000000000000e538905cf8410324e03a5a23c1c177a474d59b2b", symbol: "WOKB", coinGeckoId: "wrapped-okb", decimals: 18, price: 48.76},
-		{chain: 37, addr: "0000000000000000000000005a77f1443d16ee5761d310e38b62f77f726bc71c", symbol: "WETH", coinGeckoId: "weth", decimals: 18, price: 2994.60},
-		{chain: 37, addr: "00000000000000000000000074b7f16337b8972027f6196a17a631ac6de26d22", symbol: "USDC", coinGeckoId: "polygon-hermez-bridged-usdc-x-layer", decimals: 6, price: 0.9949},
-		{chain: 37, addr: "000000000000000000000000ea034fb02eb1808c2cc3adbc15f447b93cbe08e1", symbol: "WBTC", coinGeckoId: "polygon-hermez-bridged-wbtc-x-layer", decimals: 8, price: 57029},
-		{chain: 37, addr: "000000000000000000000000c5015b9d9161dca7e18e32f6f25c4ad850731fd4", symbol: "DAI", coinGeckoId: "polygon-hermez-bridged-dai-x-layer", decimals: 18, price: 1.0006},
+		{Chain: 37, Addr: "0000000000000000000000001e4a5963abfd975d8c9021ce480b42188849d41d", Symbol: "USDT", CoinGeckoId: "polygon-hermez-bridged-usdt-x-layer", Decimals: 6, Price: 0.9969},
+		{Chain: 37, Addr: "000000000000000000000000e538905cf8410324e03a5a23c1c177a474d59b2b", Symbol: "WOKB", CoinGeckoId: "wrapped-okb", Decimals: 18, Price: 48.76},
+		{Chain: 37, Addr: "0000000000000000000000005a77f1443d16ee5761d310e38b62f77f726bc71c", Symbol: "WETH", CoinGeckoId: "weth", Decimals: 18, Price: 2994.60},
+		{Chain: 37, Addr: "00000000000000000000000074b7f16337b8972027f6196a17a631ac6de26d22", Symbol: "USDC", CoinGeckoId: "polygon-hermez-bridged-usdc-x-layer", Decimals: 6, Price: 0.9949},
+		{Chain: 37, Addr: "000000000000000000000000ea034fb02eb1808c2cc3adbc15f447b93cbe08e1", Symbol: "WBTC", CoinGeckoId: "polygon-hermez-bridged-wbtc-x-layer", Decimals: 8, Price: 57029},
+		{Chain: 37, Addr: "000000000000000000000000c5015b9d9161dca7e18e32f6f25c4ad850731fd4", Symbol: "DAI", CoinGeckoId: "polygon-hermez-bridged-dai-x-layer", Decimals: 18, Price: 1.0006},
 		// MANTLE (tokens over $50,000 24h volume)
-		{chain: 35, addr: "000000000000000000000000deaddeaddeaddeaddeaddeaddeaddeaddead0000", symbol: "MNT", coinGeckoId: "mantle", decimals: 18, price: 1.01},
-		{chain: 35, addr: "00000000000000000000000078c1b0c915c4faa5fffa6cabf0219da63d7f4cb8", symbol: "WMNT", coinGeckoId: "wrapped-mantle", decimals: 18, price: 1.01},
-		{chain: 35, addr: "00000000000000000000000009bc4e0d864854c6afb6eb9a9cdf58ac190d0df9", symbol: "USDC", coinGeckoId: "mantle-bridged-usdc-mantle", decimals: 6, price: 1},
-		{chain: 35, addr: "000000000000000000000000201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", symbol: "USDT", coinGeckoId: "mantle-bridged-usdt-mantle", decimals: 6, price: 0.9973},
-		{chain: 35, addr: "000000000000000000000000cDA86A272531e8640cD7F1a92c01839911B90bb0", symbol: "METH", coinGeckoId: "mantle-staked-ether", decimals: 18, price: 3934.06},
-		{chain: 35, addr: "000000000000000000000000deaddeaddeaddeaddeaddeaddeaddeaddead1111", symbol: "WETH", coinGeckoId: "wrapped-ether-mantle-bridge", decimals: 18, price: 3825.65},
-		{chain: 35, addr: "000000000000000000000000371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", symbol: "JOE", coinGeckoId: "joe", decimals: 18, price: 0.4911},
+		{Chain: 35, Addr: "000000000000000000000000deaddeaddeaddeaddeaddeaddeaddeaddead0000", Symbol: "MNT", CoinGeckoId: "mantle", Decimals: 18, Price: 1.01},
+		{Chain: 35, Addr: "00000000000000000000000078c1b0c915c4faa5fffa6cabf0219da63d7f4cb8", Symbol: "WMNT", CoinGeckoId: "wrapped-mantle", Decimals: 18, Price: 1.01},
+		{Chain: 35, Addr: "00000000000000000000000009bc4e0d864854c6afb6eb9a9cdf58ac190d0df9", Symbol: "USDC", CoinGeckoId: "mantle-bridged-usdc-mantle", Decimals: 6, Price: 1},
+		{Chain: 35, Addr: "000000000000000000000000201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", Symbol: "USDT", CoinGeckoId: "mantle-bridged-usdt-mantle", Decimals: 6, Price: 0.9973},
+		{Chain: 35, Addr: "000000000000000000000000cDA86A272531e8640cD7F1a92c01839911B90bb0", Symbol: "METH", CoinGeckoId: "mantle-staked-ether", Decimals: 18, Price: 3934.06},
+		{Chain: 35, Addr: "000000000000000000000000deaddeaddeaddeaddeaddeaddeaddeaddead1111", Symbol: "WETH", CoinGeckoId: "wrapped-ether-mantle-bridge", Decimals: 18, Price: 3825.65},
+		{Chain: 35, Addr: "000000000000000000000000371c7ec6d8039ff7933a2aa28eb827ffe1f52f07", Symbol: "JOE", CoinGeckoId: "joe", Decimals: 18, Price: 0.4911},
 		// BERACHAIN (non-bridged tokens over $1,000,000 24h volume)
-		{chain: 39, addr: "0000000000000000000000006969696969696969696969696969696969696969", symbol: "WBERA", coinGeckoId: "wrapped-bera", decimals: 18, price: 6.62},
-		{chain: 39, addr: "000000000000000000000000fcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce", symbol: "HONEY", coinGeckoId: "honey-3", decimals: 18, price: 0.9985},
-		{chain: 39, addr: "0000000000000000000000006fc6545d5cde268d5c7f1e476d444f39c995120d", symbol: "BERAETH", coinGeckoId: "berachain-staked-eth", decimals: 18, price: 2713.26},
-		{chain: 39, addr: "00000000000000000000000036e9fe653e673fda3857dbe5afbc884af8a316a2", symbol: "BERAFI", coinGeckoId: "berafi", decimals: 18, price: 0.00117},
+		{Chain: 39, Addr: "0000000000000000000000006969696969696969696969696969696969696969", Symbol: "WBERA", CoinGeckoId: "wrapped-bera", Decimals: 18, Price: 6.62},
+		{Chain: 39, Addr: "000000000000000000000000fcbd14dc51f0a4d49d5e53c2e0950e0bc26d0dce", Symbol: "HONEY", CoinGeckoId: "honey-3", Decimals: 18, Price: 0.9985},
+		{Chain: 39, Addr: "0000000000000000000000006fc6545d5cde268d5c7f1e476d444f39c995120d", Symbol: "BERAETH", CoinGeckoId: "berachain-staked-eth", Decimals: 18, Price: 2713.26},
+		{Chain: 39, Addr: "00000000000000000000000036e9fe653e673fda3857dbe5afbc884af8a316a2", Symbol: "BERAFI", CoinGeckoId: "berafi", Decimals: 18, Price: 0.00117},
 		// SEIEVM (tokens over $500,000 24h volume)
-		{chain: 40, addr: "0000000000000000000000009151434b16b9763660705744891fA906F660EcC5", symbol: "USDT0", coinGeckoId: "usdt0", decimals: 6, price: 1.00},
-		{chain: 40, addr: "000000000000000000000000e30fedd158a2e3b13e9badaeabafc5516e95e8c7", symbol: "WSEI", coinGeckoId: "wrapped-sei", decimals: 18, price: 0.2236},
-		{chain: 40, addr: "0000000000000000000000003894085ef7ff0f0aedf52e2a2704928d1ec074f1", symbol: "USDC", coinGeckoId: "ibc-bridged-usdc", decimals: 6, price: 1.00},
-		{chain: 40, addr: "000000000000000000000000541fd749419ca806a8bc7da8ac23d346f2df8b77", symbol: "SOLVBTC", coinGeckoId: "solv-btc", decimals: 18, price: 106222},
-		{chain: 40, addr: "000000000000000000000000cc0966d8418d412c599a6421b760a847eb169a8c", symbol: "XSOLVBTC", coinGeckoId: "solv-protocol-solvbtc-bbn", decimals: 18, price: 105810},
+		{Chain: 40, Addr: "0000000000000000000000009151434b16b9763660705744891fA906F660EcC5", Symbol: "USDT0", CoinGeckoId: "usdt0", Decimals: 6, Price: 1.00},
+		{Chain: 40, Addr: "000000000000000000000000e30fedd158a2e3b13e9badaeabafc5516e95e8c7", Symbol: "WSEI", CoinGeckoId: "wrapped-sei", Decimals: 18, Price: 0.2236},
+		{Chain: 40, Addr: "0000000000000000000000003894085ef7ff0f0aedf52e2a2704928d1ec074f1", Symbol: "USDC", CoinGeckoId: "ibc-bridged-usdc", Decimals: 6, Price: 1.00},
+		{Chain: 40, Addr: "000000000000000000000000541fd749419ca806a8bc7da8ac23d346f2df8b77", Symbol: "SOLVBTC", CoinGeckoId: "solv-btc", Decimals: 18, Price: 106222},
+		{Chain: 40, Addr: "000000000000000000000000cc0966d8418d412c599a6421b760a847eb169a8c", Symbol: "XSOLVBTC", CoinGeckoId: "solv-protocol-solvbtc-bbn", Decimals: 18, Price: 105810},
 		// UNICHAIN (tokens over $1,000,000 24h volume)
-		{chain: 44, addr: "000000000000000000000000078D782b760474a361dDA0AF3839290b0EF57AD6", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 1.00},
-		{chain: 44, addr: "0000000000000000000000004200000000000000000000000000000000000006", symbol: "WETH", coinGeckoId: "unichain-bridged-weth-unichain", decimals: 18, price: 2722.24},
-		{chain: 44, addr: "0000000000000000000000008f187aA05619a017077f5308904739877ce9eA21", symbol: "UNI", coinGeckoId: "uniswap", decimals: 18, price: 9.43},
-		{chain: 44, addr: "00000000000000000000000020CAb320A855b39F724131C69424240519573f81", symbol: "DAI", coinGeckoId: "dai", decimals: 18, price: 1.0},
+		{Chain: 44, Addr: "000000000000000000000000078D782b760474a361dDA0AF3839290b0EF57AD6", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 1.00},
+		{Chain: 44, Addr: "0000000000000000000000004200000000000000000000000000000000000006", Symbol: "WETH", CoinGeckoId: "unichain-bridged-weth-unichain", Decimals: 18, Price: 2722.24},
+		{Chain: 44, Addr: "0000000000000000000000008f187aA05619a017077f5308904739877ce9eA21", Symbol: "UNI", CoinGeckoId: "uniswap", Decimals: 18, Price: 9.43},
+		{Chain: 44, Addr: "00000000000000000000000020CAb320A855b39F724131C69424240519573f81", Symbol: "DAI", CoinGeckoId: "dai", Decimals: 18, Price: 1.0},
 		// WORLDCHAIN (tokens over $50,000 24h volume)
-		{chain: 45, addr: "0000000000000000000000002cFc85d8E48F8EAB294be644d9E25C3030863003", symbol: "WLD", coinGeckoId: "worldcoin-wld", decimals: 18, price: 2.47},
-		{chain: 45, addr: "00000000000000000000000003C7054BCB39f7b2e5B2c7AcB37583e32D70Cfa3", symbol: "WBTC", coinGeckoId: "bridged-wrapped-bitcoin-worldchain", decimals: 8, price: 86683.84},
-		{chain: 45, addr: "0000000000000000000000004200000000000000000000000000000000000006", symbol: "WETH", coinGeckoId: "wrapped-eth-world-chain", decimals: 18, price: 3311.13},
-		{chain: 45, addr: "00000000000000000000000079A02482A880bCE3F13e09Da970dC34db4CD24d1", symbol: "USDC.e", coinGeckoId: "bridged-usdc-world-chain", decimals: 6, price: 1.00},
+		{Chain: 45, Addr: "0000000000000000000000002cFc85d8E48F8EAB294be644d9E25C3030863003", Symbol: "WLD", CoinGeckoId: "worldcoin-wld", Decimals: 18, Price: 2.47},
+		{Chain: 45, Addr: "00000000000000000000000003C7054BCB39f7b2e5B2c7AcB37583e32D70Cfa3", Symbol: "WBTC", CoinGeckoId: "bridged-wrapped-bitcoin-worldchain", Decimals: 8, Price: 86683.84},
+		{Chain: 45, Addr: "0000000000000000000000004200000000000000000000000000000000000006", Symbol: "WETH", CoinGeckoId: "wrapped-eth-world-chain", Decimals: 18, Price: 3311.13},
+		{Chain: 45, Addr: "00000000000000000000000079A02482A880bCE3F13e09Da970dC34db4CD24d1", Symbol: "USDC.e", CoinGeckoId: "bridged-usdc-world-chain", Decimals: 6, Price: 1.00},
 		// INK (tokens over $500,000 24h volume)
-		{chain: 46, addr: "0000000000000000000000000200c29006150606b650577bbe7b6248f58470c1", symbol: "USDT0", coinGeckoId: "usdt0", decimals: 6, price: 1.00},
-		{chain: 46, addr: "000000000000000000000000f1815bd50389c46847f0bda824ec8da914045d14", symbol: "USDC.E", coinGeckoId: "stargate-bridged-usdc-ink", decimals: 6, price: 1.00},
-		{chain: 46, addr: "000000000000000000000000ae4efbc7736f963982aacb17efa37fcbab924cb3", symbol: "SOLVBTC", coinGeckoId: "solv-btc", decimals: 18, price: 106222},
-		{chain: 46, addr: "000000000000000000000000c99f5c922dae05b6e2ff83463ce705ef7c91f077", symbol: "XSOLVBTC", coinGeckoId: "solv-protocol-solvbtc-bbn", decimals: 18, price: 105810},
+		{Chain: 46, Addr: "0000000000000000000000000200c29006150606b650577bbe7b6248f58470c1", Symbol: "USDT0", CoinGeckoId: "usdt0", Decimals: 6, Price: 1.00},
+		{Chain: 46, Addr: "000000000000000000000000f1815bd50389c46847f0bda824ec8da914045d14", Symbol: "USDC.E", CoinGeckoId: "stargate-bridged-usdc-ink", Decimals: 6, Price: 1.00},
+		{Chain: 46, Addr: "000000000000000000000000ae4efbc7736f963982aacb17efa37fcbab924cb3", Symbol: "SOLVBTC", CoinGeckoId: "solv-btc", Decimals: 18, Price: 106222},
+		{Chain: 46, Addr: "000000000000000000000000c99f5c922dae05b6e2ff83463ce705ef7c91f077", Symbol: "XSOLVBTC", CoinGeckoId: "solv-protocol-solvbtc-bbn", Decimals: 18, Price: 105810},
 	}
 }

+ 11 - 11
node/pkg/governor/testnet_config.go

@@ -6,30 +6,30 @@ import (
 	"github.com/wormhole-foundation/wormhole/sdk/vaa"
 )
 
-func (gov *ChainGovernor) initTestnetConfig() ([]tokenConfigEntry, []tokenConfigEntry, []chainConfigEntry, []corridor) {
+func (gov *ChainGovernor) initTestnetConfig() ([]TokenConfigEntry, []TokenConfigEntry, []ChainConfigEntry, []corridor) {
 	gov.logger.Info("setting up testnet config")
 
-	tokens := []tokenConfigEntry{
-		{chain: 1, addr: "069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001", symbol: "SOL", coinGeckoId: "wrapped-solana", decimals: 9, price: 138.11}, // Addr: So11111111111111111111111111111111111111112, Notional: 82226686.73036034
-		{chain: 1, addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 1.001},       // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
+	tokens := []TokenConfigEntry{
+		{Chain: 1, Addr: "069b8857feab8184fb687f634618c035dac439dc1aeb3b5598a0f00000000001", Symbol: "SOL", CoinGeckoId: "wrapped-solana", Decimals: 9, Price: 138.11}, // Addr: So11111111111111111111111111111111111111112, Notional: 82226686.73036034
+		{Chain: 1, Addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 1.001},       // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
 	}
 
-	flowCancelTokens := []tokenConfigEntry{}
+	flowCancelTokens := []TokenConfigEntry{}
 	flowCancelCorridors := []corridor{}
 
 	if gov.flowCancelEnabled {
-		flowCancelTokens = []tokenConfigEntry{
-			{chain: 1, addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", symbol: "USDC", coinGeckoId: "usd-coin", decimals: 6, price: 1.001}, // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
+		flowCancelTokens = []TokenConfigEntry{
+			{Chain: 1, Addr: "3b442cb3912157f13a933d0134282d032b5ffecd01a2dbf1b7790608df002ea7", Symbol: "USDC", CoinGeckoId: "usd-coin", Decimals: 6, Price: 1.001}, // Addr: 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU, Notional: 6780118.197035182
 		}
 		flowCancelCorridors = []corridor{
 			{first: vaa.ChainIDEthereum, second: vaa.ChainIDSui},
 		}
 	}
 
-	chains := []chainConfigEntry{
-		{emitterChainID: vaa.ChainIDSolana, dailyLimit: 100000000},
-		{emitterChainID: vaa.ChainIDEthereum, dailyLimit: 100000000},
-		{emitterChainID: vaa.ChainIDFantom, dailyLimit: 1000000},
+	chains := []ChainConfigEntry{
+		{EmitterChainID: vaa.ChainIDSolana, DailyLimit: 100000000},
+		{EmitterChainID: vaa.ChainIDEthereum, DailyLimit: 100000000},
+		{EmitterChainID: vaa.ChainIDFantom, DailyLimit: 1000000},
 	}
 
 	return tokens, flowCancelTokens, chains, flowCancelCorridors