{"info":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p>What does your API do?</p>\n<h1 id=\"overview\">Overview</h1>\n<p>Things that the developers should know about</p>\n<p>Add these variables to your <code>Environment</code></p>\n<ul>\n<li><p><code>satang_api_url</code>=<code>https://www.orbixtrade.com/api</code></p>\n</li>\n<li><p><code>satang_api_key</code> - API Key from API Setting.</p>\n</li>\n<li><p><code>satang_api_secret</code> - API Secret you got when creating an API Key.</p>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<p><em>Note: Authentication requires both the APIKey and APISecret, if you don't have any of these please generate at</em> <a href=\"https://satangcorp.com/exchange/en/settings/api\">API Setting</a></p>\n<p>All private endpoint requires the follwing authentication headers.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">Authorization: TDAX-API &lt;APIKey&gt;\nSignature: &lt;RequestSignature&gt;\n\n</code></pre>\n<p>Where <code>APIKey</code> can be retrieved from API Setting. And the signature can be created using the procedure as in the <strong>Signing</strong> section.</p>\n<h2 id=\"request-signature-signing\">Request Signature (Signing)</h2>\n<ol>\n<li>Concatenate all request parameters into one string</li>\n</ol>\n<p>Concatenate all request parameters as a string (this is only from body parameters for POST/DELETE requests, for GET requests, use empty string to sign in the next step) in the format of key1=value1&amp;key2=value2&amp;... where all keys are alphabetical-sorted, for examples:</p>\n<h3 id=\"right-alphabetical-sorted\">Right (alphabetical-sorted)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>amount=1&amp;nonce=2731832&amp;pair=usdt_thb&amp;price=31&amp;side=buy&amp;type=limit\n\n</code></pre><h3 id=\"wrong-not-alphabetical-sorted\">Wrong (not alphabetical-sorted)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>type=limit&amp;side=sell&amp;pair=usdt_thb&amp;price=31&amp;amount=1&amp;nonce=2731832\n\n</code></pre><ol>\n<li>Sign with APISecret</li>\n</ol>\n<p>An APISecret can be retrieved from API Setting. Use the APISecret to sign the above string with SHA512 HMAC algorithm, for examples the following string:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>amount=1&amp;nonce=2731832&amp;pair=usdt_thb&amp;price=31&amp;side=buy&amp;type=limit\n\n</code></pre><p>And the APISecret as <code>fc8fa6ef2a9e4949bdf72d38208803657659ff67f2a74486a04a64b0bf1f2e6f</code> would have the correct signature as:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>5959460f890d9dad1fe1cdaf73bea955eef8c38da6a0b3139dbbe0d7e5fabfb3d0d3a4786767e759502ebd6d8878ac875441909f3c5232fa842c9349c03988bf\n\n</code></pre><h2 id=\"sending-request\">Sending request</h2>\n<p>After creating the signature in the Signing section, we can now send the request with the complete request headers, for example using the above request parameters and signature:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">Authorization: TDAX-API live-2a6c1bd5eb0b4321aaaf26721e997e9f\nSignature: 5959460f890d9dad1fe1cdaf73bea955eef8c38da6a0b3139dbbe0d7e5fabfb3d0d3a4786767e759502ebd6d8878ac875441909f3c5232fa842c9349c03988bf\n\n</code></pre>\n<p>Assuming the APIKey is <code>live-2a6c1bd5eb0b4321aaaf26721e997e9f</code>.</p>\n<h2 id=\"security-concerns\">Security Concerns</h2>\n<p>As APISecret is so important for request signing. Please <strong>keep it only in the server where only authorized staffs can get access</strong> and never keep it in the client such as web browser.</p>\n<h2 id=\"example-signing-code-in-golang\">Example Signing Code in Golang</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-golang\">package main\nimport (\n    \"crypto/hmac\"\n    \"crypto/sha512\"\n    \"fmt\"\n)\nfunc main() {\n    secret := \"fc8fa6ef2a9e4949bdf72d38208803657659ff67f2a74486a04a64b0bf1f2e6f\"\n    payload := \"amount=1&amp;nonce=2731832&amp;pair=usdt_thb&amp;price=31&amp;side=buy&amp;type=limit\"\n    h := hmac.New(sha512.New, []byte(secret))\n    h.Write([]byte(payload))\n    sig := fmt.Sprintf(\"%x\", h.Sum(nil))\n    fmt.Println(sig)\n}\n\n</code></pre>\n<p>See it on <a href=\"https://replit.com/@SupagornWarodom/SatangRequestSignatureGo\">Repl.it</a></p>\n<h2 id=\"example-signing-code-in-javascript\">Example Signing Code in Javascript</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-js\">const crypto = require(\"crypto\")\nlet api_secret = 'fc8fa6ef2a9e4949bdf72d38208803657659ff67f2a74486a04a64b0bf1f2e6f'\nlet signer = (apiSecret, str) =&gt; {\n    let hmac = crypto.createHmac(\"sha512\", apiSecret);\n    let signed = hmac.update(str).digest('hex');\n    return signed;\n}\nlet request_header = 'amount=1&amp;nonce=2731832&amp;pair=usdt_thb&amp;price=31&amp;side=buy&amp;type=limit'\nlet signed = signer(api_secret, request_header)\nconsole.log('signed::',signed)\n\n</code></pre>\n<p>See it on <a href=\"https://replit.com/@SupagornWarodom/SatangRequestSignatureJS#index.js\">Repl.it</a></p>\n<h2 id=\"example-signing-code-in-python\">Example Signing Code in Python</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import hashlib\nimport hmac\napi_secret = 'fc8fa6ef2a9e4949bdf72d38208803657659ff67f2a74486a04a64b0bf1f2e6f'\nrequest_header= 'amount=1&amp;nonce=2731832&amp;pair=usdt_thb&amp;price=31&amp;side=buy&amp;type=limit'\nsig = hmac.new(\n  bytes(api_secret,encoding='utf-8'),\n  bytes(request_header,encoding='utf-8'),\n  digestmod=hashlib.sha512\n  ).hexdigest()\nprint(sig)\n\n</code></pre>\n<p>See it on <a href=\"https://replit.com/@SupagornWarodom/SatangRequestSignature#main.py\">Repl.it</a></p>\n<h1 id=\"sdks\">SDKs</h1>\n<ul>\n<li><p><a href=\"https://bitbucket.org/satangcorpsdk/pro-js-sdk/src/master/\">JavaScript</a></p>\n</li>\n<li><p><a href=\"https://bitbucket.org/satangcorpsdk/pro-go-sdk/src/master/\">Golang</a></p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"SDKs","slug":"sdks"}],"owner":"17936236","collectionId":"ed364eb6-d202-4cf4-a3fa-058262afdaab","publishedId":"UV5UmKvP","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-11-27T03:57:13.000Z"},"item":[{"name":"User","item":[{"name":"Get balances and addresses","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"34da0177-5772-4b39-a905-f6baa1b4c25f"}}],"id":"c8904517-245b-471d-bdff-2fe95f204b49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/users/me","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["users","me"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"0794be84-b0fb-41d8-a087-e12738d39e0c","name":"OK","originalRequest":{"method":"GET","header":[],"url":"{{BASE_URL}}/api/users/me"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1000001,\n    \"email\": \"your@email.com\",\n    \"identity_verification_level\": \"level_1\",\n    \"tfa_enabled\": [\n        \"user_update\",\n        \"order_creation\",\n        \"deposit_creation\",\n        \"withdrawal_creation\"\n    ],\n    \"api_keys\": [\n        {\n            \"APIKey\": \"abcd1234\",\n            \"Label\": \"testtt\",\n            \"Status\": 1,\n            \"Permissions\": [\n                \"wallets::write\",\n                \"wallets::read\",\n                \"orders::write\",\n                \"orders::read\"\n            ],\n            \"CreatedAt\": \"2020-03-12T12:06:17.645119Z\"\n        }\n    ],\n    \"anti_phishing_code\": \"Xx**\",\n    \"is_authorized_device\": false,\n    \"wallets\": {\n        \"ada\": {\n            \"addresses\": [\n                {\n                    \"address\": \"DdzFFzCqrhsrP5e3NnEdcRyTthikubYN6uNmCFdtFvnGvrv86S8Cw68WgosSGzM6XJ53sVwF1jXNk3dqGFNonwMEMk9DGqssmc8jPkQa\",\n                    \"tag\": \"\",\n                    \"network\": \"ada\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"aion\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"algo\": {\n            \"addresses\": [\n                {\n                    \"address\": \"LQVKEFBCELESB35JC2QY7OTQIEZBJ5MFYDMYPHWWC6M7ZRBF464UJ6CMAA\",\n                    \"tag\": \"\",\n                    \"network\": \"algo\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"ankr\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"arpa\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"atom\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"band\": {\n            \"addresses\": [\n                {\n                    \"address\": \"band1w4ml3tmn7t00603m2euqfj9ndm8h8q2rp4enfj\",\n                    \"tag\": \"103103801\",\n                    \"network\": \"band\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"bat\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"bch\": {\n            \"addresses\": [\n                {\n                    \"address\": \"1Dzs9mBpysupuERnXz6h3AdzSHosdRgQZm\",\n                    \"tag\": \"\",\n                    \"network\": \"bch\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"bcha\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"beam\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"bnb\": {\n            \"addresses\": [\n                {\n                    \"address\": \"bnb136ns6lfw4zs5hg4n85vdthaad7hq5m4gtkgf23\",\n                    \"tag\": \"105727469\",\n                    \"network\": \"bnb\"\n                },\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"bsc\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"btc\": {\n            \"addresses\": [\n                {\n                    \"address\": \"1DZNor2xmcjMcPH27UgQPjRh2W83H5oqME\",\n                    \"tag\": \"\",\n                    \"network\": \"btc\"\n                }\n            ],\n            \"available_balance\": \"0.0001\"\n        },\n        \"btg\": {\n            \"addresses\": [\n                {\n                    \"address\": \"GPpxWzcRMk5PeNZsEY8TzBvdD8fH98PVU5\",\n                    \"tag\": \"\",\n                    \"network\": \"btg\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"btt\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"busd\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"celr\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"chz\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"cocos\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"cos\": {\n            \"addresses\": [\n                {\n                    \"address\": \"bnb136ns6lfw4zs5hg4n85vdthaad7hq5m4gtkgf23\",\n                    \"tag\": \"105727469\",\n                    \"network\": \"bnb\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"ctxc\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"cvc\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"dai\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"dash\": {\n            \"addresses\": [\n                {\n                    \"address\": \"XxsxXAW2DHRZMu96FbvqRmZxcntmLYN5Cq\",\n                    \"tag\": \"\",\n                    \"network\": \"dash\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"doge\": {\n            \"addresses\": [\n                {\n                    \"address\": \"DAB7uZXWdmqnypyrbdLHvTyZuGJR1kSxUa\",\n                    \"tag\": \"\",\n                    \"network\": \"doge\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"dot\": {\n            \"addresses\": [\n                {\n                    \"address\": \"15uRv81n3t5hFPFYV12YdWHJkZkQ5UzDVabNaJq1E9ikJVSr\",\n                    \"tag\": \"\",\n                    \"network\": \"dot\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"dusk\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"elec\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x033bc390c2833552d44b06cb39b816a3f390b42e\",\n                    \"tag\": \"\",\n                    \"network\": \"\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"enj\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"eos\": {\n            \"addresses\": [\n                {\n                    \"address\": \"binancecleos\",\n                    \"tag\": \"108002759\",\n                    \"network\": \"eos\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"erd\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"etc\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x57a0d1fa9838e6d23a60616e82a5a1794eb732f6\",\n                    \"tag\": \"\",\n                    \"network\": \"etc\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"eth\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x57b1b672ceed333561128df54c0b8f799a874c2d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0.0000984108451092\"\n        },\n        \"etp\": {\n            \"addresses\": [\n                {\n                    \"address\": \"MUPGPJE7goZYj83sMfBsPvwTuPikdhjB92\",\n                    \"tag\": \"\",\n                    \"network\": \"\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"fet\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"flow\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x6873f959df253beb\",\n                    \"tag\": \"\",\n                    \"network\": \"flow\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"ftm\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"ftt\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"fun\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"hbar\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"hc\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"hot\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"icp\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"icx\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"iost\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"iota\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"iotx\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"jfin\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x033bc390c2833552d44b06cb39b816a3f390b42e\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"kava\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"knc\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x5658b0b74a1f70803cb9137b80e2e867ba61332c\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"5.0000000053333333\"\n        },\n        \"link\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x578897c97d54a3c8773b7681a9b14f50c9ede358\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"lsk\": {\n            \"addresses\": [\n                {\n                    \"address\": \"2374019770074316075L\",\n                    \"tag\": \"\",\n                    \"network\": \"lsk\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"ltc\": {\n            \"addresses\": [\n                {\n                    \"address\": \"LXkfZgnz4939WW38NW3MLroAvBSyusoHui\",\n                    \"tag\": \"\",\n                    \"network\": \"ltc\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"lto\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"luna\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"matic\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"mbl\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"mco\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"mft\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"nano\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"neo\": {\n            \"addresses\": [\n                {\n                    \"address\": \"AVaQXAk89geJWskvLPJ2YGabNvYKDfiMN2\",\n                    \"tag\": \"\",\n                    \"network\": \"neo\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"nkn\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"npxs\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"nuls\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"ogn\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"omg\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"1.0000000066666667\"\n        },\n        \"one\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"ong\": {\n            \"addresses\": [\n                {\n                    \"address\": \"AVaQXAk89geJWskvLPJ2YGabNvYKDfiMN2\",\n                    \"tag\": \"\",\n                    \"network\": \"ont\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"ont\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"pax\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"paxg\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x033bc390c2833552d44b06cb39b816a3f390b42e\",\n                    \"tag\": \"\",\n                    \"network\": \"\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"perl\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"powr\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x53b355ec0b1637a1eb9e5a4aa8e6ed4224348c94\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"qtum\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"ren\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"rpx\": {\n            \"addresses\": [\n                {\n                    \"address\": \"ARGXR49oncUfnykv5w7ZLzFUKTtj4XF7iu\",\n                    \"tag\": \"\",\n                    \"network\": \"\"\n                }\n            ],\n            \"available_balance\": \"99.71641792\"\n        },\n        \"rvn\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"sol\": {\n            \"addresses\": [\n                {\n                    \"address\": \"CpdS2L8kmQhB2KNEtaYZx8K2UuFVcbkbifqusTUJpvTs\",\n                    \"tag\": \"\",\n                    \"network\": \"sol\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"stpt\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"strat\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"stx\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"tfuel\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"thb\": {\n            \"addresses\": null,\n            \"available_balance\": \"3233.8032107344\"\n        },\n        \"theta\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"tomo\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"troy\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"trx\": {\n            \"addresses\": [\n                {\n                    \"address\": \"TLSyJ9Udi7ZufJA7rwNmtXAS25bBUKeo8v\",\n                    \"tag\": \"\",\n                    \"network\": \"trx\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"tusd\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"usdc\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56ad09c8b765c05b631d782d1b53f3e5aa91446d\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"usdt\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x56f76ca279def712d2163659858dc38493c812f6\",\n                    \"tag\": \"\",\n                    \"network\": \"eth\"\n                },\n                {\n                    \"address\": \"TLSyJ9Udi7ZufJA7rwNmtXAS25bBUKeo8v\",\n                    \"tag\": \"\",\n                    \"network\": \"trx\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"vet\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"vite\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"wan\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"waves\": {\n            \"addresses\": [\n                {\n                    \"address\": \"3PDDKTwHg8jg2L2JhABVkjPJKTH47fgL1AF\",\n                    \"tag\": \"\",\n                    \"network\": \"waves\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"wax\": {\n            \"addresses\": [\n                {\n                    \"address\": \"0x033bc390c2833552d44b06cb39b816a3f390b42e\",\n                    \"tag\": \"\",\n                    \"network\": \"\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"win\": {\n            \"addresses\": [\n                {\n                    \"address\": \"TLSyJ9Udi7ZufJA7rwNmtXAS25bBUKeo8v\",\n                    \"tag\": \"\",\n                    \"network\": \"trx\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"wrx\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"xlm\": {\n            \"addresses\": [\n                {\n                    \"address\": \"GAHK7EEG2WWHVKDNT4CEQFZGKF2LGDSW2IVM4S5DP42RBW3K6BTODB4A\",\n                    \"tag\": \"1010384876\",\n                    \"network\": \"xlm\"\n                }\n            ],\n            \"available_balance\": \"17.08\"\n        },\n        \"xmr\": {\n            \"addresses\": [\n                {\n                    \"address\": \"85V1kkJpDnKR7txbZkcmzcRRoJYBY5sdGVGoYqCxPkxAJLj7Jv9gUd8BvTE58tWvwX3jmc3ebB4CgFQUZvzf9CvUFS8qVV2\",\n                    \"tag\": \"\",\n                    \"network\": \"xmr\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"xrp\": {\n            \"addresses\": [\n                {\n                    \"address\": \"rEb8TK3gBgk5auZkwc6sHnwrGVJH8DuaLh\",\n                    \"tag\": \"105432437\",\n                    \"network\": \"xrp\"\n                }\n            ],\n            \"available_balance\": \"0.048286\"\n        },\n        \"xtz\": {\n            \"addresses\": [\n                {\n                    \"address\": \"tz1eXecKJBYukmrnRV7a9wwmdSy2DNJq3yZ7\",\n                    \"tag\": \"\",\n                    \"network\": \"xtz\"\n                }\n            ],\n            \"available_balance\": \"0\"\n        },\n        \"xzc\": {\n            \"addresses\": [\n                {\n                    \"address\": \"a1DkcY3BAFyewZfoySZzM2aJF2ojdHb6s4\",\n                    \"tag\": \"\",\n                    \"network\": \"xzc\"\n                },\n                {\n                    \"address\": \"41SYqiybSFtbJiST547R1EFwCGFTrRzgYb\",\n                    \"tag\": \"\",\n                    \"network\": \"xzc\"\n                }\n            ],\n            \"available_balance\": \"0.02760167\"\n        },\n        \"zec\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"zil\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        },\n        \"zrx\": {\n            \"addresses\": null,\n            \"available_balance\": \"0\"\n        }\n    },\n    \"limits\": {\n        \"ada\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"aion\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"algo\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ankr\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"arpa\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"atom\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"band\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"bat\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"bch\": {\n            \"available\": \"150\",\n            \"capacity\": \"150\"\n        },\n        \"bcha\": {\n            \"available\": \"200000\",\n            \"capacity\": \"200000\"\n        },\n        \"beam\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"bnb\": {\n            \"available\": \"2000\",\n            \"capacity\": \"2000\"\n        },\n        \"btc\": {\n            \"available\": \"15\",\n            \"capacity\": \"15\"\n        },\n        \"btg\": {\n            \"available\": \"50\",\n            \"capacity\": \"50\"\n        },\n        \"btt\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"busd\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"cake\": {\n            \"available\": \"50000\",\n            \"capacity\": \"50000\"\n        },\n        \"celr\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"chz\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"cocos\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"cos\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"cpy\": {\n            \"available\": \"5000000\",\n            \"capacity\": \"5000000\"\n        },\n        \"ctxc\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"cvc\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"dai\": {\n            \"available\": \"200000\",\n            \"capacity\": \"200000\"\n        },\n        \"dash\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"doge\": {\n            \"available\": \"400000\",\n            \"capacity\": \"400000\"\n        },\n        \"dot\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"dusk\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"elec\": {\n            \"available\": \"500000\",\n            \"capacity\": \"500000\"\n        },\n        \"enj\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"eos\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"erd\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"etc\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"eth\": {\n            \"available\": \"200\",\n            \"capacity\": \"200\"\n        },\n        \"etp\": {\n            \"available\": \"3000000\",\n            \"capacity\": \"3000000\"\n        },\n        \"fet\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"flow\": {\n            \"available\": \"10000\",\n            \"capacity\": \"10000\"\n        },\n        \"ftm\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ftt\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"fun\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"hbar\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"hc\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"hot\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"icp\": {\n            \"available\": \"10000\",\n            \"capacity\": \"10000\"\n        },\n        \"icx\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"iost\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"iota\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"iotx\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"jfin\": {\n            \"available\": \"800000\",\n            \"capacity\": \"800000\"\n        },\n        \"kava\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"knc\": {\n            \"available\": \"3000\",\n            \"capacity\": \"3000\"\n        },\n        \"link\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"lsk\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ltc\": {\n            \"available\": \"500\",\n            \"capacity\": \"500\"\n        },\n        \"lto\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"luna\": {\n            \"available\": \"25000\",\n            \"capacity\": \"25000\"\n        },\n        \"matic\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"mbl\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"mco\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"mft\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"nano\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"neo\": {\n            \"available\": \"30000\",\n            \"capacity\": \"30000\"\n        },\n        \"nkn\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"npxs\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"nuls\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ogn\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"omg\": {\n            \"available\": \"10000\",\n            \"capacity\": \"10000\"\n        },\n        \"one\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ong\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ont\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"pax\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"paxg\": {\n            \"available\": \"10\",\n            \"capacity\": \"10\"\n        },\n        \"perl\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"powr\": {\n            \"available\": \"50000\",\n            \"capacity\": \"50000\"\n        },\n        \"qtum\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"ren\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"rpx\": {\n            \"available\": \"0\",\n            \"capacity\": \"0\"\n        },\n        \"rvn\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"sol\": {\n            \"available\": \"50000\",\n            \"capacity\": \"50000\"\n        },\n        \"stpt\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"strat\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"stx\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"tfuel\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"thb\": {\n            \"available\": \"10000\",\n            \"capacity\": \"10000\"\n        },\n        \"theta\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"tomo\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"troy\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"trx\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"tusd\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"usdc\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"usdt\": {\n            \"available\": \"450000\",\n            \"capacity\": \"450000\"\n        },\n        \"vet\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"vite\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"wan\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"waves\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"wax\": {\n            \"available\": \"10000\",\n            \"capacity\": \"10000\"\n        },\n        \"win\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"wrx\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"xlm\": {\n            \"available\": \"300000\",\n            \"capacity\": \"300000\"\n        },\n        \"xmr\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"xrp\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"xtz\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"xzc\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"zec\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"zil\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        },\n        \"zrx\": {\n            \"available\": \"100000\",\n            \"capacity\": \"100000\"\n        }\n    },\n    \"last_login\": {\n        \"ip\": \"2405:9800:bc10:4da5:ecec:489:efef:acac\",\n        \"time\": \"2021-09-09T05:12:22.500381+02:00\"\n    }\n}"}],"_postman_id":"c8904517-245b-471d-bdff-2fe95f204b49"}],"id":"46e37b75-5ab9-48ff-8eca-3d8abceae97b","_postman_id":"46e37b75-5ab9-48ff-8eca-3d8abceae97b","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"Orders","item":[{"name":"Get order book","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"bb0f023d-7c42-4d3d-a700-cfd49306b6dd"}}],"id":"d45331cb-f208-4f4a-bafd-54640c3c3bfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/orders/?pair=usdt_thb&side=buy","urlObject":{"path":["orders",""],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"pair","value":"usdt_thb"},{"description":{"content":"<p>optional field: 'buy' or 'sell'</p>\n","type":"text/plain"},"key":"side","value":"buy"}],"variable":[]}},"response":[{"id":"36e9550a-6db3-4f4b-beb3-7f1d46100dc5","name":"Without Side","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/orders/?pair=usdt_thb","host":["{{BASE_URL}}"],"path":["api","orders",""],"query":[{"key":"pair","value":"usdt_thb"},{"key":"side","value":"buy","description":"optional field: 'buy' or 'sell'","disabled":true}]}},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"bid\": [\r\n    {\r\n      \"price\": \"1550101\",\r\n      \"amount\": \"0.00401\"\r\n    },\r\n    {\r\n      \"price\": \"1550010.1\",\r\n      \"amount\": \"0.01868\"\r\n    },\r\n    {\r\n      \"price\": \"1550010\",\r\n      \"amount\": \"0.00095\"\r\n    },\r\n    {\r\n      \"price\": \"1550000.18\",\r\n      \"amount\": \"0.00183\"\r\n    },\r\n    {\r\n      \"price\": \"1550000.15\",\r\n      \"amount\": \"0.00437\"\r\n    },\r\n    {\r\n      \"price\": \"1550000\",\r\n      \"amount\": \"0.2016\"\r\n    },\r\n    {\r\n      \"price\": \"1550000\",\r\n      \"amount\": \"0.00064\"\r\n    },\r\n    {\r\n      \"price\": \"1550000\",\r\n      \"amount\": \"0.0005\"\r\n    },\r\n    {\r\n      \"price\": \"1549835.45\",\r\n      \"amount\": \"0.0025\"\r\n    },\r\n    {\r\n      \"price\": \"1548348.88\",\r\n      \"amount\": \"0.00001\"\r\n    }\r\n  ],\r\n  \"ask\": [\r\n    {\r\n      \"price\": \"1557500\",\r\n      \"amount\": \"0.01848\"\r\n    },\r\n    {\r\n      \"price\": \"1557500\",\r\n      \"amount\": \"0.00852\"\r\n    },\r\n    {\r\n      \"price\": \"1557500\",\r\n      \"amount\": \"0.00161\"\r\n    },\r\n    {\r\n      \"price\": \"1558871.73\",\r\n      \"amount\": \"0.0032\"\r\n    },\r\n    {\r\n      \"price\": \"1558871.73\",\r\n      \"amount\": \"0.00199\"\r\n    },\r\n    {\r\n      \"price\": \"1559999.97\",\r\n      \"amount\": \"0.001\"\r\n    },\r\n    {\r\n      \"price\": \"1560000\",\r\n      \"amount\": \"0.01541\"\r\n    },\r\n    {\r\n      \"price\": \"1560000\",\r\n      \"amount\": \"0.0003\"\r\n    },\r\n    {\r\n      \"price\": \"1564900.33\",\r\n      \"amount\": \"0.0047\"\r\n    },\r\n    {\r\n      \"price\": \"1564900.36\",\r\n      \"amount\": \"0.0041\"\r\n    }\r\n  ]\r\n}"},{"id":"36ae5e8c-2e48-4ee3-a70e-f2cf80c17c15","name":"With Side=buy","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/orders/?pair=usdt_thb&side=buy","host":["{{BASE_URL}}"],"path":["api","orders",""],"query":[{"key":"pair","value":"usdt_thb"},{"key":"side","value":"buy","description":"optional field: 'buy' or 'sell'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\r\n  {\r\n    \"price\": \"1550101\",\r\n    \"amount\": \"0.00401\"\r\n  },\r\n  {\r\n    \"price\": \"1550010.1\",\r\n    \"amount\": \"0.01868\"\r\n  },\r\n  {\r\n    \"price\": \"1550010\",\r\n    \"amount\": \"0.00095\"\r\n  },\r\n  {\r\n    \"price\": \"1550000.18\",\r\n    \"amount\": \"0.00183\"\r\n  },\r\n  {\r\n    \"price\": \"1550000\",\r\n    \"amount\": \"0.2016\"\r\n  },\r\n  {\r\n    \"price\": \"1550000\",\r\n    \"amount\": \"0.00064\"\r\n  },\r\n  {\r\n    \"price\": \"1550000\",\r\n    \"amount\": \"0.0005\"\r\n  },\r\n  {\r\n    \"price\": \"1549835.45\",\r\n    \"amount\": \"0.0025\"\r\n  },\r\n  {\r\n    \"price\": \"1540000\",\r\n    \"amount\": \"0.00163\"\r\n  },\r\n  {\r\n    \"price\": \"1538009.03\",\r\n    \"amount\": \"0.00437\"\r\n  }\r\n]"}],"_postman_id":"d45331cb-f208-4f4a-bafd-54640c3c3bfc"},{"name":"Get order by ID","event":[{"listen":"test","script":{"id":"bb0f023d-7c42-4d3d-a700-cfd49306b6dd","exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript"}}],"id":"96cffba3-90b5-4617-8667-afbccbe2ba2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/orders/1234000?pair=usdt_thb","description":"<p>Replace 1234000 with your order ID</p>\n","urlObject":{"path":["orders","1234000"],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"pair","value":"usdt_thb"}],"variable":[]}},"response":[],"_postman_id":"96cffba3-90b5-4617-8667-afbccbe2ba2f"},{"name":"Get order book ticker","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"4fdacba1-1411-4d09-8384-9fd416ccd515"}}],"id":"a74d4b4d-63fb-43db-8888-bb0dc64e2843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/orderbook-tickers/","urlObject":{"path":["orderbook-tickers",""],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"390e06c3-cd68-4c4f-868f-c31ff71ecceb","name":"OK","originalRequest":{"method":"GET","header":[],"url":"{{BASE_URL}}/api/orderbook-tickers/"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n  \"ADA_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"79.19\",\r\n      \"amount\": \"616.7\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"79.9\",\r\n      \"amount\": \"990\"\r\n    }\r\n  },\r\n  \"ALGO_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"69.68\",\r\n      \"amount\": \"0.6\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"69.69\",\r\n      \"amount\": \"2000\"\r\n    }\r\n  },\r\n  \"ATOM_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"1110.01\",\r\n      \"amount\": \"1.7\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1161.99\",\r\n      \"amount\": \"70\"\r\n    }\r\n  },\r\n  \"BAND_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"315\",\r\n      \"amount\": \"3.62\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"320.49\",\r\n      \"amount\": \"4\"\r\n    }\r\n  },\r\n  \"BAT_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"25.55\",\r\n      \"amount\": \"30.23\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"25.6\",\r\n      \"amount\": \"1\"\r\n    }\r\n  },\r\n  \"BCH_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"21000\",\r\n      \"amount\": \"0.1878\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"21499.98\",\r\n      \"amount\": \"3\"\r\n    }\r\n  },\r\n  \"BNB_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"13785.01\",\r\n      \"amount\": \"2.51\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"13980\",\r\n      \"amount\": \"1.48\"\r\n    }\r\n  },\r\n  \"BTC_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"1550101.01\",\r\n      \"amount\": \"0.00001\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1557500\",\r\n      \"amount\": \"0.01848\"\r\n    }\r\n  },\r\n  \"BUSD_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"33.11\",\r\n      \"amount\": \"277.29\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"33.3\",\r\n      \"amount\": \"1434.72\"\r\n    }\r\n  },\r\n  \"CAKE_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"701.34\",\r\n      \"amount\": \"100\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"711.7\",\r\n      \"amount\": \"0.163\"\r\n    }\r\n  },\r\n  \"DAI_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"33\",\r\n      \"amount\": \"10\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"33.36\",\r\n      \"amount\": \"85.05\"\r\n    }\r\n  },\r\n  \"DASH_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"6460.11\",\r\n      \"amount\": \"15\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"7099.99\",\r\n      \"amount\": \"8\"\r\n    }\r\n  },\r\n  \"DOGE_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"8\",\r\n      \"amount\": \"498.188\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"8.03\",\r\n      \"amount\": \"5000\"\r\n    }\r\n  },\r\n  \"DOT_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"1211.37\",\r\n      \"amount\": \"0.48\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1216.6\",\r\n      \"amount\": \"6\"\r\n    }\r\n  },\r\n  \"EOS_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"162\",\r\n      \"amount\": \"0.024\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"163.93\",\r\n      \"amount\": \"200\"\r\n    }\r\n  },\r\n  \"ETC_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"1868.01\",\r\n      \"amount\": \"50\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1870\",\r\n      \"amount\": \"0.006\"\r\n    }\r\n  },\r\n  \"ETH_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"111466.83\",\r\n      \"amount\": \"0.0134\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"111466.84\",\r\n      \"amount\": \"0.001\"\r\n    }\r\n  },\r\n  \"FLOW_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"732.72\",\r\n      \"amount\": \"6.8\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"734.27\",\r\n      \"amount\": \"7.89\"\r\n    }\r\n  },\r\n  \"HBAR_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"17.3\",\r\n      \"amount\": \"1284.2\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"17.54\",\r\n      \"amount\": \"15000\"\r\n    }\r\n  },\r\n  \"ICP_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"1890.62\",\r\n      \"amount\": \"0.2\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1913.33\",\r\n      \"amount\": \"0.045\"\r\n    }\r\n  },\r\n  \"JFIN_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"11.1\",\r\n      \"amount\": \"20\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"11.25\",\r\n      \"amount\": \"146.34\"\r\n    }\r\n  },\r\n  \"LINK_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"921.98\",\r\n      \"amount\": \"100\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1009.99\",\r\n      \"amount\": \"0.97\"\r\n    }\r\n  },\r\n  \"LTC_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"6000\",\r\n      \"amount\": \"2\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"6189.99\",\r\n      \"amount\": \"10\"\r\n    }\r\n  },\r\n  \"LUNA_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"1208.53\",\r\n      \"amount\": \"2.64\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"1229.9\",\r\n      \"amount\": \"2.2\"\r\n    }\r\n  },\r\n  \"SOL_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"5399.36\",\r\n      \"amount\": \"0.009\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"5419.99\",\r\n      \"amount\": \"1.757\"\r\n    }\r\n  },\r\n  \"TRX_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"3.75\",\r\n      \"amount\": \"3000\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"3.81\",\r\n      \"amount\": \"2538.4\"\r\n    }\r\n  },\r\n  \"TUSD_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"32.22\",\r\n      \"amount\": \"330.7\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"33.25\",\r\n      \"amount\": \"9.17\"\r\n    }\r\n  },\r\n  \"USDC_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"33\",\r\n      \"amount\": \"298.54\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"33.25\",\r\n      \"amount\": \"40.61\"\r\n    }\r\n  },\r\n  \"USDT_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"33.08\",\r\n      \"amount\": \"28.8\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"33.1\",\r\n      \"amount\": \"14.42\"\r\n    }\r\n  },\r\n  \"VET_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"3.85\",\r\n      \"amount\": \"240.9\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"3.92\",\r\n      \"amount\": \"134.09\"\r\n    }\r\n  },\r\n  \"XLM_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"10.96\",\r\n      \"amount\": \"0.5\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"11.18\",\r\n      \"amount\": \"393.6\"\r\n    }\r\n  },\r\n  \"XMR_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"8600.01\",\r\n      \"amount\": \"10\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"8900\",\r\n      \"amount\": \"0.9215\"\r\n    }\r\n  },\r\n  \"XRP_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"36.05\",\r\n      \"amount\": \"10.6\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"36.11\",\r\n      \"amount\": \"0.4\"\r\n    }\r\n  },\r\n  \"XTZ_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"240.12\",\r\n      \"amount\": \"500\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"245\",\r\n      \"amount\": \"0.091\"\r\n    }\r\n  },\r\n  \"XZC_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"236.25\",\r\n      \"amount\": \"84.65\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"247\",\r\n      \"amount\": \"10.02\"\r\n    }\r\n  },\r\n  \"ZEC_THB\": {\r\n    \"bid\": {\r\n      \"price\": \"4299.99\",\r\n      \"amount\": \"0.1\"\r\n    },\r\n    \"ask\": {\r\n      \"price\": \"4355.55\",\r\n      \"amount\": \"0.0006\"\r\n    }\r\n  }\r\n}"}],"_postman_id":"a74d4b4d-63fb-43db-8888-bb0dc64e2843"},{"name":"Create order","event":[{"listen":"test","script":{"id":"7be95bfd-716a-4a11-bde5-afd1fc7da2e5","exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript"}}],"id":"34f96061-873c-412a-85a2-c4b26bc2cc87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"amount\":\"1\",\r\n  \"nonce\": 2731832,\r\n  \"pair\":\"usdt_thb\",\r\n  \"price\":\"31\",\r\n  \"side\":\"buy\",\r\n  \"type\":\"limit\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/orders/","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["orders",""],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"34f96061-873c-412a-85a2-c4b26bc2cc87"},{"name":"List your orders","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"ec1bfe7d-5a60-4343-95b9-b222c638e2cc"}}],"id":"82227687-750f-4b10-abe3-1a573bd66de0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/orders/user?pair=usdt_thb&limit=10&offset=0&status=open","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["orders","user"],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"pair","value":"usdt_thb"},{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"description":{"content":"<p>optional, value - [open,close]</p>\n","type":"text/plain"},"key":"status","value":"open"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"side","value":"buy"}],"variable":[]}},"response":[{"id":"20db2c5f-3d33-4506-86fe-a2ca8fb7a44f","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"},{"key":"X-MBX-APIKEY","value":"live-1af21ae71df64609a6e829a71245b633","type":"text"}],"url":{"raw":"https://www.orbixtrade.com/api/orders/user?pair=ada_thb&limit=10&offset=0&status=open","host":["https://www.orbixtrade.com/api"],"path":["orders","user"],"query":[{"key":"pair","value":"ada_thb"},{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"status","value":"open","description":"optional, value - [open,close]"},{"key":"side","value":"buy","description":"optional","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 19 Apr 2022 10:48:28 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-expose-headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"vary","value":"Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gOurMd5kzViqRvNZzKcz8Z31jK3Y9a7q5WEFg5wTqRPW2BUEJOeHN1sVjEv3BfNusL1cOQLwUt9Ynm80BHxADkuzw0Hvy5BAb8wod3UddnZ1Gg%2FsH9x9lIVdhfn26Mo4\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6fe51164cbd5819d-IAD"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 63465711,\n        \"type\": \"limit\",\n        \"price\": \"1420046.65\",\n        \"amount\": \"0.00035\",\n        \"remaining_amount\": \"0\",\n        \"average_price\": \"1420046.65\",\n        \"side\": \"buy\",\n        \"cost\": \"498.07994244085\",\n        \"created_at\": \"2022-02-07T02:55:55.480112Z\",\n        \"status\": \"completed\"\n    }\n]"}],"_postman_id":"82227687-750f-4b10-abe3-1a573bd66de0"},{"name":"Cancel order","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(202);\r","});"],"type":"text/javascript","id":"841b6801-936b-4d77-9e63-0428b0d314b1"}}],"id":"f5c7df66-0239-435c-a9c7-782ae7543ebe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"pair\":\"usdt_thb\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/orders/1234000","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["orders","1234000"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"31d561d5-c03f-4136-9e2b-9e1c696e7f7e","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Signature","value":"{{satag_signature}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"pair\":\"usdt_thb\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/orders/1234000"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 19 Apr 2022 10:57:56 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-expose-headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"vary","value":"Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PKADnABoGSLuMx3aSuEqyeRzKa9U9UW3jnLO9N%2BHtVAOutnodbAFhojpLQA9fKq1l5%2BDwIe0Qe4%2BiDBd5%2FIiq2wweaXLLefqwgPY9v5lZ%2FuREj%2FLW%2BsUU9GNEZ%2BVRwk6\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"6fe51f4498db7f72-IAD"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f5c7df66-0239-435c-a9c7-782ae7543ebe"},{"name":"Cancel all order","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"6fc0b436-462b-4aa2-8ae8-e3a406283be2"}}],"id":"239811f9-ddbc-4196-9329-49da272e6f6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"pair\":\"usdt_thb\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/orders/all","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["orders","all"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"379e9db0-b7ee-4fd4-b715-425f7e77236d","name":"WAT?","originalRequest":{"method":"DELETE","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"pair\":\"usdt_thb\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/orders/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 17 Sep 2021 06:58:10 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kHxH7vfAIynVEf32Sk9677YmU8mejbkMMI03X0NkBFGUGPA1tPHJ89KSYLcGfjQbLuJQkGjAMSGqh8ESO%2BCeocVdnqQqsJTxzy7wbsrtaCC3Unu1af8gCxOpHR2GTTmw\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"690071d0b87a4c5c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"code\": \"invalid\",\n        \"message\": \"\"\n    },\n    {\n        \"code\": \"invalid\",\n        \"message\": \"\"\n    },\n    {\n        \"code\": \"invalid\",\n        \"message\": \"\"\n    },\n    {\n        \"code\": \"invalid\",\n        \"message\": \"\"\n    },\n    {\n        \"code\": \"invalid\",\n        \"message\": \"\"\n    },\n    {\n        \"code\": \"invalid\",\n        \"message\": \"\"\n    }\n]"},{"id":"9d5bf18a-9523-42b9-93a4-eeab8b5aa3cf","name":"OK","originalRequest":{"method":"DELETE","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"pair\":\"usdt_thb\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/orders/all"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"239811f9-ddbc-4196-9329-49da272e6f6d"}],"id":"7a932daa-8ea0-400e-8495-e40b74a1c061","_postman_id":"7a932daa-8ea0-400e-8495-e40b74a1c061","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"V3","item":[{"name":"Public","item":[{"name":"Get exchange information","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"49bb83c8-c0d4-4478-86e6-0dacadd4ee8b"}}],"id":"39eff6bf-0488-4022-b781-0f231ac51fc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/v3/exchangeInfo","urlObject":{"path":["v3","exchangeInfo"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"9f92d911-7871-4da4-a4de-503fc901af36","name":"OK","originalRequest":{"method":"GET","header":[],"url":"{{BASE_URL}}/api/v3/exchangeInfo"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:14:31 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"X-Cache-Status","value":"HIT"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cfgfXHBwk5B%2BWj4MzBUHpHY%2B%2BzO%2FnqJYVsKk3OWU0ERT6mXLtk55zcXpCyP2SyNyZvjU9%2BsK3Ee39b0SQuv5sUuF%2BRs57pjiXKHLPtb%2BvxKAbG6nBnxIVQcWQj%2B1RCm4\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f84c650d616b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"timezone\": \"UTC\",\n    \"serverTime\": 1631776466412,\n    \"rateLimits\": [],\n    \"exchangeFilters\": [],\n    \"symbols\": [\n        {\n            \"symbol\": \"btc_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"btc\",\n            \"baseAssetPrecision\": 5,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"ada_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"ada\",\n            \"baseAssetPrecision\": 1,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"algo_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"algo\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 3,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.001\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"atom_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"atom\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"band_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"band\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"bat_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"bat\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"bch_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"bch\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"bnb_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"bnb\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"busd_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"busd\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"cake_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"cake\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"dai_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"dai\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"dash_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"dash\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"doge_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"doge\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 3,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.001\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"dot_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"dot\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"eos_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"eos\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"etc_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"etc\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"eth_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"eth\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"flow_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"flow\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"hbar_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"hbar\",\n            \"baseAssetPrecision\": 1,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 3,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.001\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"icp_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"icp\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"jfin_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"jfin\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"link_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"link\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"ltc_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"ltc\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"luna_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"luna\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"paxg_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"paxg\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"sol_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"sol\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"trx_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"trx\",\n            \"baseAssetPrecision\": 1,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"tusd_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"tusd\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"usdc_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"usdc\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"usdt_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"usdt\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"vet_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"vet\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 3,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.001\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"xlm_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"xlm\",\n            \"baseAssetPrecision\": 1,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"xmr_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"xmr\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"xrp_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"xrp\",\n            \"baseAssetPrecision\": 1,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"xtz_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"xtz\",\n            \"baseAssetPrecision\": 3,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"xzc_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"xzc\",\n            \"baseAssetPrecision\": 2,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        },\n        {\n            \"symbol\": \"zec_thb\",\n            \"status\": \"TRADING\",\n            \"baseAsset\": \"zec\",\n            \"baseAssetPrecision\": 4,\n            \"quoteAsset\": \"thb\",\n            \"quotePrecision\": 2,\n            \"baseCommissionPrecision\": 0,\n            \"quoteCommissionPrecision\": 0,\n            \"orderTypes\": [\n                \"LIMIT\"\n            ],\n            \"icebergAllowed\": false,\n            \"ocoAllowed\": true,\n            \"quoteOrderQtyMarketAllowed\": false,\n            \"isSpotTradingAllowed\": true,\n            \"isMarginTradingAllowed\": false,\n            \"filters\": [\n                {\n                    \"filterType\": \"PRICE_FILTER\",\n                    \"tickSize\": \"0.01\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"39eff6bf-0488-4022-b781-0f231ac51fc9"},{"name":"Get order depth","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"779b33de-ed7c-4a3a-9fc4-bfda4fa50640"}}],"id":"73e5ea76-ed65-4f7d-9e5a-3abad2498a64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/v3/depth?symbol=usdt_thb","urlObject":{"path":["v3","depth"],"host":["https://www.orbixtrade.com/api"],"query":[{"description":{"content":"<p>A pair symbol, such as 'btc_thb', 'eth_thb'</p>\n","type":"text/plain"},"key":"symbol","value":"usdt_thb"},{"disabled":true,"description":{"content":"<p>optional, Maximum number of results (default 5, max 5000)</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"02b21550-5c9a-455e-9f04-0d457bc84919","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/v3/depth?symbol=usdt_thb&limit=10","host":["{{BASE_URL}}"],"path":["api","v3","depth"],"query":[{"key":"symbol","value":"usdt_thb"},{"key":"limit","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:20:16 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3kioxQmAZ8AxWIvF6GJxvqmAcZUz5JqD2zFxzEBub61QiJZD3cMPd2CIvYf%2FxD6BxKmVOFISkn06LtCSjRz39FJlweOMTKuOxJ4NvpelC3sNAADOlOIHXqIga9ZYODFo\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f854d0cf326b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"lastUpdateId\": 488615278,\n    \"bids\": [\n        [\n            \"32.96\",\n            \"30.28\"\n        ],\n        [\n            \"32.95\",\n            \"1713.49\"\n        ],\n        [\n            \"32.94\",\n            \"260.98\"\n        ],\n        [\n            \"32.93\",\n            \"1979.95\"\n        ],\n        [\n            \"32.92\",\n            \"9419.8\"\n        ],\n        [\n            \"32.91\",\n            \"3373.99\"\n        ],\n        [\n            \"32.9\",\n            \"6967.63\"\n        ],\n        [\n            \"32.88\",\n            \"151.74\"\n        ],\n        [\n            \"32.85\",\n            \"440.9\"\n        ],\n        [\n            \"32.8\",\n            \"37174.45\"\n        ]\n    ],\n    \"asks\": [\n        [\n            \"33.08\",\n            \"568.6\"\n        ],\n        [\n            \"33.09\",\n            \"256.05\"\n        ],\n        [\n            \"33.1\",\n            \"745.26\"\n        ],\n        [\n            \"33.11\",\n            \"20000\"\n        ],\n        [\n            \"33.12\",\n            \"3227.5\"\n        ],\n        [\n            \"33.15\",\n            \"9757.1\"\n        ],\n        [\n            \"33.16\",\n            \"3443.46\"\n        ],\n        [\n            \"33.17\",\n            \"2618.55\"\n        ],\n        [\n            \"33.19\",\n            \"1413.54\"\n        ],\n        [\n            \"33.2\",\n            \"14999\"\n        ]\n    ]\n}"}],"_postman_id":"73e5ea76-ed65-4f7d-9e5a-3abad2498a64"},{"name":"Get kline/Candlestick data","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"343705c7-ed24-436a-88ef-03c58f93a3c8"}}],"id":"56e6c99d-fc1c-4a50-b264-56c699b5420e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/v3/klines?symbol=usdt_thb&interval=1h","urlObject":{"path":["v3","klines"],"host":["https://www.orbixtrade.com/api"],"query":[{"description":{"content":"<p>A pair symbol, such as 'btc_thb', 'eth_thb'</p>\n","type":"text/plain"},"key":"symbol","value":"usdt_thb"},{"description":{"content":"<p>Kline chart interval</p>\n","type":"text/plain"},"key":"interval","value":"1h"},{"disabled":true,"description":{"content":"<p>optional, Timestamp in ms to get klines from</p>\n","type":"text/plain"},"key":"startTime","value":""},{"disabled":true,"description":{"content":"<p>optional, Timestamp in ms to get klines from</p>\n","type":"text/plain"},"key":"endTime","value":""},{"disabled":true,"description":{"content":"<p>optional, Maximum number of results (default: 500, max: 1000)</p>\n","type":"text/plain"},"key":"limit","value":"50"}],"variable":[]}},"response":[{"id":"b20cb031-d304-46ae-a955-3f1a229c62b8","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/v3/klines?symbol=usdt_thb&interval=1h","host":["{{BASE_URL}}"],"path":["api","v3","klines"],"query":[{"key":"symbol","value":"usdt_thb"},{"key":"interval","value":"1h"},{"key":"startTime","value":null,"description":"unixtimestamp","disabled":true},{"key":"endTime","value":null,"description":"unixtimestamp","disabled":true},{"key":"limit","value":"50","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:17:28 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"X-Cache-Status","value":"MISS"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZRrFsH5gXAnlW7D3FPCgZbyPcXUgQXQudbuaT%2FwMH4iiIMeFcWizLwDVqxzHZG%2B7RGclrGjublCMtEMzKjMt7u30Fuif4FhedcbeOHahIh%2BMSwFv%2BQURiiWExDKXu3x5\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f850b3cf8e6b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    [\n        1629979200000,\n        \"33.43\",\n        \"33.44\",\n        \"33.35\",\n        \"33.42\",\n        \"34074.81\",\n        1629982799999,\n        \"1138436.2332\",\n        61,\n        \"25469.27\",\n        \"851354.5784\",\n        \"0\"\n    ],\n    [\n        1629982800000,\n        \"33.42\",\n        \"33.42\",\n        \"33.35\",\n        \"33.35\",\n        \"46031.09\",\n        1629986399999,\n        \"1535762.6441\",\n        29,\n        \"5820.75\",\n        \"194480.0059\",\n        \"0\"\n    ],\n    [\n        1629986400000,\n        \"33.35\",\n        \"33.4\",\n        \"33.26\",\n        \"33.4\",\n        \"10503.85\",\n        1629989999999,\n        \"349964.0846\",\n        37,\n        \"2713.13\",\n        \"90556.0162\",\n        \"0\"\n    ],\n    [\n        1629990000000,\n        \"33.4\",\n        \"33.4\",\n        \"33.27\",\n        \"33.4\",\n        \"3853.41\",\n        1629993599999,\n        \"128594.99\",\n        24,\n        \"2954.21\",\n        \"98670.614\",\n        \"0\"\n    ],\n    [\n        1629993600000,\n        \"33.4\",\n        \"33.48\",\n        \"33.28\",\n        \"33.48\",\n        \"24941.93\",\n        1629997199999,\n        \"834015.9899\",\n        58,\n        \"24741.9\",\n        \"827358.7764\",\n        \"0\"\n    ],\n    [\n        1629997200000,\n        \"33.48\",\n        \"33.48\",\n        \"33.29\",\n        \"33.29\",\n        \"2262.42\",\n        1630000799999,\n        \"75507.1613\",\n        9,\n        \"1012.23\",\n        \"33885.2991\",\n        \"0\"\n    ],\n    [\n        1630000800000,\n        \"33.4\",\n        \"33.45\",\n        \"33.4\",\n        \"33.45\",\n        \"9541.02\",\n        1630004399999,\n        \"318727.119\",\n        20,\n        \"9541.02\",\n        \"318727.119\",\n        \"0\"\n    ],\n    [\n        1630004400000,\n        \"33.45\",\n        \"33.45\",\n        \"33.44\",\n        \"33.44\",\n        \"2056.03\",\n        1630007999999,\n        \"68771.2216\",\n        9,\n        \"2056.03\",\n        \"68771.2216\",\n        \"0\"\n    ],\n    [\n        1630008000000,\n        \"33.43\",\n        \"33.43\",\n        \"33.32\",\n        \"33.32\",\n        \"65.41\",\n        1630011599999,\n        \"2179.6746\",\n        2,\n        \"1.94\",\n        \"64.8542\",\n        \"0\"\n    ],\n    [\n        1630011600000,\n        \"33.32\",\n        \"33.43\",\n        \"33.3\",\n        \"33.32\",\n        \"8015.32\",\n        1630015199999,\n        \"267547.8413\",\n        12,\n        \"4955.16\",\n        \"165627.9091\",\n        \"0\"\n    ],\n    [\n        1630015200000,\n        \"33.43\",\n        \"33.43\",\n        \"33.3\",\n        \"33.3\",\n        \"8380.12\",\n        1630018799999,\n        \"279103.8279\",\n        14,\n        \"170.01\",\n        \"5682.7899\",\n        \"0\"\n    ],\n    [\n        1630018800000,\n        \"33.41\",\n        \"33.44\",\n        \"33.3\",\n        \"33.44\",\n        \"10647.12\",\n        1630022399999,\n        \"355953.002\",\n        18,\n        \"10434.14\",\n        \"348860.768\",\n        \"0\"\n    ],\n    [\n        1630022400000,\n        \"33.44\",\n        \"33.46\",\n        \"33.35\",\n        \"33.44\",\n        \"25686.42\",\n        1630025999999,\n        \"858068.8578\",\n        107,\n        \"14232.62\",\n        \"475952.0251\",\n        \"0\"\n    ],\n    [\n        1630026000000,\n        \"33.44\",\n        \"33.45\",\n        \"33.3\",\n        \"33.44\",\n        \"7982.35\",\n        1630029599999,\n        \"266555.0911\",\n        32,\n        \"3238.95\",\n        \"108319.4374\",\n        \"0\"\n    ],\n    [\n        1630029600000,\n        \"33.43\",\n        \"33.44\",\n        \"33.3\",\n        \"33.4\",\n        \"10799.52\",\n        1630033199999,\n        \"360389.2788\",\n        26,\n        \"6809.74\",\n        \"227518.9747\",\n        \"0\"\n    ],\n    [\n        1630033200000,\n        \"33.4\",\n        \"33.4\",\n        \"33.3\",\n        \"33.35\",\n        \"25528.36\",\n        1630036799999,\n        \"851967.733\",\n        40,\n        \"20742.52\",\n        \"692593.261\",\n        \"0\"\n    ],\n    [\n        1630036800000,\n        \"33.3\",\n        \"33.43\",\n        \"33.3\",\n        \"33.3\",\n        \"108550.58\",\n        1630040399999,\n        \"3624048.1498\",\n        70,\n        \"38281.6\",\n        \"1278764.5553\",\n        \"0\"\n    ],\n    [\n        1630040400000,\n        \"33.3\",\n        \"33.42\",\n        \"33.26\",\n        \"33.26\",\n        \"18384.85\",\n        1630043999999,\n        \"612004.7093\",\n        22,\n        \"59.8\",\n        \"1998.516\",\n        \"0\"\n    ],\n    [\n        1630044000000,\n        \"33.26\",\n        \"33.26\",\n        \"33.26\",\n        \"33.26\",\n        \"2756.43\",\n        1630047599999,\n        \"91678.8618\",\n        9,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630047600000,\n        \"33.26\",\n        \"33.26\",\n        \"33.15\",\n        \"33.21\",\n        \"85947.17\",\n        1630051199999,\n        \"2854023.0679\",\n        62,\n        \"27252.08\",\n        \"905195.9452\",\n        \"0\"\n    ],\n    [\n        1630051200000,\n        \"33.2\",\n        \"33.21\",\n        \"33.15\",\n        \"33.16\",\n        \"9895.39\",\n        1630054799999,\n        \"328475.0946\",\n        32,\n        \"6938.54\",\n        \"230418.9134\",\n        \"0\"\n    ],\n    [\n        1630054800000,\n        \"33.21\",\n        \"33.39\",\n        \"33.16\",\n        \"33.35\",\n        \"25022.71\",\n        1630058399999,\n        \"831661.2324\",\n        21,\n        \"23113.2\",\n        \"768301.1421\",\n        \"0\"\n    ],\n    [\n        1630058400000,\n        \"33.25\",\n        \"33.36\",\n        \"33.15\",\n        \"33.15\",\n        \"44133.16\",\n        1630061999999,\n        \"1468693.9674\",\n        49,\n        \"25567.23\",\n        \"852510.0461\",\n        \"0\"\n    ],\n    [\n        1630062000000,\n        \"33.15\",\n        \"33.25\",\n        \"33.12\",\n        \"33.13\",\n        \"20967.79\",\n        1630065599999,\n        \"695498.8949\",\n        37,\n        \"10290.13\",\n        \"341759.2125\",\n        \"0\"\n    ],\n    [\n        1630065600000,\n        \"33.2\",\n        \"33.22\",\n        \"33.13\",\n        \"33.2\",\n        \"67134\",\n        1630069199999,\n        \"2228918.6213\",\n        32,\n        \"61816.76\",\n        \"2052438.0238\",\n        \"0\"\n    ],\n    [\n        1630069200000,\n        \"33.2\",\n        \"33.33\",\n        \"33.12\",\n        \"33.28\",\n        \"13221.78\",\n        1630072799999,\n        \"439834.912\",\n        40,\n        \"9935.16\",\n        \"330909.7376\",\n        \"0\"\n    ],\n    [\n        1630072800000,\n        \"33.2\",\n        \"33.25\",\n        \"33.12\",\n        \"33.25\",\n        \"17642.18\",\n        1630076399999,\n        \"585251.0363\",\n        61,\n        \"8226.6\",\n        \"273211.8097\",\n        \"0\"\n    ],\n    [\n        1630076400000,\n        \"33.25\",\n        \"33.29\",\n        \"33.17\",\n        \"33.17\",\n        \"14682.08\",\n        1630079999999,\n        \"487900.6728\",\n        65,\n        \"7877.21\",\n        \"261982.4283\",\n        \"0\"\n    ],\n    [\n        1630080000000,\n        \"33.17\",\n        \"33.33\",\n        \"33.15\",\n        \"33.17\",\n        \"7407.86\",\n        1630083599999,\n        \"246298.1189\",\n        28,\n        \"4719.64\",\n        \"157148.2001\",\n        \"0\"\n    ],\n    [\n        1630083600000,\n        \"33.24\",\n        \"33.3\",\n        \"33.16\",\n        \"33.16\",\n        \"1504.98\",\n        1630087199999,\n        \"49982.8277\",\n        20,\n        \"3.67\",\n        \"122.211\",\n        \"0\"\n    ],\n    [\n        1630087200000,\n        \"33.16\",\n        \"33.3\",\n        \"33.16\",\n        \"33.23\",\n        \"2981.94\",\n        1630090799999,\n        \"99090.9372\",\n        10,\n        \"602.32\",\n        \"20057.256\",\n        \"0\"\n    ],\n    [\n        1630090800000,\n        \"33.23\",\n        \"33.31\",\n        \"33.16\",\n        \"33.24\",\n        \"1340.62\",\n        1630094399999,\n        \"44520.2909\",\n        7,\n        \"302\",\n        \"10059.62\",\n        \"0\"\n    ],\n    [\n        1630094400000,\n        \"33.31\",\n        \"33.31\",\n        \"33.16\",\n        \"33.16\",\n        \"2134.98\",\n        1630097999999,\n        \"70852.8537\",\n        12,\n        \"100.59\",\n        \"3350.6529\",\n        \"0\"\n    ],\n    [\n        1630098000000,\n        \"33.16\",\n        \"33.24\",\n        \"33.15\",\n        \"33.15\",\n        \"4864.15\",\n        1630101599999,\n        \"161256.3962\",\n        21,\n        \"100\",\n        \"3323.4418\",\n        \"0\"\n    ],\n    [\n        1630101600000,\n        \"33.15\",\n        \"33.15\",\n        \"33.13\",\n        \"33.13\",\n        \"3895.9\",\n        1630105199999,\n        \"129091.3684\",\n        11,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630105200000,\n        \"33.13\",\n        \"33.25\",\n        \"33.13\",\n        \"33.13\",\n        \"2961.19\",\n        1630108799999,\n        \"98270.8599\",\n        19,\n        \"1252.7\",\n        \"41642.14\",\n        \"0\"\n    ],\n    [\n        1630108800000,\n        \"33.2\",\n        \"33.21\",\n        \"33.11\",\n        \"33.12\",\n        \"11901.46\",\n        1630112399999,\n        \"394524.023\",\n        30,\n        \"2537.84\",\n        \"84267.7728\",\n        \"0\"\n    ],\n    [\n        1630112400000,\n        \"33.18\",\n        \"33.18\",\n        \"33.12\",\n        \"33.18\",\n        \"2428.31\",\n        1630115999999,\n        \"80459.9637\",\n        18,\n        \"306.82\",\n        \"10180.2876\",\n        \"0\"\n    ],\n    [\n        1630116000000,\n        \"33.12\",\n        \"33.19\",\n        \"33.12\",\n        \"33.15\",\n        \"15859.42\",\n        1630119599999,\n        \"526199.9166\",\n        23,\n        \"14326.46\",\n        \"475386.9576\",\n        \"0\"\n    ],\n    [\n        1630119600000,\n        \"33.19\",\n        \"33.19\",\n        \"33.08\",\n        \"33.15\",\n        \"68243.66\",\n        1630123199999,\n        \"2260915.7405\",\n        63,\n        \"50536.64\",\n        \"1674675.5235\",\n        \"0\"\n    ],\n    [\n        1630123200000,\n        \"33.11\",\n        \"33.25\",\n        \"33.06\",\n        \"33.24\",\n        \"16608.68\",\n        1630126799999,\n        \"549818.4874\",\n        30,\n        \"2549.29\",\n        \"84617.8489\",\n        \"0\"\n    ],\n    [\n        1630126800000,\n        \"33.17\",\n        \"33.18\",\n        \"33.06\",\n        \"33.15\",\n        \"13776.88\",\n        1630130399999,\n        \"456758.2453\",\n        28,\n        \"10089.09\",\n        \"334745.1869\",\n        \"0\"\n    ],\n    [\n        1630130400000,\n        \"33.12\",\n        \"33.24\",\n        \"33.05\",\n        \"33.05\",\n        \"13089.08\",\n        1630133999999,\n        \"433191.2483\",\n        35,\n        \"2775.68\",\n        \"92218.3161\",\n        \"0\"\n    ],\n    [\n        1630134000000,\n        \"33.11\",\n        \"33.13\",\n        \"33.06\",\n        \"33.13\",\n        \"8003.94\",\n        1630137599999,\n        \"264810.9984\",\n        25,\n        \"3993.06\",\n        \"132191.253\",\n        \"0\"\n    ],\n    [\n        1630137600000,\n        \"33.07\",\n        \"33.19\",\n        \"33.03\",\n        \"33.11\",\n        \"36534.08\",\n        1630141199999,\n        \"1207668.8542\",\n        47,\n        \"4176.81\",\n        \"138438.5804\",\n        \"0\"\n    ],\n    [\n        1630141200000,\n        \"33.05\",\n        \"33.1\",\n        \"33.02\",\n        \"33.02\",\n        \"7089.21\",\n        1630144799999,\n        \"234443.1637\",\n        19,\n        \"1677.55\",\n        \"55485.2508\",\n        \"0\"\n    ],\n    [\n        1630144800000,\n        \"33.03\",\n        \"33.1\",\n        \"33.02\",\n        \"33.02\",\n        \"9480.96\",\n        1630148399999,\n        \"313246.6383\",\n        36,\n        \"3631.21\",\n        \"120070.3359\",\n        \"0\"\n    ],\n    [\n        1630148400000,\n        \"33.02\",\n        \"33.12\",\n        \"33.02\",\n        \"33.12\",\n        \"16065.62\",\n        1630151999999,\n        \"531381.8059\",\n        39,\n        \"9530.18\",\n        \"315505.669\",\n        \"0\"\n    ],\n    [\n        1630152000000,\n        \"33.08\",\n        \"33.15\",\n        \"33.04\",\n        \"33.06\",\n        \"21726.24\",\n        1630155599999,\n        \"719321.9152\",\n        57,\n        \"14444.77\",\n        \"478668.7205\",\n        \"0\"\n    ],\n    [\n        1630155600000,\n        \"33.06\",\n        \"33.14\",\n        \"33.04\",\n        \"33.07\",\n        \"16595.48\",\n        1630159199999,\n        \"549141.5242\",\n        52,\n        \"9657.74\",\n        \"319814.4735\",\n        \"0\"\n    ],\n    [\n        1630159200000,\n        \"33.07\",\n        \"33.12\",\n        \"32.99\",\n        \"33.01\",\n        \"135412.84\",\n        1630162799999,\n        \"4472368.1056\",\n        112,\n        \"31801.48\",\n        \"1052331.2508\",\n        \"0\"\n    ],\n    [\n        1630162800000,\n        \"33\",\n        \"33.01\",\n        \"32.97\",\n        \"32.97\",\n        \"65676.19\",\n        1630166399999,\n        \"2167226.6173\",\n        81,\n        \"12777.85\",\n        \"421670.0656\",\n        \"0\"\n    ],\n    [\n        1630166400000,\n        \"32.97\",\n        \"32.99\",\n        \"32.93\",\n        \"32.98\",\n        \"14885.19\",\n        1630169999999,\n        \"490640.4122\",\n        63,\n        \"6904.84\",\n        \"227713.3559\",\n        \"0\"\n    ],\n    [\n        1630170000000,\n        \"32.97\",\n        \"33.01\",\n        \"32.93\",\n        \"32.93\",\n        \"1991.05\",\n        1630173599999,\n        \"65646.5277\",\n        19,\n        \"1137\",\n        \"37518.9447\",\n        \"0\"\n    ],\n    [\n        1630173600000,\n        \"33.01\",\n        \"33.03\",\n        \"32.93\",\n        \"33.03\",\n        \"1840.71\",\n        1630177199999,\n        \"60771.4631\",\n        7,\n        \"1809.71\",\n        \"59750.6331\",\n        \"0\"\n    ],\n    [\n        1630177200000,\n        \"33.03\",\n        \"33.12\",\n        \"33\",\n        \"33\",\n        \"5295.88\",\n        1630180799999,\n        \"175254.3327\",\n        18,\n        \"4012.87\",\n        \"132880.1121\",\n        \"0\"\n    ],\n    [\n        1630180800000,\n        \"33\",\n        \"33\",\n        \"33\",\n        \"33\",\n        \"0\",\n        1630184399999,\n        \"0\",\n        0,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630184400000,\n        \"33\",\n        \"33\",\n        \"33\",\n        \"33\",\n        \"1352.51\",\n        1630187999999,\n        \"44632.83\",\n        6,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630188000000,\n        \"33\",\n        \"33.05\",\n        \"32.93\",\n        \"33.05\",\n        \"5958.02\",\n        1630191599999,\n        \"196398.0845\",\n        29,\n        \"199.01\",\n        \"6577.2805\",\n        \"0\"\n    ],\n    [\n        1630191600000,\n        \"33.05\",\n        \"33.11\",\n        \"32.93\",\n        \"32.93\",\n        \"1696.67\",\n        1630195199999,\n        \"56075.5292\",\n        16,\n        \"852.74\",\n        \"28234.1604\",\n        \"0\"\n    ],\n    [\n        1630195200000,\n        \"32.93\",\n        \"33.11\",\n        \"32.93\",\n        \"32.93\",\n        \"3191.2\",\n        1630198799999,\n        \"105393.4412\",\n        27,\n        \"1959.56\",\n        \"64821.9808\",\n        \"0\"\n    ],\n    [\n        1630198800000,\n        \"32.93\",\n        \"33.14\",\n        \"32.92\",\n        \"33.04\",\n        \"5632.09\",\n        1630202399999,\n        \"185906.1961\",\n        32,\n        \"2421.6\",\n        \"80130.5204\",\n        \"0\"\n    ],\n    [\n        1630202400000,\n        \"32.99\",\n        \"33.13\",\n        \"32.92\",\n        \"33.07\",\n        \"3992.03\",\n        1630205999999,\n        \"131872.087\",\n        24,\n        \"3639.81\",\n        \"120272.2382\",\n        \"0\"\n    ],\n    [\n        1630206000000,\n        \"33.06\",\n        \"33.13\",\n        \"33\",\n        \"33.13\",\n        \"10160.94\",\n        1630209599999,\n        \"336344.9225\",\n        31,\n        \"8467.38\",\n        \"280452.9731\",\n        \"0\"\n    ],\n    [\n        1630209600000,\n        \"33.13\",\n        \"33.13\",\n        \"33\",\n        \"33.03\",\n        \"9849.42\",\n        1630213199999,\n        \"325677.4092\",\n        31,\n        \"4658.8\",\n        \"154310.8142\",\n        \"0\"\n    ],\n    [\n        1630213200000,\n        \"33.03\",\n        \"33.07\",\n        \"33.01\",\n        \"33.04\",\n        \"4313.52\",\n        1630216799999,\n        \"142512.5281\",\n        35,\n        \"1966.15\",\n        \"65010.1289\",\n        \"0\"\n    ],\n    [\n        1630216800000,\n        \"33.04\",\n        \"33.16\",\n        \"33\",\n        \"33.16\",\n        \"46513.97\",\n        1630220399999,\n        \"1538287.2849\",\n        52,\n        \"26610.42\",\n        \"881259.2611\",\n        \"0\"\n    ],\n    [\n        1630220400000,\n        \"33.16\",\n        \"33.18\",\n        \"33.04\",\n        \"33.08\",\n        \"1817.96\",\n        1630223999999,\n        \"60243.9828\",\n        11,\n        \"432.78\",\n        \"14356.81\",\n        \"0\"\n    ],\n    [\n        1630224000000,\n        \"33.05\",\n        \"33.09\",\n        \"33\",\n        \"33.09\",\n        \"13744.11\",\n        1630227599999,\n        \"454368.0345\",\n        46,\n        \"9146.08\",\n        \"302500.975\",\n        \"0\"\n    ],\n    [\n        1630227600000,\n        \"33.08\",\n        \"33.1\",\n        \"33.01\",\n        \"33.09\",\n        \"10819.21\",\n        1630231199999,\n        \"357925.9884\",\n        40,\n        \"9210.13\",\n        \"304744.4464\",\n        \"0\"\n    ],\n    [\n        1630231200000,\n        \"33.09\",\n        \"33.09\",\n        \"33\",\n        \"33.01\",\n        \"32718.21\",\n        1630234799999,\n        \"1080328.4949\",\n        45,\n        \"5989.49\",\n        \"198067.0521\",\n        \"0\"\n    ],\n    [\n        1630234800000,\n        \"33.01\",\n        \"33.01\",\n        \"32.99\",\n        \"33\",\n        \"9120.79\",\n        1630238399999,\n        \"301012.1372\",\n        38,\n        \"6084.82\",\n        \"200825.8616\",\n        \"0\"\n    ],\n    [\n        1630238400000,\n        \"32.99\",\n        \"33.04\",\n        \"32.93\",\n        \"33.04\",\n        \"26652.47\",\n        1630241999999,\n        \"878357.747\",\n        35,\n        \"13067.03\",\n        \"430671.2462\",\n        \"0\"\n    ],\n    [\n        1630242000000,\n        \"33.04\",\n        \"33.04\",\n        \"32.93\",\n        \"32.93\",\n        \"12843.32\",\n        1630245599999,\n        \"423663.9324\",\n        38,\n        \"8785.56\",\n        \"289940.2016\",\n        \"0\"\n    ],\n    [\n        1630245600000,\n        \"32.99\",\n        \"33.08\",\n        \"32.93\",\n        \"33.08\",\n        \"36658.15\",\n        1630249199999,\n        \"1210611.2853\",\n        64,\n        \"29358.92\",\n        \"969681.7493\",\n        \"0\"\n    ],\n    [\n        1630249200000,\n        \"33.08\",\n        \"33.08\",\n        \"33\",\n        \"33.05\",\n        \"46173.05\",\n        1630252799999,\n        \"1525728.5553\",\n        56,\n        \"18016.06\",\n        \"595636.4901\",\n        \"0\"\n    ],\n    [\n        1630252800000,\n        \"33\",\n        \"33.07\",\n        \"32.96\",\n        \"32.96\",\n        \"17037.95\",\n        1630256399999,\n        \"562516.4193\",\n        30,\n        \"5375.58\",\n        \"177663.6218\",\n        \"0\"\n    ],\n    [\n        1630256400000,\n        \"32.97\",\n        \"33\",\n        \"32.96\",\n        \"33\",\n        \"14953.63\",\n        1630259999999,\n        \"493429.8613\",\n        22,\n        \"14328.67\",\n        \"472828.0238\",\n        \"0\"\n    ],\n    [\n        1630260000000,\n        \"33\",\n        \"33\",\n        \"32.98\",\n        \"32.99\",\n        \"3023.57\",\n        1630263599999,\n        \"99771.2264\",\n        11,\n        \"2391.74\",\n        \"78927.42\",\n        \"0\"\n    ],\n    [\n        1630263600000,\n        \"33\",\n        \"33.04\",\n        \"32.99\",\n        \"33\",\n        \"7525.39\",\n        1630267199999,\n        \"248338.1463\",\n        7,\n        \"7439.07\",\n        \"245489.85\",\n        \"0\"\n    ],\n    [\n        1630267200000,\n        \"33.04\",\n        \"33.04\",\n        \"33\",\n        \"33\",\n        \"302.12\",\n        1630270799999,\n        \"9978.0448\",\n        3,\n        \"202.12\",\n        \"6678.0448\",\n        \"0\"\n    ],\n    [\n        1630270800000,\n        \"33\",\n        \"33.06\",\n        \"32.92\",\n        \"33.06\",\n        \"15318.86\",\n        1630274399999,\n        \"505018.4143\",\n        12,\n        \"902.86\",\n        \"29848.5516\",\n        \"0\"\n    ],\n    [\n        1630274400000,\n        \"32.99\",\n        \"32.99\",\n        \"32.92\",\n        \"32.92\",\n        \"2344.76\",\n        1630277999999,\n        \"77199.869\",\n        5,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630278000000,\n        \"32.92\",\n        \"32.95\",\n        \"32.92\",\n        \"32.95\",\n        \"4701.52\",\n        1630281599999,\n        \"154807.3512\",\n        31,\n        \"1206.08\",\n        \"39737.1573\",\n        \"0\"\n    ],\n    [\n        1630281600000,\n        \"32.95\",\n        \"33.04\",\n        \"32.91\",\n        \"33.04\",\n        \"8286.51\",\n        1630285199999,\n        \"273408.9378\",\n        32,\n        \"6236.19\",\n        \"205924.6408\",\n        \"0\"\n    ],\n    [\n        1630285200000,\n        \"32.97\",\n        \"33.03\",\n        \"32.92\",\n        \"32.99\",\n        \"2662.31\",\n        1630288799999,\n        \"87798.9108\",\n        23,\n        \"1333.82\",\n        \"44037.1341\",\n        \"0\"\n    ],\n    [\n        1630288800000,\n        \"32.99\",\n        \"32.99\",\n        \"32.9\",\n        \"32.9\",\n        \"15454.64\",\n        1630292399999,\n        \"508768.8719\",\n        45,\n        \"1402.79\",\n        \"46184.2292\",\n        \"0\"\n    ],\n    [\n        1630292400000,\n        \"32.91\",\n        \"33.03\",\n        \"32.9\",\n        \"33.03\",\n        \"23318.63\",\n        1630295999999,\n        \"768582.2429\",\n        73,\n        \"11206.96\",\n        \"369971.7105\",\n        \"0\"\n    ],\n    [\n        1630296000000,\n        \"33.03\",\n        \"33.04\",\n        \"32.92\",\n        \"33.03\",\n        \"16630.92\",\n        1630299599999,\n        \"549144.3699\",\n        39,\n        \"10886.76\",\n        \"359588.5741\",\n        \"0\"\n    ],\n    [\n        1630299600000,\n        \"33.03\",\n        \"33.03\",\n        \"32.92\",\n        \"33\",\n        \"41936.23\",\n        1630303199999,\n        \"1383863.0987\",\n        46,\n        \"31922.42\",\n        \"1054138.6472\",\n        \"0\"\n    ],\n    [\n        1630303200000,\n        \"33\",\n        \"33\",\n        \"32.9\",\n        \"33\",\n        \"16197.82\",\n        1630306799999,\n        \"534042.6956\",\n        27,\n        \"9960.41\",\n        \"328693.53\",\n        \"0\"\n    ],\n    [\n        1630306800000,\n        \"33\",\n        \"33\",\n        \"32.9\",\n        \"32.9\",\n        \"26870.92\",\n        1630310399999,\n        \"884980.4929\",\n        35,\n        \"10596.77\",\n        \"349539.2969\",\n        \"0\"\n    ],\n    [\n        1630310400000,\n        \"32.91\",\n        \"32.99\",\n        \"32.88\",\n        \"32.96\",\n        \"44531.2\",\n        1630313999999,\n        \"1465457.4121\",\n        50,\n        \"11166.78\",\n        \"367838.7762\",\n        \"0\"\n    ],\n    [\n        1630314000000,\n        \"32.96\",\n        \"32.97\",\n        \"32.87\",\n        \"32.88\",\n        \"42880.62\",\n        1630317599999,\n        \"1411446.6047\",\n        42,\n        \"19691.44\",\n        \"648661.873\",\n        \"0\"\n    ],\n    [\n        1630317600000,\n        \"32.88\",\n        \"32.88\",\n        \"32.85\",\n        \"32.88\",\n        \"35062.36\",\n        1630321199999,\n        \"1152502.7142\",\n        34,\n        \"23522\",\n        \"773383.1444\",\n        \"0\"\n    ],\n    [\n        1630321200000,\n        \"32.86\",\n        \"32.98\",\n        \"32.8\",\n        \"32.9\",\n        \"120988.06\",\n        1630324799999,\n        \"3980415.9697\",\n        84,\n        \"68409.1\",\n        \"2254035.6818\",\n        \"0\"\n    ],\n    [\n        1630324800000,\n        \"32.9\",\n        \"33\",\n        \"32.87\",\n        \"33\",\n        \"13157.34\",\n        1630328399999,\n        \"433619.4711\",\n        69,\n        \"11913.18\",\n        \"392645.8109\",\n        \"0\"\n    ],\n    [\n        1630328400000,\n        \"33\",\n        \"33.02\",\n        \"32.9\",\n        \"32.9\",\n        \"9317.81\",\n        1630331999999,\n        \"307292.2429\",\n        48,\n        \"5518.56\",\n        \"182107.6041\",\n        \"0\"\n    ],\n    [\n        1630332000000,\n        \"32.95\",\n        \"33\",\n        \"32.9\",\n        \"32.99\",\n        \"36725.26\",\n        1630335599999,\n        \"1211626.7373\",\n        31,\n        \"34244.4\",\n        \"1129861.4769\",\n        \"0\"\n    ],\n    [\n        1630335600000,\n        \"33\",\n        \"33\",\n        \"32.87\",\n        \"33\",\n        \"9377.29\",\n        1630339199999,\n        \"309320.4157\",\n        45,\n        \"7566.15\",\n        \"249619.9182\",\n        \"0\"\n    ],\n    [\n        1630339200000,\n        \"32.98\",\n        \"33\",\n        \"32.97\",\n        \"32.97\",\n        \"24457.53\",\n        1630342799999,\n        \"807066.2081\",\n        43,\n        \"23165.71\",\n        \"764452.468\",\n        \"0\"\n    ],\n    [\n        1630342800000,\n        \"33\",\n        \"33.03\",\n        \"33\",\n        \"33\",\n        \"9576.52\",\n        1630346399999,\n        \"316124.9331\",\n        33,\n        \"6890.24\",\n        \"227456.2151\",\n        \"0\"\n    ],\n    [\n        1630346400000,\n        \"33\",\n        \"33\",\n        \"32.88\",\n        \"32.88\",\n        \"5746.08\",\n        1630349999999,\n        \"189070.5962\",\n        22,\n        \"630.56\",\n        \"20789.5632\",\n        \"0\"\n    ],\n    [\n        1630350000000,\n        \"32.88\",\n        \"32.94\",\n        \"32.82\",\n        \"32.82\",\n        \"7759.07\",\n        1630353599999,\n        \"255275.6245\",\n        38,\n        \"3667.55\",\n        \"120770.0201\",\n        \"0\"\n    ],\n    [\n        1630353600000,\n        \"32.82\",\n        \"32.93\",\n        \"32.8\",\n        \"32.8\",\n        \"31044.1\",\n        1630357199999,\n        \"1018585.2447\",\n        36,\n        \"1137.79\",\n        \"37451.6787\",\n        \"0\"\n    ],\n    [\n        1630357200000,\n        \"32.8\",\n        \"32.83\",\n        \"32.8\",\n        \"32.8\",\n        \"11864.7\",\n        1630360799999,\n        \"389496.3816\",\n        19,\n        \"11394.77\",\n        \"374080.2991\",\n        \"0\"\n    ],\n    [\n        1630360800000,\n        \"32.81\",\n        \"32.83\",\n        \"32.8\",\n        \"32.82\",\n        \"8019.98\",\n        1630364399999,\n        \"263186.7112\",\n        31,\n        \"5231.79\",\n        \"171719.951\",\n        \"0\"\n    ],\n    [\n        1630364400000,\n        \"33\",\n        \"33\",\n        \"32.8\",\n        \"33\",\n        \"34362.21\",\n        1630367999999,\n        \"1132224.7772\",\n        95,\n        \"27451.03\",\n        \"905392.1029\",\n        \"0\"\n    ],\n    [\n        1630368000000,\n        \"32.94\",\n        \"33.05\",\n        \"32.88\",\n        \"33.01\",\n        \"33999.95\",\n        1630371599999,\n        \"1122795.9707\",\n        77,\n        \"33583.17\",\n        \"1109070.2914\",\n        \"0\"\n    ],\n    [\n        1630371600000,\n        \"33.03\",\n        \"33.05\",\n        \"32.81\",\n        \"32.96\",\n        \"35679.62\",\n        1630375199999,\n        \"1177379.0673\",\n        94,\n        \"26806.09\",\n        \"884934.5981\",\n        \"0\"\n    ],\n    [\n        1630375200000,\n        \"33.01\",\n        \"33.06\",\n        \"32.93\",\n        \"32.99\",\n        \"18310.72\",\n        1630378799999,\n        \"604354.5737\",\n        46,\n        \"8898.19\",\n        \"293745.2646\",\n        \"0\"\n    ],\n    [\n        1630378800000,\n        \"32.96\",\n        \"33.07\",\n        \"32.85\",\n        \"32.86\",\n        \"66445.97\",\n        1630382399999,\n        \"2191848.888\",\n        35,\n        \"63336.82\",\n        \"2089623.4185\",\n        \"0\"\n    ],\n    [\n        1630382400000,\n        \"32.93\",\n        \"32.96\",\n        \"32.85\",\n        \"32.92\",\n        \"15373.43\",\n        1630385999999,\n        \"506163.7338\",\n        51,\n        \"10340.63\",\n        \"340586.6955\",\n        \"0\"\n    ],\n    [\n        1630386000000,\n        \"32.9\",\n        \"32.92\",\n        \"32.85\",\n        \"32.85\",\n        \"31344.02\",\n        1630389599999,\n        \"1030761.2222\",\n        41,\n        \"20785.7\",\n        \"683818.0757\",\n        \"0\"\n    ],\n    [\n        1630389600000,\n        \"32.87\",\n        \"32.89\",\n        \"32.76\",\n        \"32.86\",\n        \"50874.57\",\n        1630393199999,\n        \"1671392.5956\",\n        73,\n        \"36334.23\",\n        \"1194628.6749\",\n        \"0\"\n    ],\n    [\n        1630393200000,\n        \"32.86\",\n        \"32.87\",\n        \"32.75\",\n        \"32.75\",\n        \"30248.91\",\n        1630396799999,\n        \"991807.8684\",\n        75,\n        \"9223.22\",\n        \"302757.8879\",\n        \"0\"\n    ],\n    [\n        1630396800000,\n        \"32.79\",\n        \"32.8\",\n        \"32.59\",\n        \"32.66\",\n        \"56650.99\",\n        1630400399999,\n        \"1849991.9596\",\n        104,\n        \"12848.99\",\n        \"420117.3095\",\n        \"0\"\n    ],\n    [\n        1630400400000,\n        \"32.66\",\n        \"32.68\",\n        \"32.55\",\n        \"32.64\",\n        \"58607.64\",\n        1630403999999,\n        \"1910845.5625\",\n        94,\n        \"31620.73\",\n        \"1031362.8416\",\n        \"0\"\n    ],\n    [\n        1630404000000,\n        \"32.64\",\n        \"32.73\",\n        \"32.5\",\n        \"32.51\",\n        \"97896.39\",\n        1630407599999,\n        \"3193065.5062\",\n        115,\n        \"32505.41\",\n        \"1061287.8275\",\n        \"0\"\n    ],\n    [\n        1630407600000,\n        \"32.66\",\n        \"32.67\",\n        \"32.3\",\n        \"32.38\",\n        \"129497.29\",\n        1630411199999,\n        \"4191120.1584\",\n        97,\n        \"76803.38\",\n        \"2483956.1838\",\n        \"0\"\n    ],\n    [\n        1630411200000,\n        \"32.42\",\n        \"32.57\",\n        \"32.32\",\n        \"32.32\",\n        \"72564.94\",\n        1630414799999,\n        \"2354466.4271\",\n        149,\n        \"45220.18\",\n        \"1467104.0877\",\n        \"0\"\n    ],\n    [\n        1630414800000,\n        \"32.32\",\n        \"32.52\",\n        \"32.3\",\n        \"32.31\",\n        \"174621.75\",\n        1630418399999,\n        \"5649317.8727\",\n        144,\n        \"143108.05\",\n        \"4627373.4416\",\n        \"0\"\n    ],\n    [\n        1630418400000,\n        \"32.29\",\n        \"32.6\",\n        \"32.26\",\n        \"32.39\",\n        \"144217.42\",\n        1630421999999,\n        \"4668558.6256\",\n        119,\n        \"138686.06\",\n        \"4489451.7438\",\n        \"0\"\n    ],\n    [\n        1630422000000,\n        \"32.38\",\n        \"32.6\",\n        \"32.35\",\n        \"32.45\",\n        \"38207.61\",\n        1630425599999,\n        \"1241624.0931\",\n        101,\n        \"34102.91\",\n        \"1108472.048\",\n        \"0\"\n    ],\n    [\n        1630425600000,\n        \"32.45\",\n        \"32.5\",\n        \"32.43\",\n        \"32.49\",\n        \"16320.59\",\n        1630429199999,\n        \"529796.3535\",\n        69,\n        \"6735.63\",\n        \"218837.3358\",\n        \"0\"\n    ],\n    [\n        1630429200000,\n        \"32.49\",\n        \"32.5\",\n        \"32.43\",\n        \"32.44\",\n        \"7521.05\",\n        1630432799999,\n        \"244396.2688\",\n        25,\n        \"7091.86\",\n        \"230473.2559\",\n        \"0\"\n    ],\n    [\n        1630432800000,\n        \"32.5\",\n        \"32.5\",\n        \"32.43\",\n        \"32.43\",\n        \"14294.45\",\n        1630436399999,\n        \"464422.8161\",\n        26,\n        \"12193.81\",\n        \"396298.825\",\n        \"0\"\n    ],\n    [\n        1630436400000,\n        \"32.5\",\n        \"32.5\",\n        \"32.43\",\n        \"32.45\",\n        \"4000.91\",\n        1630439999999,\n        \"129984.4414\",\n        16,\n        \"3167.8\",\n        \"102947.4644\",\n        \"0\"\n    ],\n    [\n        1630440000000,\n        \"32.49\",\n        \"32.5\",\n        \"32.44\",\n        \"32.5\",\n        \"6557.96\",\n        1630443599999,\n        \"213018.5204\",\n        44,\n        \"4048.48\",\n        \"131572.8767\",\n        \"0\"\n    ],\n    [\n        1630443600000,\n        \"32.5\",\n        \"32.6\",\n        \"32.28\",\n        \"32.59\",\n        \"93712.22\",\n        1630447199999,\n        \"3030098.2115\",\n        80,\n        \"26088.06\",\n        \"843974.4339\",\n        \"0\"\n    ],\n    [\n        1630447200000,\n        \"32.58\",\n        \"32.58\",\n        \"32.31\",\n        \"32.31\",\n        \"48910.09\",\n        1630450799999,\n        \"1586931.8282\",\n        49,\n        \"32838.09\",\n        \"1067448.2386\",\n        \"0\"\n    ],\n    [\n        1630450800000,\n        \"32.48\",\n        \"32.48\",\n        \"32.3\",\n        \"32.38\",\n        \"29277.93\",\n        1630454399999,\n        \"947104.2484\",\n        30,\n        \"10283.48\",\n        \"333407.2223\",\n        \"0\"\n    ],\n    [\n        1630454400000,\n        \"32.38\",\n        \"32.48\",\n        \"32.31\",\n        \"32.33\",\n        \"260420.4\",\n        1630457999999,\n        \"8417830.5305\",\n        242,\n        \"210757.43\",\n        \"6812852.2803\",\n        \"0\"\n    ],\n    [\n        1630458000000,\n        \"32.33\",\n        \"32.61\",\n        \"32.32\",\n        \"32.59\",\n        \"169976.67\",\n        1630461599999,\n        \"5502721.8737\",\n        188,\n        \"159397.74\",\n        \"5158140.7565\",\n        \"0\"\n    ],\n    [\n        1630461600000,\n        \"32.57\",\n        \"32.73\",\n        \"32.43\",\n        \"32.45\",\n        \"28917.68\",\n        1630465199999,\n        \"942691.9927\",\n        61,\n        \"16358.22\",\n        \"534465.3751\",\n        \"0\"\n    ],\n    [\n        1630465200000,\n        \"32.45\",\n        \"32.59\",\n        \"32.45\",\n        \"32.45\",\n        \"12450.38\",\n        1630468799999,\n        \"404527.562\",\n        32,\n        \"8946.53\",\n        \"290732.052\",\n        \"0\"\n    ],\n    [\n        1630468800000,\n        \"32.5\",\n        \"32.57\",\n        \"32.44\",\n        \"32.51\",\n        \"58279.7\",\n        1630472399999,\n        \"1893756.4767\",\n        52,\n        \"53608.27\",\n        \"1742124.7149\",\n        \"0\"\n    ],\n    [\n        1630472400000,\n        \"32.51\",\n        \"32.58\",\n        \"32.44\",\n        \"32.45\",\n        \"26993.32\",\n        1630475999999,\n        \"877728.3841\",\n        76,\n        \"14825.14\",\n        \"482459.0285\",\n        \"0\"\n    ],\n    [\n        1630476000000,\n        \"32.52\",\n        \"32.52\",\n        \"32.31\",\n        \"32.39\",\n        \"43474.71\",\n        1630479599999,\n        \"1409384.6656\",\n        86,\n        \"8639.5\",\n        \"280569.5425\",\n        \"0\"\n    ],\n    [\n        1630479600000,\n        \"32.39\",\n        \"32.41\",\n        \"32.36\",\n        \"32.41\",\n        \"12859.24\",\n        1630483199999,\n        \"416553.0702\",\n        38,\n        \"11632.92\",\n        \"376854.259\",\n        \"0\"\n    ],\n    [\n        1630483200000,\n        \"32.4\",\n        \"32.52\",\n        \"32.32\",\n        \"32.39\",\n        \"19449.2\",\n        1630486799999,\n        \"630037.0079\",\n        51,\n        \"7777.39\",\n        \"252419.8048\",\n        \"0\"\n    ],\n    [\n        1630486800000,\n        \"32.39\",\n        \"32.5\",\n        \"32.39\",\n        \"32.44\",\n        \"70611.79\",\n        1630490399999,\n        \"2292743.0958\",\n        91,\n        \"28253.79\",\n        \"917415.36\",\n        \"0\"\n    ],\n    [\n        1630490400000,\n        \"32.44\",\n        \"32.48\",\n        \"32.31\",\n        \"32.31\",\n        \"53367.77\",\n        1630493999999,\n        \"1727940.4345\",\n        46,\n        \"9267.9\",\n        \"300667.0873\",\n        \"0\"\n    ],\n    [\n        1630494000000,\n        \"32.47\",\n        \"32.47\",\n        \"32.3\",\n        \"32.3\",\n        \"25511.33\",\n        1630497599999,\n        \"824700.9495\",\n        32,\n        \"3347.55\",\n        \"108577.4265\",\n        \"0\"\n    ],\n    [\n        1630497600000,\n        \"32.28\",\n        \"32.4\",\n        \"32.23\",\n        \"32.25\",\n        \"35311.41\",\n        1630501199999,\n        \"1140682.3015\",\n        36,\n        \"12258.3\",\n        \"397046.0905\",\n        \"0\"\n    ],\n    [\n        1630501200000,\n        \"32.37\",\n        \"32.39\",\n        \"32.27\",\n        \"32.34\",\n        \"53191.05\",\n        1630504799999,\n        \"1720173.6268\",\n        42,\n        \"31111.95\",\n        \"1005517.8724\",\n        \"0\"\n    ],\n    [\n        1630504800000,\n        \"32.32\",\n        \"32.4\",\n        \"32.23\",\n        \"32.4\",\n        \"41057.46\",\n        1630508399999,\n        \"1325942.0141\",\n        83,\n        \"17081.9\",\n        \"552479.1966\",\n        \"0\"\n    ],\n    [\n        1630508400000,\n        \"32.31\",\n        \"32.43\",\n        \"32.31\",\n        \"32.31\",\n        \"42668.66\",\n        1630511999999,\n        \"1382281.9763\",\n        50,\n        \"37236.21\",\n        \"1206672.0072\",\n        \"0\"\n    ],\n    [\n        1630512000000,\n        \"32.31\",\n        \"32.37\",\n        \"32.24\",\n        \"32.25\",\n        \"29849.12\",\n        1630515599999,\n        \"965034.5319\",\n        70,\n        \"14904.02\",\n        \"482196.3681\",\n        \"0\"\n    ],\n    [\n        1630515600000,\n        \"32.25\",\n        \"32.37\",\n        \"32.22\",\n        \"32.25\",\n        \"7955.11\",\n        1630519199999,\n        \"256892.4598\",\n        27,\n        \"3210.57\",\n        \"103926.1509\",\n        \"0\"\n    ],\n    [\n        1630519200000,\n        \"32.25\",\n        \"32.3\",\n        \"32.22\",\n        \"32.22\",\n        \"34122.43\",\n        1630522799999,\n        \"1100482.7995\",\n        53,\n        \"1826.48\",\n        \"58922.6622\",\n        \"0\"\n    ],\n    [\n        1630522800000,\n        \"32.23\",\n        \"32.25\",\n        \"32.22\",\n        \"32.25\",\n        \"2547.06\",\n        1630526399999,\n        \"82098.9201\",\n        16,\n        \"1771.83\",\n        \"57117.8842\",\n        \"0\"\n    ],\n    [\n        1630526400000,\n        \"32.25\",\n        \"32.36\",\n        \"32.24\",\n        \"32.3\",\n        \"6404.84\",\n        1630529999999,\n        \"206561.678\",\n        14,\n        \"6374.77\",\n        \"205592.2212\",\n        \"0\"\n    ],\n    [\n        1630530000000,\n        \"32.25\",\n        \"32.25\",\n        \"32.2\",\n        \"32.2\",\n        \"70682.2\",\n        1630533599999,\n        \"2277873.0987\",\n        45,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630533600000,\n        \"32.19\",\n        \"32.33\",\n        \"32.19\",\n        \"32.33\",\n        \"4769.68\",\n        1630537199999,\n        \"154162.1795\",\n        13,\n        \"4641.94\",\n        \"150049.8455\",\n        \"0\"\n    ],\n    [\n        1630537200000,\n        \"32.19\",\n        \"32.33\",\n        \"32.19\",\n        \"32.19\",\n        \"25803.94\",\n        1630540799999,\n        \"833464.1875\",\n        51,\n        \"15676.49\",\n        \"506816.0788\",\n        \"0\"\n    ],\n    [\n        1630540800000,\n        \"32.33\",\n        \"32.33\",\n        \"32.03\",\n        \"32.04\",\n        \"42022.1\",\n        1630544399999,\n        \"1351182.602\",\n        68,\n        \"8915.67\",\n        \"286628.1328\",\n        \"0\"\n    ],\n    [\n        1630544400000,\n        \"32.09\",\n        \"32.2\",\n        \"32.08\",\n        \"32.11\",\n        \"117205.52\",\n        1630547999999,\n        \"3763881.7046\",\n        62,\n        \"103358.48\",\n        \"3319073.0164\",\n        \"0\"\n    ],\n    [\n        1630548000000,\n        \"32.11\",\n        \"32.19\",\n        \"32.07\",\n        \"32.11\",\n        \"112417.49\",\n        1630551599999,\n        \"3610581.2678\",\n        94,\n        \"91045.54\",\n        \"2924378.5611\",\n        \"0\"\n    ],\n    [\n        1630551600000,\n        \"32.11\",\n        \"32.11\",\n        \"32.04\",\n        \"32.06\",\n        \"42374.19\",\n        1630555199999,\n        \"1360407.3208\",\n        43,\n        \"35956.93\",\n        \"1154555.4903\",\n        \"0\"\n    ],\n    [\n        1630555200000,\n        \"32.11\",\n        \"32.15\",\n        \"32.06\",\n        \"32.14\",\n        \"182856.78\",\n        1630558799999,\n        \"5871460.4656\",\n        58,\n        \"174819.29\",\n        \"5613745.499\",\n        \"0\"\n    ],\n    [\n        1630558800000,\n        \"32.14\",\n        \"32.15\",\n        \"32.11\",\n        \"32.12\",\n        \"15401.27\",\n        1630562399999,\n        \"494966.8637\",\n        41,\n        \"10424.16\",\n        \"335111.2904\",\n        \"0\"\n    ],\n    [\n        1630562400000,\n        \"32.18\",\n        \"32.19\",\n        \"32.03\",\n        \"32.18\",\n        \"65586.53\",\n        1630565999999,\n        \"2107940.3416\",\n        94,\n        \"41972.53\",\n        \"1349568.2481\",\n        \"0\"\n    ],\n    [\n        1630566000000,\n        \"32.16\",\n        \"32.44\",\n        \"32\",\n        \"32.44\",\n        \"69895.87\",\n        1630569599999,\n        \"2247254.4156\",\n        92,\n        \"34206.48\",\n        \"1101243.5277\",\n        \"0\"\n    ],\n    [\n        1630569600000,\n        \"32.15\",\n        \"32.41\",\n        \"32.14\",\n        \"32.15\",\n        \"11583.18\",\n        1630573199999,\n        \"372691.4129\",\n        51,\n        \"715.42\",\n        \"23113.9083\",\n        \"0\"\n    ],\n    [\n        1630573200000,\n        \"32.16\",\n        \"32.25\",\n        \"32.15\",\n        \"32.25\",\n        \"10693.87\",\n        1630576799999,\n        \"344120.0681\",\n        34,\n        \"5421.71\",\n        \"174611.5522\",\n        \"0\"\n    ],\n    [\n        1630576800000,\n        \"32.24\",\n        \"32.25\",\n        \"32.1\",\n        \"32.17\",\n        \"26260.25\",\n        1630580399999,\n        \"844897.609\",\n        48,\n        \"12815\",\n        \"412691.6851\",\n        \"0\"\n    ],\n    [\n        1630580400000,\n        \"32.19\",\n        \"32.23\",\n        \"32.17\",\n        \"32.22\",\n        \"11342.67\",\n        1630583999999,\n        \"365284.1448\",\n        37,\n        \"4157\",\n        \"133847.0077\",\n        \"0\"\n    ],\n    [\n        1630584000000,\n        \"32.22\",\n        \"32.25\",\n        \"32.21\",\n        \"32.22\",\n        \"20813.11\",\n        1630587599999,\n        \"670759.3395\",\n        68,\n        \"8347.09\",\n        \"269117.04\",\n        \"0\"\n    ],\n    [\n        1630587600000,\n        \"32.25\",\n        \"32.25\",\n        \"32.22\",\n        \"32.22\",\n        \"49873.24\",\n        1630591199999,\n        \"1608027.4677\",\n        64,\n        \"15138.02\",\n        \"488138.2024\",\n        \"0\"\n    ],\n    [\n        1630591200000,\n        \"32.23\",\n        \"32.29\",\n        \"32.22\",\n        \"32.29\",\n        \"26675.73\",\n        1630594799999,\n        \"860636.7397\",\n        90,\n        \"17165.41\",\n        \"554090.9303\",\n        \"0\"\n    ],\n    [\n        1630594800000,\n        \"32.27\",\n        \"32.3\",\n        \"32.22\",\n        \"32.22\",\n        \"24402.11\",\n        1630598399999,\n        \"787246.2673\",\n        54,\n        \"9929.46\",\n        \"320619.4961\",\n        \"0\"\n    ],\n    [\n        1630598400000,\n        \"32.22\",\n        \"32.27\",\n        \"32.22\",\n        \"32.26\",\n        \"10798.21\",\n        1630601999999,\n        \"348015.7144\",\n        27,\n        \"1313.52\",\n        \"42370.3861\",\n        \"0\"\n    ],\n    [\n        1630602000000,\n        \"32.26\",\n        \"32.4\",\n        \"32.26\",\n        \"32.37\",\n        \"16688.52\",\n        1630605599999,\n        \"539395.0306\",\n        41,\n        \"12685.1\",\n        \"410143.0195\",\n        \"0\"\n    ],\n    [\n        1630605600000,\n        \"32.37\",\n        \"32.41\",\n        \"32.3\",\n        \"32.4\",\n        \"17247.94\",\n        1630609199999,\n        \"558612.551\",\n        20,\n        \"16065.79\",\n        \"520384.3394\",\n        \"0\"\n    ],\n    [\n        1630609200000,\n        \"32.31\",\n        \"32.33\",\n        \"32.2\",\n        \"32.2\",\n        \"71012.89\",\n        1630612799999,\n        \"2287837.2527\",\n        34,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630612800000,\n        \"32.27\",\n        \"32.37\",\n        \"32.2\",\n        \"32.2\",\n        \"1852.48\",\n        1630616399999,\n        \"59812.4091\",\n        4,\n        \"1544.43\",\n        \"49893.1991\",\n        \"0\"\n    ],\n    [\n        1630616400000,\n        \"32.21\",\n        \"32.21\",\n        \"32.2\",\n        \"32.2\",\n        \"5003.5\",\n        1630619999999,\n        \"161115.8006\",\n        17,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1630620000000,\n        \"32.2\",\n        \"32.37\",\n        \"32.2\",\n        \"32.23\",\n        \"3748.79\",\n        1630623599999,\n        \"120806.5215\",\n        19,\n        \"502.08\",\n        \"16251.753\",\n        \"0\"\n    ],\n    [\n        1630623600000,\n        \"32.37\",\n        \"32.43\",\n        \"32.25\",\n        \"32.42\",\n        \"3019.34\",\n        1630627199999,\n        \"97824.3675\",\n        23,\n        \"2830.15\",\n        \"91721.2187\",\n        \"0\"\n    ],\n    [\n        1630627200000,\n        \"32.42\",\n        \"32.55\",\n        \"32.32\",\n        \"32.55\",\n        \"51717.95\",\n        1630630799999,\n        \"1679926.2276\",\n        96,\n        \"48241.57\",\n        \"1567554.0365\",\n        \"0\"\n    ],\n    [\n        1630630800000,\n        \"32.55\",\n        \"32.55\",\n        \"32.38\",\n        \"32.49\",\n        \"18259.46\",\n        1630634399999,\n        \"593031.8823\",\n        31,\n        \"15757.11\",\n        \"511911.6114\",\n        \"0\"\n    ],\n    [\n        1630634400000,\n        \"32.5\",\n        \"32.55\",\n        \"32.42\",\n        \"32.5\",\n        \"7770.43\",\n        1630637999999,\n        \"252290.0277\",\n        22,\n        \"3376.72\",\n        \"109840.7103\",\n        \"0\"\n    ],\n    [\n        1630638000000,\n        \"32.5\",\n        \"32.55\",\n        \"32.5\",\n        \"32.52\",\n        \"68594.88\",\n        1630641599999,\n        \"2231974.1707\",\n        72,\n        \"58574.98\",\n        \"1906133.242\",\n        \"0\"\n    ],\n    [\n        1630641600000,\n        \"32.52\",\n        \"32.52\",\n        \"32.42\",\n        \"32.5\",\n        \"25831.7\",\n        1630645199999,\n        \"838424.0072\",\n        62,\n        \"17635.1\",\n        \"572144.8336\",\n        \"0\"\n    ],\n    [\n        1630645200000,\n        \"32.5\",\n        \"32.6\",\n        \"32.43\",\n        \"32.44\",\n        \"93189.98\",\n        1630648799999,\n        \"3031517.653\",\n        58,\n        \"73152.3\",\n        \"2380674.6028\",\n        \"0\"\n    ],\n    [\n        1630648800000,\n        \"32.44\",\n        \"32.55\",\n        \"32.44\",\n        \"32.51\",\n        \"16885.31\",\n        1630652399999,\n        \"549217.3452\",\n        54,\n        \"13469.11\",\n        \"438301.0836\",\n        \"0\"\n    ],\n    [\n        1630652400000,\n        \"32.52\",\n        \"32.6\",\n        \"32.43\",\n        \"32.54\",\n        \"45015.99\",\n        1630655999999,\n        \"1462756.2063\",\n        71,\n        \"13427.09\",\n        \"437014.8473\",\n        \"0\"\n    ],\n    [\n        1630656000000,\n        \"32.54\",\n        \"32.6\",\n        \"32.45\",\n        \"32.45\",\n        \"25243.93\",\n        1630659599999,\n        \"821091.569\",\n        50,\n        \"6381.27\",\n        \"207971.9328\",\n        \"0\"\n    ],\n    [\n        1630659600000,\n        \"32.58\",\n        \"32.63\",\n        \"32.38\",\n        \"32.41\",\n        \"31295.12\",\n        1630663199999,\n        \"1016045.7478\",\n        67,\n        \"11099.98\",\n        \"361741.4752\",\n        \"0\"\n    ],\n    [\n        1630663200000,\n        \"32.41\",\n        \"32.55\",\n        \"32.35\",\n        \"32.4\",\n        \"40131.11\",\n        1630666799999,\n        \"1300160.014\",\n        72,\n        \"5411.37\",\n        \"175348.4989\",\n        \"0\"\n    ],\n    [\n        1630666800000,\n        \"32.39\",\n        \"32.49\",\n        \"32.33\",\n        \"32.48\",\n        \"31197.22\",\n        1630670399999,\n        \"1010561.6252\",\n        61,\n        \"22547.18\",\n        \"730724.8961\",\n        \"0\"\n    ],\n    [\n        1630670400000,\n        \"32.48\",\n        \"32.48\",\n        \"32.34\",\n        \"32.39\",\n        \"21937.21\",\n        1630673999999,\n        \"710862.997\",\n        48,\n        \"10674.34\",\n        \"346027.89\",\n        \"0\"\n    ],\n    [\n        1630674000000,\n        \"32.39\",\n        \"32.46\",\n        \"32.34\",\n        \"32.45\",\n        \"9672.82\",\n        1630677599999,\n        \"313464.462\",\n        39,\n        \"4491.15\",\n        \"145671.1991\",\n        \"0\"\n    ],\n    [\n        1630677600000,\n        \"32.45\",\n        \"32.53\",\n        \"32.33\",\n        \"32.5\",\n        \"59706.08\",\n        1630681199999,\n        \"1939033.1792\",\n        90,\n        \"43773.89\",\n        \"1422729.6506\",\n        \"0\"\n    ],\n    [\n        1630681200000,\n        \"32.36\",\n        \"32.53\",\n        \"32.36\",\n        \"32.45\",\n        \"16976.78\",\n        1630684799999,\n        \"551054.5436\",\n        49,\n        \"7742.55\",\n        \"251683.9116\",\n        \"0\"\n    ],\n    [\n        1630684800000,\n        \"32.45\",\n        \"32.51\",\n        \"32.41\",\n        \"32.45\",\n        \"11751.13\",\n        1630688399999,\n        \"381663.2896\",\n        35,\n        \"7656.55\",\n        \"248836.3981\",\n        \"0\"\n    ],\n    [\n        1630688400000,\n        \"32.45\",\n        \"32.53\",\n        \"32.39\",\n        \"32.45\",\n        \"24327.69\",\n        1630691999999,\n        \"790330.0228\",\n        39,\n        \"17679.93\",\n        \"574791.3747\",\n        \"0\"\n    ],\n    [\n        1630692000000,\n        \"32.44\",\n        \"32.46\",\n        \"32.39\",\n        \"32.39\",\n        \"2268.74\",\n        1630695599999,\n        \"73609.2164\",\n        18,\n        \"2076.05\",\n        \"67367.9873\",\n        \"0\"\n    ],\n    [\n        1630695600000,\n        \"32.39\",\n        \"32.52\",\n        \"32.38\",\n        \"32.52\",\n        \"11872.97\",\n        1630699199999,\n        \"385333.3685\",\n        21,\n        \"7406.57\",\n        \"240637.7406\",\n        \"0\"\n    ],\n    [\n        1630699200000,\n        \"32.52\",\n        \"32.52\",\n        \"32.42\",\n        \"32.44\",\n        \"2747.11\",\n        1630702799999,\n        \"89241.2762\",\n        12,\n        \"790.12\",\n        \"25684.3176\",\n        \"0\"\n    ],\n    [\n        1630702800000,\n        \"32.44\",\n        \"32.5\",\n        \"32.38\",\n        \"32.38\",\n        \"2424.08\",\n        1630706399999,\n        \"78574.1726\",\n        15,\n        \"434.9\",\n        \"14113.3059\",\n        \"0\"\n    ],\n    [\n        1630706400000,\n        \"32.48\",\n        \"32.53\",\n        \"32.48\",\n        \"32.53\",\n        \"8106.26\",\n        1630709999999,\n        \"263524.3691\",\n        35,\n        \"8106.26\",\n        \"263524.3691\",\n        \"0\"\n    ],\n    [\n        1630710000000,\n        \"32.53\",\n        \"32.53\",\n        \"32.43\",\n        \"32.43\",\n        \"4656.72\",\n        1630713599999,\n        \"151404.7952\",\n        12,\n        \"3855.95\",\n        \"125428.0716\",\n        \"0\"\n    ],\n    [\n        1630713600000,\n        \"32.43\",\n        \"32.53\",\n        \"32.42\",\n        \"32.48\",\n        \"11455.65\",\n        1630717199999,\n        \"371774.1963\",\n        21,\n        \"2691.76\",\n        \"87541.5824\",\n        \"0\"\n    ],\n    [\n        1630717200000,\n        \"32.52\",\n        \"32.53\",\n        \"32.51\",\n        \"32.53\",\n        \"10176.7\",\n        1630720799999,\n        \"331009.3377\",\n        29,\n        \"10074.06\",\n        \"327671.4849\",\n        \"0\"\n    ],\n    [\n        1630720800000,\n        \"32.53\",\n        \"32.57\",\n        \"32.53\",\n        \"32.56\",\n        \"19033.24\",\n        1630724399999,\n        \"619265.4825\",\n        48,\n        \"17534.48\",\n        \"570470.6013\",\n        \"0\"\n    ],\n    [\n        1630724400000,\n        \"32.57\",\n        \"32.62\",\n        \"32.54\",\n        \"32.62\",\n        \"17365.31\",\n        1630727999999,\n        \"566083.2488\",\n        63,\n        \"13494.81\",\n        \"440027.8831\",\n        \"0\"\n    ],\n    [\n        1630728000000,\n        \"32.62\",\n        \"32.63\",\n        \"32.51\",\n        \"32.62\",\n        \"87521.69\",\n        1630731599999,\n        \"2853144.7844\",\n        56,\n        \"13232.2\",\n        \"431627.4612\",\n        \"0\"\n    ],\n    [\n        1630731600000,\n        \"32.61\",\n        \"32.62\",\n        \"32.5\",\n        \"32.5\",\n        \"90110.55\",\n        1630735199999,\n        \"2936046.1307\",\n        37,\n        \"6577.48\",\n        \"214378.1467\",\n        \"0\"\n    ],\n    [\n        1630735200000,\n        \"32.5\",\n        \"32.6\",\n        \"32.5\",\n        \"32.54\",\n        \"18306.33\",\n        1630738799999,\n        \"595382.3385\",\n        34,\n        \"7530.12\",\n        \"245037.1964\",\n        \"0\"\n    ],\n    [\n        1630738800000,\n        \"32.53\",\n        \"32.68\",\n        \"32.53\",\n        \"32.67\",\n        \"27804.86\",\n        1630742399999,\n        \"906896.0518\",\n        57,\n        \"15453.92\",\n        \"504313.8522\",\n        \"0\"\n    ],\n    [\n        1630742400000,\n        \"32.66\",\n        \"32.67\",\n        \"32.51\",\n        \"32.53\",\n        \"14232.96\",\n        1630745999999,\n        \"464403.5429\",\n        26,\n        \"8715.06\",\n        \"284634.3164\",\n        \"0\"\n    ],\n    [\n        1630746000000,\n        \"32.54\",\n        \"32.66\",\n        \"32.54\",\n        \"32.56\",\n        \"17500.26\",\n        1630749599999,\n        \"571181.4495\",\n        39,\n        \"14135.12\",\n        \"461615.8455\",\n        \"0\"\n    ],\n    [\n        1630749600000,\n        \"32.56\",\n        \"32.63\",\n        \"32.56\",\n        \"32.63\",\n        \"17295.44\",\n        1630753199999,\n        \"563307.1517\",\n        57,\n        \"3093.89\",\n        \"100880.1054\",\n        \"0\"\n    ],\n    [\n        1630753200000,\n        \"32.63\",\n        \"32.66\",\n        \"32.56\",\n        \"32.56\",\n        \"25245.9642922820011801\",\n        1630756799999,\n        \"822738.96112839323847126\",\n        55,\n        \"15313.2042922820011801\",\n        \"499247.51902839323847126\",\n        \"0\"\n    ],\n    [\n        1630756800000,\n        \"32.58\",\n        \"32.67\",\n        \"32.56\",\n        \"32.67\",\n        \"14169.0265794738676457\",\n        1630760399999,\n        \"462279.019851870996067626\",\n        38,\n        \"9657.9065794738676457\",\n        \"315260.421251870996067626\",\n        \"0\"\n    ],\n    [\n        1630760400000,\n        \"32.6\",\n        \"32.67\",\n        \"32.56\",\n        \"32.64\",\n        \"28064.14\",\n        1630763999999,\n        \"916013.334190953134525248\",\n        65,\n        \"15489.67\",\n        \"505963.9301\",\n        \"0\"\n    ],\n    [\n        1630764000000,\n        \"32.56\",\n        \"32.65\",\n        \"32.56\",\n        \"32.59\",\n        \"29333.24\",\n        1630767599999,\n        \"957060.9989\",\n        38,\n        \"22817.11\",\n        \"744861.2237\",\n        \"0\"\n    ],\n    [\n        1630767600000,\n        \"32.59\",\n        \"32.66\",\n        \"32.56\",\n        \"32.64\",\n        \"37263.62\",\n        1630771199999,\n        \"1216423.149\",\n        35,\n        \"29308.45\",\n        \"956866.2276\",\n        \"0\"\n    ],\n    [\n        1630771200000,\n        \"32.64\",\n        \"32.66\",\n        \"32.57\",\n        \"32.66\",\n        \"21621.24\",\n        1630774799999,\n        \"706057.6461\",\n        25,\n        \"21576.26\",\n        \"704592.6475\",\n        \"0\"\n    ],\n    [\n        1630774800000,\n        \"32.66\",\n        \"32.71\",\n        \"32.57\",\n        \"32.7\",\n        \"32308.13\",\n        1630778399999,\n        \"1055496.710134870234753032\",\n        70,\n        \"30954.49\",\n        \"1011254.103534870234753032\",\n        \"0\"\n    ],\n    [\n        1630778400000,\n        \"32.71\",\n        \"32.74\",\n        \"32.62\",\n        \"32.74\",\n        \"4662.5891282441311742\",\n        1630781999999,\n        \"152521.286384865530708082\",\n        14,\n        \"3775.9591282441311742\",\n        \"123568.542684865530708082\",\n        \"0\"\n    ],\n    [\n        1630782000000,\n        \"32.75\",\n        \"32.77\",\n        \"32.67\",\n        \"32.76\",\n        \"3299.28\",\n        1630785599999,\n        \"108056.69030585774368284\",\n        24,\n        \"2889.2\",\n        \"94643.0148\",\n        \"0\"\n    ],\n    [\n        1630785600000,\n        \"32.75\",\n        \"32.77\",\n        \"32.67\",\n        \"32.77\",\n        \"3146.69\",\n        1630789199999,\n        \"102990.6144\",\n        7,\n        \"2146.69\",\n        \"70320.6144\",\n        \"0\"\n    ],\n    [\n        1630789200000,\n        \"32.77\",\n        \"32.77\",\n        \"32.68\",\n        \"32.68\",\n        \"203.76\",\n        1630792799999,\n        \"6659.973\",\n        4,\n        \"12.18\",\n        \"399.1386\",\n        \"0\"\n    ],\n    [\n        1630792800000,\n        \"32.68\",\n        \"32.74\",\n        \"32.66\",\n        \"32.66\",\n        \"4955.68\",\n        1630796399999,\n        \"161901.88700083682052612\",\n        28,\n        \"15.27\",\n        \"499.9398\",\n        \"0\"\n    ],\n    [\n        1630796400000,\n        \"32.73\",\n        \"32.73\",\n        \"32.59\",\n        \"32.59\",\n        \"13766.28\",\n        1630799999999,\n        \"449002.98140585774368284\",\n        49,\n        \"1591.42\",\n        \"52010.1755\",\n        \"0\"\n    ],\n    [\n        1630800000000,\n        \"32.6\",\n        \"32.77\",\n        \"32.59\",\n        \"32.6\",\n        \"26437.59\",\n        1630803599999,\n        \"863450.9643\",\n        56,\n        \"15645.54\",\n        \"511595.0773\",\n        \"0\"\n    ],\n    [\n        1630803600000,\n        \"32.63\",\n        \"32.76\",\n        \"32.63\",\n        \"32.74\",\n        \"3730.52\",\n        1630807199999,\n        \"122080.4685\",\n        27,\n        \"2925.97\",\n        \"95799.0116\",\n        \"0\"\n    ],\n    [\n        1630807200000,\n        \"32.75\",\n        \"32.75\",\n        \"32.7\",\n        \"32.7\",\n        \"10789.06\",\n        1630810799999,\n        \"353060.1487\",\n        23,\n        \"6878\",\n        \"225002.8352\",\n        \"0\"\n    ],\n    [\n        1630810800000,\n        \"32.7\",\n        \"32.71\",\n        \"32.68\",\n        \"32.71\",\n        \"12927.08\",\n        1630814399999,\n        \"422804.95\",\n        31,\n        \"12453.01\",\n        \"407312.0366\",\n        \"0\"\n    ],\n    [\n        1630814400000,\n        \"32.71\",\n        \"32.76\",\n        \"32.7\",\n        \"32.7\",\n        \"18754.28\",\n        1630817999999,\n        \"613900.3855\",\n        40,\n        \"17105.28\",\n        \"559973.9398\",\n        \"0\"\n    ],\n    [\n        1630818000000,\n        \"32.7\",\n        \"32.76\",\n        \"32.68\",\n        \"32.76\",\n        \"14584.33\",\n        1630821599999,\n        \"477259.7858\",\n        34,\n        \"7305.6\",\n        \"239320.468\",\n        \"0\"\n    ],\n    [\n        1630821600000,\n        \"32.76\",\n        \"32.85\",\n        \"32.72\",\n        \"32.84\",\n        \"34690.45\",\n        1630825199999,\n        \"1138116.4724\",\n        68,\n        \"24576.2\",\n        \"806129.8833\",\n        \"0\"\n    ],\n    [\n        1630825200000,\n        \"32.85\",\n        \"32.93\",\n        \"32.79\",\n        \"32.79\",\n        \"63634.26\",\n        1630828799999,\n        \"2089559.0014\",\n        57,\n        \"9523.25\",\n        \"313294.4525\",\n        \"0\"\n    ],\n    [\n        1630828800000,\n        \"32.79\",\n        \"32.83\",\n        \"32.79\",\n        \"32.79\",\n        \"27825.1\",\n        1630832399999,\n        \"912619.1759\",\n        36,\n        \"853.43\",\n        \"28009.1862\",\n        \"0\"\n    ],\n    [\n        1630832400000,\n        \"32.79\",\n        \"32.82\",\n        \"32.77\",\n        \"32.8\",\n        \"51116.06\",\n        1630835999999,\n        \"1676209.2932\",\n        46,\n        \"5847.46\",\n        \"191801.5495\",\n        \"0\"\n    ],\n    [\n        1630836000000,\n        \"32.77\",\n        \"32.79\",\n        \"32.69\",\n        \"32.69\",\n        \"8693.65\",\n        1630839599999,\n        \"284437.8674\",\n        31,\n        \"1514.64\",\n        \"49655.661\",\n        \"0\"\n    ],\n    [\n        1630839600000,\n        \"32.7\",\n        \"32.76\",\n        \"32.66\",\n        \"32.66\",\n        \"6034.91\",\n        1630843199999,\n        \"197334.3606\",\n        30,\n        \"1552.39\",\n        \"50836.5262\",\n        \"0\"\n    ],\n    [\n        1630843200000,\n        \"32.66\",\n        \"32.72\",\n        \"32.6\",\n        \"32.65\",\n        \"26330.47\",\n        1630846799999,\n        \"860104.9181\",\n        47,\n        \"10014.43\",\n        \"327604.6111\",\n        \"0\"\n    ],\n    [\n        1630846800000,\n        \"32.72\",\n        \"32.73\",\n        \"32.64\",\n        \"32.71\",\n        \"49713.38\",\n        1630850399999,\n        \"1626184.5253\",\n        67,\n        \"41108.02\",\n        \"1345142.6108\",\n        \"0\"\n    ],\n    [\n        1630850400000,\n        \"32.7\",\n        \"32.75\",\n        \"32.6\",\n        \"32.66\",\n        \"27622.1753386904225447\",\n        1630853999999,\n        \"902675.413842111338338925\",\n        68,\n        \"8621.4853386904225447\",\n        \"282230.238042111338338925\",\n        \"0\"\n    ],\n    [\n        1630854000000,\n        \"32.74\",\n        \"32.75\",\n        \"32.66\",\n        \"32.75\",\n        \"8143.63\",\n        1630857599999,\n        \"266470.2604\",\n        62,\n        \"6418.01\",\n        \"210089.8905\",\n        \"0\"\n    ],\n    [\n        1630857600000,\n        \"32.75\",\n        \"32.77\",\n        \"32.71\",\n        \"32.74\",\n        \"8772.11\",\n        1630861199999,\n        \"287201.951406773808450894\",\n        48,\n        \"1995.26\",\n        \"65363.007106773808450894\",\n        \"0\"\n    ],\n    [\n        1630861200000,\n        \"32.71\",\n        \"32.75\",\n        \"32.65\",\n        \"32.66\",\n        \"18281.27\",\n        1630864799999,\n        \"597408.6772\",\n        43,\n        \"13888.3\",\n        \"453922.6247\",\n        \"0\"\n    ],\n    [\n        1630864800000,\n        \"32.67\",\n        \"32.75\",\n        \"32.67\",\n        \"32.73\",\n        \"5637.45\",\n        1630868399999,\n        \"184495.0642\",\n        20,\n        \"1924.21\",\n        \"62955.8209\",\n        \"0\"\n    ],\n    [\n        1630868400000,\n        \"32.73\",\n        \"32.74\",\n        \"32.6\",\n        \"32.6\",\n        \"62074.45\",\n        1630871999999,\n        \"2031579.3284\",\n        74,\n        \"300.69\",\n        \"9844.5906\",\n        \"0\"\n    ],\n    [\n        1630872000000,\n        \"32.75\",\n        \"32.75\",\n        \"32.6\",\n        \"32.6\",\n        \"2436\",\n        1630875599999,\n        \"79569\",\n        4,\n        \"1036\",\n        \"33929\",\n        \"0\"\n    ],\n    [\n        1630875600000,\n        \"32.6\",\n        \"32.76\",\n        \"32.59\",\n        \"32.59\",\n        \"33781.93\",\n        1630879199999,\n        \"1105303.1432\",\n        25,\n        \"27267.35\",\n        \"892944.3758\",\n        \"0\"\n    ],\n    [\n        1630879200000,\n        \"32.59\",\n        \"32.65\",\n        \"32.54\",\n        \"32.54\",\n        \"2012.08\",\n        1630882799999,\n        \"65529.502\",\n        6,\n        \"3.08\",\n        \"100.562\",\n        \"0\"\n    ],\n    [\n        1630882800000,\n        \"32.55\",\n        \"32.65\",\n        \"32.54\",\n        \"32.54\",\n        \"1446.75\",\n        1630886399999,\n        \"47123.0438\",\n        18,\n        \"300.08\",\n        \"9796.6337\",\n        \"0\"\n    ],\n    [\n        1630886400000,\n        \"32.55\",\n        \"32.65\",\n        \"32.53\",\n        \"32.55\",\n        \"8053.48\",\n        1630889999999,\n        \"262281.1765\",\n        39,\n        \"3056.96\",\n        \"99686.6722\",\n        \"0\"\n    ],\n    [\n        1630890000000,\n        \"32.66\",\n        \"32.67\",\n        \"32.56\",\n        \"32.67\",\n        \"3370.76\",\n        1630893599999,\n        \"110031.637\",\n        24,\n        \"1307.25\",\n        \"42693.9062\",\n        \"0\"\n    ],\n    [\n        1630893600000,\n        \"32.67\",\n        \"32.7\",\n        \"32.53\",\n        \"32.53\",\n        \"55890.27\",\n        1630897199999,\n        \"1823290.0824\",\n        69,\n        \"20673.49\",\n        \"675296.2567\",\n        \"0\"\n    ],\n    [\n        1630897200000,\n        \"32.53\",\n        \"32.64\",\n        \"32.51\",\n        \"32.54\",\n        \"26748.27\",\n        1630900799999,\n        \"870407.8058\",\n        41,\n        \"10085.76\",\n        \"328408.3395\",\n        \"0\"\n    ],\n    [\n        1630900800000,\n        \"32.53\",\n        \"32.55\",\n        \"32.53\",\n        \"32.54\",\n        \"15217.19\",\n        1630904399999,\n        \"495261.6675\",\n        28,\n        \"13687.1\",\n        \"445475.9897\",\n        \"0\"\n    ],\n    [\n        1630904400000,\n        \"32.54\",\n        \"32.6\",\n        \"32.53\",\n        \"32.56\",\n        \"52420.24\",\n        1630907999999,\n        \"1708061.0486\",\n        31,\n        \"32525.8\",\n        \"1059795.8907\",\n        \"0\"\n    ],\n    [\n        1630908000000,\n        \"32.56\",\n        \"32.6\",\n        \"32.51\",\n        \"32.58\",\n        \"35633.8\",\n        1630911599999,\n        \"1160006.946\",\n        58,\n        \"6745.75\",\n        \"219833.3294\",\n        \"0\"\n    ],\n    [\n        1630911600000,\n        \"32.54\",\n        \"32.57\",\n        \"32.5\",\n        \"32.52\",\n        \"41880.26\",\n        1630915199999,\n        \"1362726.3585\",\n        41,\n        \"23175.01\",\n        \"754551.1503\",\n        \"0\"\n    ],\n    [\n        1630915200000,\n        \"32.57\",\n        \"32.6\",\n        \"32.5\",\n        \"32.5\",\n        \"37557.51\",\n        1630918799999,\n        \"1223620.5926\",\n        48,\n        \"31188.64\",\n        \"1016314.594\",\n        \"0\"\n    ],\n    [\n        1630918800000,\n        \"32.55\",\n        \"32.6\",\n        \"32.5\",\n        \"32.5\",\n        \"51448.93\",\n        1630922399999,\n        \"1674967.9106\",\n        63,\n        \"31223.85\",\n        \"1017548.0499\",\n        \"0\"\n    ],\n    [\n        1630922400000,\n        \"32.5\",\n        \"32.59\",\n        \"32.5\",\n        \"32.52\",\n        \"41597.45\",\n        1630925999999,\n        \"1353547.7322\",\n        51,\n        \"23988.39\",\n        \"781016.3845\",\n        \"0\"\n    ],\n    [\n        1630926000000,\n        \"32.52\",\n        \"32.61\",\n        \"32.51\",\n        \"32.61\",\n        \"87492.51\",\n        1630929599999,\n        \"2850803.7043\",\n        48,\n        \"75310.17\",\n        \"2454531.286\",\n        \"0\"\n    ],\n    [\n        1630929600000,\n        \"32.61\",\n        \"32.71\",\n        \"32.58\",\n        \"32.64\",\n        \"27084.83\",\n        1630933199999,\n        \"885018.0756\",\n        69,\n        \"24074.51\",\n        \"786789.8136\",\n        \"0\"\n    ],\n    [\n        1630933200000,\n        \"32.68\",\n        \"32.75\",\n        \"32.63\",\n        \"32.66\",\n        \"13651.86\",\n        1630936799999,\n        \"446548.0207\",\n        46,\n        \"10595.52\",\n        \"346781.1781\",\n        \"0\"\n    ],\n    [\n        1630936800000,\n        \"32.66\",\n        \"32.73\",\n        \"32.6\",\n        \"32.73\",\n        \"27421.4\",\n        1630940399999,\n        \"895910.8783\",\n        77,\n        \"16752.88\",\n        \"547657.8766\",\n        \"0\"\n    ],\n    [\n        1630940400000,\n        \"32.72\",\n        \"32.73\",\n        \"32.6\",\n        \"32.6\",\n        \"15355.33\",\n        1630943999999,\n        \"501589.5185\",\n        34,\n        \"7053.77\",\n        \"230868.5812\",\n        \"0\"\n    ],\n    [\n        1630944000000,\n        \"32.6\",\n        \"32.73\",\n        \"32.57\",\n        \"32.57\",\n        \"33772.67\",\n        1630947599999,\n        \"1101540.8855\",\n        68,\n        \"6705.08\",\n        \"219165.6002\",\n        \"0\"\n    ],\n    [\n        1630947600000,\n        \"32.57\",\n        \"32.75\",\n        \"32.52\",\n        \"32.58\",\n        \"123615.7\",\n        1630951199999,\n        \"4042342.5927\",\n        80,\n        \"77683.67\",\n        \"2542950.2571\",\n        \"0\"\n    ],\n    [\n        1630951200000,\n        \"32.58\",\n        \"32.74\",\n        \"32.58\",\n        \"32.58\",\n        \"717.48\",\n        1630954799999,\n        \"23388.6802\",\n        15,\n        \"51\",\n        \"1669.74\",\n        \"0\"\n    ],\n    [\n        1630954800000,\n        \"32.58\",\n        \"32.74\",\n        \"32.56\",\n        \"32.74\",\n        \"4451.5\",\n        1630958399999,\n        \"144990.47\",\n        13,\n        \"100.5\",\n        \"3290.37\",\n        \"0\"\n    ],\n    [\n        1630958400000,\n        \"32.73\",\n        \"32.74\",\n        \"32.57\",\n        \"32.57\",\n        \"4738.17\",\n        1630961999999,\n        \"154920.4449\",\n        12,\n        \"3537.29\",\n        \"115807.7833\",\n        \"0\"\n    ],\n    [\n        1630962000000,\n        \"32.58\",\n        \"32.74\",\n        \"32.54\",\n        \"32.54\",\n        \"8580.77\",\n        1630965599999,\n        \"280163.3496\",\n        19,\n        \"4594.4\",\n        \"150419.7296\",\n        \"0\"\n    ],\n    [\n        1630965600000,\n        \"32.54\",\n        \"32.74\",\n        \"32.54\",\n        \"32.74\",\n        \"5227.46\",\n        1630969199999,\n        \"171104.4348\",\n        18,\n        \"5214.31\",\n        \"170676.3538\",\n        \"0\"\n    ],\n    [\n        1630969200000,\n        \"32.74\",\n        \"32.77\",\n        \"32.61\",\n        \"32.61\",\n        \"8241.79\",\n        1630972799999,\n        \"269648.9181\",\n        38,\n        \"5988.46\",\n        \"196121.1312\",\n        \"0\"\n    ],\n    [\n        1630972800000,\n        \"32.61\",\n        \"32.75\",\n        \"32.59\",\n        \"32.73\",\n        \"15027.64\",\n        1630976399999,\n        \"491021.4658\",\n        48,\n        \"8537.64\",\n        \"279433.1868\",\n        \"0\"\n    ],\n    [\n        1630976400000,\n        \"32.73\",\n        \"32.9\",\n        \"32.69\",\n        \"32.88\",\n        \"29255.01\",\n        1630979999999,\n        \"959622.434\",\n        94,\n        \"28084.34\",\n        \"921340.267\",\n        \"0\"\n    ],\n    [\n        1630980000000,\n        \"32.72\",\n        \"32.85\",\n        \"32.67\",\n        \"32.69\",\n        \"31561.75\",\n        1630983599999,\n        \"1033486.4918\",\n        75,\n        \"11738.21\",\n        \"385464.6431\",\n        \"0\"\n    ],\n    [\n        1630983600000,\n        \"32.78\",\n        \"32.78\",\n        \"32.67\",\n        \"32.68\",\n        \"51549.46\",\n        1630987199999,\n        \"1684961.0037\",\n        54,\n        \"13459.96\",\n        \"440183.0664\",\n        \"0\"\n    ],\n    [\n        1630987200000,\n        \"32.68\",\n        \"32.71\",\n        \"32.6\",\n        \"32.6\",\n        \"56237.21\",\n        1630990799999,\n        \"1836867.0986\",\n        114,\n        \"29962.53\",\n        \"979594.6019\",\n        \"0\"\n    ],\n    [\n        1630990800000,\n        \"32.6\",\n        \"32.71\",\n        \"32.52\",\n        \"32.68\",\n        \"37888.11\",\n        1630994399999,\n        \"1237567.0373\",\n        112,\n        \"26074.36\",\n        \"852507.6735\",\n        \"0\"\n    ],\n    [\n        1630994400000,\n        \"32.66\",\n        \"32.85\",\n        \"32.58\",\n        \"32.85\",\n        \"69757.6\",\n        1630997999999,\n        \"2282411.3829\",\n        117,\n        \"57408.06\",\n        \"1879049.6937\",\n        \"0\"\n    ],\n    [\n        1630998000000,\n        \"32.85\",\n        \"32.97\",\n        \"32.71\",\n        \"32.88\",\n        \"61245.43\",\n        1631001599999,\n        \"2014025.9511\",\n        126,\n        \"55873.79\",\n        \"1837705.3836\",\n        \"0\"\n    ],\n    [\n        1631001600000,\n        \"32.88\",\n        \"33\",\n        \"32.81\",\n        \"33\",\n        \"207597\",\n        1631005199999,\n        \"6837509.9014\",\n        327,\n        \"196406.07\",\n        \"6469501.5206\",\n        \"0\"\n    ],\n    [\n        1631005200000,\n        \"33\",\n        \"33.12\",\n        \"32.88\",\n        \"33.12\",\n        \"64647.81\",\n        1631008799999,\n        \"2138361.3688\",\n        155,\n        \"59454.82\",\n        \"1966689.0241\",\n        \"0\"\n    ],\n    [\n        1631008800000,\n        \"33.11\",\n        \"33.18\",\n        \"33.07\",\n        \"33.09\",\n        \"50889.09\",\n        1631012399999,\n        \"1687180.049\",\n        72,\n        \"39919.87\",\n        \"1324136.1358\",\n        \"0\"\n    ],\n    [\n        1631012400000,\n        \"33.1\",\n        \"33.18\",\n        \"33.1\",\n        \"33.17\",\n        \"23581.29\",\n        1631015999999,\n        \"781925.835\",\n        62,\n        \"14651.46\",\n        \"485953.5223\",\n        \"0\"\n    ],\n    [\n        1631016000000,\n        \"33.16\",\n        \"33.17\",\n        \"33.16\",\n        \"33.17\",\n        \"36321.26\",\n        1631019599999,\n        \"1204752.659\",\n        76,\n        \"34495.74\",\n        \"1144218.4158\",\n        \"0\"\n    ],\n    [\n        1631019600000,\n        \"33.17\",\n        \"33.27\",\n        \"33.14\",\n        \"33.27\",\n        \"63290.83\",\n        1631023199999,\n        \"2101138.9467\",\n        111,\n        \"57565.69\",\n        \"1911338.1287\",\n        \"0\"\n    ],\n    [\n        1631023200000,\n        \"33.27\",\n        \"33.6\",\n        \"33.2\",\n        \"33.6\",\n        \"170116.91\",\n        1631026799999,\n        \"5690487.1013\",\n        316,\n        \"161242.68\",\n        \"5392992.6737\",\n        \"0\"\n    ],\n    [\n        1631026800000,\n        \"33.6\",\n        \"34.24\",\n        \"33.35\",\n        \"34\",\n        \"369123.97\",\n        1631030399999,\n        \"12501300.3094\",\n        691,\n        \"204277.74\",\n        \"6923414.7813\",\n        \"0\"\n    ],\n    [\n        1631030400000,\n        \"34.01\",\n        \"34.17\",\n        \"33.71\",\n        \"33.81\",\n        \"231657.34\",\n        1631033999999,\n        \"7838694.9077\",\n        330,\n        \"141817.62\",\n        \"4800700.4937\",\n        \"0\"\n    ],\n    [\n        1631034000000,\n        \"33.81\",\n        \"33.95\",\n        \"33.8\",\n        \"33.9\",\n        \"222022.52\",\n        1631037599999,\n        \"7518882.1614\",\n        308,\n        \"162603.14\",\n        \"5506624.176\",\n        \"0\"\n    ],\n    [\n        1631037600000,\n        \"33.9\",\n        \"33.95\",\n        \"33.79\",\n        \"33.95\",\n        \"92205.28\",\n        1631041199999,\n        \"3123975.8187\",\n        143,\n        \"63912.41\",\n        \"2166221.5744\",\n        \"0\"\n    ],\n    [\n        1631041200000,\n        \"33.95\",\n        \"33.95\",\n        \"33.75\",\n        \"33.9\",\n        \"36419.25\",\n        1631044799999,\n        \"1232961.2246\",\n        56,\n        \"26654.39\",\n        \"903197.0293\",\n        \"0\"\n    ],\n    [\n        1631044800000,\n        \"33.9\",\n        \"33.9\",\n        \"33.67\",\n        \"33.9\",\n        \"26894.61\",\n        1631048399999,\n        \"910059.7953\",\n        57,\n        \"19499.7\",\n        \"661030.8213\",\n        \"0\"\n    ],\n    [\n        1631048400000,\n        \"33.9\",\n        \"33.94\",\n        \"33.74\",\n        \"33.74\",\n        \"11538.25\",\n        1631051999999,\n        \"391147.0385\",\n        42,\n        \"10288.14\",\n        \"348968.3271\",\n        \"0\"\n    ],\n    [\n        1631052000000,\n        \"33.92\",\n        \"33.94\",\n        \"33.65\",\n        \"33.94\",\n        \"9141.38\",\n        1631055599999,\n        \"308183.406\",\n        33,\n        \"1658.35\",\n        \"56123.2807\",\n        \"0\"\n    ],\n    [\n        1631055600000,\n        \"33.94\",\n        \"33.95\",\n        \"33.67\",\n        \"33.95\",\n        \"82908.28\",\n        1631059199999,\n        \"2813506.8075\",\n        49,\n        \"80926.02\",\n        \"2746750.348\",\n        \"0\"\n    ],\n    [\n        1631059200000,\n        \"33.97\",\n        \"34\",\n        \"33.74\",\n        \"33.99\",\n        \"28883.21\",\n        1631062799999,\n        \"981438.4096\",\n        88,\n        \"27925.25\",\n        \"949085.9345\",\n        \"0\"\n    ],\n    [\n        1631062800000,\n        \"33.98\",\n        \"34\",\n        \"33.97\",\n        \"33.99\",\n        \"20783.83\",\n        1631066399999,\n        \"706419.2449\",\n        66,\n        \"17116.34\",\n        \"581787.4084\",\n        \"0\"\n    ],\n    [\n        1631066400000,\n        \"33.99\",\n        \"34\",\n        \"33.79\",\n        \"34\",\n        \"26368.23\",\n        1631069999999,\n        \"895891.8007\",\n        100,\n        \"25885.25\",\n        \"879521.9358\",\n        \"0\"\n    ],\n    [\n        1631070000000,\n        \"33.98\",\n        \"34\",\n        \"33.89\",\n        \"33.92\",\n        \"73383.84\",\n        1631073599999,\n        \"2491916.4106\",\n        153,\n        \"55684.51\",\n        \"1891449.4183\",\n        \"0\"\n    ],\n    [\n        1631073600000,\n        \"33.92\",\n        \"33.95\",\n        \"33.74\",\n        \"33.93\",\n        \"33326.99\",\n        1631077199999,\n        \"1128862.7213\",\n        75,\n        \"19550.38\",\n        \"663013.5149\",\n        \"0\"\n    ],\n    [\n        1631077200000,\n        \"33.92\",\n        \"33.92\",\n        \"33.61\",\n        \"33.79\",\n        \"62167.35\",\n        1631080799999,\n        \"2097086.1038\",\n        99,\n        \"22805.53\",\n        \"770782.0039\",\n        \"0\"\n    ],\n    [\n        1631080800000,\n        \"33.78\",\n        \"33.89\",\n        \"33.64\",\n        \"33.89\",\n        \"92167.66\",\n        1631084399999,\n        \"3111779.9872\",\n        246,\n        \"75887.47\",\n        \"2563621.97\",\n        \"0\"\n    ],\n    [\n        1631084400000,\n        \"33.77\",\n        \"33.89\",\n        \"33.74\",\n        \"33.88\",\n        \"71189.88\",\n        1631087999999,\n        \"2409294.9192\",\n        152,\n        \"45244.58\",\n        \"1532508.8625\",\n        \"0\"\n    ],\n    [\n        1631088000000,\n        \"33.77\",\n        \"33.89\",\n        \"33.7\",\n        \"33.85\",\n        \"60889.65\",\n        1631091599999,\n        \"2059658.1491\",\n        220,\n        \"40985.97\",\n        \"1387802.3939\",\n        \"0\"\n    ],\n    [\n        1631091600000,\n        \"33.85\",\n        \"33.89\",\n        \"33.62\",\n        \"33.69\",\n        \"57007.39\",\n        1631095199999,\n        \"1924929.4517\",\n        127,\n        \"31251.49\",\n        \"1054727.2126\",\n        \"0\"\n    ],\n    [\n        1631095200000,\n        \"33.7\",\n        \"33.78\",\n        \"33.62\",\n        \"33.69\",\n        \"39895.77\",\n        1631098799999,\n        \"1344569.4244\",\n        105,\n        \"36805.2\",\n        \"1240492.0628\",\n        \"0\"\n    ],\n    [\n        1631098800000,\n        \"33.69\",\n        \"33.79\",\n        \"33.2\",\n        \"33.65\",\n        \"61264.67\",\n        1631102399999,\n        \"2054422.6273\",\n        97,\n        \"22025.26\",\n        \"743839.2742\",\n        \"0\"\n    ],\n    [\n        1631102400000,\n        \"33.65\",\n        \"33.65\",\n        \"33.43\",\n        \"33.49\",\n        \"34339.66\",\n        1631105999999,\n        \"1153596.9186\",\n        96,\n        \"21641.02\",\n        \"727739.0272\",\n        \"0\"\n    ],\n    [\n        1631106000000,\n        \"33.53\",\n        \"33.68\",\n        \"33.44\",\n        \"33.6\",\n        \"28114.45\",\n        1631109599999,\n        \"944657.5974\",\n        87,\n        \"12649.32\",\n        \"425463.2386\",\n        \"0\"\n    ],\n    [\n        1631109600000,\n        \"33.6\",\n        \"33.74\",\n        \"33.45\",\n        \"33.6\",\n        \"60878.53\",\n        1631113199999,\n        \"2047232.2486\",\n        136,\n        \"31819.17\",\n        \"1071828.059\",\n        \"0\"\n    ],\n    [\n        1631113200000,\n        \"33.6\",\n        \"33.72\",\n        \"33.5\",\n        \"33.52\",\n        \"47661.35\",\n        1631116799999,\n        \"1601285.6944\",\n        136,\n        \"37939.32\",\n        \"1275275.4737\",\n        \"0\"\n    ],\n    [\n        1631116800000,\n        \"33.68\",\n        \"33.69\",\n        \"33.44\",\n        \"33.51\",\n        \"22797.15\",\n        1631120399999,\n        \"764445.0997\",\n        82,\n        \"7474.51\",\n        \"251171.878\",\n        \"0\"\n    ],\n    [\n        1631120400000,\n        \"33.51\",\n        \"33.95\",\n        \"33.43\",\n        \"33.7\",\n        \"65434.44\",\n        1631123999999,\n        \"2210347.9755\",\n        58,\n        \"52010.85\",\n        \"1761314.7774\",\n        \"0\"\n    ],\n    [\n        1631124000000,\n        \"33.7\",\n        \"33.7\",\n        \"33.53\",\n        \"33.53\",\n        \"10245.67\",\n        1631127599999,\n        \"344069.4756\",\n        35,\n        \"1197.49\",\n        \"40309.3205\",\n        \"0\"\n    ],\n    [\n        1631127600000,\n        \"33.59\",\n        \"33.59\",\n        \"33.43\",\n        \"33.43\",\n        \"30138.07\",\n        1631131199999,\n        \"1009135.2077\",\n        35,\n        \"2792.87\",\n        \"93682.2622\",\n        \"0\"\n    ],\n    [\n        1631131200000,\n        \"33.53\",\n        \"33.63\",\n        \"33.5\",\n        \"33.59\",\n        \"24556.26\",\n        1631134799999,\n        \"823910.0396\",\n        64,\n        \"13670.08\",\n        \"459029.422\",\n        \"0\"\n    ],\n    [\n        1631134800000,\n        \"33.55\",\n        \"33.61\",\n        \"33.49\",\n        \"33.53\",\n        \"17908.09\",\n        1631138399999,\n        \"601062.0989\",\n        61,\n        \"10555.32\",\n        \"354664.0406\",\n        \"0\"\n    ],\n    [\n        1631138400000,\n        \"33.53\",\n        \"33.65\",\n        \"33.52\",\n        \"33.56\",\n        \"10164.91\",\n        1631141999999,\n        \"341474.1487\",\n        39,\n        \"4631.1\",\n        \"155685.7518\",\n        \"0\"\n    ],\n    [\n        1631142000000,\n        \"33.56\",\n        \"33.63\",\n        \"33.49\",\n        \"33.62\",\n        \"7398.62\",\n        1631145599999,\n        \"248449.9801\",\n        53,\n        \"4195.32\",\n        \"141048.4534\",\n        \"0\"\n    ],\n    [\n        1631145600000,\n        \"33.62\",\n        \"33.62\",\n        \"33.54\",\n        \"33.54\",\n        \"9441.96\",\n        1631149199999,\n        \"317078.7549\",\n        47,\n        \"4969.34\",\n        \"167012.5925\",\n        \"0\"\n    ],\n    [\n        1631149200000,\n        \"33.55\",\n        \"33.62\",\n        \"33.53\",\n        \"33.62\",\n        \"52277.94\",\n        1631152799999,\n        \"1755927.2844\",\n        73,\n        \"43004.63\",\n        \"1444870.713\",\n        \"0\"\n    ],\n    [\n        1631152800000,\n        \"33.55\",\n        \"33.7\",\n        \"33.51\",\n        \"33.64\",\n        \"21981.9\",\n        1631156399999,\n        \"739845.3316\",\n        82,\n        \"19134.88\",\n        \"644230.5436\",\n        \"0\"\n    ],\n    [\n        1631156400000,\n        \"33.62\",\n        \"33.62\",\n        \"33.46\",\n        \"33.5\",\n        \"62588.53\",\n        1631159999999,\n        \"2097687.0154\",\n        106,\n        \"21144.08\",\n        \"708733.4078\",\n        \"0\"\n    ],\n    [\n        1631160000000,\n        \"33.46\",\n        \"33.55\",\n        \"33.46\",\n        \"33.55\",\n        \"23814.42\",\n        1631163599999,\n        \"798097.7275\",\n        70,\n        \"16627.27\",\n        \"557328.2662\",\n        \"0\"\n    ],\n    [\n        1631163600000,\n        \"33.55\",\n        \"33.6\",\n        \"33.46\",\n        \"33.51\",\n        \"52987.45\",\n        1631167199999,\n        \"1775385.4571\",\n        67,\n        \"16640.52\",\n        \"558136.7334\",\n        \"0\"\n    ],\n    [\n        1631167200000,\n        \"33.51\",\n        \"33.53\",\n        \"33.49\",\n        \"33.49\",\n        \"22779.83\",\n        1631170799999,\n        \"763140.3745\",\n        81,\n        \"19993.92\",\n        \"669840.2486\",\n        \"0\"\n    ],\n    [\n        1631170800000,\n        \"33.5\",\n        \"33.5\",\n        \"33.3\",\n        \"33.33\",\n        \"42514.89\",\n        1631174399999,\n        \"1422069.291\",\n        87,\n        \"16098.09\",\n        \"539048.3413\",\n        \"0\"\n    ],\n    [\n        1631174400000,\n        \"33.41\",\n        \"33.45\",\n        \"33.3\",\n        \"33.45\",\n        \"20606.74\",\n        1631177999999,\n        \"687241.161\",\n        43,\n        \"10872.66\",\n        \"363089.0525\",\n        \"0\"\n    ],\n    [\n        1631178000000,\n        \"33.45\",\n        \"33.55\",\n        \"33.29\",\n        \"33.45\",\n        \"12025.63\",\n        1631181599999,\n        \"402796.6116\",\n        20,\n        \"12001.7\",\n        \"401999.9819\",\n        \"0\"\n    ],\n    [\n        1631181600000,\n        \"33.45\",\n        \"33.45\",\n        \"33.28\",\n        \"33.4\",\n        \"101522.21\",\n        1631185199999,\n        \"3389072.2844\",\n        55,\n        \"12277.6\",\n        \"410434.7263\",\n        \"0\"\n    ],\n    [\n        1631185200000,\n        \"33.4\",\n        \"33.55\",\n        \"33.29\",\n        \"33.53\",\n        \"38721.17\",\n        1631188799999,\n        \"1296214.3367\",\n        41,\n        \"38137.24\",\n        \"1276772.3088\",\n        \"0\"\n    ],\n    [\n        1631188800000,\n        \"33.29\",\n        \"33.51\",\n        \"33.29\",\n        \"33.33\",\n        \"18199.35\",\n        1631192399999,\n        \"608766.7454\",\n        72,\n        \"14245.26\",\n        \"476952.7209\",\n        \"0\"\n    ],\n    [\n        1631192400000,\n        \"33.33\",\n        \"33.43\",\n        \"33.27\",\n        \"33.29\",\n        \"14024.21\",\n        1631195999999,\n        \"467730.4992\",\n        73,\n        \"7602.2\",\n        \"253840.9189\",\n        \"0\"\n    ],\n    [\n        1631196000000,\n        \"33.42\",\n        \"33.43\",\n        \"33.29\",\n        \"33.4\",\n        \"8826\",\n        1631199599999,\n        \"294430.8775\",\n        62,\n        \"4773.24\",\n        \"159448.5351\",\n        \"0\"\n    ],\n    [\n        1631199600000,\n        \"33.4\",\n        \"33.42\",\n        \"33.32\",\n        \"33.34\",\n        \"22981.21\",\n        1631203199999,\n        \"766650.8847\",\n        65,\n        \"3264.48\",\n        \"109055.6622\",\n        \"0\"\n    ],\n    [\n        1631203200000,\n        \"33.34\",\n        \"33.42\",\n        \"33.17\",\n        \"33.21\",\n        \"33922.48\",\n        1631206799999,\n        \"1128275.2551\",\n        62,\n        \"8445.84\",\n        \"281726.8696\",\n        \"0\"\n    ],\n    [\n        1631206800000,\n        \"33.4\",\n        \"33.4\",\n        \"33.21\",\n        \"33.4\",\n        \"9077.2\",\n        1631210399999,\n        \"303049.199\",\n        22,\n        \"8365.44\",\n        \"279405.2835\",\n        \"0\"\n    ],\n    [\n        1631210400000,\n        \"33.4\",\n        \"33.46\",\n        \"33.29\",\n        \"33.46\",\n        \"17598.95\",\n        1631213999999,\n        \"587790.7632\",\n        59,\n        \"17472.38\",\n        \"583577.0561\",\n        \"0\"\n    ],\n    [\n        1631214000000,\n        \"33.34\",\n        \"33.45\",\n        \"33.34\",\n        \"33.36\",\n        \"2633.68\",\n        1631217599999,\n        \"88058.7805\",\n        13,\n        \"2256.21\",\n        \"75469.0333\",\n        \"0\"\n    ],\n    [\n        1631217600000,\n        \"33.37\",\n        \"33.45\",\n        \"33.31\",\n        \"33.45\",\n        \"4991.09\",\n        1631221199999,\n        \"166614.0748\",\n        29,\n        \"1898.43\",\n        \"63502.4835\",\n        \"0\"\n    ],\n    [\n        1631221200000,\n        \"33.34\",\n        \"33.46\",\n        \"33.34\",\n        \"33.45\",\n        \"1283.76\",\n        1631224799999,\n        \"42924.5632\",\n        9,\n        \"1088.95\",\n        \"36427.9503\",\n        \"0\"\n    ],\n    [\n        1631224800000,\n        \"33.45\",\n        \"33.46\",\n        \"33.34\",\n        \"33.46\",\n        \"10852.41\",\n        1631228399999,\n        \"362847.8203\",\n        26,\n        \"8852.41\",\n        \"296143.9945\",\n        \"0\"\n    ],\n    [\n        1631228400000,\n        \"33.36\",\n        \"33.46\",\n        \"33.3\",\n        \"33.3\",\n        \"5314.65\",\n        1631231999999,\n        \"177403.3511\",\n        34,\n        \"2632.36\",\n        \"88018.4287\",\n        \"0\"\n    ],\n    [\n        1631232000000,\n        \"33.3\",\n        \"33.43\",\n        \"33.23\",\n        \"33.23\",\n        \"23835.81\",\n        1631235599999,\n        \"794088.9176\",\n        82,\n        \"9510.18\",\n        \"317906.5696\",\n        \"0\"\n    ],\n    [\n        1631235600000,\n        \"33.39\",\n        \"33.4\",\n        \"33.11\",\n        \"33.33\",\n        \"30310.27\",\n        1631239199999,\n        \"1005904.8288\",\n        105,\n        \"5278.4\",\n        \"175664.4797\",\n        \"0\"\n    ],\n    [\n        1631239200000,\n        \"33.32\",\n        \"33.33\",\n        \"33.12\",\n        \"33.2\",\n        \"14234.1\",\n        1631242799999,\n        \"473090.8355\",\n        48,\n        \"11561.32\",\n        \"384549.213\",\n        \"0\"\n    ],\n    [\n        1631242800000,\n        \"33.27\",\n        \"33.32\",\n        \"33.19\",\n        \"33.26\",\n        \"15699.12\",\n        1631246399999,\n        \"522437.6507\",\n        30,\n        \"13802.34\",\n        \"459476.666\",\n        \"0\"\n    ],\n    [\n        1631246400000,\n        \"33.25\",\n        \"33.26\",\n        \"33.19\",\n        \"33.26\",\n        \"25003.06\",\n        1631249999999,\n        \"831264.7999\",\n        47,\n        \"22296.66\",\n        \"741381.1882\",\n        \"0\"\n    ],\n    [\n        1631250000000,\n        \"33.25\",\n        \"33.26\",\n        \"33.13\",\n        \"33.14\",\n        \"39963.69\",\n        1631253599999,\n        \"1328495.0283\",\n        78,\n        \"30006.77\",\n        \"997784.792\",\n        \"0\"\n    ],\n    [\n        1631253600000,\n        \"33.14\",\n        \"33.25\",\n        \"33.13\",\n        \"33.16\",\n        \"17336.55\",\n        1631257199999,\n        \"576113.7949\",\n        64,\n        \"12679.38\",\n        \"421526.3699\",\n        \"0\"\n    ],\n    [\n        1631257200000,\n        \"33.25\",\n        \"33.28\",\n        \"33.15\",\n        \"33.27\",\n        \"36957.09\",\n        1631260799999,\n        \"1229260.9314\",\n        108,\n        \"35781.25\",\n        \"1190256.1985\",\n        \"0\"\n    ],\n    [\n        1631260800000,\n        \"33.27\",\n        \"33.31\",\n        \"33.13\",\n        \"33.3\",\n        \"64120.84\",\n        1631264399999,\n        \"2133755.0525\",\n        183,\n        \"52469.47\",\n        \"1746768.0827\",\n        \"0\"\n    ],\n    [\n        1631264400000,\n        \"33.3\",\n        \"33.3\",\n        \"33.19\",\n        \"33.26\",\n        \"26886.86\",\n        1631267999999,\n        \"895040.6699\",\n        66,\n        \"19746.93\",\n        \"657568.1449\",\n        \"0\"\n    ],\n    [\n        1631268000000,\n        \"33.26\",\n        \"33.3\",\n        \"33.26\",\n        \"33.3\",\n        \"56344.84\",\n        1631271599999,\n        \"1874299.0521\",\n        58,\n        \"7519.27\",\n        \"250344.948\",\n        \"0\"\n    ],\n    [\n        1631271600000,\n        \"33.3\",\n        \"33.58\",\n        \"33.25\",\n        \"33.48\",\n        \"53486.2\",\n        1631275199999,\n        \"1782006.4326\",\n        54,\n        \"14851.5\",\n        \"496182.214\",\n        \"0\"\n    ],\n    [\n        1631275200000,\n        \"33.48\",\n        \"33.48\",\n        \"33.28\",\n        \"33.34\",\n        \"5033.89\",\n        1631278799999,\n        \"167809.4208\",\n        23,\n        \"1618.82\",\n        \"54121.7623\",\n        \"0\"\n    ],\n    [\n        1631278800000,\n        \"33.43\",\n        \"33.46\",\n        \"33.35\",\n        \"33.43\",\n        \"24397.96\",\n        1631282399999,\n        \"814244.9544\",\n        85,\n        \"17527.59\",\n        \"585034.3958\",\n        \"0\"\n    ],\n    [\n        1631282400000,\n        \"33.43\",\n        \"33.62\",\n        \"33.3\",\n        \"33.57\",\n        \"37408.31\",\n        1631285999999,\n        \"1253084.5015\",\n        134,\n        \"29978.68\",\n        \"1004429.4624\",\n        \"0\"\n    ],\n    [\n        1631286000000,\n        \"33.45\",\n        \"33.54\",\n        \"33.3\",\n        \"33.48\",\n        \"11119.32\",\n        1631289599999,\n        \"372275.5915\",\n        53,\n        \"7966.15\",\n        \"267142.748\",\n        \"0\"\n    ],\n    [\n        1631289600000,\n        \"33.46\",\n        \"33.5\",\n        \"33.38\",\n        \"33.5\",\n        \"10422.22\",\n        1631293199999,\n        \"348652.8119\",\n        56,\n        \"6852.6\",\n        \"229417.9284\",\n        \"0\"\n    ],\n    [\n        1631293200000,\n        \"33.4\",\n        \"33.5\",\n        \"33.38\",\n        \"33.38\",\n        \"9590.05\",\n        1631296799999,\n        \"320581.5534\",\n        48,\n        \"3884.63\",\n        \"130103.3796\",\n        \"0\"\n    ],\n    [\n        1631296800000,\n        \"33.38\",\n        \"33.42\",\n        \"33.28\",\n        \"33.34\",\n        \"6295.47\",\n        1631300399999,\n        \"209934.071\",\n        35,\n        \"1200.73\",\n        \"40039.0828\",\n        \"0\"\n    ],\n    [\n        1631300400000,\n        \"33.35\",\n        \"33.5\",\n        \"33.35\",\n        \"33.5\",\n        \"9588.09\",\n        1631303999999,\n        \"320897.1895\",\n        17,\n        \"9112.08\",\n        \"304998.4555\",\n        \"0\"\n    ],\n    [\n        1631304000000,\n        \"33.42\",\n        \"33.52\",\n        \"33.4\",\n        \"33.52\",\n        \"15905.45\",\n        1631307599999,\n        \"532925.5167\",\n        31,\n        \"14201.56\",\n        \"476011.9389\",\n        \"0\"\n    ],\n    [\n        1631307600000,\n        \"33.52\",\n        \"33.52\",\n        \"33.41\",\n        \"33.52\",\n        \"16730.8\",\n        1631311199999,\n        \"560801.7363\",\n        60,\n        \"16697.69\",\n        \"559695.5312\",\n        \"0\"\n    ],\n    [\n        1631311200000,\n        \"33.52\",\n        \"33.55\",\n        \"33.42\",\n        \"33.5\",\n        \"48772.9\",\n        1631314799999,\n        \"1633200.7476\",\n        63,\n        \"38739.21\",\n        \"1297873.5033\",\n        \"0\"\n    ],\n    [\n        1631314800000,\n        \"33.5\",\n        \"33.56\",\n        \"33.49\",\n        \"33.56\",\n        \"106150.03\",\n        1631318399999,\n        \"3556077.9625\",\n        129,\n        \"92266.68\",\n        \"3090977.6464\",\n        \"0\"\n    ],\n    [\n        1631318400000,\n        \"33.56\",\n        \"33.58\",\n        \"33.5\",\n        \"33.51\",\n        \"18701.07\",\n        1631321999999,\n        \"626936.4658\",\n        63,\n        \"10445.66\",\n        \"350171.7073\",\n        \"0\"\n    ],\n    [\n        1631322000000,\n        \"33.51\",\n        \"33.58\",\n        \"33.49\",\n        \"33.54\",\n        \"22020.62\",\n        1631325599999,\n        \"738080.096\",\n        74,\n        \"8671.21\",\n        \"290839.8653\",\n        \"0\"\n    ],\n    [\n        1631325600000,\n        \"33.57\",\n        \"33.57\",\n        \"33.53\",\n        \"33.56\",\n        \"9910.75\",\n        1631329199999,\n        \"332595.4014\",\n        37,\n        \"8036.04\",\n        \"269718.0263\",\n        \"0\"\n    ],\n    [\n        1631329200000,\n        \"33.54\",\n        \"33.55\",\n        \"33.45\",\n        \"33.49\",\n        \"17291.23\",\n        1631332799999,\n        \"579641.4162\",\n        90,\n        \"13109.74\",\n        \"439571.7827\",\n        \"0\"\n    ],\n    [\n        1631332800000,\n        \"33.49\",\n        \"33.53\",\n        \"33.4\",\n        \"33.41\",\n        \"25417.52\",\n        1631336399999,\n        \"849703.1156\",\n        46,\n        \"1199.02\",\n        \"40167.0992\",\n        \"0\"\n    ],\n    [\n        1631336400000,\n        \"33.4\",\n        \"33.54\",\n        \"33.4\",\n        \"33.45\",\n        \"19083.58\",\n        1631339999999,\n        \"639064.591\",\n        74,\n        \"16195.36\",\n        \"542435.8561\",\n        \"0\"\n    ],\n    [\n        1631340000000,\n        \"33.45\",\n        \"33.45\",\n        \"33.4\",\n        \"33.41\",\n        \"38847.16\",\n        1631343599999,\n        \"1298883.9218\",\n        31,\n        \"9139.57\",\n        \"305539.5203\",\n        \"0\"\n    ],\n    [\n        1631343600000,\n        \"33.41\",\n        \"33.52\",\n        \"33.41\",\n        \"33.45\",\n        \"14857.05\",\n        1631347199999,\n        \"497125.0038\",\n        55,\n        \"13402.34\",\n        \"448487.3555\",\n        \"0\"\n    ],\n    [\n        1631347200000,\n        \"33.5\",\n        \"33.51\",\n        \"33.42\",\n        \"33.51\",\n        \"18459.54\",\n        1631350799999,\n        \"618245.435\",\n        57,\n        \"14297.3\",\n        \"478998.5528\",\n        \"0\"\n    ],\n    [\n        1631350800000,\n        \"33.5\",\n        \"33.51\",\n        \"33.43\",\n        \"33.43\",\n        \"15457.3\",\n        1631354399999,\n        \"517045.0624\",\n        31,\n        \"4294.34\",\n        \"143849.0665\",\n        \"0\"\n    ],\n    [\n        1631354400000,\n        \"33.44\",\n        \"33.46\",\n        \"33.4\",\n        \"33.4\",\n        \"36438.22\",\n        1631357999999,\n        \"1217620.2702\",\n        43,\n        \"9669.27\",\n        \"323326.3685\",\n        \"0\"\n    ],\n    [\n        1631358000000,\n        \"33.4\",\n        \"33.44\",\n        \"33.34\",\n        \"33.4\",\n        \"75678.56\",\n        1631361599999,\n        \"2527695.228\",\n        52,\n        \"3970.31\",\n        \"132660.7093\",\n        \"0\"\n    ],\n    [\n        1631361600000,\n        \"33.39\",\n        \"33.44\",\n        \"33.25\",\n        \"33.37\",\n        \"63794.3\",\n        1631365199999,\n        \"2129012.0346\",\n        76,\n        \"11135.64\",\n        \"372079.0927\",\n        \"0\"\n    ],\n    [\n        1631365200000,\n        \"33.28\",\n        \"33.41\",\n        \"33.28\",\n        \"33.4\",\n        \"7411.28\",\n        1631368799999,\n        \"247482.9848\",\n        32,\n        \"5318.62\",\n        \"177632.6076\",\n        \"0\"\n    ],\n    [\n        1631368800000,\n        \"33.4\",\n        \"33.45\",\n        \"33.33\",\n        \"33.44\",\n        \"28346.18\",\n        1631372399999,\n        \"947490.5158\",\n        49,\n        \"21787.33\",\n        \"728486.3357\",\n        \"0\"\n    ],\n    [\n        1631372400000,\n        \"33.41\",\n        \"33.48\",\n        \"33.41\",\n        \"33.45\",\n        \"5918.51\",\n        1631375999999,\n        \"198023.7656\",\n        28,\n        \"5282.56\",\n        \"176748.1576\",\n        \"0\"\n    ],\n    [\n        1631376000000,\n        \"33.45\",\n        \"33.48\",\n        \"33.41\",\n        \"33.41\",\n        \"20839.05\",\n        1631379599999,\n        \"697073.9626\",\n        46,\n        \"9339.51\",\n        \"312621.1639\",\n        \"0\"\n    ],\n    [\n        1631379600000,\n        \"33.41\",\n        \"33.44\",\n        \"33.2\",\n        \"33.4\",\n        \"181185.69\",\n        1631383199999,\n        \"6020889.5955\",\n        101,\n        \"15552.25\",\n        \"516905.9389\",\n        \"0\"\n    ],\n    [\n        1631383200000,\n        \"33.26\",\n        \"33.41\",\n        \"33.2\",\n        \"33.4\",\n        \"24668.27\",\n        1631386799999,\n        \"819917.3552\",\n        31,\n        \"1208.05\",\n        \"40350.9505\",\n        \"0\"\n    ],\n    [\n        1631386800000,\n        \"33.21\",\n        \"33.42\",\n        \"33.2\",\n        \"33.24\",\n        \"23206.88\",\n        1631390399999,\n        \"772266.6906\",\n        36,\n        \"7298.88\",\n        \"243775.6489\",\n        \"0\"\n    ],\n    [\n        1631390400000,\n        \"33.4\",\n        \"33.42\",\n        \"33.17\",\n        \"33.18\",\n        \"19239.41\",\n        1631393999999,\n        \"640734.3542\",\n        38,\n        \"8310.07\",\n        \"277703.9352\",\n        \"0\"\n    ],\n    [\n        1631394000000,\n        \"33.2\",\n        \"33.2\",\n        \"33.18\",\n        \"33.18\",\n        \"4454.56\",\n        1631397599999,\n        \"147868.2797\",\n        5,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1631397600000,\n        \"33.36\",\n        \"33.45\",\n        \"33.2\",\n        \"33.45\",\n        \"33734.45\",\n        1631401199999,\n        \"1122976.7423\",\n        54,\n        \"15109.22\",\n        \"503984.01\",\n        \"0\"\n    ],\n    [\n        1631401200000,\n        \"33.45\",\n        \"33.48\",\n        \"33.45\",\n        \"33.48\",\n        \"12318.7\",\n        1631404799999,\n        \"412146.0508\",\n        31,\n        \"12258.3\",\n        \"410124.4927\",\n        \"0\"\n    ],\n    [\n        1631404800000,\n        \"33.47\",\n        \"33.5\",\n        \"33.46\",\n        \"33.5\",\n        \"27911.76\",\n        1631408399999,\n        \"934660.5956\",\n        60,\n        \"23981.52\",\n        \"803132.9571\",\n        \"0\"\n    ],\n    [\n        1631408400000,\n        \"33.5\",\n        \"33.58\",\n        \"33.5\",\n        \"33.57\",\n        \"11512.08\",\n        1631411999999,\n        \"386104.8607\",\n        40,\n        \"8439.16\",\n        \"283056.1035\",\n        \"0\"\n    ],\n    [\n        1631412000000,\n        \"33.51\",\n        \"33.56\",\n        \"33.25\",\n        \"33.48\",\n        \"15826.46\",\n        1631415599999,\n        \"528521.9267\",\n        34,\n        \"190.66\",\n        \"6383.691\",\n        \"0\"\n    ],\n    [\n        1631415600000,\n        \"33.48\",\n        \"33.48\",\n        \"33.28\",\n        \"33.31\",\n        \"4018.89\",\n        1631419199999,\n        \"134184.7837\",\n        15,\n        \"1995.77\",\n        \"66812.1173\",\n        \"0\"\n    ],\n    [\n        1631419200000,\n        \"33.32\",\n        \"33.53\",\n        \"33.29\",\n        \"33.32\",\n        \"19595.57\",\n        1631422799999,\n        \"654430.8331\",\n        45,\n        \"11312.09\",\n        \"378584.9761\",\n        \"0\"\n    ],\n    [\n        1631422800000,\n        \"33.48\",\n        \"33.49\",\n        \"33.31\",\n        \"33.48\",\n        \"14837.08\",\n        1631426399999,\n        \"496650.8601\",\n        48,\n        \"10415.14\",\n        \"348692.2792\",\n        \"0\"\n    ],\n    [\n        1631426400000,\n        \"33.47\",\n        \"33.48\",\n        \"33.47\",\n        \"33.48\",\n        \"9859.77\",\n        1631429999999,\n        \"330095.5262\",\n        31,\n        \"8902.43\",\n        \"298053.3564\",\n        \"0\"\n    ],\n    [\n        1631430000000,\n        \"33.48\",\n        \"33.51\",\n        \"33.47\",\n        \"33.49\",\n        \"46243.04\",\n        1631433599999,\n        \"1548554.2358\",\n        66,\n        \"26851.27\",\n        \"899389.6971\",\n        \"0\"\n    ],\n    [\n        1631433600000,\n        \"33.48\",\n        \"33.49\",\n        \"33.33\",\n        \"33.34\",\n        \"86893.32\",\n        1631437199999,\n        \"2908691.5819\",\n        78,\n        \"23100.13\",\n        \"773437.9657\",\n        \"0\"\n    ],\n    [\n        1631437200000,\n        \"33.35\",\n        \"33.45\",\n        \"33.35\",\n        \"33.42\",\n        \"8557.01\",\n        1631440799999,\n        \"286013.8502\",\n        36,\n        \"7390.89\",\n        \"247080.8719\",\n        \"0\"\n    ],\n    [\n        1631440800000,\n        \"33.42\",\n        \"33.42\",\n        \"33.29\",\n        \"33.4\",\n        \"15564.47\",\n        1631444399999,\n        \"519081.2046\",\n        58,\n        \"7399.78\",\n        \"247081.3643\",\n        \"0\"\n    ],\n    [\n        1631444400000,\n        \"33.4\",\n        \"33.4\",\n        \"33.18\",\n        \"33.2\",\n        \"27062.2\",\n        1631447999999,\n        \"900765.7328\",\n        59,\n        \"7612.7\",\n        \"254167.5671\",\n        \"0\"\n    ],\n    [\n        1631448000000,\n        \"33.18\",\n        \"33.42\",\n        \"33.17\",\n        \"33.29\",\n        \"58191.67\",\n        1631451599999,\n        \"1940953.4592\",\n        64,\n        \"20041.5\",\n        \"668961.6975\",\n        \"0\"\n    ],\n    [\n        1631451600000,\n        \"33.29\",\n        \"33.38\",\n        \"33.17\",\n        \"33.17\",\n        \"8382.48\",\n        1631455199999,\n        \"278991.389\",\n        31,\n        \"5583.21\",\n        \"185966.8069\",\n        \"0\"\n    ],\n    [\n        1631455200000,\n        \"33.2\",\n        \"33.33\",\n        \"33.17\",\n        \"33.22\",\n        \"7577.08\",\n        1631458799999,\n        \"251789.7735\",\n        38,\n        \"1266.29\",\n        \"42160.041\",\n        \"0\"\n    ],\n    [\n        1631458800000,\n        \"33.29\",\n        \"33.29\",\n        \"33.18\",\n        \"33.21\",\n        \"20681.54\",\n        1631462399999,\n        \"687958.325\",\n        55,\n        \"11603.6\",\n        \"386212.8505\",\n        \"0\"\n    ],\n    [\n        1631462400000,\n        \"33.29\",\n        \"33.29\",\n        \"33.21\",\n        \"33.24\",\n        \"3746.51\",\n        1631465999999,\n        \"124629.8267\",\n        30,\n        \"2342.73\",\n        \"77988.1329\",\n        \"0\"\n    ],\n    [\n        1631466000000,\n        \"33.24\",\n        \"33.3\",\n        \"33.21\",\n        \"33.22\",\n        \"39791.42\",\n        1631469599999,\n        \"1324360.8713\",\n        57,\n        \"12210.06\",\n        \"406472.4024\",\n        \"0\"\n    ],\n    [\n        1631469600000,\n        \"33.29\",\n        \"33.29\",\n        \"33.22\",\n        \"33.22\",\n        \"4043.73\",\n        1631473199999,\n        \"134493.6196\",\n        26,\n        \"1457.09\",\n        \"48494.6273\",\n        \"0\"\n    ],\n    [\n        1631473200000,\n        \"33.25\",\n        \"33.25\",\n        \"33.22\",\n        \"33.22\",\n        \"2019.47\",\n        1631476799999,\n        \"67140.8817\",\n        11,\n        \"1746.64\",\n        \"58075.78\",\n        \"0\"\n    ],\n    [\n        1631476800000,\n        \"33.25\",\n        \"33.44\",\n        \"33.21\",\n        \"33.44\",\n        \"48692.03\",\n        1631480399999,\n        \"1618844.2685\",\n        90,\n        \"23666.19\",\n        \"787689.7246\",\n        \"0\"\n    ],\n    [\n        1631480400000,\n        \"33.44\",\n        \"33.44\",\n        \"33.21\",\n        \"33.21\",\n        \"1889.02\",\n        1631483999999,\n        \"63076.9182\",\n        15,\n        \"1483.97\",\n        \"49611.331\",\n        \"0\"\n    ],\n    [\n        1631484000000,\n        \"33.22\",\n        \"33.43\",\n        \"33.19\",\n        \"33.19\",\n        \"17464.85\",\n        1631487599999,\n        \"580069.0796\",\n        46,\n        \"703.42\",\n        \"23515.3306\",\n        \"0\"\n    ],\n    [\n        1631487600000,\n        \"33.19\",\n        \"33.37\",\n        \"33.17\",\n        \"33.17\",\n        \"5904.78\",\n        1631491199999,\n        \"195942.1473\",\n        39,\n        \"12.2\",\n        \"407.114\",\n        \"0\"\n    ],\n    [\n        1631491200000,\n        \"33.17\",\n        \"33.37\",\n        \"33.14\",\n        \"33.35\",\n        \"20813.84\",\n        1631494799999,\n        \"693107.7564\",\n        76,\n        \"14450.04\",\n        \"482099.6966\",\n        \"0\"\n    ],\n    [\n        1631494800000,\n        \"33.34\",\n        \"33.39\",\n        \"33.22\",\n        \"33.39\",\n        \"24762.87\",\n        1631498399999,\n        \"825868.0315\",\n        86,\n        \"22181.84\",\n        \"740062.5049\",\n        \"0\"\n    ],\n    [\n        1631498400000,\n        \"33.39\",\n        \"33.4\",\n        \"33.15\",\n        \"33.35\",\n        \"29840.97\",\n        1631501999999,\n        \"995991.5664\",\n        102,\n        \"26195.45\",\n        \"874835.3312\",\n        \"0\"\n    ],\n    [\n        1631502000000,\n        \"33.35\",\n        \"33.4\",\n        \"33.21\",\n        \"33.39\",\n        \"29943.61\",\n        1631505599999,\n        \"999429.3685\",\n        86,\n        \"24419.32\",\n        \"815337.6689\",\n        \"0\"\n    ],\n    [\n        1631505600000,\n        \"33.39\",\n        \"33.39\",\n        \"33.34\",\n        \"33.36\",\n        \"28909.7\",\n        1631509199999,\n        \"965128.3868\",\n        61,\n        \"27347.67\",\n        \"913010.4536\",\n        \"0\"\n    ],\n    [\n        1631509200000,\n        \"33.36\",\n        \"33.36\",\n        \"33.25\",\n        \"33.34\",\n        \"45569.72\",\n        1631512799999,\n        \"1519490.9361\",\n        67,\n        \"23139.62\",\n        \"771912.6052\",\n        \"0\"\n    ],\n    [\n        1631512800000,\n        \"33.34\",\n        \"33.38\",\n        \"33.28\",\n        \"33.38\",\n        \"35393\",\n        1631516399999,\n        \"1179773.2601\",\n        52,\n        \"5271.67\",\n        \"175785.3815\",\n        \"0\"\n    ],\n    [\n        1631516400000,\n        \"33.38\",\n        \"33.52\",\n        \"33.25\",\n        \"33.52\",\n        \"53577.35\",\n        1631519999999,\n        \"1791091.4265\",\n        119,\n        \"43974.25\",\n        \"1470803.2742\",\n        \"0\"\n    ],\n    [\n        1631520000000,\n        \"33.52\",\n        \"33.54\",\n        \"33.28\",\n        \"33.42\",\n        \"30452.01\",\n        1631523599999,\n        \"1019029.4556\",\n        76,\n        \"18225.05\",\n        \"610027.7586\",\n        \"0\"\n    ],\n    [\n        1631523600000,\n        \"33.42\",\n        \"33.52\",\n        \"33.41\",\n        \"33.48\",\n        \"10382.64\",\n        1631527199999,\n        \"347244.286\",\n        49,\n        \"6427.57\",\n        \"215048.2083\",\n        \"0\"\n    ],\n    [\n        1631527200000,\n        \"33.48\",\n        \"33.51\",\n        \"33.46\",\n        \"33.51\",\n        \"18435.7\",\n        1631530799999,\n        \"617132.0202\",\n        50,\n        \"7145.53\",\n        \"239246.5131\",\n        \"0\"\n    ],\n    [\n        1631530800000,\n        \"33.51\",\n        \"33.54\",\n        \"33.48\",\n        \"33.49\",\n        \"18908.82\",\n        1631534399999,\n        \"633719.7777\",\n        80,\n        \"6271.45\",\n        \"210294.2514\",\n        \"0\"\n    ],\n    [\n        1631534400000,\n        \"33.53\",\n        \"33.54\",\n        \"33.5\",\n        \"33.53\",\n        \"26011.86\",\n        1631537999999,\n        \"872104.7791\",\n        44,\n        \"13309.37\",\n        \"446266.872\",\n        \"0\"\n    ],\n    [\n        1631538000000,\n        \"33.53\",\n        \"33.54\",\n        \"33.37\",\n        \"33.48\",\n        \"21957.56\",\n        1631541599999,\n        \"734412.1203\",\n        107,\n        \"7735.52\",\n        \"258870.0766\",\n        \"0\"\n    ],\n    [\n        1631541600000,\n        \"33.48\",\n        \"33.54\",\n        \"33.37\",\n        \"33.51\",\n        \"80107.68\",\n        1631545199999,\n        \"2683984.72\",\n        180,\n        \"57232.86\",\n        \"1918289.6457\",\n        \"0\"\n    ],\n    [\n        1631545200000,\n        \"33.51\",\n        \"33.52\",\n        \"33.44\",\n        \"33.48\",\n        \"27157.76\",\n        1631548799999,\n        \"908859.8165\",\n        77,\n        \"14241.52\",\n        \"476590.0425\",\n        \"0\"\n    ],\n    [\n        1631548800000,\n        \"33.48\",\n        \"33.48\",\n        \"33.46\",\n        \"33.46\",\n        \"28398.93\",\n        1631552399999,\n        \"950327.4602\",\n        50,\n        \"17579.4\",\n        \"588303.0774\",\n        \"0\"\n    ],\n    [\n        1631552400000,\n        \"33.46\",\n        \"33.54\",\n        \"33.37\",\n        \"33.49\",\n        \"49732.35\",\n        1631555999999,\n        \"1665780.5483\",\n        47,\n        \"38533.38\",\n        \"1291385.803\",\n        \"0\"\n    ],\n    [\n        1631556000000,\n        \"33.5\",\n        \"33.5\",\n        \"33.45\",\n        \"33.45\",\n        \"4155.65\",\n        1631559599999,\n        \"139069.0106\",\n        16,\n        \"0\",\n        \"0\",\n        \"0\"\n    ],\n    [\n        1631559600000,\n        \"33.45\",\n        \"33.53\",\n        \"33.41\",\n        \"33.52\",\n        \"5847.98\",\n        1631563199999,\n        \"195888.9252\",\n        21,\n        \"4854.32\",\n        \"162687.8923\",\n        \"0\"\n    ],\n    [\n        1631563200000,\n        \"33.46\",\n        \"33.51\",\n        \"33.39\",\n        \"33.39\",\n        \"7546.56\",\n        1631566799999,\n        \"252147.7487\",\n        19,\n        \"53.54\",\n        \"1794.1254\",\n        \"0\"\n    ],\n    [\n        1631566800000,\n        \"33.39\",\n        \"33.45\",\n        \"33.39\",\n        \"33.39\",\n        \"5790.23\",\n        1631570399999,\n        \"193408.8349\",\n        22,\n        \"89.53\",\n        \"2994.7785\",\n        \"0\"\n    ],\n    [\n        1631570400000,\n        \"33.44\",\n        \"33.49\",\n        \"33.41\",\n        \"33.49\",\n        \"3303.58\",\n        1631573999999,\n        \"110557.1793\",\n        16,\n        \"3058.17\",\n        \"102358.0312\",\n        \"0\"\n    ],\n    [\n        1631574000000,\n        \"33.49\",\n        \"33.5\",\n        \"33.42\",\n        \"33.49\",\n        \"4943.01\",\n        1631577599999,\n        \"165553.9105\",\n        23,\n        \"702.46\",\n        \"23531.2749\",\n        \"0\"\n    ],\n    [\n        1631577600000,\n        \"33.46\",\n        \"33.47\",\n        \"33.38\",\n        \"33.38\",\n        \"3677.98\",\n        1631581199999,\n        \"122926.9475\",\n        43,\n        \"1134.39\",\n        \"37918.0969\",\n        \"0\"\n    ],\n    [\n        1631581200000,\n        \"33.39\",\n        \"33.4\",\n        \"33.35\",\n        \"33.4\",\n        \"33450.93\",\n        1631584799999,\n        \"1116999.0798\",\n        36,\n        \"29574.34\",\n        \"987654.1465\",\n        \"0\"\n    ],\n    [\n        1631584800000,\n        \"33.4\",\n        \"33.4\",\n        \"33.35\",\n        \"33.4\",\n        \"2766.77\",\n        1631588399999,\n        \"92352.6219\",\n        24,\n        \"1336.62\",\n        \"44642.8716\",\n        \"0\"\n    ],\n    [\n        1631588400000,\n        \"33.4\",\n        \"33.4\",\n        \"33.34\",\n        \"33.4\",\n        \"8219.36\",\n        1631591999999,\n        \"274242.5991\",\n        29,\n        \"2520.75\",\n        \"84157.1165\",\n        \"0\"\n    ],\n    [\n        1631592000000,\n        \"33.4\",\n        \"33.4\",\n        \"33.33\",\n        \"33.38\",\n        \"25930.31\",\n        1631595599999,\n        \"865213.4255\",\n        27,\n        \"22426.47\",\n        \"748395.9012\",\n        \"0\"\n    ],\n    [\n        1631595600000,\n        \"33.38\",\n        \"33.4\",\n        \"33.34\",\n        \"33.34\",\n        \"38796.73\",\n        1631599199999,\n        \"1295145.1704\",\n        59,\n        \"35093.36\",\n        \"1171650.6005\",\n        \"0\"\n    ],\n    [\n        1631599200000,\n        \"33.39\",\n        \"33.4\",\n        \"33.3\",\n        \"33.4\",\n        \"31477.7\",\n        1631602799999,\n        \"1050639.7246\",\n        59,\n        \"22186.79\",\n        \"740969.6814\",\n        \"0\"\n    ],\n    [\n        1631602800000,\n        \"33.32\",\n        \"33.39\",\n        \"33.28\",\n        \"33.36\",\n        \"23897.05\",\n        1631606399999,\n        \"796033.1056\",\n        65,\n        \"4514.32\",\n        \"150613.2513\",\n        \"0\"\n    ],\n    [\n        1631606400000,\n        \"33.36\",\n        \"33.38\",\n        \"33.25\",\n        \"33.34\",\n        \"18455.38\",\n        1631609999999,\n        \"614668.4651\",\n        114,\n        \"4840.7\",\n        \"161476.9102\",\n        \"0\"\n    ],\n    [\n        1631610000000,\n        \"33.34\",\n        \"33.38\",\n        \"33.29\",\n        \"33.32\",\n        \"13472.57\",\n        1631613599999,\n        \"449426.0835\",\n        44,\n        \"12475.35\",\n        \"416214.8558\",\n        \"0\"\n    ],\n    [\n        1631613600000,\n        \"33.32\",\n        \"33.35\",\n        \"33.24\",\n        \"33.26\",\n        \"24499.65\",\n        1631617199999,\n        \"815500.5474\",\n        86,\n        \"4175.25\",\n        \"139144.3367\",\n        \"0\"\n    ],\n    [\n        1631617200000,\n        \"33.26\",\n        \"33.32\",\n        \"33.24\",\n        \"33.32\",\n        \"31948.12\",\n        1631620799999,\n        \"1062802.6985\",\n        68,\n        \"11887.5\",\n        \"395765.0858\",\n        \"0\"\n    ],\n    [\n        1631620800000,\n        \"33.32\",\n        \"33.35\",\n        \"33.26\",\n        \"33.26\",\n        \"19060.83\",\n        1631624399999,\n        \"635224.9503\",\n        72,\n        \"13552.18\",\n        \"451803.2694\",\n        \"0\"\n    ],\n    [\n        1631624400000,\n        \"33.27\",\n        \"33.35\",\n        \"33.23\",\n        \"33.28\",\n        \"31257.57\",\n        1631627999999,\n        \"1040240.2645\",\n        114,\n        \"19468.4\",\n        \"648126.6797\",\n        \"0\"\n    ],\n    [\n        1631628000000,\n        \"33.25\",\n        \"33.35\",\n        \"33.22\",\n        \"33.22\",\n        \"23205.15\",\n        1631631599999,\n        \"771695.9577\",\n        75,\n        \"13191.93\",\n        \"438956.6519\",\n        \"0\"\n    ],\n    [\n        1631631600000,\n        \"33.22\",\n        \"33.25\",\n        \"33.2\",\n        \"33.24\",\n        \"32674.18\",\n        1631635199999,\n        \"1085343.567\",\n        66,\n        \"5745.2\",\n        \"190959.8081\",\n        \"0\"\n    ],\n    [\n        1631635200000,\n        \"33.24\",\n        \"33.3\",\n        \"33.23\",\n        \"33.26\",\n        \"4795.76\",\n        1631638799999,\n        \"159448.8473\",\n        28,\n        \"1059.71\",\n        \"35245.4732\",\n        \"0\"\n    ],\n    [\n        1631638800000,\n        \"33.3\",\n        \"33.34\",\n        \"33.23\",\n        \"33.32\",\n        \"3611.24\",\n        1631642399999,\n        \"120124.6531\",\n        30,\n        \"1012.01\",\n        \"33698.628\",\n        \"0\"\n    ],\n    [\n        1631642400000,\n        \"33.24\",\n        \"33.34\",\n        \"33.2\",\n        \"33.34\",\n        \"18007.03\",\n        1631645999999,\n        \"598770.415\",\n        26,\n        \"4693.4\",\n        \"156403.7701\",\n        \"0\"\n    ],\n    [\n        1631646000000,\n        \"33.34\",\n        \"33.34\",\n        \"33.23\",\n        \"33.26\",\n        \"2020.26\",\n        1631649599999,\n        \"67205.1816\",\n        14,\n        \"372.36\",\n        \"12411.4976\",\n        \"0\"\n    ],\n    [\n        1631649600000,\n        \"33.34\",\n        \"33.34\",\n        \"33.23\",\n        \"33.32\",\n        \"1904.76\",\n        1631653199999,\n        \"63315.0786\",\n        17,\n        \"4.13\",\n        \"137.6414\",\n        \"0\"\n    ],\n    [\n        1631653200000,\n        \"33.23\",\n        \"33.33\",\n        \"33.23\",\n        \"33.23\",\n        \"3260.75\",\n        1631656799999,\n        \"108584.3169\",\n        20,\n        \"2207.57\",\n        \"73578.1603\",\n        \"0\"\n    ],\n    [\n        1631656800000,\n        \"33.25\",\n        \"33.34\",\n        \"33.2\",\n        \"33.2\",\n        \"3624.73\",\n        1631660399999,\n        \"120406.1235\",\n        37,\n        \"28.06\",\n        \"932.6992\",\n        \"0\"\n    ],\n    [\n        1631660400000,\n        \"33.23\",\n        \"33.33\",\n        \"33.21\",\n        \"33.24\",\n        \"6359\",\n        1631663999999,\n        \"211328.3359\",\n        32,\n        \"205.66\",\n        \"6853.6924\",\n        \"0\"\n    ],\n    [\n        1631664000000,\n        \"33.24\",\n        \"33.32\",\n        \"33.16\",\n        \"33.22\",\n        \"39603.23\",\n        1631667599999,\n        \"1314481.6219\",\n        71,\n        \"13584.51\",\n        \"450752.0048\",\n        \"0\"\n    ],\n    [\n        1631667600000,\n        \"33.22\",\n        \"33.31\",\n        \"33.18\",\n        \"33.31\",\n        \"17508.5\",\n        1631671199999,\n        \"581969.0018\",\n        54,\n        \"7379.95\",\n        \"245683.398\",\n        \"0\"\n    ],\n    [\n        1631671200000,\n        \"33.3\",\n        \"33.31\",\n        \"33.18\",\n        \"33.23\",\n        \"11695.92\",\n        1631674799999,\n        \"389167.4831\",\n        40,\n        \"4141.8\",\n        \"137915.5795\",\n        \"0\"\n    ],\n    [\n        1631674800000,\n        \"33.23\",\n        \"33.3\",\n        \"33.22\",\n        \"33.23\",\n        \"21701.85\",\n        1631678399999,\n        \"721239.5814\",\n        37,\n        \"2487.74\",\n        \"82756.8466\",\n        \"0\"\n    ],\n    [\n        1631678400000,\n        \"33.24\",\n        \"33.26\",\n        \"33.15\",\n        \"33.21\",\n        \"38467.79\",\n        1631681999999,\n        \"1276264.0383\",\n        69,\n        \"6760.7\",\n        \"224654.0597\",\n        \"0\"\n    ],\n    [\n        1631682000000,\n        \"33.22\",\n        \"33.22\",\n        \"33.06\",\n        \"33.18\",\n        \"40045.45\",\n        1631685599999,\n        \"1326943.9565\",\n        109,\n        \"8019.36\",\n        \"265845.5071\",\n        \"0\"\n    ],\n    [\n        1631685600000,\n        \"33.18\",\n        \"33.18\",\n        \"33.1\",\n        \"33.13\",\n        \"27949.91\",\n        1631689199999,\n        \"925981.537\",\n        70,\n        \"11652.73\",\n        \"386140.7749\",\n        \"0\"\n    ],\n    [\n        1631689200000,\n        \"33.13\",\n        \"33.13\",\n        \"33.03\",\n        \"33.1\",\n        \"16763.17\",\n        1631692799999,\n        \"554079.9572\",\n        59,\n        \"1958.52\",\n        \"64855.9933\",\n        \"0\"\n    ],\n    [\n        1631692800000,\n        \"33.1\",\n        \"33.13\",\n        \"33.03\",\n        \"33.13\",\n        \"22846.44\",\n        1631696399999,\n        \"756275.454\",\n        76,\n        \"18715.08\",\n        \"619649.8257\",\n        \"0\"\n    ],\n    [\n        1631696400000,\n        \"33.12\",\n        \"33.13\",\n        \"33.04\",\n        \"33.11\",\n        \"21434.52\",\n        1631699999999,\n        \"709276.98\",\n        49,\n        \"3311.06\",\n        \"109631.6312\",\n        \"0\"\n    ],\n    [\n        1631700000000,\n        \"33.1\",\n        \"33.22\",\n        \"32.98\",\n        \"32.98\",\n        \"111563.99\",\n        1631703599999,\n        \"3694856.812\",\n        140,\n        \"40812.93\",\n        \"1352888.1586\",\n        \"0\"\n    ],\n    [\n        1631703600000,\n        \"32.98\",\n        \"33.17\",\n        \"32.95\",\n        \"33.15\",\n        \"17529.51\",\n        1631707199999,\n        \"578682.954\",\n        61,\n        \"8202.09\",\n        \"271104.0671\",\n        \"0\"\n    ],\n    [\n        1631707200000,\n        \"33.09\",\n        \"33.17\",\n        \"33.07\",\n        \"33.17\",\n        \"5530.91\",\n        1631710799999,\n        \"183141.824\",\n        53,\n        \"2679.34\",\n        \"88787.0246\",\n        \"0\"\n    ],\n    [\n        1631710800000,\n        \"33.17\",\n        \"33.2\",\n        \"32.99\",\n        \"33.19\",\n        \"24506.5\",\n        1631714399999,\n        \"810726.8884\",\n        80,\n        \"14653.76\",\n        \"484813.4149\",\n        \"0\"\n    ],\n    [\n        1631714400000,\n        \"33.18\",\n        \"33.2\",\n        \"33.03\",\n        \"33.19\",\n        \"8188.56\",\n        1631717999999,\n        \"271683.5895\",\n        51,\n        \"7863.86\",\n        \"260949.4488\",\n        \"0\"\n    ],\n    [\n        1631718000000,\n        \"33.09\",\n        \"33.2\",\n        \"32.99\",\n        \"33.11\",\n        \"36327.22\",\n        1631721599999,\n        \"1202011.6361\",\n        67,\n        \"11958.82\",\n        \"396583.57\",\n        \"0\"\n    ],\n    [\n        1631721600000,\n        \"33.1\",\n        \"33.11\",\n        \"32.99\",\n        \"33.1\",\n        \"7495.24\",\n        1631725199999,\n        \"247917.2661\",\n        32,\n        \"6074.86\",\n        \"201036.9879\",\n        \"0\"\n    ],\n    [\n        1631725200000,\n        \"33.1\",\n        \"33.2\",\n        \"32.98\",\n        \"33.09\",\n        \"28705.94\",\n        1631728799999,\n        \"949618.1735\",\n        51,\n        \"15208.51\",\n        \"503865.2846\",\n        \"0\"\n    ],\n    [\n        1631728800000,\n        \"33.08\",\n        \"33.09\",\n        \"33.01\",\n        \"33.04\",\n        \"1537.24\",\n        1631732399999,\n        \"50848.1441\",\n        14,\n        \"1471.9\",\n        \"48691.2707\",\n        \"0\"\n    ],\n    [\n        1631732400000,\n        \"33.02\",\n        \"33.11\",\n        \"33\",\n        \"33.1\",\n        \"15309.25\",\n        1631735999999,\n        \"505732.4384\",\n        21,\n        \"6094.05\",\n        \"201569.3443\",\n        \"0\"\n    ],\n    [\n        1631736000000,\n        \"33.05\",\n        \"33.14\",\n        \"33.05\",\n        \"33.14\",\n        \"4804.9\",\n        1631739599999,\n        \"159106.2157\",\n        19,\n        \"4704.9\",\n        \"155801.2157\",\n        \"0\"\n    ],\n    [\n        1631739600000,\n        \"33.06\",\n        \"33.14\",\n        \"33.05\",\n        \"33.05\",\n        \"3357.75\",\n        1631743199999,\n        \"111052.8191\",\n        15,\n        \"830.13\",\n        \"27505.1492\",\n        \"0\"\n    ],\n    [\n        1631743200000,\n        \"33.16\",\n        \"33.16\",\n        \"33.05\",\n        \"33.09\",\n        \"4567.96\",\n        1631746799999,\n        \"151150.7767\",\n        22,\n        \"3797.17\",\n        \"125676.1672\",\n        \"0\"\n    ],\n    [\n        1631746800000,\n        \"33.06\",\n        \"33.06\",\n        \"33\",\n        \"33.03\",\n        \"19341.35\",\n        1631750399999,\n        \"638459.1999\",\n        38,\n        \"3439.23\",\n        \"113574.222\",\n        \"0\"\n    ],\n    [\n        1631750400000,\n        \"33.01\",\n        \"33.07\",\n        \"33.01\",\n        \"33.06\",\n        \"23041.66\",\n        1631753999999,\n        \"761642.7342\",\n        77,\n        \"21470.04\",\n        \"709737.1973\",\n        \"0\"\n    ],\n    [\n        1631754000000,\n        \"33.06\",\n        \"33.06\",\n        \"33\",\n        \"33.01\",\n        \"5256.35\",\n        1631757599999,\n        \"173597.2922\",\n        43,\n        \"2947.82\",\n        \"97407.4362\",\n        \"0\"\n    ],\n    [\n        1631757600000,\n        \"33.01\",\n        \"33.06\",\n        \"32.99\",\n        \"33.06\",\n        \"19909.8\",\n        1631761199999,\n        \"657131.6614\",\n        65,\n        \"17564.06\",\n        \"579742.254\",\n        \"0\"\n    ],\n    [\n        1631761200000,\n        \"33.06\",\n        \"33.12\",\n        \"33\",\n        \"33.06\",\n        \"26700.05\",\n        1631764799999,\n        \"883798.1303\",\n        58,\n        \"15231.91\",\n        \"504227.1138\",\n        \"0\"\n    ],\n    [\n        1631764800000,\n        \"33.06\",\n        \"33.07\",\n        \"32.95\",\n        \"33.07\",\n        \"31380.19\",\n        1631768399999,\n        \"1035956.3436\",\n        75,\n        \"13181.23\",\n        \"435714.7785\",\n        \"0\"\n    ],\n    [\n        1631768400000,\n        \"32.99\",\n        \"33.11\",\n        \"32.93\",\n        \"33.1\",\n        \"53487.91\",\n        1631771999999,\n        \"1766564.9261\",\n        62,\n        \"36397.47\",\n        \"1203104.6638\",\n        \"0\"\n    ],\n    [\n        1631772000000,\n        \"33.09\",\n        \"33.13\",\n        \"32.94\",\n        \"33.1\",\n        \"53699.79\",\n        1631775599999,\n        \"1774439.337\",\n        53,\n        \"17989.4\",\n        \"595634.3791\",\n        \"0\"\n    ],\n    [\n        1631775600000,\n        \"33.1\",\n        \"33.1\",\n        \"32.95\",\n        \"32.96\",\n        \"15469.8\",\n        1631779199999,\n        \"509815.4579\",\n        15,\n        \"7349.09\",\n        \"242172.611\",\n        \"0\"\n    ]\n]"}],"_postman_id":"56e6c99d-fc1c-4a50-b264-56c699b5420e"},{"name":"Get 24 hrs. ticker","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"8ebe617c-b331-4dce-aa6a-599be7463bbe"}}],"id":"2ecb675a-3309-48bc-b471-ffd8ac555692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/v3/ticker/24hr","urlObject":{"path":["v3","ticker","24hr"],"host":["https://www.orbixtrade.com/api"],"query":[{"disabled":true,"description":{"content":"<p>optional, A pair symbol, such as 'btc_thb', 'eth_thb'. If then symbol not sent, returns all symbols in an array</p>\n","type":"text/plain"},"key":"symbol","value":"sol_thb"}],"variable":[]}},"response":[{"id":"92dbb01a-e26f-4a84-8397-2d827cd52e84","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/v3/ticker/24hr","host":["{{BASE_URL}}"],"path":["api","v3","ticker","24hr"],"query":[{"key":"symbol","value":"sol_thb","description":"optional","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:19:55 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ngr6ItRXlw4OTmZAPOObCOWoChzv1rF174ObxQAikvPqQOkjoXPE44n9tTUf%2FgtlKEx1tgqT6piktRmfh4poPKc1FGjgSfhVFXpa5fmSI7WoItgnGuWvhJvhaUQQezgi\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f8544b7b936b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"askPrice\": \"4.029\",\n        \"bidPrice\": \"4\",\n        \"closeTime\": 1631775906258,\n        \"count\": 246,\n        \"firstId\": 43770,\n        \"highPrice\": \"4.07\",\n        \"lastId\": 44015,\n        \"lastPrice\": \"4.026\",\n        \"lastQty\": \"91.75\",\n        \"lowPrice\": \"3.85\",\n        \"openPrice\": \"3.92\",\n        \"openTime\": 1631692295003,\n        \"prevClosePrice\": \"3.91\",\n        \"priceChange\": \"0.116\",\n        \"priceChangePercent\": \"2.96675191815857\",\n        \"quoteVolume\": \"315510.72959\",\n        \"symbol\": \"vet_thb\",\n        \"volume\": \"78964.07\",\n        \"weightedAvgPrice\": \"3.9956239539071378\"\n    },\n    {\n        \"askPrice\": \"11.2\",\n        \"bidPrice\": \"11.1\",\n        \"closeTime\": 1631775154635,\n        \"count\": 94,\n        \"firstId\": 1056729,\n        \"highPrice\": \"11.38\",\n        \"lastId\": 1056819,\n        \"lastPrice\": \"11.25\",\n        \"lastQty\": \"97.5\",\n        \"lowPrice\": \"10.93\",\n        \"openPrice\": \"10.93\",\n        \"openTime\": 1631693408543,\n        \"prevClosePrice\": \"10.93\",\n        \"priceChange\": \"0.32\",\n        \"priceChangePercent\": \"2.92772186642269\",\n        \"quoteVolume\": \"181232.371\",\n        \"symbol\": \"xlm_thb\",\n        \"volume\": \"16255.2\",\n        \"weightedAvgPrice\": \"11.1491935503715734\"\n    },\n    {\n        \"askPrice\": \"1039\",\n        \"bidPrice\": \"1015.01\",\n        \"closeTime\": 1631765969236,\n        \"count\": 88,\n        \"firstId\": 25286,\n        \"highPrice\": \"1050\",\n        \"lastId\": 25372,\n        \"lastPrice\": \"1040\",\n        \"lastQty\": \"0.49\",\n        \"lowPrice\": \"921.98\",\n        \"openPrice\": \"1010\",\n        \"openTime\": 1631691334344,\n        \"prevClosePrice\": \"1013.99\",\n        \"priceChange\": \"26.01\",\n        \"priceChangePercent\": \"2.56511405437923\",\n        \"quoteVolume\": \"185279.41366\",\n        \"symbol\": \"link_thb\",\n        \"volume\": \"181.532\",\n        \"weightedAvgPrice\": \"1020.643267633254743\"\n    },\n    {\n        \"askPrice\": \"8999.97\",\n        \"bidPrice\": \"8400.03\",\n        \"closeTime\": 1631763349414,\n        \"count\": 25,\n        \"firstId\": 8426,\n        \"highPrice\": \"8999.99\",\n        \"lastId\": 8450,\n        \"lastPrice\": \"8400.02\",\n        \"lastQty\": \"0.143\",\n        \"lowPrice\": \"8400.01\",\n        \"openPrice\": \"8900\",\n        \"openTime\": 1631700583398,\n        \"prevClosePrice\": \"8500.03\",\n        \"priceChange\": \"-100.01\",\n        \"priceChangePercent\": \"-1.176584082644414196\",\n        \"quoteVolume\": \"789258.271706\",\n        \"symbol\": \"xmr_thb\",\n        \"volume\": \"91.5715\",\n        \"weightedAvgPrice\": \"8619.0383657142233118\"\n    },\n    {\n        \"askPrice\": \"82.39\",\n        \"bidPrice\": \"81.8\",\n        \"closeTime\": 1631776296052,\n        \"count\": 718,\n        \"firstId\": 256766,\n        \"highPrice\": \"84.9\",\n        \"lastId\": 257483,\n        \"lastPrice\": \"82.39\",\n        \"lastQty\": \"5\",\n        \"lowPrice\": \"78.6\",\n        \"openPrice\": \"79.06\",\n        \"openTime\": 1631690110610,\n        \"prevClosePrice\": \"79.06\",\n        \"priceChange\": \"3.33\",\n        \"priceChangePercent\": \"4.21199089299266\",\n        \"quoteVolume\": \"6647540.934\",\n        \"symbol\": \"ada_thb\",\n        \"volume\": \"80415.2\",\n        \"weightedAvgPrice\": \"82.6652291357852744\"\n    },\n    {\n        \"askPrice\": \"1200\",\n        \"bidPrice\": \"1185\",\n        \"closeTime\": 1631772497738,\n        \"count\": 90,\n        \"firstId\": 23436,\n        \"highPrice\": \"1234.4\",\n        \"lastId\": 23526,\n        \"lastPrice\": \"1183.87\",\n        \"lastQty\": \"0.04\",\n        \"lowPrice\": \"1174.04\",\n        \"openPrice\": \"1229.99\",\n        \"openTime\": 1631690154374,\n        \"prevClosePrice\": \"1220\",\n        \"priceChange\": \"-36.13\",\n        \"priceChangePercent\": \"-2.961475409836065574\",\n        \"quoteVolume\": \"416114.5626\",\n        \"symbol\": \"luna_thb\",\n        \"volume\": \"343.4\",\n        \"weightedAvgPrice\": \"1211.7488718695398952\"\n    },\n    {\n        \"askPrice\": \"1195.13\",\n        \"bidPrice\": \"1190\",\n        \"closeTime\": 1631776257625,\n        \"count\": 128,\n        \"firstId\": 81843,\n        \"highPrice\": \"1225\",\n        \"lastId\": 81970,\n        \"lastPrice\": \"1190\",\n        \"lastQty\": \"7.21\",\n        \"lowPrice\": \"1171.98\",\n        \"openPrice\": \"1216.6\",\n        \"openTime\": 1631691185086,\n        \"prevClosePrice\": \"1216.6\",\n        \"priceChange\": \"-26.6\",\n        \"priceChangePercent\": \"-2.186421173762945915\",\n        \"quoteVolume\": \"302655.1058\",\n        \"symbol\": \"dot_thb\",\n        \"volume\": \"252.51\",\n        \"weightedAvgPrice\": \"1198.5866135994614075\"\n    },\n    {\n        \"askPrice\": \"7100\",\n        \"bidPrice\": \"6650.01\",\n        \"closeTime\": 1631775677902,\n        \"count\": 12,\n        \"firstId\": 10182,\n        \"highPrice\": \"7100\",\n        \"lastId\": 10193,\n        \"lastPrice\": \"7100\",\n        \"lastQty\": \"0.0027\",\n        \"lowPrice\": \"6470.01\",\n        \"openPrice\": \"6999.99\",\n        \"openTime\": 1631701719658,\n        \"prevClosePrice\": \"7099.99\",\n        \"priceChange\": \"0.01\",\n        \"priceChangePercent\": \"0.0001408452688\",\n        \"quoteVolume\": \"35140.33806\",\n        \"symbol\": \"dash_thb\",\n        \"volume\": \"4.9666\",\n        \"weightedAvgPrice\": \"7075.3308218902267145\"\n    },\n    {\n        \"askPrice\": \"173.29\",\n        \"bidPrice\": \"170\",\n        \"closeTime\": 1631775428352,\n        \"count\": 98,\n        \"firstId\": 29478,\n        \"highPrice\": \"170.05\",\n        \"lastId\": 29575,\n        \"lastPrice\": \"170.05\",\n        \"lastQty\": \"1\",\n        \"lowPrice\": \"158.01\",\n        \"openPrice\": \"161.99\",\n        \"openTime\": 1631690576201,\n        \"prevClosePrice\": \"161.99\",\n        \"priceChange\": \"3.01\",\n        \"priceChangePercent\": \"1.85813939132045\",\n        \"quoteVolume\": \"448373.20022\",\n        \"symbol\": \"eos_thb\",\n        \"volume\": \"2698.393\",\n        \"weightedAvgPrice\": \"166.1630460129417768\"\n    },\n    {\n        \"askPrice\": \"1992.56\",\n        \"bidPrice\": \"1980\",\n        \"closeTime\": 1631776118916,\n        \"count\": 108,\n        \"firstId\": 14136,\n        \"highPrice\": \"2055.68\",\n        \"lastId\": 14243,\n        \"lastPrice\": \"1967.74\",\n        \"lastQty\": \"4.367\",\n        \"lowPrice\": \"1913.33\",\n        \"openPrice\": \"1913.33\",\n        \"openTime\": 1631695211687,\n        \"prevClosePrice\": \"1913.33\",\n        \"priceChange\": \"54.41\",\n        \"priceChangePercent\": \"2.8437331772355\",\n        \"quoteVolume\": \"196844.68213\",\n        \"symbol\": \"icp_thb\",\n        \"volume\": \"99.583\",\n        \"weightedAvgPrice\": \"1976.6896170029021018\"\n    },\n    {\n        \"askPrice\": \"34\",\n        \"bidPrice\": \"33.26\",\n        \"closeTime\": 1631756666488,\n        \"count\": 5,\n        \"firstId\": 2665,\n        \"highPrice\": \"33.26\",\n        \"lastId\": 2669,\n        \"lastPrice\": \"33.26\",\n        \"lastQty\": \"20.9\",\n        \"lowPrice\": \"33.25\",\n        \"openPrice\": \"33.25\",\n        \"openTime\": 1631701678399,\n        \"prevClosePrice\": \"32.42\",\n        \"priceChange\": \"0.84\",\n        \"priceChangePercent\": \"2.59099321406539\",\n        \"quoteVolume\": \"1432.3865\",\n        \"symbol\": \"tusd_thb\",\n        \"volume\": \"43.07\",\n        \"weightedAvgPrice\": \"33.2571743673090318\"\n    },\n    {\n        \"askPrice\": \"0\",\n        \"bidPrice\": \"59000.01\",\n        \"closeTime\": 1608128043733,\n        \"count\": 0,\n        \"firstId\": 0,\n        \"highPrice\": \"0\",\n        \"lastId\": 61,\n        \"lastPrice\": \"59000\",\n        \"lastQty\": \"0.005\",\n        \"lowPrice\": \"0\",\n        \"openPrice\": \"0\",\n        \"openTime\": 0,\n        \"prevClosePrice\": \"59000\",\n        \"priceChange\": \"0\",\n        \"priceChangePercent\": \"0\",\n        \"quoteVolume\": \"0\",\n        \"symbol\": \"paxg_thb\",\n        \"volume\": \"0\",\n        \"weightedAvgPrice\": \"0\"\n    },\n    {\n        \"askPrice\": \"26.59\",\n        \"bidPrice\": \"25.8\",\n        \"closeTime\": 1631761919921,\n        \"count\": 13,\n        \"firstId\": 25884,\n        \"highPrice\": \"26.58\",\n        \"lastId\": 25896,\n        \"lastPrice\": \"25.8\",\n        \"lastQty\": \"15.26\",\n        \"lowPrice\": \"25.6\",\n        \"openPrice\": \"25.6\",\n        \"openTime\": 1631694278350,\n        \"prevClosePrice\": \"25.47\",\n        \"priceChange\": \"0.33\",\n        \"priceChangePercent\": \"1.295641931684334511\",\n        \"quoteVolume\": \"7974.5016\",\n        \"symbol\": \"bat_thb\",\n        \"volume\": \"304.45\",\n        \"weightedAvgPrice\": \"26.1931404171456725\"\n    },\n    {\n        \"askPrice\": \"11.2\",\n        \"bidPrice\": \"11.12\",\n        \"closeTime\": 1631774089454,\n        \"count\": 30,\n        \"firstId\": 31796,\n        \"highPrice\": \"11.39\",\n        \"lastId\": 31824,\n        \"lastPrice\": \"11.2\",\n        \"lastQty\": \"8.69\",\n        \"lowPrice\": \"11.07\",\n        \"openPrice\": \"11.1\",\n        \"openTime\": 1631696878563,\n        \"prevClosePrice\": \"11.25\",\n        \"priceChange\": \"-0.05\",\n        \"priceChangePercent\": \"-0.444444444444444444\",\n        \"quoteVolume\": \"41164.3386\",\n        \"symbol\": \"jfin_thb\",\n        \"volume\": \"3698.35\",\n        \"weightedAvgPrice\": \"11.1304605026565901\"\n    },\n    {\n        \"askPrice\": \"714.89\",\n        \"bidPrice\": \"710.5\",\n        \"closeTime\": 1631776382848,\n        \"count\": 73,\n        \"firstId\": 4898,\n        \"highPrice\": \"741.48\",\n        \"lastId\": 4970,\n        \"lastPrice\": \"714.89\",\n        \"lastQty\": \"9.78\",\n        \"lowPrice\": \"700.01\",\n        \"openPrice\": \"730.45\",\n        \"openTime\": 1631690237956,\n        \"prevClosePrice\": \"728.11\",\n        \"priceChange\": \"-17.41\",\n        \"priceChangePercent\": \"-2.391122220543599181\",\n        \"quoteVolume\": \"252589.013\",\n        \"symbol\": \"flow_thb\",\n        \"volume\": \"346.65\",\n        \"weightedAvgPrice\": \"728.657184480023078\"\n    },\n    {\n        \"askPrice\": \"3.94\",\n        \"bidPrice\": \"3.9\",\n        \"closeTime\": 1631776448056,\n        \"count\": 888,\n        \"firstId\": 229677,\n        \"highPrice\": \"4.01\",\n        \"lastId\": 230564,\n        \"lastPrice\": \"3.9\",\n        \"lastQty\": \"2558\",\n        \"lowPrice\": \"3.73\",\n        \"openPrice\": \"3.78\",\n        \"openTime\": 1631690361469,\n        \"prevClosePrice\": \"3.72\",\n        \"priceChange\": \"0.18\",\n        \"priceChangePercent\": \"4.838709677419354839\",\n        \"quoteVolume\": \"3922847.862\",\n        \"symbol\": \"trx_thb\",\n        \"volume\": \"999990.6\",\n        \"weightedAvgPrice\": \"3.9228847371165289\"\n    },\n    {\n        \"askPrice\": \"14380\",\n        \"bidPrice\": \"14310\",\n        \"closeTime\": 1631776381231,\n        \"count\": 542,\n        \"firstId\": 222805,\n        \"highPrice\": \"14499\",\n        \"lastId\": 223346,\n        \"lastPrice\": \"14380\",\n        \"lastQty\": \"0.69\",\n        \"lowPrice\": \"13701\",\n        \"openPrice\": \"13800\",\n        \"openTime\": 1631690750171,\n        \"prevClosePrice\": \"13800\",\n        \"priceChange\": \"580\",\n        \"priceChangePercent\": \"4.202898550724637681\",\n        \"quoteVolume\": \"2506097.2135\",\n        \"symbol\": \"bnb_thb\",\n        \"volume\": \"176.77\",\n        \"weightedAvgPrice\": \"14177.163622220965\"\n    },\n    {\n        \"askPrice\": \"1103.94\",\n        \"bidPrice\": \"1054.01\",\n        \"closeTime\": 1631772071227,\n        \"count\": 65,\n        \"firstId\": 16612,\n        \"highPrice\": \"1161.98\",\n        \"lastId\": 16676,\n        \"lastPrice\": \"1111.96\",\n        \"lastQty\": \"8.98\",\n        \"lowPrice\": \"1014.01\",\n        \"openPrice\": \"1110\",\n        \"openTime\": 1631690559140,\n        \"prevClosePrice\": \"1110\",\n        \"priceChange\": \"1.96\",\n        \"priceChangePercent\": \"0.17657657657658\",\n        \"quoteVolume\": \"173916.1305\",\n        \"symbol\": \"atom_thb\",\n        \"volume\": \"157.8\",\n        \"weightedAvgPrice\": \"1102.1301045627376426\"\n    },\n    {\n        \"askPrice\": \"225\",\n        \"bidPrice\": \"222.01\",\n        \"closeTime\": 1631775478511,\n        \"count\": 54,\n        \"firstId\": 12703,\n        \"highPrice\": \"244\",\n        \"lastId\": 12755,\n        \"lastPrice\": \"225\",\n        \"lastQty\": \"6\",\n        \"lowPrice\": \"220.55\",\n        \"openPrice\": \"240.11\",\n        \"openTime\": 1631704829911,\n        \"prevClosePrice\": \"240.11\",\n        \"priceChange\": \"-15.1\",\n        \"priceChangePercent\": \"-6.288784307192536754\",\n        \"quoteVolume\": \"204638.5605\",\n        \"symbol\": \"xtz_thb\",\n        \"volume\": \"908.491\",\n        \"weightedAvgPrice\": \"225.2510597243120735\"\n    },\n    {\n        \"askPrice\": \"6299\",\n        \"bidPrice\": \"6298.5\",\n        \"closeTime\": 1631775417022,\n        \"count\": 70,\n        \"firstId\": 27066,\n        \"highPrice\": \"6299\",\n        \"lastId\": 27135,\n        \"lastPrice\": \"6298.5\",\n        \"lastQty\": \"0.67\",\n        \"lowPrice\": \"5960\",\n        \"openPrice\": \"6000\",\n        \"openTime\": 1631694335790,\n        \"prevClosePrice\": \"5960.02\",\n        \"priceChange\": \"338.48\",\n        \"priceChangePercent\": \"5.67917557323633\",\n        \"quoteVolume\": \"201431.7951\",\n        \"symbol\": \"ltc_thb\",\n        \"volume\": \"33.16\",\n        \"weightedAvgPrice\": \"6074.5414686369119421\"\n    },\n    {\n        \"askPrice\": \"1945\",\n        \"bidPrice\": \"1900.01\",\n        \"closeTime\": 1631770338223,\n        \"count\": 69,\n        \"firstId\": 46066,\n        \"highPrice\": \"1950\",\n        \"lastId\": 46133,\n        \"lastPrice\": \"1945\",\n        \"lastQty\": \"0.94\",\n        \"lowPrice\": \"1851.01\",\n        \"openPrice\": \"1870\",\n        \"openTime\": 1631692616520,\n        \"prevClosePrice\": \"1870\",\n        \"priceChange\": \"75\",\n        \"priceChangePercent\": \"4.01069518716578\",\n        \"quoteVolume\": \"239097.94077\",\n        \"symbol\": \"etc_thb\",\n        \"volume\": \"124.071\",\n        \"weightedAvgPrice\": \"1927.1057762893826922\"\n    },\n    {\n        \"askPrice\": \"245.24\",\n        \"bidPrice\": \"245\",\n        \"closeTime\": 1631775495080,\n        \"count\": 75,\n        \"firstId\": 1255109,\n        \"highPrice\": \"250\",\n        \"lastId\": 1255183,\n        \"lastPrice\": \"245.24\",\n        \"lastQty\": \"21.4\",\n        \"lowPrice\": \"236.25\",\n        \"openPrice\": \"236.25\",\n        \"openTime\": 1631693672032,\n        \"prevClosePrice\": \"236.1\",\n        \"priceChange\": \"9.14\",\n        \"priceChangePercent\": \"3.87124099957645\",\n        \"quoteVolume\": \"224234.7174\",\n        \"symbol\": \"xzc_thb\",\n        \"volume\": \"914.65\",\n        \"weightedAvgPrice\": \"245.1590416006122561\"\n    },\n    {\n        \"askPrice\": \"4788.88\",\n        \"bidPrice\": \"4700\",\n        \"closeTime\": 1631772096519,\n        \"count\": 23,\n        \"firstId\": 9908,\n        \"highPrice\": \"4800\",\n        \"lastId\": 9930,\n        \"lastPrice\": \"4800\",\n        \"lastQty\": \"0.0599\",\n        \"lowPrice\": \"4299.99\",\n        \"openPrice\": \"4299.99\",\n        \"openTime\": 1631710176309,\n        \"prevClosePrice\": \"4355.55\",\n        \"priceChange\": \"444.45\",\n        \"priceChangePercent\": \"10.20422219926301\",\n        \"quoteVolume\": \"19393.844098\",\n        \"symbol\": \"zec_thb\",\n        \"volume\": \"4.238\",\n        \"weightedAvgPrice\": \"4576.178409155261916\"\n    },\n    {\n        \"askPrice\": \"33.23\",\n        \"bidPrice\": \"33.1\",\n        \"closeTime\": 1631776310004,\n        \"count\": 685,\n        \"firstId\": 47661,\n        \"highPrice\": \"33.32\",\n        \"lastId\": 48345,\n        \"lastPrice\": \"33.23\",\n        \"lastQty\": \"36.03\",\n        \"lowPrice\": \"33\",\n        \"openPrice\": \"33.09\",\n        \"openTime\": 1631690239248,\n        \"prevClosePrice\": \"33.09\",\n        \"priceChange\": \"0.14\",\n        \"priceChangePercent\": \"0.42308854638863705\",\n        \"quoteVolume\": \"9763956.3533\",\n        \"symbol\": \"busd_thb\",\n        \"volume\": \"294558.68\",\n        \"weightedAvgPrice\": \"33.14774615808300064\"\n    },\n    {\n        \"askPrice\": \"322\",\n        \"bidPrice\": \"300.03\",\n        \"closeTime\": 1631770182310,\n        \"count\": 54,\n        \"firstId\": 26972,\n        \"highPrice\": \"330\",\n        \"lastId\": 27024,\n        \"lastPrice\": \"322\",\n        \"lastQty\": \"0.9\",\n        \"lowPrice\": \"295.02\",\n        \"openPrice\": \"315\",\n        \"openTime\": 1631690415103,\n        \"prevClosePrice\": \"328.84\",\n        \"priceChange\": \"-6.84\",\n        \"priceChangePercent\": \"-2.08003892470502372\",\n        \"quoteVolume\": \"157298.9413\",\n        \"symbol\": \"band_thb\",\n        \"volume\": \"486.26\",\n        \"weightedAvgPrice\": \"323.4873139884012668\"\n    },\n    {\n        \"askPrice\": \"5296.94\",\n        \"bidPrice\": \"5260\",\n        \"closeTime\": 1631776484695,\n        \"count\": 796,\n        \"firstId\": 36811,\n        \"highPrice\": \"5420\",\n        \"lastId\": 37605,\n        \"lastPrice\": \"5296.94\",\n        \"lastQty\": \"1\",\n        \"lowPrice\": \"5104.56\",\n        \"openPrice\": \"5336.45\",\n        \"openTime\": 1631690898771,\n        \"prevClosePrice\": \"5336.45\",\n        \"priceChange\": \"-39.51\",\n        \"priceChangePercent\": \"-0.740379840530689878\",\n        \"quoteVolume\": \"3757580.78217\",\n        \"symbol\": \"sol_thb\",\n        \"volume\": \"716.091\",\n        \"weightedAvgPrice\": \"5247.3509402715576652\"\n    },\n    {\n        \"askPrice\": \"21500\",\n        \"bidPrice\": \"20801.01\",\n        \"closeTime\": 1631776352419,\n        \"count\": 11,\n        \"firstId\": 15462,\n        \"highPrice\": \"21887.99\",\n        \"lastId\": 15472,\n        \"lastPrice\": \"20801\",\n        \"lastQty\": \"0.0016\",\n        \"lowPrice\": \"20801\",\n        \"openPrice\": \"21000\",\n        \"openTime\": 1631699253587,\n        \"prevClosePrice\": \"21499.99\",\n        \"priceChange\": \"-698.99\",\n        \"priceChangePercent\": \"-3.251117791217577311\",\n        \"quoteVolume\": \"81607.776118\",\n        \"symbol\": \"bch_thb\",\n        \"volume\": \"3.8782\",\n        \"weightedAvgPrice\": \"21042.694063740911\"\n    },\n    {\n        \"askPrice\": \"67.76\",\n        \"bidPrice\": \"65.02\",\n        \"closeTime\": 1631774987393,\n        \"count\": 244,\n        \"firstId\": 22131,\n        \"highPrice\": \"69.99\",\n        \"lastId\": 22374,\n        \"lastPrice\": \"67.8\",\n        \"lastQty\": \"9\",\n        \"lowPrice\": \"62.12\",\n        \"openPrice\": \"69.67\",\n        \"openTime\": 1631690189930,\n        \"prevClosePrice\": \"68.5\",\n        \"priceChange\": \"-0.7\",\n        \"priceChangePercent\": \"-1.021897810218978102\",\n        \"quoteVolume\": \"1020539.40132\",\n        \"symbol\": \"algo_thb\",\n        \"volume\": \"15369.4\",\n        \"weightedAvgPrice\": \"66.4007314091636629\"\n    },\n    {\n        \"askPrice\": \"33\",\n        \"bidPrice\": \"32.39\",\n        \"closeTime\": 1631723830428,\n        \"count\": 6,\n        \"firstId\": 17955,\n        \"highPrice\": \"33\",\n        \"lastId\": 17960,\n        \"lastPrice\": \"32.4\",\n        \"lastQty\": \"3.3\",\n        \"lowPrice\": \"32.4\",\n        \"openPrice\": \"33\",\n        \"openTime\": 1631703233961,\n        \"prevClosePrice\": \"33.36\",\n        \"priceChange\": \"-0.96\",\n        \"priceChangePercent\": \"-2.877697841726618705\",\n        \"quoteVolume\": \"2299.92\",\n        \"symbol\": \"dai_thb\",\n        \"volume\": \"69.79\",\n        \"weightedAvgPrice\": \"32.954864593781344\"\n    },\n    {\n        \"askPrice\": \"16.5\",\n        \"bidPrice\": \"16.3\",\n        \"closeTime\": 1631775741052,\n        \"count\": 433,\n        \"firstId\": 54897,\n        \"highPrice\": \"18.8\",\n        \"lastId\": 55328,\n        \"lastPrice\": \"16.3\",\n        \"lastQty\": \"25.6\",\n        \"lowPrice\": \"16.01\",\n        \"openPrice\": \"17\",\n        \"openTime\": 1631690120009,\n        \"prevClosePrice\": \"17.11\",\n        \"priceChange\": \"-0.81\",\n        \"priceChangePercent\": \"-4.73407364114552893\",\n        \"quoteVolume\": \"2006788.7453\",\n        \"symbol\": \"hbar_thb\",\n        \"volume\": \"114272.3\",\n        \"weightedAvgPrice\": \"17.5614627980709236\"\n    },\n    {\n        \"askPrice\": \"751.77\",\n        \"bidPrice\": \"733.11\",\n        \"closeTime\": 1631774848816,\n        \"count\": 125,\n        \"firstId\": 11471,\n        \"highPrice\": \"760\",\n        \"lastId\": 11595,\n        \"lastPrice\": \"751.77\",\n        \"lastQty\": \"1.255\",\n        \"lowPrice\": \"700\",\n        \"openPrice\": \"700\",\n        \"openTime\": 1631690655105,\n        \"prevClosePrice\": \"697.26\",\n        \"priceChange\": \"53.23\",\n        \"priceChangePercent\": \"7.63416802914264\",\n        \"quoteVolume\": \"364546.14441\",\n        \"symbol\": \"cake_thb\",\n        \"volume\": \"498.033\",\n        \"weightedAvgPrice\": \"731.9718661414002687\"\n    },\n    {\n        \"askPrice\": \"37\",\n        \"bidPrice\": \"36.5\",\n        \"closeTime\": 1631775564821,\n        \"count\": 209,\n        \"firstId\": 1016180,\n        \"highPrice\": \"37.55\",\n        \"lastId\": 1016392,\n        \"lastPrice\": \"36.85\",\n        \"lastQty\": \"95.3\",\n        \"lowPrice\": \"35.58\",\n        \"openPrice\": \"36.05\",\n        \"openTime\": 1631690485045,\n        \"prevClosePrice\": \"36.11\",\n        \"priceChange\": \"0.74\",\n        \"priceChangePercent\": \"2.049293824425366934\",\n        \"quoteVolume\": \"923215.542\",\n        \"symbol\": \"xrp_thb\",\n        \"volume\": \"25108.9\",\n        \"weightedAvgPrice\": \"36.7684582757508294\"\n    },\n    {\n        \"askPrice\": \"33.33\",\n        \"bidPrice\": \"32.41\",\n        \"closeTime\": 1631766940209,\n        \"count\": 15,\n        \"firstId\": 3245,\n        \"highPrice\": \"33.35\",\n        \"lastId\": 3256,\n        \"lastPrice\": \"32.41\",\n        \"lastQty\": \"1\",\n        \"lowPrice\": \"32.26\",\n        \"openPrice\": \"33\",\n        \"openTime\": 1631694164995,\n        \"prevClosePrice\": \"33\",\n        \"priceChange\": \"-0.59\",\n        \"priceChangePercent\": \"-1.787878787878787879\",\n        \"quoteVolume\": \"47652.043\",\n        \"symbol\": \"usdc_thb\",\n        \"volume\": \"1443.82\",\n        \"weightedAvgPrice\": \"33.0041438683492402\"\n    },\n    {\n        \"askPrice\": \"8.12\",\n        \"bidPrice\": \"8.01\",\n        \"closeTime\": 1631776436351,\n        \"count\": 451,\n        \"firstId\": 571001,\n        \"highPrice\": \"8.15\",\n        \"lastId\": 571450,\n        \"lastPrice\": \"8.01\",\n        \"lastQty\": \"1\",\n        \"lowPrice\": \"7.88\",\n        \"openPrice\": \"7.96\",\n        \"openTime\": 1631690395768,\n        \"prevClosePrice\": \"7.951\",\n        \"priceChange\": \"0.059\",\n        \"priceChangePercent\": \"0.74204502578292\",\n        \"quoteVolume\": \"2301240.961208\",\n        \"symbol\": \"doge_thb\",\n        \"volume\": \"288119.1943\",\n        \"weightedAvgPrice\": \"7.9871143843747726\"\n    },\n    {\n        \"askPrice\": \"33.09\",\n        \"bidPrice\": \"32.96\",\n        \"closeTime\": 1631776434837,\n        \"count\": 1273,\n        \"firstId\": 2609855,\n        \"highPrice\": \"33.22\",\n        \"lastId\": 2611147,\n        \"lastPrice\": \"32.96\",\n        \"lastQty\": \"64\",\n        \"lowPrice\": \"32.93\",\n        \"openPrice\": \"33.06\",\n        \"openTime\": 1631690117405,\n        \"prevClosePrice\": \"33.05\",\n        \"priceChange\": \"-0.07\",\n        \"priceChangePercent\": \"-0.211800302571860817\",\n        \"quoteVolume\": \"18984779.5102\",\n        \"symbol\": \"usdt_thb\",\n        \"volume\": \"574137.89\",\n        \"weightedAvgPrice\": \"33.0665852939961862\"\n    },\n    {\n        \"askPrice\": \"1600786.9\",\n        \"bidPrice\": \"1600008.57\",\n        \"closeTime\": 1631776456572,\n        \"count\": 833,\n        \"firstId\": 1974651,\n        \"highPrice\": \"1600088.88\",\n        \"lastId\": 1975483,\n        \"lastPrice\": \"1600008.57\",\n        \"lastQty\": \"0.0018\",\n        \"lowPrice\": \"1550010.1\",\n        \"openPrice\": \"1550011.23\",\n        \"openTime\": 1631690393754,\n        \"prevClosePrice\": \"1550010.1\",\n        \"priceChange\": \"49998.47\",\n        \"priceChangePercent\": \"3.22568672294458\",\n        \"quoteVolume\": \"11938786.844147\",\n        \"symbol\": \"btc_thb\",\n        \"volume\": \"7.55726\",\n        \"weightedAvgPrice\": \"1579777.173757023048\"\n    },\n    {\n        \"askPrice\": \"120000\",\n        \"bidPrice\": \"119555.7\",\n        \"closeTime\": 1631776270812,\n        \"count\": 904,\n        \"firstId\": 2093014,\n        \"highPrice\": \"121444\",\n        \"lastId\": 2093914,\n        \"lastPrice\": \"120000\",\n        \"lastQty\": \"0.0812\",\n        \"lowPrice\": \"111220\",\n        \"openPrice\": \"112013.52\",\n        \"openTime\": 1631691088448,\n        \"prevClosePrice\": \"111600\",\n        \"priceChange\": \"8400\",\n        \"priceChangePercent\": \"7.52688172043011\",\n        \"quoteVolume\": \"8915181.694645\",\n        \"symbol\": \"eth_thb\",\n        \"volume\": \"76.4576\",\n        \"weightedAvgPrice\": \"116602.949800216067\"\n    }\n]"}],"_postman_id":"2ecb675a-3309-48bc-b471-ffd8ac555692"},{"name":"Get aggregate trade","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"d91aaf0b-d461-4d71-b73e-477795ac25b9"}}],"id":"a137696a-a276-4e97-9662-03811179f5c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://www.orbixtrade.com/api/v3/aggTrades?symbol=sol_thb","urlObject":{"path":["v3","aggTrades"],"host":["https://www.orbixtrade.com/api"],"query":[{"description":{"content":"<p>A pair symbol, such as 'btc_thb', 'eth_thb'</p>\n","type":"text/plain"},"key":"symbol","value":"sol_thb"},{"disabled":true,"description":{"content":"<p>optional, ID to get aggregate trades from.</p>\n","type":"text/plain"},"key":"fromId","value":""},{"disabled":true,"description":{"content":"<p>optional, Timestamp in ms to get aggregate trades from.</p>\n","type":"text/plain"},"key":"startTime","value":""},{"disabled":true,"description":{"content":"<p>optional, Timestamp in ms to get aggregate trades until.</p>\n","type":"text/plain"},"key":"endTime","value":""},{"disabled":true,"description":{"content":"<p>optional, Maximum number of results (default 500, max 1000)</p>\n","type":"text/plain"},"key":"limit","value":""}],"variable":[]}},"response":[{"id":"19b3f149-94e5-4122-b3b9-2f36e305dd51","name":"OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/v3/aggTrades?symbol=sol_thb","host":["{{BASE_URL}}"],"path":["api","v3","aggTrades"],"query":[{"key":"symbol","value":"sol_thb","description":"A pair symbol, such as 'btc_thb', 'eth_thb'"},{"key":"fromId","value":null,"description":"optional, ID to get aggregate trades from.","disabled":true},{"key":"startTime","value":null,"description":"optional, Timestamp in ms to get aggregate trades from.","disabled":true},{"key":"endTime","value":null,"description":"optional, Timestamp in ms to get aggregate trades until.","disabled":true},{"key":"limit","value":null,"description":"optional, Maximum number of results (default 500, max 1000)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:22:08 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yJ3uulbtzKGnx7fBNlkLmTCwMPZjmvQrbNALdG%2F1DbOPOCZBCOmuNLlWoPP3JFYaaqZeFU1wWWU7HVoVmII2frUNX2cftQ7AYcsQ0%2BbtzC0d5C0CxhzwsLU5r9FyYv0e\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f857883a536b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"a\": 37117,\n        \"p\": \"5270\",\n        \"q\": \"0.593\",\n        \"f\": 37117,\n        \"l\": 37117,\n        \"T\": 1631720060675,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37118,\n        \"p\": \"5276.28\",\n        \"q\": \"0.657\",\n        \"f\": 37118,\n        \"l\": 37118,\n        \"T\": 1631720060675,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37119,\n        \"p\": \"5276.28\",\n        \"q\": \"0.193\",\n        \"f\": 37119,\n        \"l\": 37119,\n        \"T\": 1631720065149,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37120,\n        \"p\": \"5282\",\n        \"q\": \"1.08\",\n        \"f\": 37120,\n        \"l\": 37120,\n        \"T\": 1631720065149,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37121,\n        \"p\": \"5298\",\n        \"q\": \"0.597\",\n        \"f\": 37121,\n        \"l\": 37121,\n        \"T\": 1631720065149,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37122,\n        \"p\": \"5276.6\",\n        \"q\": \"1.02\",\n        \"f\": 37122,\n        \"l\": 37122,\n        \"T\": 1631720108150,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37123,\n        \"p\": \"5298\",\n        \"q\": \"0.85\",\n        \"f\": 37123,\n        \"l\": 37123,\n        \"T\": 1631720108150,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37124,\n        \"p\": \"5289.1\",\n        \"q\": \"1.06\",\n        \"f\": 37124,\n        \"l\": 37124,\n        \"T\": 1631720288481,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37125,\n        \"p\": \"5298\",\n        \"q\": \"0.553\",\n        \"f\": 37125,\n        \"l\": 37125,\n        \"T\": 1631720288481,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37126,\n        \"p\": \"5300\",\n        \"q\": \"2.164\",\n        \"f\": 37126,\n        \"l\": 37126,\n        \"T\": 1631720288481,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37127,\n        \"p\": \"5301.51\",\n        \"q\": \"0.563\",\n        \"f\": 37127,\n        \"l\": 37127,\n        \"T\": 1631720288481,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37128,\n        \"p\": \"5301.51\",\n        \"q\": \"0.282\",\n        \"f\": 37128,\n        \"l\": 37128,\n        \"T\": 1631720312128,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37129,\n        \"p\": \"5300\",\n        \"q\": \"0.043\",\n        \"f\": 37129,\n        \"l\": 37129,\n        \"T\": 1631720670990,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37130,\n        \"p\": \"5301.51\",\n        \"q\": \"0.275\",\n        \"f\": 37130,\n        \"l\": 37130,\n        \"T\": 1631720797684,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37131,\n        \"p\": \"5310\",\n        \"q\": \"1\",\n        \"f\": 37131,\n        \"l\": 37131,\n        \"T\": 1631720921162,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37132,\n        \"p\": \"5310\",\n        \"q\": \"0.495\",\n        \"f\": 37132,\n        \"l\": 37132,\n        \"T\": 1631720921162,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37133,\n        \"p\": \"5310\",\n        \"q\": \"0.01\",\n        \"f\": 37133,\n        \"l\": 37133,\n        \"T\": 1631721158653,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37134,\n        \"p\": \"5310\",\n        \"q\": \"0.614\",\n        \"f\": 37134,\n        \"l\": 37134,\n        \"T\": 1631721193700,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37135,\n        \"p\": \"5310\",\n        \"q\": \"3.229\",\n        \"f\": 37135,\n        \"l\": 37135,\n        \"T\": 1631721193700,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37136,\n        \"p\": \"5300\",\n        \"q\": \"0.209\",\n        \"f\": 37136,\n        \"l\": 37136,\n        \"T\": 1631721488435,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37137,\n        \"p\": \"5300\",\n        \"q\": \"0.562\",\n        \"f\": 37137,\n        \"l\": 37137,\n        \"T\": 1631721488435,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37138,\n        \"p\": \"5312.56\",\n        \"q\": \"0.019\",\n        \"f\": 37138,\n        \"l\": 37138,\n        \"T\": 1631721634786,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37139,\n        \"p\": \"5312.56\",\n        \"q\": \"0.875\",\n        \"f\": 37139,\n        \"l\": 37139,\n        \"T\": 1631721732897,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37140,\n        \"p\": \"5321.75\",\n        \"q\": \"1.19\",\n        \"f\": 37140,\n        \"l\": 37140,\n        \"T\": 1631722456720,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37141,\n        \"p\": \"5325.33\",\n        \"q\": \"0.66\",\n        \"f\": 37141,\n        \"l\": 37141,\n        \"T\": 1631722456720,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37142,\n        \"p\": \"5325.33\",\n        \"q\": \"0.259\",\n        \"f\": 37142,\n        \"l\": 37142,\n        \"T\": 1631722562803,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37143,\n        \"p\": \"5340\",\n        \"q\": \"0.971\",\n        \"f\": 37143,\n        \"l\": 37143,\n        \"T\": 1631722562803,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37144,\n        \"p\": \"5340\",\n        \"q\": \"1.029\",\n        \"f\": 37144,\n        \"l\": 37144,\n        \"T\": 1631722570546,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37145,\n        \"p\": \"5345\",\n        \"q\": \"0.03\",\n        \"f\": 37145,\n        \"l\": 37145,\n        \"T\": 1631722570546,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37146,\n        \"p\": \"5350\",\n        \"q\": \"0.171\",\n        \"f\": 37146,\n        \"l\": 37146,\n        \"T\": 1631722570546,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37147,\n        \"p\": \"5350\",\n        \"q\": \"1\",\n        \"f\": 37147,\n        \"l\": 37147,\n        \"T\": 1631722583273,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37148,\n        \"p\": \"5312.56\",\n        \"q\": \"0.605\",\n        \"f\": 37148,\n        \"l\": 37148,\n        \"T\": 1631722585524,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37149,\n        \"p\": \"5312.56\",\n        \"q\": \"0.06\",\n        \"f\": 37149,\n        \"l\": 37149,\n        \"T\": 1631722599951,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37150,\n        \"p\": \"5312.56\",\n        \"q\": \"0.007\",\n        \"f\": 37150,\n        \"l\": 37150,\n        \"T\": 1631722600020,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37151,\n        \"p\": \"5330.91\",\n        \"q\": \"1.08\",\n        \"f\": 37151,\n        \"l\": 37151,\n        \"T\": 1631722600020,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37152,\n        \"p\": \"5350\",\n        \"q\": \"0.143\",\n        \"f\": 37152,\n        \"l\": 37152,\n        \"T\": 1631722600020,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37153,\n        \"p\": \"5333.57\",\n        \"q\": \"1.19\",\n        \"f\": 37153,\n        \"l\": 37153,\n        \"T\": 1631722659600,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37154,\n        \"p\": \"5350\",\n        \"q\": \"0.04\",\n        \"f\": 37154,\n        \"l\": 37154,\n        \"T\": 1631722659600,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37155,\n        \"p\": \"5341.48\",\n        \"q\": \"0.94\",\n        \"f\": 37155,\n        \"l\": 37155,\n        \"T\": 1631722684410,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37156,\n        \"p\": \"5350\",\n        \"q\": \"0.062\",\n        \"f\": 37156,\n        \"l\": 37156,\n        \"T\": 1631722684410,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37157,\n        \"p\": \"5358.81\",\n        \"q\": \"0.838\",\n        \"f\": 37157,\n        \"l\": 37157,\n        \"T\": 1631722684410,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37158,\n        \"p\": \"5358.81\",\n        \"q\": \"0.302\",\n        \"f\": 37158,\n        \"l\": 37158,\n        \"T\": 1631722703793,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37159,\n        \"p\": \"5375.88\",\n        \"q\": \"1.05\",\n        \"f\": 37159,\n        \"l\": 37159,\n        \"T\": 1631722703793,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37160,\n        \"p\": \"5380\",\n        \"q\": \"3.178\",\n        \"f\": 37160,\n        \"l\": 37160,\n        \"T\": 1631722703793,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37161,\n        \"p\": \"5380\",\n        \"q\": \"0.059\",\n        \"f\": 37161,\n        \"l\": 37161,\n        \"T\": 1631722714228,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37162,\n        \"p\": \"5390\",\n        \"q\": \"2\",\n        \"f\": 37162,\n        \"l\": 37162,\n        \"T\": 1631722742491,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37163,\n        \"p\": \"5394.99\",\n        \"q\": \"1.01\",\n        \"f\": 37163,\n        \"l\": 37163,\n        \"T\": 1631722742491,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37164,\n        \"p\": \"5395\",\n        \"q\": \"1.985\",\n        \"f\": 37164,\n        \"l\": 37164,\n        \"T\": 1631722742491,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37165,\n        \"p\": \"5383.83\",\n        \"q\": \"1.02\",\n        \"f\": 37165,\n        \"l\": 37165,\n        \"T\": 1631722776744,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37166,\n        \"p\": \"5395\",\n        \"q\": \"0.163\",\n        \"f\": 37166,\n        \"l\": 37166,\n        \"T\": 1631722778717,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37167,\n        \"p\": \"5395\",\n        \"q\": \"0.252\",\n        \"f\": 37167,\n        \"l\": 37167,\n        \"T\": 1631723297352,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37168,\n        \"p\": \"5395.1\",\n        \"q\": \"0.767\",\n        \"f\": 37168,\n        \"l\": 37168,\n        \"T\": 1631723297352,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37169,\n        \"p\": \"5395\",\n        \"q\": \"1\",\n        \"f\": 37169,\n        \"l\": 37169,\n        \"T\": 1631723423036,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37170,\n        \"p\": \"5395.1\",\n        \"q\": \"0.956\",\n        \"f\": 37170,\n        \"l\": 37170,\n        \"T\": 1631723423036,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37171,\n        \"p\": \"5395.1\",\n        \"q\": \"0.462\",\n        \"f\": 37171,\n        \"l\": 37171,\n        \"T\": 1631723434176,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37172,\n        \"p\": \"5395.1\",\n        \"q\": \"1.34\",\n        \"f\": 37172,\n        \"l\": 37172,\n        \"T\": 1631723710691,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37173,\n        \"p\": \"5390\",\n        \"q\": \"1\",\n        \"f\": 37173,\n        \"l\": 37173,\n        \"T\": 1631723973470,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37174,\n        \"p\": \"5390\",\n        \"q\": \"0.03\",\n        \"f\": 37174,\n        \"l\": 37174,\n        \"T\": 1631723992434,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37175,\n        \"p\": \"5380\",\n        \"q\": \"0.703\",\n        \"f\": 37175,\n        \"l\": 37175,\n        \"T\": 1631723994108,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37176,\n        \"p\": \"5380\",\n        \"q\": \"0.797\",\n        \"f\": 37176,\n        \"l\": 37176,\n        \"T\": 1631723994108,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37177,\n        \"p\": \"5380\",\n        \"q\": \"0.171\",\n        \"f\": 37177,\n        \"l\": 37177,\n        \"T\": 1631723998358,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37178,\n        \"p\": \"5380\",\n        \"q\": \"0.886\",\n        \"f\": 37178,\n        \"l\": 37178,\n        \"T\": 1631724073373,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37179,\n        \"p\": \"5379.79\",\n        \"q\": \"0.948\",\n        \"f\": 37179,\n        \"l\": 37179,\n        \"T\": 1631724122478,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37180,\n        \"p\": \"5379.79\",\n        \"q\": \"0.062\",\n        \"f\": 37180,\n        \"l\": 37180,\n        \"T\": 1631724127623,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37181,\n        \"p\": \"5379.79\",\n        \"q\": \"0.807\",\n        \"f\": 37181,\n        \"l\": 37181,\n        \"T\": 1631724171480,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37182,\n        \"p\": \"5382\",\n        \"q\": \"1.03\",\n        \"f\": 37182,\n        \"l\": 37182,\n        \"T\": 1631724171480,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37183,\n        \"p\": \"5395.1\",\n        \"q\": \"11.331\",\n        \"f\": 37183,\n        \"l\": 37183,\n        \"T\": 1631724171480,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37184,\n        \"p\": \"5399\",\n        \"q\": \"3.713\",\n        \"f\": 37184,\n        \"l\": 37184,\n        \"T\": 1631724295652,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37185,\n        \"p\": \"5399\",\n        \"q\": \"1.136\",\n        \"f\": 37185,\n        \"l\": 37185,\n        \"T\": 1631724353617,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37186,\n        \"p\": \"5411.65\",\n        \"q\": \"0.99\",\n        \"f\": 37186,\n        \"l\": 37186,\n        \"T\": 1631724503458,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37187,\n        \"p\": \"5420\",\n        \"q\": \"1\",\n        \"f\": 37187,\n        \"l\": 37187,\n        \"T\": 1631724503458,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37188,\n        \"p\": \"5420\",\n        \"q\": \"0.593\",\n        \"f\": 37188,\n        \"l\": 37188,\n        \"T\": 1631724503458,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37189,\n        \"p\": \"5420\",\n        \"q\": \"3.08\",\n        \"f\": 37189,\n        \"l\": 37189,\n        \"T\": 1631724507249,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37190,\n        \"p\": \"5420\",\n        \"q\": \"3.08\",\n        \"f\": 37190,\n        \"l\": 37190,\n        \"T\": 1631724511489,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37191,\n        \"p\": \"5420\",\n        \"q\": \"6.15\",\n        \"f\": 37191,\n        \"l\": 37191,\n        \"T\": 1631724516503,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37192,\n        \"p\": \"5420\",\n        \"q\": \"0.067\",\n        \"f\": 37192,\n        \"l\": 37192,\n        \"T\": 1631724553572,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37193,\n        \"p\": \"5420\",\n        \"q\": \"0.211\",\n        \"f\": 37193,\n        \"l\": 37193,\n        \"T\": 1631724584005,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37194,\n        \"p\": \"5420\",\n        \"q\": \"1.01\",\n        \"f\": 37194,\n        \"l\": 37194,\n        \"T\": 1631724586653,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37195,\n        \"p\": \"5420\",\n        \"q\": \"0.859\",\n        \"f\": 37195,\n        \"l\": 37195,\n        \"T\": 1631724587076,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37196,\n        \"p\": \"5379.05\",\n        \"q\": \"0.991\",\n        \"f\": 37196,\n        \"l\": 37196,\n        \"T\": 1631724587076,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37197,\n        \"p\": \"5379.05\",\n        \"q\": \"0.018\",\n        \"f\": 37197,\n        \"l\": 37197,\n        \"T\": 1631724617294,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37198,\n        \"p\": \"5379.05\",\n        \"q\": \"0.141\",\n        \"f\": 37198,\n        \"l\": 37198,\n        \"T\": 1631725013223,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37199,\n        \"p\": \"5349.52\",\n        \"q\": \"1.03\",\n        \"f\": 37199,\n        \"l\": 37199,\n        \"T\": 1631725013223,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37200,\n        \"p\": \"5321.99\",\n        \"q\": \"0.719\",\n        \"f\": 37200,\n        \"l\": 37200,\n        \"T\": 1631725013223,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37201,\n        \"p\": \"5347.96\",\n        \"q\": \"0.375\",\n        \"f\": 37201,\n        \"l\": 37201,\n        \"T\": 1631725193156,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37202,\n        \"p\": \"5347.96\",\n        \"q\": \"0.019\",\n        \"f\": 37202,\n        \"l\": 37202,\n        \"T\": 1631725306432,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37203,\n        \"p\": \"5347.96\",\n        \"q\": \"0.616\",\n        \"f\": 37203,\n        \"l\": 37203,\n        \"T\": 1631725813975,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37204,\n        \"p\": \"5347.96\",\n        \"q\": \"1.464\",\n        \"f\": 37204,\n        \"l\": 37204,\n        \"T\": 1631725813975,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37205,\n        \"p\": \"5372.99\",\n        \"q\": \"1.12\",\n        \"f\": 37205,\n        \"l\": 37205,\n        \"T\": 1631726137069,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37206,\n        \"p\": \"5372.99\",\n        \"q\": \"0.018\",\n        \"f\": 37206,\n        \"l\": 37206,\n        \"T\": 1631726146199,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37207,\n        \"p\": \"5411.14\",\n        \"q\": \"0.307\",\n        \"f\": 37207,\n        \"l\": 37207,\n        \"T\": 1631726393716,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37208,\n        \"p\": \"5411.14\",\n        \"q\": \"0.863\",\n        \"f\": 37208,\n        \"l\": 37208,\n        \"T\": 1631728879266,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37209,\n        \"p\": \"5411.14\",\n        \"q\": \"0.061\",\n        \"f\": 37209,\n        \"l\": 37209,\n        \"T\": 1631728879266,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37210,\n        \"p\": \"5375.27\",\n        \"q\": \"0.62\",\n        \"f\": 37210,\n        \"l\": 37210,\n        \"T\": 1631729235911,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37211,\n        \"p\": \"5375.27\",\n        \"q\": \"0.44\",\n        \"f\": 37211,\n        \"l\": 37211,\n        \"T\": 1631729244348,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37212,\n        \"p\": \"5372.99\",\n        \"q\": \"2.36\",\n        \"f\": 37212,\n        \"l\": 37212,\n        \"T\": 1631729244348,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37213,\n        \"p\": \"5380.45\",\n        \"q\": \"0.62\",\n        \"f\": 37213,\n        \"l\": 37213,\n        \"T\": 1631729276166,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37214,\n        \"p\": \"5380.45\",\n        \"q\": \"0.46\",\n        \"f\": 37214,\n        \"l\": 37214,\n        \"T\": 1631729279853,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37215,\n        \"p\": \"5372.99\",\n        \"q\": \"0.16\",\n        \"f\": 37215,\n        \"l\": 37215,\n        \"T\": 1631729279853,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37216,\n        \"p\": \"5372.99\",\n        \"q\": \"0.342\",\n        \"f\": 37216,\n        \"l\": 37216,\n        \"T\": 1631729324022,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37217,\n        \"p\": \"5368.22\",\n        \"q\": \"1.04\",\n        \"f\": 37217,\n        \"l\": 37217,\n        \"T\": 1631729324022,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37218,\n        \"p\": \"5365\",\n        \"q\": \"0.744\",\n        \"f\": 37218,\n        \"l\": 37218,\n        \"T\": 1631729324022,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37219,\n        \"p\": \"5351.43\",\n        \"q\": \"0.984\",\n        \"f\": 37219,\n        \"l\": 37219,\n        \"T\": 1631729324022,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37220,\n        \"p\": \"5351.43\",\n        \"q\": \"0.156\",\n        \"f\": 37220,\n        \"l\": 37220,\n        \"T\": 1631729567951,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37221,\n        \"p\": \"5350\",\n        \"q\": \"0.372\",\n        \"f\": 37221,\n        \"l\": 37221,\n        \"T\": 1631729567951,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37222,\n        \"p\": \"5347.96\",\n        \"q\": \"0.428\",\n        \"f\": 37222,\n        \"l\": 37222,\n        \"T\": 1631729567951,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37223,\n        \"p\": \"5347.96\",\n        \"q\": \"0.914\",\n        \"f\": 37223,\n        \"l\": 37223,\n        \"T\": 1631729567951,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37224,\n        \"p\": \"5361.83\",\n        \"q\": \"1\",\n        \"f\": 37224,\n        \"l\": 37224,\n        \"T\": 1631729710591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37225,\n        \"p\": \"5361.83\",\n        \"q\": \"0.018\",\n        \"f\": 37225,\n        \"l\": 37225,\n        \"T\": 1631730023956,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37226,\n        \"p\": \"5361.83\",\n        \"q\": \"0.072\",\n        \"f\": 37226,\n        \"l\": 37226,\n        \"T\": 1631732355733,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37227,\n        \"p\": \"5350\",\n        \"q\": \"0.928\",\n        \"f\": 37227,\n        \"l\": 37227,\n        \"T\": 1631732374422,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37228,\n        \"p\": \"5347.96\",\n        \"q\": \"0.206\",\n        \"f\": 37228,\n        \"l\": 37228,\n        \"T\": 1631732414910,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37229,\n        \"p\": \"5355.64\",\n        \"q\": \"1.062\",\n        \"f\": 37229,\n        \"l\": 37229,\n        \"T\": 1631732471498,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37230,\n        \"p\": \"5355.64\",\n        \"q\": \"0.058\",\n        \"f\": 37230,\n        \"l\": 37230,\n        \"T\": 1631732521158,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37231,\n        \"p\": \"5321.99\",\n        \"q\": \"0.661\",\n        \"f\": 37231,\n        \"l\": 37231,\n        \"T\": 1631732536022,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37232,\n        \"p\": \"5308.62\",\n        \"q\": \"0.281\",\n        \"f\": 37232,\n        \"l\": 37232,\n        \"T\": 1631732545075,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37233,\n        \"p\": \"5327.8\",\n        \"q\": \"1.03\",\n        \"f\": 37233,\n        \"l\": 37233,\n        \"T\": 1631733055405,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37234,\n        \"p\": \"5308.62\",\n        \"q\": \"1.599\",\n        \"f\": 37234,\n        \"l\": 37234,\n        \"T\": 1631733055405,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37235,\n        \"p\": \"5308.6\",\n        \"q\": \"1.15\",\n        \"f\": 37235,\n        \"l\": 37235,\n        \"T\": 1631733055405,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37236,\n        \"p\": \"5300\",\n        \"q\": \"0.973\",\n        \"f\": 37236,\n        \"l\": 37236,\n        \"T\": 1631733055405,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37237,\n        \"p\": \"5317.78\",\n        \"q\": \"0.06\",\n        \"f\": 37237,\n        \"l\": 37237,\n        \"T\": 1631733557537,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37238,\n        \"p\": \"5317.78\",\n        \"q\": \"0.024\",\n        \"f\": 37238,\n        \"l\": 37238,\n        \"T\": 1631734744955,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37239,\n        \"p\": \"5342.26\",\n        \"q\": \"1.03\",\n        \"f\": 37239,\n        \"l\": 37239,\n        \"T\": 1631734950036,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37240,\n        \"p\": \"5362.45\",\n        \"q\": \"0.41\",\n        \"f\": 37240,\n        \"l\": 37240,\n        \"T\": 1631734950036,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37241,\n        \"p\": \"5362.45\",\n        \"q\": \"0.74\",\n        \"f\": 37241,\n        \"l\": 37241,\n        \"T\": 1631735415440,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37242,\n        \"p\": \"5386.71\",\n        \"q\": \"0.156\",\n        \"f\": 37242,\n        \"l\": 37242,\n        \"T\": 1631735884206,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37243,\n        \"p\": \"5386.71\",\n        \"q\": \"0.914\",\n        \"f\": 37243,\n        \"l\": 37243,\n        \"T\": 1631736068910,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37244,\n        \"p\": \"5386.71\",\n        \"q\": \"0.456\",\n        \"f\": 37244,\n        \"l\": 37244,\n        \"T\": 1631736112665,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37245,\n        \"p\": \"5363.27\",\n        \"q\": \"1.16\",\n        \"f\": 37245,\n        \"l\": 37245,\n        \"T\": 1631736822234,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37246,\n        \"p\": \"5317.78\",\n        \"q\": \"0.09\",\n        \"f\": 37246,\n        \"l\": 37246,\n        \"T\": 1631736822234,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37247,\n        \"p\": \"5366.61\",\n        \"q\": \"1.14\",\n        \"f\": 37247,\n        \"l\": 37247,\n        \"T\": 1631736827000,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37248,\n        \"p\": \"5317.78\",\n        \"q\": \"0.11\",\n        \"f\": 37248,\n        \"l\": 37248,\n        \"T\": 1631736827000,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37249,\n        \"p\": \"5334.58\",\n        \"q\": \"0.63\",\n        \"f\": 37249,\n        \"l\": 37249,\n        \"T\": 1631737285444,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37250,\n        \"p\": \"5334.58\",\n        \"q\": \"0.37\",\n        \"f\": 37250,\n        \"l\": 37250,\n        \"T\": 1631737331346,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37251,\n        \"p\": \"5317.78\",\n        \"q\": \"0.174\",\n        \"f\": 37251,\n        \"l\": 37251,\n        \"T\": 1631737385082,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37252,\n        \"p\": \"5317.78\",\n        \"q\": \"0.612\",\n        \"f\": 37252,\n        \"l\": 37252,\n        \"T\": 1631737579210,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37253,\n        \"p\": \"5300\",\n        \"q\": \"0.239\",\n        \"f\": 37253,\n        \"l\": 37253,\n        \"T\": 1631737614278,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37254,\n        \"p\": \"5300\",\n        \"q\": \"2\",\n        \"f\": 37254,\n        \"l\": 37254,\n        \"T\": 1631737614278,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37255,\n        \"p\": \"5321.5\",\n        \"q\": \"1.02\",\n        \"f\": 37255,\n        \"l\": 37255,\n        \"T\": 1631737773856,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37256,\n        \"p\": \"5288.96\",\n        \"q\": \"0.156\",\n        \"f\": 37256,\n        \"l\": 37256,\n        \"T\": 1631737884788,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37257,\n        \"p\": \"5288.96\",\n        \"q\": \"1.034\",\n        \"f\": 37257,\n        \"l\": 37257,\n        \"T\": 1631739338640,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37258,\n        \"p\": \"5280\",\n        \"q\": \"0.19\",\n        \"f\": 37258,\n        \"l\": 37258,\n        \"T\": 1631739338640,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37259,\n        \"p\": \"5274.57\",\n        \"q\": \"0.676\",\n        \"f\": 37259,\n        \"l\": 37259,\n        \"T\": 1631739338640,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37260,\n        \"p\": \"5296.91\",\n        \"q\": \"1.06\",\n        \"f\": 37260,\n        \"l\": 37260,\n        \"T\": 1631739551046,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37261,\n        \"p\": \"5274.57\",\n        \"q\": \"0.454\",\n        \"f\": 37261,\n        \"l\": 37261,\n        \"T\": 1631739551046,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37262,\n        \"p\": \"5248.41\",\n        \"q\": \"0.386\",\n        \"f\": 37262,\n        \"l\": 37262,\n        \"T\": 1631739551046,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37263,\n        \"p\": \"5300\",\n        \"q\": \"1.886\",\n        \"f\": 37263,\n        \"l\": 37263,\n        \"T\": 1631741332058,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37264,\n        \"p\": \"5290\",\n        \"q\": \"0.004\",\n        \"f\": 37264,\n        \"l\": 37264,\n        \"T\": 1631741332058,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37265,\n        \"p\": \"5290\",\n        \"q\": \"1.886\",\n        \"f\": 37265,\n        \"l\": 37265,\n        \"T\": 1631741469954,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37266,\n        \"p\": \"5280\",\n        \"q\": \"1.274\",\n        \"f\": 37266,\n        \"l\": 37266,\n        \"T\": 1631741469954,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37267,\n        \"p\": \"5307.42\",\n        \"q\": \"1\",\n        \"f\": 37267,\n        \"l\": 37267,\n        \"T\": 1631743681628,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37268,\n        \"p\": \"5307.42\",\n        \"q\": \"0.05\",\n        \"f\": 37268,\n        \"l\": 37268,\n        \"T\": 1631743711552,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37269,\n        \"p\": \"5317.42\",\n        \"q\": \"0.95\",\n        \"f\": 37269,\n        \"l\": 37269,\n        \"T\": 1631743711552,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37270,\n        \"p\": \"5317.42\",\n        \"q\": \"0.07\",\n        \"f\": 37270,\n        \"l\": 37270,\n        \"T\": 1631743746775,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37271,\n        \"p\": \"5333.29\",\n        \"q\": \"0.93\",\n        \"f\": 37271,\n        \"l\": 37271,\n        \"T\": 1631743746775,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37272,\n        \"p\": \"5313.91\",\n        \"q\": \"1\",\n        \"f\": 37272,\n        \"l\": 37272,\n        \"T\": 1631743883719,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37273,\n        \"p\": \"5313.91\",\n        \"q\": \"0.01\",\n        \"f\": 37273,\n        \"l\": 37273,\n        \"T\": 1631744289129,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37274,\n        \"p\": \"5313\",\n        \"q\": \"4.42\",\n        \"f\": 37274,\n        \"l\": 37274,\n        \"T\": 1631744513977,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37275,\n        \"p\": \"5313\",\n        \"q\": \"0.933\",\n        \"f\": 37275,\n        \"l\": 37275,\n        \"T\": 1631744514981,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37276,\n        \"p\": \"5280\",\n        \"q\": \"0.619\",\n        \"f\": 37276,\n        \"l\": 37276,\n        \"T\": 1631744926752,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37277,\n        \"p\": \"5278.17\",\n        \"q\": \"1.11\",\n        \"f\": 37277,\n        \"l\": 37277,\n        \"T\": 1631744926752,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37278,\n        \"p\": \"5248.41\",\n        \"q\": \"0.171\",\n        \"f\": 37278,\n        \"l\": 37278,\n        \"T\": 1631744926752,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37279,\n        \"p\": \"5262.01\",\n        \"q\": \"1.05\",\n        \"f\": 37279,\n        \"l\": 37279,\n        \"T\": 1631745013916,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37280,\n        \"p\": \"5248.41\",\n        \"q\": \"0.22\",\n        \"f\": 37280,\n        \"l\": 37280,\n        \"T\": 1631745013916,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37281,\n        \"p\": \"5248.41\",\n        \"q\": \"0.044\",\n        \"f\": 37281,\n        \"l\": 37281,\n        \"T\": 1631745455815,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37282,\n        \"p\": \"5240\",\n        \"q\": \"0.07\",\n        \"f\": 37282,\n        \"l\": 37282,\n        \"T\": 1631745608629,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37283,\n        \"p\": \"5240\",\n        \"q\": \"0.019\",\n        \"f\": 37283,\n        \"l\": 37283,\n        \"T\": 1631745608629,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37284,\n        \"p\": \"5231\",\n        \"q\": \"2\",\n        \"f\": 37284,\n        \"l\": 37284,\n        \"T\": 1631745608629,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37285,\n        \"p\": \"5230\",\n        \"q\": \"1.101\",\n        \"f\": 37285,\n        \"l\": 37285,\n        \"T\": 1631745608629,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37286,\n        \"p\": \"5230\",\n        \"q\": \"0.899\",\n        \"f\": 37286,\n        \"l\": 37286,\n        \"T\": 1631745614106,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37287,\n        \"p\": \"5230\",\n        \"q\": \"0.4\",\n        \"f\": 37287,\n        \"l\": 37287,\n        \"T\": 1631745614106,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37288,\n        \"p\": \"5230\",\n        \"q\": \"0.19\",\n        \"f\": 37288,\n        \"l\": 37288,\n        \"T\": 1631745614106,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37289,\n        \"p\": \"5222.99\",\n        \"q\": \"1.2\",\n        \"f\": 37289,\n        \"l\": 37289,\n        \"T\": 1631745614106,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37290,\n        \"p\": \"5222.99\",\n        \"q\": \"0.501\",\n        \"f\": 37290,\n        \"l\": 37290,\n        \"T\": 1631745614106,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37291,\n        \"p\": \"5222.99\",\n        \"q\": \"0.197\",\n        \"f\": 37291,\n        \"l\": 37291,\n        \"T\": 1631745621871,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37292,\n        \"p\": \"5222\",\n        \"q\": \"0.191\",\n        \"f\": 37292,\n        \"l\": 37292,\n        \"T\": 1631745621871,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37293,\n        \"p\": \"5210\",\n        \"q\": \"0.252\",\n        \"f\": 37293,\n        \"l\": 37293,\n        \"T\": 1631745621871,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37294,\n        \"p\": \"5216.49\",\n        \"q\": \"0.046\",\n        \"f\": 37294,\n        \"l\": 37294,\n        \"T\": 1631745674393,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37295,\n        \"p\": \"5216.49\",\n        \"q\": \"0.64\",\n        \"f\": 37295,\n        \"l\": 37295,\n        \"T\": 1631745723753,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37296,\n        \"p\": \"5216.49\",\n        \"q\": \"0.234\",\n        \"f\": 37296,\n        \"l\": 37296,\n        \"T\": 1631745756057,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37297,\n        \"p\": \"5210\",\n        \"q\": \"0.406\",\n        \"f\": 37297,\n        \"l\": 37297,\n        \"T\": 1631745756057,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37298,\n        \"p\": \"5210\",\n        \"q\": \"3.172\",\n        \"f\": 37298,\n        \"l\": 37298,\n        \"T\": 1631745760050,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37299,\n        \"p\": \"5205\",\n        \"q\": \"0.028\",\n        \"f\": 37299,\n        \"l\": 37299,\n        \"T\": 1631745760050,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37300,\n        \"p\": \"5220.43\",\n        \"q\": \"0.64\",\n        \"f\": 37300,\n        \"l\": 37300,\n        \"T\": 1631745809078,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37301,\n        \"p\": \"5220.43\",\n        \"q\": \"0.54\",\n        \"f\": 37301,\n        \"l\": 37301,\n        \"T\": 1631745825688,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37302,\n        \"p\": \"5205\",\n        \"q\": \"0.1\",\n        \"f\": 37302,\n        \"l\": 37302,\n        \"T\": 1631745825688,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37303,\n        \"p\": \"5205.39\",\n        \"q\": \"1.012\",\n        \"f\": 37303,\n        \"l\": 37303,\n        \"T\": 1631746076090,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37304,\n        \"p\": \"5205.39\",\n        \"q\": \"0.128\",\n        \"f\": 37304,\n        \"l\": 37304,\n        \"T\": 1631746390386,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37305,\n        \"p\": \"5205\",\n        \"q\": \"1.872\",\n        \"f\": 37305,\n        \"l\": 37305,\n        \"T\": 1631746390386,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37306,\n        \"p\": \"5205\",\n        \"q\": \"0.472\",\n        \"f\": 37306,\n        \"l\": 37306,\n        \"T\": 1631746954852,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37307,\n        \"p\": \"5205\",\n        \"q\": \"1.718\",\n        \"f\": 37307,\n        \"l\": 37307,\n        \"T\": 1631747085788,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37308,\n        \"p\": \"5212.79\",\n        \"q\": \"1\",\n        \"f\": 37308,\n        \"l\": 37308,\n        \"T\": 1631747305470,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37309,\n        \"p\": \"5212.79\",\n        \"q\": \"0.14\",\n        \"f\": 37309,\n        \"l\": 37309,\n        \"T\": 1631747418298,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37310,\n        \"p\": \"5246.42\",\n        \"q\": \"1.07\",\n        \"f\": 37310,\n        \"l\": 37310,\n        \"T\": 1631747418298,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37311,\n        \"p\": \"5260.24\",\n        \"q\": \"1.02\",\n        \"f\": 37311,\n        \"l\": 37311,\n        \"T\": 1631747501376,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37312,\n        \"p\": \"5246.42\",\n        \"q\": \"0.24\",\n        \"f\": 37312,\n        \"l\": 37312,\n        \"T\": 1631747641131,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37313,\n        \"p\": \"5255.47\",\n        \"q\": \"0.07\",\n        \"f\": 37313,\n        \"l\": 37313,\n        \"T\": 1631747687044,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37314,\n        \"p\": \"5255.47\",\n        \"q\": \"0.95\",\n        \"f\": 37314,\n        \"l\": 37314,\n        \"T\": 1631747779352,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37315,\n        \"p\": \"5255.47\",\n        \"q\": \"0.871\",\n        \"f\": 37315,\n        \"l\": 37315,\n        \"T\": 1631748028442,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37316,\n        \"p\": \"5248.61\",\n        \"q\": \"0.399\",\n        \"f\": 37316,\n        \"l\": 37316,\n        \"T\": 1631748028442,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37317,\n        \"p\": \"5248.61\",\n        \"q\": \"0.751\",\n        \"f\": 37317,\n        \"l\": 37317,\n        \"T\": 1631748036482,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37318,\n        \"p\": \"5246.42\",\n        \"q\": \"0.456\",\n        \"f\": 37318,\n        \"l\": 37318,\n        \"T\": 1631748036482,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37319,\n        \"p\": \"5245.12\",\n        \"q\": \"0.063\",\n        \"f\": 37319,\n        \"l\": 37319,\n        \"T\": 1631748036482,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37320,\n        \"p\": \"5245.12\",\n        \"q\": \"1.137\",\n        \"f\": 37320,\n        \"l\": 37320,\n        \"T\": 1631748075001,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37321,\n        \"p\": \"5205\",\n        \"q\": \"0.133\",\n        \"f\": 37321,\n        \"l\": 37321,\n        \"T\": 1631748075001,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37322,\n        \"p\": \"5236.74\",\n        \"q\": \"1.5\",\n        \"f\": 37322,\n        \"l\": 37322,\n        \"T\": 1631748079352,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37323,\n        \"p\": \"5205\",\n        \"q\": \"0.07\",\n        \"f\": 37323,\n        \"l\": 37323,\n        \"T\": 1631748079352,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37324,\n        \"p\": \"5200.01\",\n        \"q\": \"0.1\",\n        \"f\": 37324,\n        \"l\": 37324,\n        \"T\": 1631748079352,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37325,\n        \"p\": \"5200.01\",\n        \"q\": \"0.24\",\n        \"f\": 37325,\n        \"l\": 37325,\n        \"T\": 1631748079352,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37326,\n        \"p\": \"5235.55\",\n        \"q\": \"1.04\",\n        \"f\": 37326,\n        \"l\": 37326,\n        \"T\": 1631748216303,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37327,\n        \"p\": \"5200.01\",\n        \"q\": \"0.784\",\n        \"f\": 37327,\n        \"l\": 37327,\n        \"T\": 1631748249431,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37328,\n        \"p\": \"5220.24\",\n        \"q\": \"1\",\n        \"f\": 37328,\n        \"l\": 37328,\n        \"T\": 1631748324156,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37329,\n        \"p\": \"5249.31\",\n        \"q\": \"1.01\",\n        \"f\": 37329,\n        \"l\": 37329,\n        \"T\": 1631748445817,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37330,\n        \"p\": \"5268.05\",\n        \"q\": \"0.16\",\n        \"f\": 37330,\n        \"l\": 37330,\n        \"T\": 1631748650020,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37331,\n        \"p\": \"5268.06\",\n        \"q\": \"0.728\",\n        \"f\": 37331,\n        \"l\": 37331,\n        \"T\": 1631748650020,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37332,\n        \"p\": \"5250\",\n        \"q\": \"2.579\",\n        \"f\": 37332,\n        \"l\": 37332,\n        \"T\": 1631751331281,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37333,\n        \"p\": \"5250\",\n        \"q\": \"1.222\",\n        \"f\": 37333,\n        \"l\": 37333,\n        \"T\": 1631751684751,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37334,\n        \"p\": \"5242\",\n        \"q\": \"1\",\n        \"f\": 37334,\n        \"l\": 37334,\n        \"T\": 1631752497422,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37335,\n        \"p\": \"5240.29\",\n        \"q\": \"1\",\n        \"f\": 37335,\n        \"l\": 37335,\n        \"T\": 1631752497422,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37336,\n        \"p\": \"5240.29\",\n        \"q\": \"0.164\",\n        \"f\": 37336,\n        \"l\": 37336,\n        \"T\": 1631752497422,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37337,\n        \"p\": \"5240.29\",\n        \"q\": \"0.19\",\n        \"f\": 37337,\n        \"l\": 37337,\n        \"T\": 1631752497422,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37338,\n        \"p\": \"5231.13\",\n        \"q\": \"0.826\",\n        \"f\": 37338,\n        \"l\": 37338,\n        \"T\": 1631752497422,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37339,\n        \"p\": \"5231.13\",\n        \"q\": \"0.079\",\n        \"f\": 37339,\n        \"l\": 37339,\n        \"T\": 1631752599137,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37340,\n        \"p\": \"5231.13\",\n        \"q\": \"0.095\",\n        \"f\": 37340,\n        \"l\": 37340,\n        \"T\": 1631752630917,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37341,\n        \"p\": \"5220.24\",\n        \"q\": \"0.19\",\n        \"f\": 37341,\n        \"l\": 37341,\n        \"T\": 1631752669161,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37342,\n        \"p\": \"5209\",\n        \"q\": \"0.133\",\n        \"f\": 37342,\n        \"l\": 37342,\n        \"T\": 1631752669161,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37343,\n        \"p\": \"5221.76\",\n        \"q\": \"0.64\",\n        \"f\": 37343,\n        \"l\": 37343,\n        \"T\": 1631752998438,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37344,\n        \"p\": \"5221.76\",\n        \"q\": \"0.43\",\n        \"f\": 37344,\n        \"l\": 37344,\n        \"T\": 1631753219529,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37345,\n        \"p\": \"5210\",\n        \"q\": \"0.21\",\n        \"f\": 37345,\n        \"l\": 37345,\n        \"T\": 1631753219529,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37346,\n        \"p\": \"5210\",\n        \"q\": \"0.64\",\n        \"f\": 37346,\n        \"l\": 37346,\n        \"T\": 1631753230890,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37347,\n        \"p\": \"5210\",\n        \"q\": \"0.108\",\n        \"f\": 37347,\n        \"l\": 37347,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37348,\n        \"p\": \"5209\",\n        \"q\": \"0.058\",\n        \"f\": 37348,\n        \"l\": 37348,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37349,\n        \"p\": \"5201.71\",\n        \"q\": \"1.04\",\n        \"f\": 37349,\n        \"l\": 37349,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37350,\n        \"p\": \"5201\",\n        \"q\": \"2\",\n        \"f\": 37350,\n        \"l\": 37350,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37351,\n        \"p\": \"5201\",\n        \"q\": \"0.044\",\n        \"f\": 37351,\n        \"l\": 37351,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37352,\n        \"p\": \"5200.01\",\n        \"q\": \"0.959\",\n        \"f\": 37352,\n        \"l\": 37352,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37353,\n        \"p\": \"5200\",\n        \"q\": \"0.361\",\n        \"f\": 37353,\n        \"l\": 37353,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37354,\n        \"p\": \"5200\",\n        \"q\": \"1.822\",\n        \"f\": 37354,\n        \"l\": 37354,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37355,\n        \"p\": \"5200\",\n        \"q\": \"0.2\",\n        \"f\": 37355,\n        \"l\": 37355,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37356,\n        \"p\": \"5200\",\n        \"q\": \"1\",\n        \"f\": 37356,\n        \"l\": 37356,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37357,\n        \"p\": \"5200\",\n        \"q\": \"0.169\",\n        \"f\": 37357,\n        \"l\": 37357,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37358,\n        \"p\": \"5200\",\n        \"q\": \"1.346\",\n        \"f\": 37358,\n        \"l\": 37358,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37359,\n        \"p\": \"5198\",\n        \"q\": \"0.503\",\n        \"f\": 37359,\n        \"l\": 37359,\n        \"T\": 1631753276777,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37360,\n        \"p\": \"5199.74\",\n        \"q\": \"1.07\",\n        \"f\": 37360,\n        \"l\": 37360,\n        \"T\": 1631753329425,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37361,\n        \"p\": \"5198\",\n        \"q\": \"0.497\",\n        \"f\": 37361,\n        \"l\": 37361,\n        \"T\": 1631753329425,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37362,\n        \"p\": \"5183.73\",\n        \"q\": \"1.1\",\n        \"f\": 37362,\n        \"l\": 37362,\n        \"T\": 1631753329425,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37363,\n        \"p\": \"5180.1\",\n        \"q\": \"0.543\",\n        \"f\": 37363,\n        \"l\": 37363,\n        \"T\": 1631753329425,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37364,\n        \"p\": \"5180.1\",\n        \"q\": \"1.957\",\n        \"f\": 37364,\n        \"l\": 37364,\n        \"T\": 1631753412179,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37365,\n        \"p\": \"5180\",\n        \"q\": \"4.473\",\n        \"f\": 37365,\n        \"l\": 37365,\n        \"T\": 1631753412179,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37366,\n        \"p\": \"5186.04\",\n        \"q\": \"1.09\",\n        \"f\": 37366,\n        \"l\": 37366,\n        \"T\": 1631753498656,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37367,\n        \"p\": \"5180\",\n        \"q\": \"0.273\",\n        \"f\": 37367,\n        \"l\": 37367,\n        \"T\": 1631753498656,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37368,\n        \"p\": \"5158.5\",\n        \"q\": \"0.567\",\n        \"f\": 37368,\n        \"l\": 37368,\n        \"T\": 1631753498656,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37369,\n        \"p\": \"5158.5\",\n        \"q\": \"0.593\",\n        \"f\": 37369,\n        \"l\": 37369,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37370,\n        \"p\": \"5158.5\",\n        \"q\": \"0.74\",\n        \"f\": 37370,\n        \"l\": 37370,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37371,\n        \"p\": \"5152\",\n        \"q\": \"1.94\",\n        \"f\": 37371,\n        \"l\": 37371,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37372,\n        \"p\": \"5151.51\",\n        \"q\": \"1\",\n        \"f\": 37372,\n        \"l\": 37372,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37373,\n        \"p\": \"5151.35\",\n        \"q\": \"1.26\",\n        \"f\": 37373,\n        \"l\": 37373,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37374,\n        \"p\": \"5151.35\",\n        \"q\": \"0.462\",\n        \"f\": 37374,\n        \"l\": 37374,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37375,\n        \"p\": \"5150.02\",\n        \"q\": \"1\",\n        \"f\": 37375,\n        \"l\": 37375,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37376,\n        \"p\": \"5150.01\",\n        \"q\": \"0.49\",\n        \"f\": 37376,\n        \"l\": 37376,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37377,\n        \"p\": \"5150\",\n        \"q\": \"4.854\",\n        \"f\": 37377,\n        \"l\": 37377,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37378,\n        \"p\": \"5150\",\n        \"q\": \"0.591\",\n        \"f\": 37378,\n        \"l\": 37378,\n        \"T\": 1631753695604,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37379,\n        \"p\": \"5152\",\n        \"q\": \"1\",\n        \"f\": 37379,\n        \"l\": 37379,\n        \"T\": 1631753712319,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37380,\n        \"p\": \"5150\",\n        \"q\": \"0.94\",\n        \"f\": 37380,\n        \"l\": 37380,\n        \"T\": 1631753712319,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37381,\n        \"p\": \"5150\",\n        \"q\": \"3.469\",\n        \"f\": 37381,\n        \"l\": 37381,\n        \"T\": 1631753720354,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37382,\n        \"p\": \"5150\",\n        \"q\": \"6\",\n        \"f\": 37382,\n        \"l\": 37382,\n        \"T\": 1631753720354,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37383,\n        \"p\": \"5150\",\n        \"q\": \"6.751\",\n        \"f\": 37383,\n        \"l\": 37383,\n        \"T\": 1631753720354,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37384,\n        \"p\": \"5164.91\",\n        \"q\": \"1.02\",\n        \"f\": 37384,\n        \"l\": 37384,\n        \"T\": 1631753724637,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37385,\n        \"p\": \"5150\",\n        \"q\": \"3.249\",\n        \"f\": 37385,\n        \"l\": 37385,\n        \"T\": 1631753724637,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37386,\n        \"p\": \"5150\",\n        \"q\": \"0.261\",\n        \"f\": 37386,\n        \"l\": 37386,\n        \"T\": 1631753724637,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37387,\n        \"p\": \"5164.95\",\n        \"q\": \"1.1\",\n        \"f\": 37387,\n        \"l\": 37387,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37388,\n        \"p\": \"5151\",\n        \"q\": \"0.1\",\n        \"f\": 37388,\n        \"l\": 37388,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37389,\n        \"p\": \"5150\",\n        \"q\": \"0.739\",\n        \"f\": 37389,\n        \"l\": 37389,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37390,\n        \"p\": \"5150\",\n        \"q\": \"0.241\",\n        \"f\": 37390,\n        \"l\": 37390,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37391,\n        \"p\": \"5139\",\n        \"q\": \"1\",\n        \"f\": 37391,\n        \"l\": 37391,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37392,\n        \"p\": \"5130\",\n        \"q\": \"1\",\n        \"f\": 37392,\n        \"l\": 37392,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37393,\n        \"p\": \"5130\",\n        \"q\": \"0.36\",\n        \"f\": 37393,\n        \"l\": 37393,\n        \"T\": 1631753834591,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37394,\n        \"p\": \"5146.53\",\n        \"q\": \"0.65\",\n        \"f\": 37394,\n        \"l\": 37394,\n        \"T\": 1631754056626,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37395,\n        \"p\": \"5146.53\",\n        \"q\": \"0.42\",\n        \"f\": 37395,\n        \"l\": 37395,\n        \"T\": 1631754065078,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37396,\n        \"p\": \"5130\",\n        \"q\": \"0.23\",\n        \"f\": 37396,\n        \"l\": 37396,\n        \"T\": 1631754065078,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37397,\n        \"p\": \"5140\",\n        \"q\": \"3.893\",\n        \"f\": 37397,\n        \"l\": 37397,\n        \"T\": 1631754105892,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37398,\n        \"p\": \"5130\",\n        \"q\": \"0.41\",\n        \"f\": 37398,\n        \"l\": 37398,\n        \"T\": 1631754105892,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37399,\n        \"p\": \"5129.19\",\n        \"q\": \"1\",\n        \"f\": 37399,\n        \"l\": 37399,\n        \"T\": 1631754105892,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37400,\n        \"p\": \"5129\",\n        \"q\": \"0.098\",\n        \"f\": 37400,\n        \"l\": 37400,\n        \"T\": 1631754105892,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37401,\n        \"p\": \"5128\",\n        \"q\": \"1.089\",\n        \"f\": 37401,\n        \"l\": 37401,\n        \"T\": 1631754105892,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37402,\n        \"p\": \"5128\",\n        \"q\": \"0.211\",\n        \"f\": 37402,\n        \"l\": 37402,\n        \"T\": 1631754128984,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37403,\n        \"p\": \"5128\",\n        \"q\": \"1.643\",\n        \"f\": 37403,\n        \"l\": 37403,\n        \"T\": 1631754313680,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37404,\n        \"p\": \"5150\",\n        \"q\": \"0.193\",\n        \"f\": 37404,\n        \"l\": 37404,\n        \"T\": 1631754349739,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37405,\n        \"p\": \"5150\",\n        \"q\": \"1.94\",\n        \"f\": 37405,\n        \"l\": 37405,\n        \"T\": 1631754359667,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37406,\n        \"p\": \"5150.33\",\n        \"q\": \"1.17\",\n        \"f\": 37406,\n        \"l\": 37406,\n        \"T\": 1631754367021,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37407,\n        \"p\": \"5156.24\",\n        \"q\": \"1.19\",\n        \"f\": 37407,\n        \"l\": 37407,\n        \"T\": 1631754379436,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37408,\n        \"p\": \"5156.24\",\n        \"q\": \"0.116\",\n        \"f\": 37408,\n        \"l\": 37408,\n        \"T\": 1631754391694,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37409,\n        \"p\": \"5150\",\n        \"q\": \"1.75\",\n        \"f\": 37409,\n        \"l\": 37409,\n        \"T\": 1631754391694,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37410,\n        \"p\": \"5145.95\",\n        \"q\": \"0.074\",\n        \"f\": 37410,\n        \"l\": 37410,\n        \"T\": 1631754391694,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37411,\n        \"p\": \"5181.37\",\n        \"q\": \"0.389\",\n        \"f\": 37411,\n        \"l\": 37411,\n        \"T\": 1631754440405,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37412,\n        \"p\": \"5181.37\",\n        \"q\": \"0.098\",\n        \"f\": 37412,\n        \"l\": 37412,\n        \"T\": 1631754450512,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37413,\n        \"p\": \"5181.37\",\n        \"q\": \"0.543\",\n        \"f\": 37413,\n        \"l\": 37413,\n        \"T\": 1631755094824,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37414,\n        \"p\": \"5181.37\",\n        \"q\": \"9.457\",\n        \"f\": 37414,\n        \"l\": 37414,\n        \"T\": 1631755094824,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37415,\n        \"p\": \"5170\",\n        \"q\": \"0.065\",\n        \"f\": 37415,\n        \"l\": 37415,\n        \"T\": 1631755180400,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37416,\n        \"p\": \"5181.37\",\n        \"q\": \"0.59\",\n        \"f\": 37416,\n        \"l\": 37416,\n        \"T\": 1631755389567,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37417,\n        \"p\": \"5180\",\n        \"q\": \"0.01\",\n        \"f\": 37417,\n        \"l\": 37417,\n        \"T\": 1631755694775,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37418,\n        \"p\": \"5180\",\n        \"q\": \"0.99\",\n        \"f\": 37418,\n        \"l\": 37418,\n        \"T\": 1631755694775,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37419,\n        \"p\": \"5180\",\n        \"q\": \"4.801\",\n        \"f\": 37419,\n        \"l\": 37419,\n        \"T\": 1631755741183,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37420,\n        \"p\": \"5180\",\n        \"q\": \"0.159\",\n        \"f\": 37420,\n        \"l\": 37420,\n        \"T\": 1631755741183,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37421,\n        \"p\": \"5160\",\n        \"q\": \"0.102\",\n        \"f\": 37421,\n        \"l\": 37421,\n        \"T\": 1631756102897,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37422,\n        \"p\": \"5160\",\n        \"q\": \"1.188\",\n        \"f\": 37422,\n        \"l\": 37422,\n        \"T\": 1631756102897,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37423,\n        \"p\": \"5181.37\",\n        \"q\": \"0.009\",\n        \"f\": 37423,\n        \"l\": 37423,\n        \"T\": 1631756462615,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37424,\n        \"p\": \"5196.26\",\n        \"q\": \"0.15\",\n        \"f\": 37424,\n        \"l\": 37424,\n        \"T\": 1631756462615,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37425,\n        \"p\": \"5190\",\n        \"q\": \"1.643\",\n        \"f\": 37425,\n        \"l\": 37425,\n        \"T\": 1631757152119,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37426,\n        \"p\": \"5190\",\n        \"q\": \"0.2\",\n        \"f\": 37426,\n        \"l\": 37426,\n        \"T\": 1631757173601,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37427,\n        \"p\": \"5196.26\",\n        \"q\": \"0.02\",\n        \"f\": 37427,\n        \"l\": 37427,\n        \"T\": 1631757860432,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37428,\n        \"p\": \"5196.26\",\n        \"q\": \"0.96\",\n        \"f\": 37428,\n        \"l\": 37428,\n        \"T\": 1631758010732,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37429,\n        \"p\": \"5196.26\",\n        \"q\": \"0.04\",\n        \"f\": 37429,\n        \"l\": 37429,\n        \"T\": 1631758010732,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37430,\n        \"p\": \"5196.26\",\n        \"q\": \"0.116\",\n        \"f\": 37430,\n        \"l\": 37430,\n        \"T\": 1631758652425,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37431,\n        \"p\": \"5200.01\",\n        \"q\": \"0.192\",\n        \"f\": 37431,\n        \"l\": 37431,\n        \"T\": 1631758838413,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37432,\n        \"p\": \"5200.01\",\n        \"q\": \"0.192\",\n        \"f\": 37432,\n        \"l\": 37432,\n        \"T\": 1631758882027,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37433,\n        \"p\": \"5200.01\",\n        \"q\": \"0.384\",\n        \"f\": 37433,\n        \"l\": 37433,\n        \"T\": 1631758986295,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37434,\n        \"p\": \"5200\",\n        \"q\": \"1.91\",\n        \"f\": 37434,\n        \"l\": 37434,\n        \"T\": 1631759021807,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37435,\n        \"p\": \"5200\",\n        \"q\": \"0.006\",\n        \"f\": 37435,\n        \"l\": 37435,\n        \"T\": 1631759075808,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37436,\n        \"p\": \"5196.26\",\n        \"q\": \"0.268\",\n        \"f\": 37436,\n        \"l\": 37436,\n        \"T\": 1631759075808,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37437,\n        \"p\": \"5196.26\",\n        \"q\": \"0.036\",\n        \"f\": 37437,\n        \"l\": 37437,\n        \"T\": 1631759075808,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37438,\n        \"p\": \"5185\",\n        \"q\": \"0.618\",\n        \"f\": 37438,\n        \"l\": 37438,\n        \"T\": 1631759274366,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37439,\n        \"p\": \"5184.89\",\n        \"q\": \"0.822\",\n        \"f\": 37439,\n        \"l\": 37439,\n        \"T\": 1631759274366,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37440,\n        \"p\": \"5184.89\",\n        \"q\": \"0.368\",\n        \"f\": 37440,\n        \"l\": 37440,\n        \"T\": 1631759493805,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37441,\n        \"p\": \"5170\",\n        \"q\": \"0.03\",\n        \"f\": 37441,\n        \"l\": 37441,\n        \"T\": 1631759493805,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37442,\n        \"p\": \"5159.7\",\n        \"q\": \"0.892\",\n        \"f\": 37442,\n        \"l\": 37442,\n        \"T\": 1631759493805,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37443,\n        \"p\": \"5159.7\",\n        \"q\": \"0.188\",\n        \"f\": 37443,\n        \"l\": 37443,\n        \"T\": 1631759664168,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37444,\n        \"p\": \"5151\",\n        \"q\": \"0.812\",\n        \"f\": 37444,\n        \"l\": 37444,\n        \"T\": 1631759664168,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37445,\n        \"p\": \"5151\",\n        \"q\": \"0.061\",\n        \"f\": 37445,\n        \"l\": 37445,\n        \"T\": 1631759708058,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37446,\n        \"p\": \"5145.95\",\n        \"q\": \"0.939\",\n        \"f\": 37446,\n        \"l\": 37446,\n        \"T\": 1631759708058,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37447,\n        \"p\": \"5145.95\",\n        \"q\": \"0.067\",\n        \"f\": 37447,\n        \"l\": 37447,\n        \"T\": 1631759761168,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37448,\n        \"p\": \"5125\",\n        \"q\": \"0.117\",\n        \"f\": 37448,\n        \"l\": 37448,\n        \"T\": 1631759761168,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37449,\n        \"p\": \"5125\",\n        \"q\": \"0.487\",\n        \"f\": 37449,\n        \"l\": 37449,\n        \"T\": 1631759761168,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37450,\n        \"p\": \"5125\",\n        \"q\": \"0.195\",\n        \"f\": 37450,\n        \"l\": 37450,\n        \"T\": 1631759761168,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37451,\n        \"p\": \"5125\",\n        \"q\": \"0.389\",\n        \"f\": 37451,\n        \"l\": 37451,\n        \"T\": 1631759803988,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37452,\n        \"p\": \"5125\",\n        \"q\": \"3.786\",\n        \"f\": 37452,\n        \"l\": 37452,\n        \"T\": 1631759819138,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37453,\n        \"p\": \"5125\",\n        \"q\": \"0.116\",\n        \"f\": 37453,\n        \"l\": 37453,\n        \"T\": 1631759859060,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37454,\n        \"p\": \"5123\",\n        \"q\": \"0.185\",\n        \"f\": 37454,\n        \"l\": 37454,\n        \"T\": 1631759859060,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37455,\n        \"p\": \"5122.98\",\n        \"q\": \"1.19\",\n        \"f\": 37455,\n        \"l\": 37455,\n        \"T\": 1631759859060,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37456,\n        \"p\": \"5122.98\",\n        \"q\": \"0.106\",\n        \"f\": 37456,\n        \"l\": 37456,\n        \"T\": 1631759912545,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37457,\n        \"p\": \"5126.89\",\n        \"q\": \"1.04\",\n        \"f\": 37457,\n        \"l\": 37457,\n        \"T\": 1631760064739,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37458,\n        \"p\": \"5126.89\",\n        \"q\": \"0.159\",\n        \"f\": 37458,\n        \"l\": 37458,\n        \"T\": 1631760230510,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37459,\n        \"p\": \"5160\",\n        \"q\": \"4.785\",\n        \"f\": 37459,\n        \"l\": 37459,\n        \"T\": 1631760448971,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37460,\n        \"p\": \"5160\",\n        \"q\": \"0.78\",\n        \"f\": 37460,\n        \"l\": 37460,\n        \"T\": 1631760486235,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37461,\n        \"p\": \"5165.42\",\n        \"q\": \"0.215\",\n        \"f\": 37461,\n        \"l\": 37461,\n        \"T\": 1631760489899,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37462,\n        \"p\": \"5165.43\",\n        \"q\": \"1.1\",\n        \"f\": 37462,\n        \"l\": 37462,\n        \"T\": 1631760984023,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37463,\n        \"p\": \"5178\",\n        \"q\": \"1.961\",\n        \"f\": 37463,\n        \"l\": 37463,\n        \"T\": 1631762313320,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37464,\n        \"p\": \"5166\",\n        \"q\": \"0.158\",\n        \"f\": 37464,\n        \"l\": 37464,\n        \"T\": 1631762559946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37465,\n        \"p\": \"5166\",\n        \"q\": \"0.805\",\n        \"f\": 37465,\n        \"l\": 37465,\n        \"T\": 1631762559946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37466,\n        \"p\": \"5165.43\",\n        \"q\": \"0.835\",\n        \"f\": 37466,\n        \"l\": 37466,\n        \"T\": 1631762559946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37467,\n        \"p\": \"5165.43\",\n        \"q\": \"0.2\",\n        \"f\": 37467,\n        \"l\": 37467,\n        \"T\": 1631762559946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37468,\n        \"p\": \"5152\",\n        \"q\": \"0.97\",\n        \"f\": 37468,\n        \"l\": 37468,\n        \"T\": 1631762559946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37469,\n        \"p\": \"5151.81\",\n        \"q\": \"1.002\",\n        \"f\": 37469,\n        \"l\": 37469,\n        \"T\": 1631762559946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37470,\n        \"p\": \"5151.81\",\n        \"q\": \"0.008\",\n        \"f\": 37470,\n        \"l\": 37470,\n        \"T\": 1631762640867,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37471,\n        \"p\": \"5150\",\n        \"q\": \"0.018\",\n        \"f\": 37471,\n        \"l\": 37471,\n        \"T\": 1631762640867,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37472,\n        \"p\": \"5144.79\",\n        \"q\": \"1.14\",\n        \"f\": 37472,\n        \"l\": 37472,\n        \"T\": 1631762640867,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37473,\n        \"p\": \"5126.9\",\n        \"q\": \"5\",\n        \"f\": 37473,\n        \"l\": 37473,\n        \"T\": 1631762640867,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37474,\n        \"p\": \"5126.9\",\n        \"q\": \"3.698\",\n        \"f\": 37474,\n        \"l\": 37474,\n        \"T\": 1631762640867,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37475,\n        \"p\": \"5122.98\",\n        \"q\": \"0.214\",\n        \"f\": 37475,\n        \"l\": 37475,\n        \"T\": 1631762731426,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37476,\n        \"p\": \"5122.98\",\n        \"q\": \"1.247\",\n        \"f\": 37476,\n        \"l\": 37476,\n        \"T\": 1631762731426,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37477,\n        \"p\": \"5120.02\",\n        \"q\": \"0.2\",\n        \"f\": 37477,\n        \"l\": 37477,\n        \"T\": 1631762809063,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37478,\n        \"p\": \"5120\",\n        \"q\": \"0.098\",\n        \"f\": 37478,\n        \"l\": 37478,\n        \"T\": 1631762837437,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37479,\n        \"p\": \"5120\",\n        \"q\": \"1.946\",\n        \"f\": 37479,\n        \"l\": 37479,\n        \"T\": 1631762837437,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37480,\n        \"p\": \"5120\",\n        \"q\": \"0.595\",\n        \"f\": 37480,\n        \"l\": 37480,\n        \"T\": 1631762837437,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37481,\n        \"p\": \"5120\",\n        \"q\": \"0.009\",\n        \"f\": 37481,\n        \"l\": 37481,\n        \"T\": 1631762837437,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37482,\n        \"p\": \"5119.19\",\n        \"q\": \"0.699\",\n        \"f\": 37482,\n        \"l\": 37482,\n        \"T\": 1631762859730,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37483,\n        \"p\": \"5119.19\",\n        \"q\": \"3.684\",\n        \"f\": 37483,\n        \"l\": 37483,\n        \"T\": 1631762863791,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37484,\n        \"p\": \"5120\",\n        \"q\": \"1.953\",\n        \"f\": 37484,\n        \"l\": 37484,\n        \"T\": 1631763250780,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37485,\n        \"p\": \"5119.3\",\n        \"q\": \"0.045\",\n        \"f\": 37485,\n        \"l\": 37485,\n        \"T\": 1631763272866,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37486,\n        \"p\": \"5119.3\",\n        \"q\": \"1.955\",\n        \"f\": 37486,\n        \"l\": 37486,\n        \"T\": 1631763272866,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37487,\n        \"p\": \"5120\",\n        \"q\": \"1.047\",\n        \"f\": 37487,\n        \"l\": 37487,\n        \"T\": 1631763320315,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37488,\n        \"p\": \"5120\",\n        \"q\": \"0.906\",\n        \"f\": 37488,\n        \"l\": 37488,\n        \"T\": 1631763342245,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37489,\n        \"p\": \"5119.3\",\n        \"q\": \"0.094\",\n        \"f\": 37489,\n        \"l\": 37489,\n        \"T\": 1631763342245,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37490,\n        \"p\": \"5119.3\",\n        \"q\": \"0.951\",\n        \"f\": 37490,\n        \"l\": 37490,\n        \"T\": 1631763355339,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37491,\n        \"p\": \"5119.3\",\n        \"q\": \"0.19\",\n        \"f\": 37491,\n        \"l\": 37491,\n        \"T\": 1631763355339,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37492,\n        \"p\": \"5119.19\",\n        \"q\": \"4.617\",\n        \"f\": 37492,\n        \"l\": 37492,\n        \"T\": 1631763355339,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37493,\n        \"p\": \"5119.19\",\n        \"q\": \"0.363\",\n        \"f\": 37493,\n        \"l\": 37493,\n        \"T\": 1631763355339,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37494,\n        \"p\": \"5116.08\",\n        \"q\": \"1.13\",\n        \"f\": 37494,\n        \"l\": 37494,\n        \"T\": 1631763355339,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37495,\n        \"p\": \"5120\",\n        \"q\": \"1\",\n        \"f\": 37495,\n        \"l\": 37495,\n        \"T\": 1631763553175,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37496,\n        \"p\": \"5120\",\n        \"q\": \"2\",\n        \"f\": 37496,\n        \"l\": 37496,\n        \"T\": 1631763618223,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37497,\n        \"p\": \"5105\",\n        \"q\": \"0.923\",\n        \"f\": 37497,\n        \"l\": 37497,\n        \"T\": 1631763782627,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37498,\n        \"p\": \"5104.56\",\n        \"q\": \"2\",\n        \"f\": 37498,\n        \"l\": 37498,\n        \"T\": 1631763782627,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37499,\n        \"p\": \"5104.56\",\n        \"q\": \"0.19\",\n        \"f\": 37499,\n        \"l\": 37499,\n        \"T\": 1631763782627,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37500,\n        \"p\": \"5104.56\",\n        \"q\": \"0.078\",\n        \"f\": 37500,\n        \"l\": 37500,\n        \"T\": 1631763974546,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37501,\n        \"p\": \"5105\",\n        \"q\": \"0.198\",\n        \"f\": 37501,\n        \"l\": 37501,\n        \"T\": 1631764218554,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37502,\n        \"p\": \"5106\",\n        \"q\": \"0.3\",\n        \"f\": 37502,\n        \"l\": 37502,\n        \"T\": 1631764645927,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37503,\n        \"p\": \"5106\",\n        \"q\": \"1.7\",\n        \"f\": 37503,\n        \"l\": 37503,\n        \"T\": 1631764829334,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37504,\n        \"p\": \"5106\",\n        \"q\": \"0.164\",\n        \"f\": 37504,\n        \"l\": 37504,\n        \"T\": 1631764856722,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37505,\n        \"p\": \"5106\",\n        \"q\": \"0.136\",\n        \"f\": 37505,\n        \"l\": 37505,\n        \"T\": 1631764865203,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37506,\n        \"p\": \"5120\",\n        \"q\": \"1.953\",\n        \"f\": 37506,\n        \"l\": 37506,\n        \"T\": 1631765134162,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37507,\n        \"p\": \"5120\",\n        \"q\": \"0.197\",\n        \"f\": 37507,\n        \"l\": 37507,\n        \"T\": 1631765290940,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37508,\n        \"p\": \"5106\",\n        \"q\": \"0.064\",\n        \"f\": 37508,\n        \"l\": 37508,\n        \"T\": 1631765297660,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37509,\n        \"p\": \"5106\",\n        \"q\": \"0.05\",\n        \"f\": 37509,\n        \"l\": 37509,\n        \"T\": 1631765297660,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37510,\n        \"p\": \"5106\",\n        \"q\": \"0.408\",\n        \"f\": 37510,\n        \"l\": 37510,\n        \"T\": 1631765297660,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37511,\n        \"p\": \"5106\",\n        \"q\": \"0.532\",\n        \"f\": 37511,\n        \"l\": 37511,\n        \"T\": 1631765360724,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37512,\n        \"p\": \"5120\",\n        \"q\": \"2.983\",\n        \"f\": 37512,\n        \"l\": 37512,\n        \"T\": 1631765374163,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37513,\n        \"p\": \"5120\",\n        \"q\": \"0.227\",\n        \"f\": 37513,\n        \"l\": 37513,\n        \"T\": 1631765374163,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37514,\n        \"p\": \"5106\",\n        \"q\": \"0.06\",\n        \"f\": 37514,\n        \"l\": 37514,\n        \"T\": 1631765379255,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37515,\n        \"p\": \"5106\",\n        \"q\": \"1.93\",\n        \"f\": 37515,\n        \"l\": 37515,\n        \"T\": 1631765382080,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37516,\n        \"p\": \"5106\",\n        \"q\": \"0.067\",\n        \"f\": 37516,\n        \"l\": 37516,\n        \"T\": 1631765710720,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37517,\n        \"p\": \"5120\",\n        \"q\": \"0.273\",\n        \"f\": 37517,\n        \"l\": 37517,\n        \"T\": 1631765996136,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37518,\n        \"p\": \"5120.02\",\n        \"q\": \"0.2\",\n        \"f\": 37518,\n        \"l\": 37518,\n        \"T\": 1631765996136,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37519,\n        \"p\": \"5129.93\",\n        \"q\": \"0.807\",\n        \"f\": 37519,\n        \"l\": 37519,\n        \"T\": 1631765996136,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37520,\n        \"p\": \"5129.93\",\n        \"q\": \"0.343\",\n        \"f\": 37520,\n        \"l\": 37520,\n        \"T\": 1631766046037,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37521,\n        \"p\": \"5129.93\",\n        \"q\": \"0.016\",\n        \"f\": 37521,\n        \"l\": 37521,\n        \"T\": 1631766077831,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37522,\n        \"p\": \"5129.93\",\n        \"q\": \"0.302\",\n        \"f\": 37522,\n        \"l\": 37522,\n        \"T\": 1631766096324,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37523,\n        \"p\": \"5129.93\",\n        \"q\": \"0.778\",\n        \"f\": 37523,\n        \"l\": 37523,\n        \"T\": 1631766096324,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37524,\n        \"p\": \"5129.93\",\n        \"q\": \"1.945\",\n        \"f\": 37524,\n        \"l\": 37524,\n        \"T\": 1631766342216,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37525,\n        \"p\": \"5129.93\",\n        \"q\": \"9.153\",\n        \"f\": 37525,\n        \"l\": 37525,\n        \"T\": 1631766376308,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37526,\n        \"p\": \"5138.5\",\n        \"q\": \"0.447\",\n        \"f\": 37526,\n        \"l\": 37526,\n        \"T\": 1631766376308,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37527,\n        \"p\": \"5138.5\",\n        \"q\": \"0.25\",\n        \"f\": 37527,\n        \"l\": 37527,\n        \"T\": 1631766775100,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37528,\n        \"p\": \"5138.5\",\n        \"q\": \"0.45\",\n        \"f\": 37528,\n        \"l\": 37528,\n        \"T\": 1631766848100,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37529,\n        \"p\": \"5138.5\",\n        \"q\": \"0.003\",\n        \"f\": 37529,\n        \"l\": 37529,\n        \"T\": 1631767057495,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37530,\n        \"p\": \"5146.57\",\n        \"q\": \"0.35\",\n        \"f\": 37530,\n        \"l\": 37530,\n        \"T\": 1631767581946,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37531,\n        \"p\": \"5184.99\",\n        \"q\": \"1.08\",\n        \"f\": 37531,\n        \"l\": 37531,\n        \"T\": 1631768060820,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37532,\n        \"p\": \"5199\",\n        \"q\": \"1.949\",\n        \"f\": 37532,\n        \"l\": 37532,\n        \"T\": 1631768320000,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37533,\n        \"p\": \"5199\",\n        \"q\": \"0.051\",\n        \"f\": 37533,\n        \"l\": 37533,\n        \"T\": 1631768367152,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37534,\n        \"p\": \"5200\",\n        \"q\": \"0.949\",\n        \"f\": 37534,\n        \"l\": 37534,\n        \"T\": 1631768367152,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37535,\n        \"p\": \"5200\",\n        \"q\": \"1\",\n        \"f\": 37535,\n        \"l\": 37535,\n        \"T\": 1631768596546,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37536,\n        \"p\": \"5200\",\n        \"q\": \"0.097\",\n        \"f\": 37536,\n        \"l\": 37536,\n        \"T\": 1631768756311,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37537,\n        \"p\": \"5185\",\n        \"q\": \"0.192\",\n        \"f\": 37537,\n        \"l\": 37537,\n        \"T\": 1631768789557,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37538,\n        \"p\": \"5185\",\n        \"q\": \"2.8\",\n        \"f\": 37538,\n        \"l\": 37538,\n        \"T\": 1631768845689,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37539,\n        \"p\": \"5185\",\n        \"q\": \"0.997\",\n        \"f\": 37539,\n        \"l\": 37539,\n        \"T\": 1631769295042,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37540,\n        \"p\": \"5185\",\n        \"q\": \"1\",\n        \"f\": 37540,\n        \"l\": 37540,\n        \"T\": 1631769373232,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37541,\n        \"p\": \"5185\",\n        \"q\": \"0.023\",\n        \"f\": 37541,\n        \"l\": 37541,\n        \"T\": 1631769480744,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37542,\n        \"p\": \"5185\",\n        \"q\": \"0.448\",\n        \"f\": 37542,\n        \"l\": 37542,\n        \"T\": 1631769898120,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37543,\n        \"p\": \"5185\",\n        \"q\": \"0.529\",\n        \"f\": 37543,\n        \"l\": 37543,\n        \"T\": 1631769937180,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37544,\n        \"p\": \"5200\",\n        \"q\": \"5.274\",\n        \"f\": 37544,\n        \"l\": 37544,\n        \"T\": 1631770064931,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37545,\n        \"p\": \"5200\",\n        \"q\": \"0.282\",\n        \"f\": 37545,\n        \"l\": 37545,\n        \"T\": 1631770158839,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37546,\n        \"p\": \"5200\",\n        \"q\": \"1.037\",\n        \"f\": 37546,\n        \"l\": 37546,\n        \"T\": 1631770459260,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37547,\n        \"p\": \"5200\",\n        \"q\": \"0.019\",\n        \"f\": 37547,\n        \"l\": 37547,\n        \"T\": 1631770459260,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37548,\n        \"p\": \"5200\",\n        \"q\": \"0.099\",\n        \"f\": 37548,\n        \"l\": 37548,\n        \"T\": 1631770459260,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37549,\n        \"p\": \"5200.01\",\n        \"q\": \"0.342\",\n        \"f\": 37549,\n        \"l\": 37549,\n        \"T\": 1631770459260,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37550,\n        \"p\": \"5200.01\",\n        \"q\": \"0.403\",\n        \"f\": 37550,\n        \"l\": 37550,\n        \"T\": 1631770459260,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37551,\n        \"p\": \"5200\",\n        \"q\": \"0.247\",\n        \"f\": 37551,\n        \"l\": 37551,\n        \"T\": 1631770542996,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37552,\n        \"p\": \"5200.01\",\n        \"q\": \"0.084\",\n        \"f\": 37552,\n        \"l\": 37552,\n        \"T\": 1631770542996,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37553,\n        \"p\": \"5200.01\",\n        \"q\": \"1\",\n        \"f\": 37553,\n        \"l\": 37553,\n        \"T\": 1631770542996,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37554,\n        \"p\": \"5201\",\n        \"q\": \"2\",\n        \"f\": 37554,\n        \"l\": 37554,\n        \"T\": 1631770542996,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37555,\n        \"p\": \"5201.58\",\n        \"q\": \"1.079\",\n        \"f\": 37555,\n        \"l\": 37555,\n        \"T\": 1631770542996,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37556,\n        \"p\": \"5201.58\",\n        \"q\": \"0.09\",\n        \"f\": 37556,\n        \"l\": 37556,\n        \"T\": 1631770552539,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37557,\n        \"p\": \"5200.01\",\n        \"q\": \"0.38\",\n        \"f\": 37557,\n        \"l\": 37557,\n        \"T\": 1631770600748,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37558,\n        \"p\": \"5201.58\",\n        \"q\": \"0.001\",\n        \"f\": 37558,\n        \"l\": 37558,\n        \"T\": 1631770651046,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37559,\n        \"p\": \"5212\",\n        \"q\": \"1.1\",\n        \"f\": 37559,\n        \"l\": 37559,\n        \"T\": 1631770651046,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37560,\n        \"p\": \"5215.36\",\n        \"q\": \"0.789\",\n        \"f\": 37560,\n        \"l\": 37560,\n        \"T\": 1631770651046,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37561,\n        \"p\": \"5200\",\n        \"q\": \"0.6\",\n        \"f\": 37561,\n        \"l\": 37561,\n        \"T\": 1631770734806,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37562,\n        \"p\": \"5215.36\",\n        \"q\": \"0.03\",\n        \"f\": 37562,\n        \"l\": 37562,\n        \"T\": 1631770734806,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37563,\n        \"p\": \"5215.36\",\n        \"q\": \"0.371\",\n        \"f\": 37563,\n        \"l\": 37563,\n        \"T\": 1631770921964,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37564,\n        \"p\": \"5218\",\n        \"q\": \"1.522\",\n        \"f\": 37564,\n        \"l\": 37564,\n        \"T\": 1631770921964,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37565,\n        \"p\": \"5226.54\",\n        \"q\": \"1.1\",\n        \"f\": 37565,\n        \"l\": 37565,\n        \"T\": 1631770921964,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37566,\n        \"p\": \"5241.62\",\n        \"q\": \"0.147\",\n        \"f\": 37566,\n        \"l\": 37566,\n        \"T\": 1631770921964,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37567,\n        \"p\": \"5218.32\",\n        \"q\": \"0.258\",\n        \"f\": 37567,\n        \"l\": 37567,\n        \"T\": 1631771203805,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37568,\n        \"p\": \"5184.99\",\n        \"q\": \"0.002\",\n        \"f\": 37568,\n        \"l\": 37568,\n        \"T\": 1631771242428,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37569,\n        \"p\": \"5184.99\",\n        \"q\": \"0.018\",\n        \"f\": 37569,\n        \"l\": 37569,\n        \"T\": 1631771271782,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37570,\n        \"p\": \"5185\",\n        \"q\": \"0.474\",\n        \"f\": 37570,\n        \"l\": 37570,\n        \"T\": 1631771422314,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37571,\n        \"p\": \"5218.32\",\n        \"q\": \"0.742\",\n        \"f\": 37571,\n        \"l\": 37571,\n        \"T\": 1631771443609,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37572,\n        \"p\": \"5224.62\",\n        \"q\": \"0.048\",\n        \"f\": 37572,\n        \"l\": 37572,\n        \"T\": 1631771865386,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37573,\n        \"p\": \"5230\",\n        \"q\": \"0.106\",\n        \"f\": 37573,\n        \"l\": 37573,\n        \"T\": 1631772172554,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37574,\n        \"p\": \"5230\",\n        \"q\": \"0.092\",\n        \"f\": 37574,\n        \"l\": 37574,\n        \"T\": 1631772214911,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37575,\n        \"p\": \"5230\",\n        \"q\": \"0.281\",\n        \"f\": 37575,\n        \"l\": 37575,\n        \"T\": 1631772272749,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37576,\n        \"p\": \"5224.62\",\n        \"q\": \"1.042\",\n        \"f\": 37576,\n        \"l\": 37576,\n        \"T\": 1631772328612,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37577,\n        \"p\": \"5218.32\",\n        \"q\": \"0.131\",\n        \"f\": 37577,\n        \"l\": 37577,\n        \"T\": 1631772399018,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37578,\n        \"p\": \"5218.32\",\n        \"q\": \"0.464\",\n        \"f\": 37578,\n        \"l\": 37578,\n        \"T\": 1631772399018,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37579,\n        \"p\": \"5229.21\",\n        \"q\": \"0.646\",\n        \"f\": 37579,\n        \"l\": 37579,\n        \"T\": 1631773119708,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37580,\n        \"p\": \"5241.62\",\n        \"q\": \"0.873\",\n        \"f\": 37580,\n        \"l\": 37580,\n        \"T\": 1631773312942,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37581,\n        \"p\": \"5250\",\n        \"q\": \"0.74\",\n        \"f\": 37581,\n        \"l\": 37581,\n        \"T\": 1631773312942,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37582,\n        \"p\": \"5250\",\n        \"q\": \"0.387\",\n        \"f\": 37582,\n        \"l\": 37582,\n        \"T\": 1631773312942,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37583,\n        \"p\": \"5247.97\",\n        \"q\": \"1.12\",\n        \"f\": 37583,\n        \"l\": 37583,\n        \"T\": 1631773466515,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37584,\n        \"p\": \"5250\",\n        \"q\": \"0.613\",\n        \"f\": 37584,\n        \"l\": 37584,\n        \"T\": 1631773466515,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37585,\n        \"p\": \"5250\",\n        \"q\": \"0.197\",\n        \"f\": 37585,\n        \"l\": 37585,\n        \"T\": 1631773466515,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37586,\n        \"p\": \"5260\",\n        \"q\": \"0.019\",\n        \"f\": 37586,\n        \"l\": 37586,\n        \"T\": 1631773899449,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37587,\n        \"p\": \"5260\",\n        \"q\": \"1.331\",\n        \"f\": 37587,\n        \"l\": 37587,\n        \"T\": 1631773905518,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37588,\n        \"p\": \"5260\",\n        \"q\": \"1.15\",\n        \"f\": 37588,\n        \"l\": 37588,\n        \"T\": 1631773917159,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37589,\n        \"p\": \"5260\",\n        \"q\": \"0.164\",\n        \"f\": 37589,\n        \"l\": 37589,\n        \"T\": 1631773917159,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37590,\n        \"p\": \"5260\",\n        \"q\": \"1\",\n        \"f\": 37590,\n        \"l\": 37590,\n        \"T\": 1631774125844,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37591,\n        \"p\": \"5260\",\n        \"q\": \"0.2\",\n        \"f\": 37591,\n        \"l\": 37591,\n        \"T\": 1631774212454,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37592,\n        \"p\": \"5260\",\n        \"q\": \"2\",\n        \"f\": 37592,\n        \"l\": 37592,\n        \"T\": 1631774266563,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37593,\n        \"p\": \"5260\",\n        \"q\": \"2\",\n        \"f\": 37593,\n        \"l\": 37593,\n        \"T\": 1631774769237,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37594,\n        \"p\": \"5266\",\n        \"q\": \"1\",\n        \"f\": 37594,\n        \"l\": 37594,\n        \"T\": 1631775013544,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37595,\n        \"p\": \"5260\",\n        \"q\": \"7.616\",\n        \"f\": 37595,\n        \"l\": 37595,\n        \"T\": 1631775216369,\n        \"m\": true,\n        \"M\": true\n    },\n    {\n        \"a\": 37596,\n        \"p\": \"5268.06\",\n        \"q\": \"0.24\",\n        \"f\": 37596,\n        \"l\": 37596,\n        \"T\": 1631775731153,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37597,\n        \"p\": \"5268.06\",\n        \"q\": \"0.062\",\n        \"f\": 37597,\n        \"l\": 37597,\n        \"T\": 1631775882874,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37598,\n        \"p\": \"5280\",\n        \"q\": \"0.15\",\n        \"f\": 37598,\n        \"l\": 37598,\n        \"T\": 1631775949969,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37599,\n        \"p\": \"5280\",\n        \"q\": \"1\",\n        \"f\": 37599,\n        \"l\": 37599,\n        \"T\": 1631775995533,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37600,\n        \"p\": \"5280\",\n        \"q\": \"0.671\",\n        \"f\": 37600,\n        \"l\": 37600,\n        \"T\": 1631776014415,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37601,\n        \"p\": \"5280\",\n        \"q\": \"1.989\",\n        \"f\": 37601,\n        \"l\": 37601,\n        \"T\": 1631776014415,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37602,\n        \"p\": \"5280\",\n        \"q\": \"0.011\",\n        \"f\": 37602,\n        \"l\": 37602,\n        \"T\": 1631776412082,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37603,\n        \"p\": \"5293.26\",\n        \"q\": \"1.02\",\n        \"f\": 37603,\n        \"l\": 37603,\n        \"T\": 1631776412082,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37604,\n        \"p\": \"5301\",\n        \"q\": \"0.209\",\n        \"f\": 37604,\n        \"l\": 37604,\n        \"T\": 1631776412082,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37605,\n        \"p\": \"5296.94\",\n        \"q\": \"1\",\n        \"f\": 37605,\n        \"l\": 37605,\n        \"T\": 1631776484695,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37606,\n        \"p\": \"5296.94\",\n        \"q\": \"0.19\",\n        \"f\": 37606,\n        \"l\": 37606,\n        \"T\": 1631776511135,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37607,\n        \"p\": \"5296.94\",\n        \"q\": \"0.01\",\n        \"f\": 37607,\n        \"l\": 37607,\n        \"T\": 1631776563018,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37608,\n        \"p\": \"5301\",\n        \"q\": \"0.74\",\n        \"f\": 37608,\n        \"l\": 37608,\n        \"T\": 1631776666583,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37609,\n        \"p\": \"5301\",\n        \"q\": \"1.051\",\n        \"f\": 37609,\n        \"l\": 37609,\n        \"T\": 1631776672103,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37610,\n        \"p\": \"5301\",\n        \"q\": \"0.062\",\n        \"f\": 37610,\n        \"l\": 37610,\n        \"T\": 1631776672103,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37611,\n        \"p\": \"5303.68\",\n        \"q\": \"1.01\",\n        \"f\": 37611,\n        \"l\": 37611,\n        \"T\": 1631776672103,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37612,\n        \"p\": \"5313\",\n        \"q\": \"0.967\",\n        \"f\": 37612,\n        \"l\": 37612,\n        \"T\": 1631776672103,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37613,\n        \"p\": \"5313\",\n        \"q\": \"1\",\n        \"f\": 37613,\n        \"l\": 37613,\n        \"T\": 1631776696175,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37614,\n        \"p\": \"5313\",\n        \"q\": \"2.4\",\n        \"f\": 37614,\n        \"l\": 37614,\n        \"T\": 1631776704009,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37615,\n        \"p\": \"5313\",\n        \"q\": \"0.05\",\n        \"f\": 37615,\n        \"l\": 37615,\n        \"T\": 1631776785149,\n        \"m\": false,\n        \"M\": true\n    },\n    {\n        \"a\": 37616,\n        \"p\": \"5313.91\",\n        \"q\": \"0.04\",\n        \"f\": 37616,\n        \"l\": 37616,\n        \"T\": 1631776785149,\n        \"m\": false,\n        \"M\": true\n    }\n]"}],"_postman_id":"a137696a-a276-4e97-9662-03811179f5c7"},{"name":"Ping","event":[{"listen":"test","script":{"id":"c83add40-6cfa-47de-b7fa-32109a56ca88","exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript"}}],"id":"8f3f93d1-6836-4ab4-b50c-a66590a932d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://www.orbixtrade.com/api/v3/ping","description":"<p>Get all configs</p>\n","urlObject":{"path":["v3","ping"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"10ca289a-253c-4a76-8d1d-65f3e550f6f2","name":"OK","originalRequest":{"method":"GET","header":[],"url":"{{BASE_URL}}/api/configs/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:22:25 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"X-Cache-Status","value":"HIT"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UpgHgQxs3E1HX9rDvi%2FElCqMJyrUdY%2FXgWeZOAz26Fnre5urOyNwXerNYRhur7Xk%2F781G3E0WUTaeLhKDOI0XBifLWJVl43hVqQ1E7ygRak5PnYENwDHdZSR%2FfO1d8Wv\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f857f4de7f6b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"kyc\": {\n        \"url\": \"https://satangcorp.com/classic/account/profile\"\n    },\n    \"kyc_forms\": {\n        \"occupations\": [\n            {\n                \"en\": \"Company Employee\",\n                \"th\": \"พนักงานเอกชน\"\n            },\n            {\n                \"en\": \"Government Officer\",\n                \"th\": \"ข้าราชการ\"\n            },\n            {\n                \"en\": \"Freelancer\",\n                \"th\": \"อาชีพอิสระ\"\n            },\n            {\n                \"en\": \"Employer\",\n                \"th\": \"เจ้าของกิจการ\"\n            },\n            {\n                \"en\": \"Unemployed\",\n                \"th\": \"ว่างงาน\"\n            },\n            {\n                \"en\": \"Jeweler\",\n                \"th\": \"นักค้าอัญมณี\"\n            },\n            {\n                \"en\": \"Antique Dealer\",\n                \"th\": \"นักค้าของเก่า\"\n            },\n            {\n                \"en\": \"Finance\",\n                \"th\": \"อาชีพที่เกี่ยวข้องกับการเงินตามกฏหมาย\"\n            },\n            {\n                \"en\": \"Politician\",\n                \"th\": \"นักการเมือง\"\n            },\n            {\n                \"en\": \"Entrepreneur\",\n                \"th\": \"ผู้ประกอบการหรือนักลงทุนอิสระ\"\n            },\n            {\n                \"en\": \"Currency Exchange Provider (Individual or Legal Entity)\",\n                \"th\": \"รับแลกเปลี่ยนเงินตราแบบนิติบุคคลหรือบุคคลธรรมดา\"\n            },\n            {\n                \"en\": \"Money Remittance (Non-Financial Institution)\",\n                \"th\": \"ให้บริการโอนและรับโอนมูลค่าเงินทั้งภายในประเทศและข้ามประเทศโดยมิใช่สถาบันการเงิน\"\n            },\n            {\n                \"en\": \"Casino Related Business\",\n                \"th\": \"ประกอบธุรกิจคาสิโนหรือบ่อนการพนัน\"\n            },\n            {\n                \"en\": \"Brothel Business\",\n                \"th\": \"ธุรกิจสถานบริการตามกฎหมายว่าด้วยสถานบริการ\"\n            },\n            {\n                \"en\": \"Arms Dealer\",\n                \"th\": \"ค้าอาวุธยุทธภัณฑ์\"\n            },\n            {\n                \"en\": \"Travel Agency\",\n                \"th\": \"บริษัทหรือตัวแทนธุรกิจนำเที่ยว\"\n            },\n            {\n                \"en\": \"International Recruitment Agency\",\n                \"th\": \"นายหน้าจัดหางาน\"\n            },\n            {\n                \"en\": \"Health Care\",\n                \"th\": \"ด้านสุขภาพ\"\n            },\n            {\n                \"en\": \"Scientist\",\n                \"th\": \"นักวิทยาศาสตร์\"\n            },\n            {\n                \"en\": \"Police\",\n                \"th\": \"ตำรวจ\"\n            },\n            {\n                \"en\": \"Architecture\",\n                \"th\": \"สถาปนิก\"\n            },\n            {\n                \"en\": \"Teacher\",\n                \"th\": \"ครู\"\n            },\n            {\n                \"en\": \"Military\",\n                \"th\": \"อาชีพทางการทหาร\"\n            },\n            {\n                \"en\": \"Engineer\",\n                \"th\": \"วิศวกร\"\n            },\n            {\n                \"en\": \"Student\",\n                \"th\": \"นักเรียน นักศึกษา\"\n            },\n            {\n                \"en\": \"Other\",\n                \"th\": \"อื่น ๆ (ทางทีมงานอาจติดต่อสอบถามเพิ่มเติม)\"\n            }\n        ],\n        \"education_levels\": [\n            {\n                \"en\": \"Bachelor's degree\",\n                \"th\": \"ปริญญาตรี\"\n            },\n            {\n                \"en\": \"Below Bachelor's degree\",\n                \"th\": \"ต่ำกว่าปริญญาตรี\"\n            },\n            {\n                \"en\": \"Other\",\n                \"th\": \"อื่นๆ\"\n            },\n            {\n                \"en\": \"Master's degree\",\n                \"th\": \"ปริญญาโท\"\n            },\n            {\n                \"en\": \"Doctoral degree\",\n                \"th\": \"ปริญญาเอก\"\n            }\n        ],\n        \"title_names\": [\n            {\n                \"en\": \"LORD\",\n                \"th\": \"ลอร์ด\"\n            },\n            {\n                \"en\": \"Lieutenant\",\n                \"th\": \"เรือเอก\"\n            },\n            {\n                \"en\": \"Major\",\n                \"th\": \"พันตรี\"\n            },\n            {\n                \"en\": \"Reserve Officer Training Corps Student\",\n                \"th\": \"นักศึกษาวิชาทหาร\"\n            },\n            {\n                \"en\": \"Acting Sub Lieutenant\",\n                \"th\": \"ว่าที่เรือตรี\"\n            },\n            {\n                \"en\": \"Thanphuying\",\n                \"th\": \"ท่านผู้หญิง\"\n            },\n            {\n                \"en\": \"Lieutenant Junior Grade\",\n                \"th\": \"เรือโท\"\n            },\n            {\n                \"en\": \"Rear Admiral\",\n                \"th\": \"พลเรือตรี\"\n            },\n            {\n                \"en\": \"No title\",\n                \"th\": \"ไม่มีคำนำหน้าชื่อ\"\n            },\n            {\n                \"en\": \"Flight Sergeant First Class\",\n                \"th\": \"พันจ่าอากาศเอก\"\n            },\n            {\n                \"en\": \"Sergeant\",\n                \"th\": \"จ่าอากาศเอก\"\n            },\n            {\n                \"en\": \"Airman\",\n                \"th\": \"พลทหาร\"\n            },\n            {\n                \"en\": \"Lieutenant Commander\",\n                \"th\": \"นาวาตรี\"\n            },\n            {\n                \"en\": \"Chief Petty Officer First Class\",\n                \"th\": \"พันจ่าเอก\"\n            },\n            {\n                \"en\": \"Petty Officer Second Class\",\n                \"th\": \"จ่าโท\"\n            },\n            {\n                \"en\": \"Lieutenant Colonel\",\n                \"th\": \"พันโทนายแพทย์\"\n            },\n            {\n                \"en\": \"Police Sub-Lieutenant\",\n                \"th\": \"ร้อยตำรวจตรี\"\n            },\n            {\n                \"en\": \"Sub Lieutenant\",\n                \"th\": \"เรือตรี\"\n            },\n            {\n                \"en\": \"Acting Second Lieutenant\",\n                \"th\": \"ว่าที่ร้อยตรีหญิง\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"นายสัตวแพทย์\"\n            },\n            {\n                \"en\": \"Acting Major\",\n                \"th\": \"ว่าที่พันตรี\"\n            },\n            {\n                \"en\": \"Associate Professor\",\n                \"th\": \"รองศาตราจารย์\"\n            },\n            {\n                \"en\": \"Police Captain\",\n                \"th\": \"ร้อยตำรวจเอก\"\n            },\n            {\n                \"en\": \"Brigadier General\",\n                \"th\": \"พลจัตวา\"\n            },\n            {\n                \"en\": \"Khunying\",\n                \"th\": \"คุณหญิง\"\n            },\n            {\n                \"en\": \"Miss\",\n                \"th\": \"นางสาว\"\n            },\n            {\n                \"en\": \"Police General\",\n                \"th\": \"พลตำรวจเอก\"\n            },\n            {\n                \"en\": \"Air Commodore\",\n                \"th\": \"พลอากาศจัตวา\"\n            },\n            {\n                \"en\": \"Police Lance Corporal\",\n                \"th\": \"สิบตำรวจตรี\"\n            },\n            {\n                \"en\": \"Police Senior Sergeant Major\",\n                \"th\": \"ดาบตำรวจ\"\n            },\n            {\n                \"en\": \"Lieutenant Colonel\",\n                \"th\": \"พันโท\"\n            },\n            {\n                \"en\": \"General\",\n                \"th\": \"พลเอก\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"ทันตแพทย์หญิง\"\n            },\n            {\n                \"en\": \"Police Constable\",\n                \"th\": \"พลตำรวจ\"\n            },\n            {\n                \"en\": \"Flying Officer\",\n                \"th\": \"เรืออากาศโท\"\n            },\n            {\n                \"en\": \"Seaman\",\n                \"th\": \"พลทหาร\"\n            },\n            {\n                \"en\": \"Acting Pilot Officer\",\n                \"th\": \"ว่าที่ เรืออากาศตรี\"\n            },\n            {\n                \"en\": \"Police Lieutenant Colonel\",\n                \"th\": \"พันตำรวจโท\"\n            },\n            {\n                \"en\": \"Flight Sergeant Third Class\",\n                \"th\": \"พันจ่าอากาศตรี\"\n            },\n            {\n                \"en\": \"Chief Petty Officer Third Class\",\n                \"th\": \"พันจ่าตรี\"\n            },\n            {\n                \"en\": \"Marshal of the Royal Thai Air Force\",\n                \"th\": \"จอมพลอากาศ\"\n            },\n            {\n                \"en\": \"Commodore\",\n                \"th\": \"พลเรือจัตวา\"\n            },\n            {\n                \"en\": \"Naval Rating Candidate\",\n                \"th\": \"นักเรียนจ่าทหารเรือ\"\n            },\n            {\n                \"en\": \"Sergeant\",\n                \"th\": \"สิบเอก\"\n            },\n            {\n                \"en\": \"Police Colonel\",\n                \"th\": \"พันตำรวจเอก\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"ทันตแพทย์\"\n            },\n            {\n                \"en\": \"Vice Admiral\",\n                \"th\": \"พลเรือโท\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"ด๊อกเตอร์\"\n            },\n            {\n                \"en\": \"Medical Cadet\",\n                \"th\": \"นักเรียนแพทย์ทหาร\"\n            },\n            {\n                \"en\": \"Major General\",\n                \"th\": \"พลตรี\"\n            },\n            {\n                \"en\": \"Lieutenant\",\n                \"th\": \"ร้อยโท\"\n            },\n            {\n                \"en\": \"Sub Lieutenant\",\n                \"th\": \"ร้อยตรี\"\n            },\n            {\n                \"en\": \"Lance Corporal\",\n                \"th\": \"สิบตรี\"\n            },\n            {\n                \"en\": \"Police Corporal\",\n                \"th\": \"สิบตำรวจโท\"\n            },\n            {\n                \"en\": \"Sergeant Major First Class\",\n                \"th\": \"จ่าสิบเอก\"\n            },\n            {\n                \"en\": \"Police Brigadier General\",\n                \"th\": \"พลตำรวจจัตวา\"\n            },\n            {\n                \"en\": \"Sergeant Major Second Class\",\n                \"th\": \"จ่าสิบโท\"\n            },\n            {\n                \"en\": \"Wing Commander\",\n                \"th\": \"นาวาอากาศโท\"\n            },\n            {\n                \"en\": \"Chief Petty Officer Second Class\",\n                \"th\": \"พันจ่าโท\"\n            },\n            {\n                \"en\": \"Police Lieutenant\",\n                \"th\": \"ร้อยตำรวจโท\"\n            },\n            {\n                \"en\": \"Senior Captain\",\n                \"th\": \"นาวาเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Police Major\",\n                \"th\": \"พันตำรวจตรี\"\n            },\n            {\n                \"en\": \"Pilot Officer\",\n                \"th\": \"เรืออากาศตรี\"\n            },\n            {\n                \"en\": \"Flight Sergeant Second Class\",\n                \"th\": \"พันจ่าอากาศโท\"\n            },\n            {\n                \"en\": \"Mrs\",\n                \"th\": \"นาง\"\n            },\n            {\n                \"en\": \"Assistant Professor \",\n                \"th\": \"ผู้ช่วยศาสตราจารย์\"\n            },\n            {\n                \"en\": \"Police Senior Colonel\",\n                \"th\": \"พันตำรวจเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Private First Class\",\n                \"th\": \"สิบตรีกองประจำการ\"\n            },\n            {\n                \"en\": \"Captain\",\n                \"th\": \"ร้อยเอก\"\n            },\n            {\n                \"en\": \"Lieutenant General\",\n                \"th\": \"พลโท\"\n            },\n            {\n                \"en\": \"Air Technical Student\",\n                \"th\": \"นักเรียนจ่าอากาศ\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"สัตวแพทย์หญิง\"\n            },\n            {\n                \"en\": \"Police Sergeant\",\n                \"th\": \"สิบตำรวจเอก\"\n            },\n            {\n                \"en\": \"Naval Cadet\",\n                \"th\": \"นักเรียนทหารเรือ\"\n            },\n            {\n                \"en\": \"Petty Officer Third Class\",\n                \"th\": \"จ่าตรี\"\n            },\n            {\n                \"en\": \"Army Cadet\",\n                \"th\": \"นักเรียนนายร้อย\"\n            },\n            {\n                \"en\": \"Major General\",\n                \"th\": \"พลตรีหญิง\"\n            },\n            {\n                \"en\": \"Acting Police Sub-Lieutenant\",\n                \"th\": \"ว่าที่ร้อยตำรวจตรี\"\n            },\n            {\n                \"en\": \"Sergeant Major Third Class\",\n                \"th\": \"จ่าสิบตรี\"\n            },\n            {\n                \"en\": \"Admiral of the Fleet\",\n                \"th\": \"จอมพลเรือ\"\n            },\n            {\n                \"en\": \"Army Non - Commissioned Officer Student\",\n                \"th\": \"นักเรียนนายสิบทหารบก\"\n            },\n            {\n                \"en\": \"Squadron Leader\",\n                \"th\": \"นาวาอากาศตรี\"\n            },\n            {\n                \"en\": \"Acting Captain\",\n                \"th\": \"ว่าที่ร้อยเอก\"\n            },\n            {\n                \"en\": \"Police Major General\",\n                \"th\": \"พลตำรวจตรี\"\n            },\n            {\n                \"en\": \"Captain\",\n                \"th\": \"นาวาเอก\"\n            },\n            {\n                \"en\": \"Leading Aircraftman\",\n                \"th\": \"จ่าอากาศตรี\"\n            },\n            {\n                \"en\": \"Acting Sub Lieutenant\",\n                \"th\": \"ว่าที่ ร้อยตรี\"\n            },\n            {\n                \"en\": \"Professor\",\n                \"th\": \"ศาตราจารย์\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"นายแพทย์\"\n            },\n            {\n                \"en\": \"Mom Luang\",\n                \"th\": \"หม่อมหลวง\"\n            },\n            {\n                \"en\": \"Senior Colonel\",\n                \"th\": \"พันเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Air Cadet\",\n                \"th\": \"นักเรียนนายเรืออากาศ\"\n            },\n            {\n                \"en\": \"General Doctor\",\n                \"th\": \"พลเอก ด็อกเตอร์\"\n            },\n            {\n                \"en\": \"Field Marshal\",\n                \"th\": \"จอมพล\"\n            },\n            {\n                \"en\": \"Corporal\",\n                \"th\": \"จ่าอากาศโท\"\n            },\n            {\n                \"en\": \"Admiral\",\n                \"th\": \"พลเรือเอก\"\n            },\n            {\n                \"en\": \"Petty Officer First Class\",\n                \"th\": \"จ่าเอก\"\n            },\n            {\n                \"en\": \"Private\",\n                \"th\": \"พลทหาร\"\n            },\n            {\n                \"en\": \"Corporal\",\n                \"th\": \"สิบโท\"\n            },\n            {\n                \"en\": \"Colonel\",\n                \"th\": \"พันเอก\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"แพทย์หญิง\"\n            },\n            {\n                \"en\": \"Air Marshal\",\n                \"th\": \"พลอากาศโท\"\n            },\n            {\n                \"en\": \"Mr\",\n                \"th\": \"นาย\"\n            },\n            {\n                \"en\": \"Air Vice Marshal\",\n                \"th\": \"พลอากาศตรี\"\n            },\n            {\n                \"en\": \"Police Sergeant Major\",\n                \"th\": \"จ่าสิบตำรวจ\"\n            },\n            {\n                \"en\": \"Captain\",\n                \"th\": \"ร้อยเอกหญิง\"\n            },\n            {\n                \"en\": \"Flight Lieutenant\",\n                \"th\": \"เรืออากาศเอก\"\n            },\n            {\n                \"en\": \"Police Cadet\",\n                \"th\": \"นักเรียนนายร้อยตำรวจ\"\n            },\n            {\n                \"en\": \"Police Lieutenant General\",\n                \"th\": \"พลตำรวจโท\"\n            },\n            {\n                \"en\": \"Colonel\",\n                \"th\": \"พันเอกหญิง\"\n            },\n            {\n                \"en\": \"Commander\",\n                \"th\": \"นาวาโท\"\n            },\n            {\n                \"en\": \"Senior Group Captain\",\n                \"th\": \"นาวาอากาศเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Air Chief Marshal\",\n                \"th\": \"พลอากาศเอก\"\n            },\n            {\n                \"en\": \"Acting First Lieutenant\",\n                \"th\": \"ว่าที่ร้อยโท\"\n            },\n            {\n                \"en\": \"Group Captain\",\n                \"th\": \"นาวาอากาศเอก\"\n            },\n            {\n                \"en\": \"Acting Lieutenant (Junior Grade)\",\n                \"th\": \"ว่าที่เรือโท\"\n            }\n        ],\n        \"business_types\": [\n            {\n                \"en\": \"Tour Agency\",\n                \"th\": \"ธุรกิจนำเที่ยว บริษัททัวร์\"\n            },\n            {\n                \"en\": \"Jewelry/Gold/Antique Shop\",\n                \"th\": \"ค้าขาย อัญมณี ทองคำ วัตถุโบราณ\"\n            },\n            {\n                \"en\": \"Government Agency\",\n                \"th\": \"หน่วยงานราชการ / หน่วยงานรัฐวิสาหกิจ / องค์กรอิสระ\"\n            },\n            {\n                \"en\": \"Insurance Company\",\n                \"th\": \"ธุรกิจประกันภัย\"\n            },\n            {\n                \"en\": \"Arms Trade\",\n                \"th\": \"ธุรกิจค้าอาวุทธภัณฑ์ \"\n            },\n            {\n                \"en\": \"Real Estate Company\",\n                \"th\": \"ธุรกิจเกี่ยวกับอสังหาริมทรัพย์ \"\n            },\n            {\n                \"en\": \"Law/Accounting Office\",\n                \"th\": \"สำนักงานกฎหมายหรือบัญชี\"\n            },\n            {\n                \"en\": \"Casino/Gambling Business\",\n                \"th\": \"ธุรกิจคาสิโนหรือการพนันตามกฎหมาย\"\n            },\n            {\n                \"en\": \"Other\",\n                \"th\": \"อื่น ๆ\"\n            },\n            {\n                \"en\": \"International Recruitment Agency\",\n                \"th\": \"ธุรกิจจัดหางานข้ามประเทศ\"\n            },\n            {\n                \"en\": \"Entertainment Facility\",\n                \"th\": \"ธุรกิจสถานบริการ \"\n            },\n            {\n                \"en\": \"Financial Institution\",\n                \"th\": \"สถาบันการเงินหรือธนาคาร\"\n            },\n            {\n                \"en\": \"Foreign Exchange/Money Transfer Service\",\n                \"th\": \"ธุรกิจแลกเปลี่ยนเงินตรา/โอนเงิน\"\n            }\n        ],\n        \"phone_codes\": [\n            {\n                \"country\": \"AD\",\n                \"code\": \"376\"\n            },\n            {\n                \"country\": \"AE\",\n                \"code\": \"971\"\n            },\n            {\n                \"country\": \"AF\",\n                \"code\": \"93\"\n            },\n            {\n                \"country\": \"AG\",\n                \"code\": \"1268\"\n            },\n            {\n                \"country\": \"AI\",\n                \"code\": \"1264\"\n            },\n            {\n                \"country\": \"AL\",\n                \"code\": \"355\"\n            },\n            {\n                \"country\": \"AM\",\n                \"code\": \"374\"\n            },\n            {\n                \"country\": \"AO\",\n                \"code\": \"244\"\n            },\n            {\n                \"country\": \"AQ\",\n                \"code\": \"672\"\n            },\n            {\n                \"country\": \"AR\",\n                \"code\": \"54\"\n            },\n            {\n                \"country\": \"AS\",\n                \"code\": \"1684\"\n            },\n            {\n                \"country\": \"AT\",\n                \"code\": \"43\"\n            },\n            {\n                \"country\": \"AU\",\n                \"code\": \"61\"\n            },\n            {\n                \"country\": \"AW\",\n                \"code\": \"297\"\n            },\n            {\n                \"country\": \"AX\",\n                \"code\": \"358\"\n            },\n            {\n                \"country\": \"AZ\",\n                \"code\": \"994\"\n            },\n            {\n                \"country\": \"BA\",\n                \"code\": \"387\"\n            },\n            {\n                \"country\": \"BB\",\n                \"code\": \"1246\"\n            },\n            {\n                \"country\": \"BD\",\n                \"code\": \"880\"\n            },\n            {\n                \"country\": \"BE\",\n                \"code\": \"32\"\n            },\n            {\n                \"country\": \"BF\",\n                \"code\": \"226\"\n            },\n            {\n                \"country\": \"BG\",\n                \"code\": \"359\"\n            },\n            {\n                \"country\": \"BH\",\n                \"code\": \"973\"\n            },\n            {\n                \"country\": \"BI\",\n                \"code\": \"257\"\n            },\n            {\n                \"country\": \"BJ\",\n                \"code\": \"229\"\n            },\n            {\n                \"country\": \"BL\",\n                \"code\": \"590\"\n            },\n            {\n                \"country\": \"BM\",\n                \"code\": \"1441\"\n            },\n            {\n                \"country\": \"BN\",\n                \"code\": \"673\"\n            },\n            {\n                \"country\": \"BO\",\n                \"code\": \"591\"\n            },\n            {\n                \"country\": \"BQ\",\n                \"code\": \"5997\"\n            },\n            {\n                \"country\": \"BR\",\n                \"code\": \"55\"\n            },\n            {\n                \"country\": \"BS\",\n                \"code\": \"1242\"\n            },\n            {\n                \"country\": \"BT\",\n                \"code\": \"975\"\n            },\n            {\n                \"country\": \"BW\",\n                \"code\": \"267\"\n            },\n            {\n                \"country\": \"BY\",\n                \"code\": \"375\"\n            },\n            {\n                \"country\": \"BZ\",\n                \"code\": \"501\"\n            },\n            {\n                \"country\": \"CA\",\n                \"code\": \"1\"\n            },\n            {\n                \"country\": \"CC\",\n                \"code\": \"61\"\n            },\n            {\n                \"country\": \"CD\",\n                \"code\": \"243\"\n            },\n            {\n                \"country\": \"CF\",\n                \"code\": \"236\"\n            },\n            {\n                \"country\": \"CG\",\n                \"code\": \"242\"\n            },\n            {\n                \"country\": \"CH\",\n                \"code\": \"41\"\n            },\n            {\n                \"country\": \"CI\",\n                \"code\": \"225\"\n            },\n            {\n                \"country\": \"CK\",\n                \"code\": \"682\"\n            },\n            {\n                \"country\": \"CL\",\n                \"code\": \"56\"\n            },\n            {\n                \"country\": \"CM\",\n                \"code\": \"237\"\n            },\n            {\n                \"country\": \"CN\",\n                \"code\": \"86\"\n            },\n            {\n                \"country\": \"CO\",\n                \"code\": \"57\"\n            },\n            {\n                \"country\": \"CR\",\n                \"code\": \"506\"\n            },\n            {\n                \"country\": \"CU\",\n                \"code\": \"53\"\n            },\n            {\n                \"country\": \"CV\",\n                \"code\": \"238\"\n            },\n            {\n                \"country\": \"CW\",\n                \"code\": \"599\"\n            },\n            {\n                \"country\": \"CX\",\n                \"code\": \"61\"\n            },\n            {\n                \"country\": \"CY\",\n                \"code\": \"357\"\n            },\n            {\n                \"country\": \"CZ\",\n                \"code\": \"420\"\n            },\n            {\n                \"country\": \"DE\",\n                \"code\": \"49\"\n            },\n            {\n                \"country\": \"DJ\",\n                \"code\": \"253\"\n            },\n            {\n                \"country\": \"DK\",\n                \"code\": \"45\"\n            },\n            {\n                \"country\": \"DM\",\n                \"code\": \"1767\"\n            },\n            {\n                \"country\": \"DO\",\n                \"code\": \"1809\"\n            },\n            {\n                \"country\": \"DZ\",\n                \"code\": \"213\"\n            },\n            {\n                \"country\": \"EC\",\n                \"code\": \"593\"\n            },\n            {\n                \"country\": \"EE\",\n                \"code\": \"372\"\n            },\n            {\n                \"country\": \"EG\",\n                \"code\": \"20\"\n            },\n            {\n                \"country\": \"EH\",\n                \"code\": \"212\"\n            },\n            {\n                \"country\": \"ER\",\n                \"code\": \"291\"\n            },\n            {\n                \"country\": \"ES\",\n                \"code\": \"34\"\n            },\n            {\n                \"country\": \"ET\",\n                \"code\": \"251\"\n            },\n            {\n                \"country\": \"FI\",\n                \"code\": \"358\"\n            },\n            {\n                \"country\": \"FJ\",\n                \"code\": \"679\"\n            },\n            {\n                \"country\": \"FK\",\n                \"code\": \"500\"\n            },\n            {\n                \"country\": \"FM\",\n                \"code\": \"691\"\n            },\n            {\n                \"country\": \"FO\",\n                \"code\": \"298\"\n            },\n            {\n                \"country\": \"FR\",\n                \"code\": \"33\"\n            },\n            {\n                \"country\": \"GA\",\n                \"code\": \"241\"\n            },\n            {\n                \"country\": \"GB\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"GD\",\n                \"code\": \"1473\"\n            },\n            {\n                \"country\": \"GE\",\n                \"code\": \"995\"\n            },\n            {\n                \"country\": \"GF\",\n                \"code\": \"594\"\n            },\n            {\n                \"country\": \"GG\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"GH\",\n                \"code\": \"233\"\n            },\n            {\n                \"country\": \"GI\",\n                \"code\": \"350\"\n            },\n            {\n                \"country\": \"GL\",\n                \"code\": \"299\"\n            },\n            {\n                \"country\": \"GM\",\n                \"code\": \"220\"\n            },\n            {\n                \"country\": \"GN\",\n                \"code\": \"224\"\n            },\n            {\n                \"country\": \"GP\",\n                \"code\": \"590\"\n            },\n            {\n                \"country\": \"GQ\",\n                \"code\": \"240\"\n            },\n            {\n                \"country\": \"GR\",\n                \"code\": \"30\"\n            },\n            {\n                \"country\": \"GS\",\n                \"code\": \"500\"\n            },\n            {\n                \"country\": \"GT\",\n                \"code\": \"502\"\n            },\n            {\n                \"country\": \"GU\",\n                \"code\": \"1671\"\n            },\n            {\n                \"country\": \"GW\",\n                \"code\": \"245\"\n            },\n            {\n                \"country\": \"GY\",\n                \"code\": \"592\"\n            },\n            {\n                \"country\": \"HK\",\n                \"code\": \"852\"\n            },\n            {\n                \"country\": \"HN\",\n                \"code\": \"504\"\n            },\n            {\n                \"country\": \"HR\",\n                \"code\": \"385\"\n            },\n            {\n                \"country\": \"HT\",\n                \"code\": \"509\"\n            },\n            {\n                \"country\": \"HU\",\n                \"code\": \"36\"\n            },\n            {\n                \"country\": \"ID\",\n                \"code\": \"62\"\n            },\n            {\n                \"country\": \"IE\",\n                \"code\": \"353\"\n            },\n            {\n                \"country\": \"IL\",\n                \"code\": \"972\"\n            },\n            {\n                \"country\": \"IM\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"IN\",\n                \"code\": \"91\"\n            },\n            {\n                \"country\": \"IO\",\n                \"code\": \"246\"\n            },\n            {\n                \"country\": \"IQ\",\n                \"code\": \"964\"\n            },\n            {\n                \"country\": \"IR\",\n                \"code\": \"98\"\n            },\n            {\n                \"country\": \"IS\",\n                \"code\": \"354\"\n            },\n            {\n                \"country\": \"IT\",\n                \"code\": \"39\"\n            },\n            {\n                \"country\": \"JE\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"JM\",\n                \"code\": \"1876\"\n            },\n            {\n                \"country\": \"JO\",\n                \"code\": \"962\"\n            },\n            {\n                \"country\": \"JP\",\n                \"code\": \"81\"\n            },\n            {\n                \"country\": \"KE\",\n                \"code\": \"254\"\n            },\n            {\n                \"country\": \"KG\",\n                \"code\": \"996\"\n            },\n            {\n                \"country\": \"KH\",\n                \"code\": \"855\"\n            },\n            {\n                \"country\": \"KI\",\n                \"code\": \"686\"\n            },\n            {\n                \"country\": \"KM\",\n                \"code\": \"269\"\n            },\n            {\n                \"country\": \"KN\",\n                \"code\": \"1869\"\n            },\n            {\n                \"country\": \"KP\",\n                \"code\": \"850\"\n            },\n            {\n                \"country\": \"KR\",\n                \"code\": \"82\"\n            },\n            {\n                \"country\": \"KW\",\n                \"code\": \"965\"\n            },\n            {\n                \"country\": \"KY\",\n                \"code\": \"1345\"\n            },\n            {\n                \"country\": \"KZ\",\n                \"code\": \"76\"\n            },\n            {\n                \"country\": \"LA\",\n                \"code\": \"856\"\n            },\n            {\n                \"country\": \"LB\",\n                \"code\": \"961\"\n            },\n            {\n                \"country\": \"LC\",\n                \"code\": \"1758\"\n            },\n            {\n                \"country\": \"LI\",\n                \"code\": \"423\"\n            },\n            {\n                \"country\": \"LK\",\n                \"code\": \"94\"\n            },\n            {\n                \"country\": \"LR\",\n                \"code\": \"231\"\n            },\n            {\n                \"country\": \"LS\",\n                \"code\": \"266\"\n            },\n            {\n                \"country\": \"LT\",\n                \"code\": \"370\"\n            },\n            {\n                \"country\": \"LU\",\n                \"code\": \"352\"\n            },\n            {\n                \"country\": \"LV\",\n                \"code\": \"371\"\n            },\n            {\n                \"country\": \"LY\",\n                \"code\": \"218\"\n            },\n            {\n                \"country\": \"MA\",\n                \"code\": \"212\"\n            },\n            {\n                \"country\": \"MC\",\n                \"code\": \"377\"\n            },\n            {\n                \"country\": \"MD\",\n                \"code\": \"373\"\n            },\n            {\n                \"country\": \"ME\",\n                \"code\": \"382\"\n            },\n            {\n                \"country\": \"MF\",\n                \"code\": \"590\"\n            },\n            {\n                \"country\": \"MG\",\n                \"code\": \"261\"\n            },\n            {\n                \"country\": \"MH\",\n                \"code\": \"692\"\n            },\n            {\n                \"country\": \"MK\",\n                \"code\": \"389\"\n            },\n            {\n                \"country\": \"ML\",\n                \"code\": \"223\"\n            },\n            {\n                \"country\": \"MM\",\n                \"code\": \"95\"\n            },\n            {\n                \"country\": \"MN\",\n                \"code\": \"976\"\n            },\n            {\n                \"country\": \"MO\",\n                \"code\": \"853\"\n            },\n            {\n                \"country\": \"MP\",\n                \"code\": \"1670\"\n            },\n            {\n                \"country\": \"MQ\",\n                \"code\": \"596\"\n            },\n            {\n                \"country\": \"MR\",\n                \"code\": \"222\"\n            },\n            {\n                \"country\": \"MS\",\n                \"code\": \"1664\"\n            },\n            {\n                \"country\": \"MT\",\n                \"code\": \"356\"\n            },\n            {\n                \"country\": \"MU\",\n                \"code\": \"230\"\n            },\n            {\n                \"country\": \"MV\",\n                \"code\": \"960\"\n            },\n            {\n                \"country\": \"MW\",\n                \"code\": \"265\"\n            },\n            {\n                \"country\": \"MX\",\n                \"code\": \"52\"\n            },\n            {\n                \"country\": \"MY\",\n                \"code\": \"60\"\n            },\n            {\n                \"country\": \"MZ\",\n                \"code\": \"258\"\n            },\n            {\n                \"country\": \"NA\",\n                \"code\": \"264\"\n            },\n            {\n                \"country\": \"NC\",\n                \"code\": \"687\"\n            },\n            {\n                \"country\": \"NE\",\n                \"code\": \"227\"\n            },\n            {\n                \"country\": \"NF\",\n                \"code\": \"672\"\n            },\n            {\n                \"country\": \"NG\",\n                \"code\": \"234\"\n            },\n            {\n                \"country\": \"NI\",\n                \"code\": \"505\"\n            },\n            {\n                \"country\": \"NL\",\n                \"code\": \"31\"\n            },\n            {\n                \"country\": \"NO\",\n                \"code\": \"47\"\n            },\n            {\n                \"country\": \"NP\",\n                \"code\": \"977\"\n            },\n            {\n                \"country\": \"NR\",\n                \"code\": \"674\"\n            },\n            {\n                \"country\": \"NU\",\n                \"code\": \"683\"\n            },\n            {\n                \"country\": \"NZ\",\n                \"code\": \"64\"\n            },\n            {\n                \"country\": \"OM\",\n                \"code\": \"968\"\n            },\n            {\n                \"country\": \"PA\",\n                \"code\": \"507\"\n            },\n            {\n                \"country\": \"PE\",\n                \"code\": \"51\"\n            },\n            {\n                \"country\": \"PF\",\n                \"code\": \"689\"\n            },\n            {\n                \"country\": \"PG\",\n                \"code\": \"675\"\n            },\n            {\n                \"country\": \"PH\",\n                \"code\": \"63\"\n            },\n            {\n                \"country\": \"PK\",\n                \"code\": \"92\"\n            },\n            {\n                \"country\": \"PL\",\n                \"code\": \"48\"\n            },\n            {\n                \"country\": \"PM\",\n                \"code\": \"508\"\n            },\n            {\n                \"country\": \"PN\",\n                \"code\": \"64\"\n            },\n            {\n                \"country\": \"PR\",\n                \"code\": \"1787\"\n            },\n            {\n                \"country\": \"PS\",\n                \"code\": \"970\"\n            },\n            {\n                \"country\": \"PT\",\n                \"code\": \"351\"\n            },\n            {\n                \"country\": \"PW\",\n                \"code\": \"680\"\n            },\n            {\n                \"country\": \"PY\",\n                \"code\": \"595\"\n            },\n            {\n                \"country\": \"QA\",\n                \"code\": \"974\"\n            },\n            {\n                \"country\": \"RE\",\n                \"code\": \"262\"\n            },\n            {\n                \"country\": \"RO\",\n                \"code\": \"40\"\n            },\n            {\n                \"country\": \"RS\",\n                \"code\": \"381\"\n            },\n            {\n                \"country\": \"RU\",\n                \"code\": \"7\"\n            },\n            {\n                \"country\": \"RW\",\n                \"code\": \"250\"\n            },\n            {\n                \"country\": \"SA\",\n                \"code\": \"966\"\n            },\n            {\n                \"country\": \"SB\",\n                \"code\": \"677\"\n            },\n            {\n                \"country\": \"SC\",\n                \"code\": \"248\"\n            },\n            {\n                \"country\": \"SD\",\n                \"code\": \"249\"\n            },\n            {\n                \"country\": \"SE\",\n                \"code\": \"46\"\n            },\n            {\n                \"country\": \"SG\",\n                \"code\": \"65\"\n            },\n            {\n                \"country\": \"SH\",\n                \"code\": \"290\"\n            },\n            {\n                \"country\": \"SI\",\n                \"code\": \"386\"\n            },\n            {\n                \"country\": \"SJ\",\n                \"code\": \"4779\"\n            },\n            {\n                \"country\": \"SK\",\n                \"code\": \"421\"\n            },\n            {\n                \"country\": \"SL\",\n                \"code\": \"232\"\n            },\n            {\n                \"country\": \"SM\",\n                \"code\": \"378\"\n            },\n            {\n                \"country\": \"SN\",\n                \"code\": \"221\"\n            },\n            {\n                \"country\": \"SO\",\n                \"code\": \"252\"\n            },\n            {\n                \"country\": \"SR\",\n                \"code\": \"597\"\n            },\n            {\n                \"country\": \"SS\",\n                \"code\": \"211\"\n            },\n            {\n                \"country\": \"ST\",\n                \"code\": \"239\"\n            },\n            {\n                \"country\": \"SV\",\n                \"code\": \"503\"\n            },\n            {\n                \"country\": \"SX\",\n                \"code\": \"1721\"\n            },\n            {\n                \"country\": \"SY\",\n                \"code\": \"963\"\n            },\n            {\n                \"country\": \"SZ\",\n                \"code\": \"268\"\n            },\n            {\n                \"country\": \"TC\",\n                \"code\": \"1649\"\n            },\n            {\n                \"country\": \"TD\",\n                \"code\": \"235\"\n            },\n            {\n                \"country\": \"TG\",\n                \"code\": \"228\"\n            },\n            {\n                \"country\": \"TH\",\n                \"code\": \"66\"\n            },\n            {\n                \"country\": \"TJ\",\n                \"code\": \"992\"\n            },\n            {\n                \"country\": \"TK\",\n                \"code\": \"690\"\n            },\n            {\n                \"country\": \"TL\",\n                \"code\": \"670\"\n            },\n            {\n                \"country\": \"TM\",\n                \"code\": \"993\"\n            },\n            {\n                \"country\": \"TN\",\n                \"code\": \"216\"\n            },\n            {\n                \"country\": \"TO\",\n                \"code\": \"676\"\n            },\n            {\n                \"country\": \"TR\",\n                \"code\": \"90\"\n            },\n            {\n                \"country\": \"TT\",\n                \"code\": \"1868\"\n            },\n            {\n                \"country\": \"TV\",\n                \"code\": \"688\"\n            },\n            {\n                \"country\": \"TW\",\n                \"code\": \"886\"\n            },\n            {\n                \"country\": \"TZ\",\n                \"code\": \"255\"\n            },\n            {\n                \"country\": \"UA\",\n                \"code\": \"380\"\n            },\n            {\n                \"country\": \"UG\",\n                \"code\": \"256\"\n            },\n            {\n                \"country\": \"US\",\n                \"code\": \"1\"\n            },\n            {\n                \"country\": \"UY\",\n                \"code\": \"598\"\n            },\n            {\n                \"country\": \"UZ\",\n                \"code\": \"998\"\n            },\n            {\n                \"country\": \"VA\",\n                \"code\": \"379\"\n            },\n            {\n                \"country\": \"VC\",\n                \"code\": \"1784\"\n            },\n            {\n                \"country\": \"VE\",\n                \"code\": \"58\"\n            },\n            {\n                \"country\": \"VG\",\n                \"code\": \"1284\"\n            },\n            {\n                \"country\": \"VI\",\n                \"code\": \"1340\"\n            },\n            {\n                \"country\": \"VN\",\n                \"code\": \"84\"\n            },\n            {\n                \"country\": \"VU\",\n                \"code\": \"678\"\n            },\n            {\n                \"country\": \"WF\",\n                \"code\": \"681\"\n            },\n            {\n                \"country\": \"WS\",\n                \"code\": \"685\"\n            },\n            {\n                \"country\": \"XK\",\n                \"code\": \"383\"\n            },\n            {\n                \"country\": \"YE\",\n                \"code\": \"967\"\n            },\n            {\n                \"country\": \"YT\",\n                \"code\": \"262\"\n            },\n            {\n                \"country\": \"ZA\",\n                \"code\": \"27\"\n            },\n            {\n                \"country\": \"ZM\",\n                \"code\": \"260\"\n            },\n            {\n                \"country\": \"ZW\",\n                \"code\": \"263\"\n            }\n        ]\n    },\n    \"assets\": {\n        \"assets\": {\n            \"ADA\": {\n                \"addressRegex\": \"^(([0-9A-Za-z]{57,59})|([0-9A-Za-z]{100,104}))$\",\n                \"coin\": \"ADA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Cardano\",\n                \"network\": \"ada\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://cardanoexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"https://cardanoexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ada.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Cardano\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"AION\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{64}$\",\n                \"coin\": \"AION\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Aion\",\n                \"network\": \"aion\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://mainnet.theoan.com/#/account/:address\",\n                \"explorerTxUrl\": \"https://mainnet.theoan.com/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80528563-f821-468b-9457-ce944a0d68e6.jpg\",\n                \"minConfirm\": 60,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"AION\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ALGO\": {\n                \"addressRegex\": \"^[A-Z0-9]{58,58}$\",\n                \"coin\": \"ALGO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Algorand\",\n                \"network\": \"algo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://algoexplorer.io/address/:address\",\n                \"explorerTxUrl\": \"https://algoexplorer.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/algo.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Algorand\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ANKR\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ANKR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"287\",\n                \"withdrawMin\": \"574\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/06f11cb4-6699-4c6d-911f-6773a1aa7b98.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ankr\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"ARPA\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ARPA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"345\",\n                \"withdrawMin\": \"690\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d2f05b7e-25c3-4403-9249-0861c221a6c9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"ARPA Chain\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ATOM\": {\n                \"addressRegex\": \"^(cosmos1)[0-9a-z]{38}$\",\n                \"coin\": \"ATOM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Cosmos\",\n                \"network\": \"atom\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ATOM to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.mintscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://www.mintscan.io/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/atom.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 15,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Cosmos\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"BAND\": {\n                \"addressRegex\": \"^(band1)[0-9a-z]{38}$\",\n                \"coin\": \"BAND\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"BAND\",\n                \"network\": \"band\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your BAND to Satang\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://cosmoscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://cosmoscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/band.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"BAND\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"BAT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"BAT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The name of this asset is Basic Attention Token. Please ensure you are depositing Basic Attention Token (BAT) tokens under the contract address ending in 887ef.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"36\",\n                \"withdrawMin\": \"72\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bat.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Basic Attention Token\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"BCH\": {\n                \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                \"coin\": \"BCH\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Bitcoin Cash\",\n                \"network\": \"bch\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-cash/address/:address\",\n                \"explorerTxUrl\": \"https://blockchair.com/bitcoin-cash/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bch.png\",\n                \"minConfirm\": 6,\n                \"unlockConfirm\": 6,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin Cash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BCHA\": {\n                \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                \"coin\": \"BCHA\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"BCHA\",\n                \"network\": \"bcha\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0\",\n                \"withdrawMin\": \"0.005\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-abc/address/:address\",\n                \"explorerTxUrl\": \"https://blockchair.com/bitcoin-abc/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bcha.png\",\n                \"minConfirm\": 11,\n                \"unlockConfirm\": 11,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin Cash ABC\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BEAM\": {\n                \"addressRegex\": \"^[A-Za-z0-9]{65,500}$|^(beam:)[A-Za-z0-9]{65,495}$\",\n                \"coin\": \"BEAM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Beam\",\n                \"network\": \"beam\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.beam.mw/\",\n                \"explorerTxUrl\": \"https://explorer.beam.mw/\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2a3788d1-5f5f-4a1f-abec-ac96528f5a33.png\",\n                \"minConfirm\": 70,\n                \"unlockConfirm\": 70,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Beam\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BNB\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"BNB\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit BNB Mainnet tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bnb.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"BNB\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"BTC\": {\n                \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^(bc1)[0-9A-Za-z]{39,59}$\",\n                \"coin\": \"BTC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Bitcoin\",\n                \"network\": \"btc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0005\",\n                \"withdrawMin\": \"0.001\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://blockchair.com/bitcoin/address/:address\",\n                \"explorerTxUrl\": \"https://blockchair.com/bitcoin/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/btc.png\",\n                \"minConfirm\": 2,\n                \"unlockConfirm\": 2,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Bitcoin\"\n            },\n            \"BTG\": {\n                \"addressRegex\": \"^[AG][a-km-zA-HJ-NP-Z1-9]{25,34}$\",\n                \"coin\": \"BTG\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Bitcoin Gold\",\n                \"network\": \"btg\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The name of this asset is Bitcoin Gold. Please ensure you are depositing Bitcoin Gold (BTG) tokens.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://btgexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"https://btgexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/262ad6d4-eb36-4288-aaf0-c127bace866f.png\",\n                \"minConfirm\": 70,\n                \"unlockConfirm\": 70,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin Gold\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BTT\": {\n                \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                \"coin\": \"BTT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tron (TRC20)\",\n                \"network\": \"trx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"28\",\n                \"withdrawMin\": \"56\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1baa029f-4d86-4210-b382-184d2993a04c.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"BitTorrent\",\n                \"label\": \"\",\n                \"networkFullName\": \"Tron\"\n            },\n            \"BUSD\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"BUSD\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/busd.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"BUSD\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"CAKE\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CAKE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Binance Smart Chain (BEP20)\",\n                \"network\": \"bsc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0096\",\n                \"withdrawMin\": \"0.019\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cake.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"PancakeSwap\",\n                \"label\": \"\",\n                \"networkFullName\": \"Binance Smart Chain\"\n            },\n            \"CELR\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CELR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"316\",\n                \"withdrawMin\": \"632\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5c9b1c61-4605-4795-82ad-1206d01b54a9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Celer Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"CHZ\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"CHZ\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit CHZ BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.63\",\n                \"withdrawMin\": \"1.26\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/721a863b-5c9d-4061-a2f0-d288dcd3d1ad.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Chiliz\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"COCOS\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"COCOS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Binance Smart Chain (BEP20)\",\n                \"network\": \"cocos\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.29\",\n                \"withdrawMin\": \"0.58\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cocos.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Cocos-BCX\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"COS\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"COS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit COS BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"8.91\",\n                \"withdrawMin\": \"17\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3cb8b31e-c6b4-4d83-b7fd-25c7a470404d.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Contentos\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"CPY\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CPY\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 18,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2dc47ff5-1689-498d-8230-f753dfcbf742.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Copytrack\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"CTXC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CTXC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Cortex\",\n                \"network\": \"ctxc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://cerebro.cortexlabs.ai/#/address/:address\",\n                \"explorerTxUrl\": \"https://cerebro.cortexlabs.ai/#/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e07316d8-d579-4398-9a56-61834f167fb1.png\",\n                \"minConfirm\": 257,\n                \"unlockConfirm\": 257,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Cortex\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"CVC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CVC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"55\",\n                \"withdrawMin\": \"110\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cvc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Civic\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"DAI\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"DAI\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"15\",\n                \"withdrawMin\": \"30\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dai.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dai\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"DASH\": {\n                \"addressRegex\": \"^[X|7][0-9A-Za-z]{33}$\",\n                \"coin\": \"DASH\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Dash\",\n                \"network\": \"dash\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"0.004\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://chainz.cryptoid.info/dash/address.dws?:address.htm\",\n                \"explorerTxUrl\": \"https://chainz.cryptoid.info/dash/tx.dws?:tx.htm\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6c8c554-ae01-4460-866d-fafa6f19db5c.png\",\n                \"minConfirm\": 25,\n                \"unlockConfirm\": 25,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"DOGE\": {\n                \"addressRegex\": \"^(D|A|9)[a-km-zA-HJ-NP-Z1-9]{33,34}$\",\n                \"coin\": \"DOGE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"dogecoin\",\n                \"network\": \"doge\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"5\",\n                \"withdrawMin\": \"25\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://dogechain.info/address/:address\",\n                \"explorerTxUrl\": \"https://dogechain.info/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/38634057-e551-44e0-8ff5-033d4ee0b612.png\",\n                \"minConfirm\": 50,\n                \"unlockConfirm\": 50,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dogecoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"DOT\": {\n                \"addressRegex\": \"^(1)[0-9a-z-A-Z]{44,50}$\",\n                \"coin\": \"DOT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Polkadot\",\n                \"network\": \"dot\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please note that we currently do not support deposits for staking rewards.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"1.5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://polkadot-cc1.subscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://polkadot.subscan.io/extrinsic/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dot.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Polkadot\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"DUSK\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"DUSK\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit DUSK BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1.28\",\n                \"withdrawMin\": \"2.56\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3376691f-fafc-4de5-afc2-74de713bc012.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dusk Network\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"ELEC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ELEC\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/10cc2d49-276a-4c0a-83dd-811071a1add2.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ENJ\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ENJ\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"16\",\n                \"withdrawMin\": \"32\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/enj.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Enjin Coin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"EOS\": {\n                \"addressRegex\": \"^[1-5a-z\\\\.]{1,12}$\",\n                \"coin\": \"EOS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_,]{1,120}$\",\n                \"name\": \"EOS\",\n                \"network\": \"eos\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit EOS to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://bloks.io/account/:address\",\n                \"explorerTxUrl\": \"https://bloks.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eos.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.0001\",\n                \"fixed\": 4,\n                \"fullname\": \"EOS\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"ERD\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"ERD\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ERD BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"Network swapped, BEP2 withdrawal closed.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/c7a20511-af2d-40a5-ac1f-6c2a38bc1dcb.jpg\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Elrond\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"ETC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ETC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum Classic\",\n                \"network\": \"etc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://classic.etccoopexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"https://classic.etccoopexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/etc.png\",\n                \"minConfirm\": 500,\n                \"unlockConfirm\": 500,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ethereum Classic\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ETH\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ETH\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eth.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ethereum\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ETP\": {\n                \"addressRegex\": \"^$\",\n                \"coin\": \"ETP\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ETP\",\n                \"network\": \"etp\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 18,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/948668ef-b20f-4b82-9cf5-819a1a21c3c1.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Meteverse\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"FET\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FET\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Binance Smart Chain (BEP20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.23\",\n                \"withdrawMin\": \"0.46\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/12f36fe2-e77f-4694-9a31-821ea646f547.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Fetch.AI\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"FLOW\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{16}$\",\n                \"coin\": \"FLOW\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Flow\",\n                \"network\": \"flow\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://flowscan.org/account/:address\",\n                \"explorerTxUrl\": \"https://flowscan.org/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/flow.png\",\n                \"minConfirm\": 20,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Flow\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"FTM\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FTM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Fantom\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/94650447-45c9-417d-be69-e74073fcc149.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"Fantom\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"FTT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FTT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.41\",\n                \"withdrawMin\": \"0.82\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/93f2bf75-970e-44b8-9773-20e141a6c8f9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"FTX Token\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"FUN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FUN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1300\",\n                \"withdrawMin\": \"2600\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2c82fac1-f5cf-4b82-8f91-cff8701efe76.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"FunFair\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"HBAR\": {\n                \"addressRegex\": \"^0.0.\\\\d{1,6}$\",\n                \"coin\": \"HBAR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^.{0,100}$\",\n                \"name\": \"Hedera Hashgraph\",\n                \"network\": \"hbar\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit HBAR to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.kabuto.sh/mainnet/id/:address\",\n                \"explorerTxUrl\": \"https://explorer.kabuto.sh/mainnet/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/hbar.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Hedera Hashgraph\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"HC\": {\n                \"addressRegex\": \"^[H][a-km-zA-HJ-NP-Z1-9]{26,35}$\",\n                \"coin\": \"HC\",\n                \"depositDesc\": \"Sorry, but this asset has been delisted. We cannot process deposits for this asset.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"HyperCash\",\n                \"network\": \"hc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://hc-explorer.h.cash/explorer/address/:address\",\n                \"explorerTxUrl\": \"https://hc-explorer.h.cash/explorer/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/21d02f93-0eec-4e93-8b78-e8d37fc4be13.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 30,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"HyperCash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"HOT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"HOT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The name of this asset is Holo (ticker: HOT). Please ensure you are depositing Holo (HOT) tokens under the contract address ending in 526e2.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2867\",\n                \"withdrawMin\": \"5734\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/772281f0-386f-4582-95ac-15df3e75c2a2.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Holo\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ICP\": {\n                \"addressRegex\": \"^[0-9a-zA-Z]{64}$\",\n                \"coin\": \"ICP\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Internet Computer\",\n                \"network\": \"icp\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0003\",\n                \"withdrawMin\": \"0.001\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.dfinityexplorer.org/\",\n                \"explorerTxUrl\": \"https://www.dfinityexplorer.org/\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/icp.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Internet Computer\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ICX\": {\n                \"addressRegex\": \"^(hx)[A-Za-z0-9]{40}$\",\n                \"coin\": \"ICX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ICON\",\n                \"network\": \"icx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.02\",\n                \"withdrawMin\": \"0.04\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tracker.icon.foundation/address/:address\",\n                \"explorerTxUrl\": \"https://tracker.icon.foundation/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/6cc30281-0724-46c1-bfca-ff96ab60fccd.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"ICON\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"IOST\": {\n                \"addressRegex\": \"^[A-Za-z0-9_]{5,11}$\",\n                \"coin\": \"IOST\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"IOST\",\n                \"network\": \"iost\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit IOST to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.iostabc.com/account/:address\",\n                \"explorerTxUrl\": \"https://www.iostabc.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iost.png\",\n                \"minConfirm\": 80,\n                \"unlockConfirm\": 80,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"IOST\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"IOTA\": {\n                \"addressRegex\": \"^(iota)[0-9a-z]{60}$\",\n                \"coin\": \"IOTA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"MIOTA\",\n                \"network\": \"iota\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.5\",\n                \"withdrawMin\": \"1.5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://thetangle.org/address/:address\",\n                \"explorerTxUrl\": \"https://thetangle.org/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iota.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"MIOTA\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"IOTX\": {\n                \"addressRegex\": \"io1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                \"coin\": \"IOTX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"IoTeX\",\n                \"network\": \"iotx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/86c97fe9-1b7d-41ca-b5d4-a646baa22f47.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.01\",\n                \"fixed\": 2,\n                \"fullname\": \"IoTeX\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"JFIN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"JFIN\",\n                \"depositDesc\": \"Deposit Suspended\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"90.50000000\",\n                \"withdrawMin\": \"181.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/7ec09a84-6de9-4649-909b-1a41f6e1b470.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"JFIN Coin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"KAVA\": {\n                \"addressRegex\": \"^(kava1)[0-9a-z]{38}$\",\n                \"coin\": \"KAVA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"KAVA\",\n                \"network\": \"kava\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your KAVA to Satang\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://kava.mintscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://kava.mintscan.io/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/877a71e6-291e-49e0-b84e-c99d476bf234.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Kava\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"KNC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"KNC\",\n                \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"8.45000000\",\n                \"withdrawMin\": \"16.90000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/knc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Kyber Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"LINK\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"LINK\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.512\",\n                \"withdrawMin\": \"1.024\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/link.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"ChainLink\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"LSK\": {\n                \"addressRegex\": \"^[0-9]{12,22}[L]$\",\n                \"coin\": \"LSK\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Lisk\",\n                \"network\": \"lsk\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.lisk.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.lisk.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/251bc8d8-be8c-404f-800c-e7b61f0020bb.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Lisk\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"LTC\": {\n                \"addressRegex\": \"^(L|M|3)[A-Za-z0-9]{33}$|^(ltc1)[0-9A-Za-z]{39}$\",\n                \"coin\": \"LTC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Litecoin\",\n                \"network\": \"ltc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Minimum deposit amount: 0.001 LTC. Any deposits less than or equal to the minimum amount will not be credited or refunded.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"http://explorer.litecoin.net/address/:address\",\n                \"explorerTxUrl\": \"http://explorer.litecoin.net/tx/:txid\",\n                \"depositWarnings\": {\n                    \"en\": \"Minimum deposit for LTC must be greater than 0.001 LTC\",\n                    \"th\": \"ยอดฝากขั้นต่ำสำหรับ LTC จะต้องมากกว่า 0.001 LTC\"\n                },\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ltc.png\",\n                \"minConfirm\": 4,\n                \"unlockConfirm\": 4,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Litecoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"LTO\": {\n                \"addressRegex\": \"^(3J)[0-9A-Za-z]{33}$\",\n                \"coin\": \"LTO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"LTO Network\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"5\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/lto.png\",\n                \"minConfirm\": 50,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"LTO Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"LUNA\": {\n                \"addressRegex\": \"^(terra1)[0-9a-z]{38}$\",\n                \"coin\": \"LUNA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Terra\",\n                \"network\": \"luna\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.02\",\n                \"withdrawMin\": \"5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://finder.terra.money/columbus-4/address/:address\",\n                \"explorerTxUrl\": \"https://finder.terra.money/columbus-4/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/luna.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Terra\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"MATIC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"MATIC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Polygon\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f35f22f1-5fbe-44e7-b27c-434bc4692243.png\",\n                \"minConfirm\": 128,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"MATIC Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"MBL\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"MBL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ontology\",\n                \"network\": \"ont\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"5.31\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/76ed03c0-191f-44b9-a447-bc3dc8c14dfa.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"MovieBloc\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"MCO\": {\n                \"addressRegex\": \"\",\n                \"coin\": \"MCO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"\",\n                \"withdrawMin\": \"\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/mco.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"MCO\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"MFT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"MFT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2192\",\n                \"withdrawMin\": \"4384\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5429b273-e866-4d4d-8ff1-7f611c20e6cc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Mainframe\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"NANO\": {\n                \"addressRegex\": \"^(xrb_|nano_)[13456789abcdefghijkmnopqrstuwxyz]{60}\",\n                \"coin\": \"NANO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"NANO\",\n                \"network\": \"nano\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Minimum deposit amount: 0.001 NANO. Any deposits less than the minimum will not be credited or refunded.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://nanocrawler.cc/explorer/account/:address\",\n                \"explorerTxUrl\": \"https://nanocrawler.cc/explorer/block/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/622eeb19-e123-4325-a157-bef257d9ae79.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"NANO\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"NEO\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"NEO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"NEP5\",\n                \"network\": \"neo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://neoscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://neoscan.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/842d559d-f7f8-4411-9b51-764e27a53289.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"1\",\n                \"fixed\": 0,\n                \"fullname\": \"NEO\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"NKN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"NKN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"72\",\n                \"withdrawMin\": \"144\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2412984d-4a6a-4a15-8247-0cf478e589b1.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"NKN\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"NPXS\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"NPXS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"4997\",\n                \"withdrawMin\": \"9994\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/npxs.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Pundi X\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"NULS\": {\n                \"addressRegex\": \"^NULS[a-km-zA-HJ-NP-Z1-9]{33,33}$\",\n                \"coin\": \"NULS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Nuls\",\n                \"network\": \"nuls\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://nuls.world/addresses/:address\",\n                \"explorerTxUrl\": \"https://nuls.world/transactions/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/nuls.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Nuls\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"OGN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"OGN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"28\",\n                \"withdrawMin\": \"56\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b0372bb4-3b77-4106-af0d-818d695f1734.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"OriginToken\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"OMG\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"OMG\",\n                \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2.90000000\",\n                \"withdrawMin\": \"5.80000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1d2e2f11-8c87-4232-be2c-f854fbe41825.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"OmiseGO\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ONE\": {\n                \"addressRegex\": \"^(one1)[a-z0-9]{38}$\",\n                \"coin\": \"ONE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Harmony\",\n                \"network\": \"one\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please ensure that both sending and receiving addresses are using shard0 in order to deposit ONE tokens to your Satang account successfully.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"60\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.harmony.one/#/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.harmony.one/#/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/133e0469-3a96-4e3a-9c42-b4c5a4f8def8.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Harmony\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ONG\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"ONG\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ontology\",\n                \"network\": \"ont\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.046\",\n                \"withdrawMin\": \"0.092\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/180b4eca-ec14-4f65-ba14-4c5adaf4b7d0.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ontology Gas\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ONT\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"ONT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ontology\",\n                \"network\": \"ont\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/26ad538a-7c7c-47cf-ad78-db88fb6335de.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"1\",\n                \"fixed\": 0,\n                \"fullname\": \"Ontology\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"PAX\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"PAX\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"15\",\n                \"withdrawMin\": \"30\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6ce1d9f-f592-4ee4-b3d5-758a591233d9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Paxos Standard\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"PAXG\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"PAXG\",\n                \"depositDesc\": \"Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"0.006\",\n                \"precision\": 18,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/paxg.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"PAX Gold\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"PERL\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"PERL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Token has been upgraded to New contract, please do not deposit old tokens into your Satang wallet\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"291\",\n                \"withdrawMin\": \"582\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/ed797f2b-b5a8-405c-a053-60a9a9b9b22f.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Perlin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"POWR\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"POWR\",\n                \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"69.00000000\",\n                \"withdrawMin\": \"138.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/powr.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Power Ledger\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"QTUM\": {\n                \"addressRegex\": \"^[Q|M][A-Za-z0-9]{33}$\",\n                \"coin\": \"QTUM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Qtum\",\n                \"network\": \"qtum\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://qtum.info/address/:address/\",\n                \"explorerTxUrl\": \"https://qtum.info/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/aaf3b2ce-9598-4309-845c-15705bab2e8f.png\",\n                \"minConfirm\": 24,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Qtum\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"REN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"REN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"27\",\n                \"withdrawMin\": \"54\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ren.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ren\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"RPX\": {\n                \"addressRegex\": \"^$\",\n                \"coin\": \"RPX\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"NEP5\",\n                \"network\": \"neo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e4feca7f-308c-4518-8aee-4be1d21fea3c.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Red Pulse Phoenix\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"RVN\": {\n                \"addressRegex\": \"^[Rr]{1}[A-Za-z0-9]{33,34}$\",\n                \"coin\": \"RVN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ravencoin\",\n                \"network\": \"rvn\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://ravencoin.network/address/:address\",\n                \"explorerTxUrl\": \"https://ravencoin.network/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/rvn.png\",\n                \"minConfirm\": 200,\n                \"unlockConfirm\": 200,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ravencoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"SOL\": {\n                \"addressRegex\": \"^[0-9a-zA-Z]{32,44}$\",\n                \"coin\": \"SOL\",\n                \"depositDesc\": \"Network is unstable, deposit closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Solana\",\n                \"network\": \"sol\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The Solana blockchain will retain 0.00203928 SOL for your first token deposit. The following deposits will not be charge for any fee.\",\n                \"withdrawDesc\": \"Network is unstable, withdrawal closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.solana.com/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.solana.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/sol.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Solana\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"STPT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"STPT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"471\",\n                \"withdrawMin\": \"942\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9730d4a0-7a31-41f4-91cc-6450bc3f13b2.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Standard Tokenization Protocol\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"STRAT\": {\n                \"addressRegex\": \"\",\n                \"coin\": \"STRAT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"\",\n                \"network\": \"strat\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"\",\n                \"withdrawMin\": \"\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://chainz.cryptoid.info/strat/address.dws?:address\",\n                \"explorerTxUrl\": \"https://chainz.cryptoid.info/strat/tx.dws?:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/239be534-315d-4c59-9770-91193efd74c1.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"Stratis\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"STX\": {\n                \"addressRegex\": \"^(SP)([0123456789ABCDEFGHJKMNPQRSTVWXYZ]+)$\",\n                \"coin\": \"STX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[a-zA-Z0-9]{0,34}$\",\n                \"name\": \"Stacks\",\n                \"network\": \"stx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your STX to Satang.\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.blockstack.org/address/stacks/:address\",\n                \"explorerTxUrl\": \"https://explorer.blockstack.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e746d04-1d8d-4aae-8bf8-7aa644a2c6e5.png\",\n                \"minConfirm\": 6,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.0001\",\n                \"fixed\": 4,\n                \"fullname\": \"Blockstack\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"TFUEL\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"TFUEL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Theta Token\",\n                \"network\": \"theta\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2.52\",\n                \"withdrawMin\": \"5.04\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d1208752-7976-4679-9347-52958184aab8.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Theta Fuel\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"THETA\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"THETA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Theta Token\",\n                \"network\": \"theta\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"This address is for Mainnet token deposits only. Please do not deposit ERC20 tokens to this address.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.12\",\n                \"withdrawMin\": \"0.24\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/theta.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Theta Token\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"TOMO\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"TOMO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"TomoChain\",\n                \"network\": \"tomo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://scan.tomochain.com/address/:address\",\n                \"explorerTxUrl\": \"https://scan.tomochain.com/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/84063afa-f0e4-494d-b8af-22b0fd358ee1.png\",\n                \"minConfirm\": 60,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"TomoChain\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"TROY\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"TROY\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your TROY BEP2 tokens to Satang.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/25ccb5d6-0583-4e23-8669-fcad9fbd806f.jpg\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Troy\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"TRX\": {\n                \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                \"coin\": \"TRX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tron (TRC20)\",\n                \"network\": \"trx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/trx.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"TRON\",\n                \"label\": \"\",\n                \"networkFullName\": \"Tron\"\n            },\n            \"TUSD\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"TUSD\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"15\",\n                \"withdrawMin\": \"30\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/tusd.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"TrueUSD\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"USDC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"USDC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"USD Coin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"USDT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"USDT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"TetherUS\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"VET\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"VET\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"VeChain\",\n                \"network\": \"vet\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please note that VEN has been swapped to VET. Please avoid sending VEN to your VET address, as your funds will be forever lost.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"20\",\n                \"withdrawMin\": \"40\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explore.vechain.org/accounts/:address/\",\n                \"explorerTxUrl\": \"https://explore.vechain.org/transactions/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/22f5c498-2f09-4da3-8110-9583f724cc59.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"VeChain\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"VITE\": {\n                \"addressRegex\": \"^(vite_)[a-z0-9]{50}$\",\n                \"coin\": \"VITE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\\\\w{0,120}\",\n                \"name\": \"VITE\",\n                \"network\": \"vite\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your VITE to Satang.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.vite.net/account/:address\",\n                \"explorerTxUrl\": \"https://explorer.vite.net/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f54178ac-6845-4989-98c8-759eced9289e.png\",\n                \"minConfirm\": 150,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"VITE\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"WAN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"WAN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Wanchain\",\n                \"network\": \"wan\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.wanscan.org/address/:address\",\n                \"explorerTxUrl\": \"https://www.wanscan.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/wan.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Wanchain\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"WAVES\": {\n                \"addressRegex\": \"^(3P)[0-9A-Za-z]{33}$\",\n                \"coin\": \"WAVES\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Waves\",\n                \"network\": \"waves\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"0.004\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"http://wavesexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"http://wavesexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/4a19ba9d-d60b-4ebd-a765-bdeeda0b7de1.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Waves\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"WAX\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"WAX\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/29ce6c32-95db-4a6b-a05a-2bae44e8096b.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"WIN\": {\n                \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                \"coin\": \"WIN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tron (TRC20)\",\n                \"network\": \"trx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"219\",\n                \"withdrawMin\": \"438\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e5470a4-ca68-469d-a78d-abdcabbf5c51.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"WINK\",\n                \"label\": \"\",\n                \"networkFullName\": \"Tron\"\n            },\n            \"WRX\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"WRX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.18\",\n                \"withdrawMin\": \"0.36\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2b2bec60-c9af-46a0-92b2-64c64ed936f2.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"WazirX\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"XLM\": {\n                \"addressRegex\": \"^G[A-D]{1}[A-Z2-7]{54}$\",\n                \"coin\": \"XLM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z]{1,28}$\",\n                \"name\": \"Stellar Lumens\",\n                \"network\": \"xlm\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit XLM to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.02\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://steexp.com/account/:address\",\n                \"explorerTxUrl\": \"https://steexp.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xlm.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.0000001\",\n                \"fixed\": 7,\n                \"fullname\": \"Stellar Lumens\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"XMR\": {\n                \"addressRegex\": \"^[48][a-zA-Z|\\\\d]{94}([a-zA-Z|\\\\d]{11})?$\",\n                \"coin\": \"XMR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Monero\",\n                \"network\": \"xmr\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0001\",\n                \"withdrawMin\": \"0.0002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://moneroblocks.info\",\n                \"explorerTxUrl\": \"https://moneroblocks.info/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xmr.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Monero\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"XRP\": {\n                \"addressRegex\": \"^r[1-9A-HJ-NP-Za-km-z]{25,34}$\",\n                \"coin\": \"XRP\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^((?!0)[0-9]{1,19})$\",\n                \"name\": \"Ripple\",\n                \"network\": \"xrp\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both Tag and Address data, which are required to deposit XRP to your Satang account successfully.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.25\",\n                \"withdrawMin\": \"20.25\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://bithomp.com/explorer/:address\",\n                \"explorerTxUrl\": \"https://bithomp.com/explorer/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xrp.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Ripple\",\n                \"label\": \"Tag\",\n                \"networkFullName\": \"\"\n            },\n            \"XTZ\": {\n                \"addressRegex\": \"^(tz[1,2,3]|KT1)[a-zA-Z0-9]{33}$\",\n                \"coin\": \"XTZ\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tezos\",\n                \"network\": \"xtz\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tezblock.io/account/:address\",\n                \"explorerTxUrl\": \"https://tezblock.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f80559c6-3242-4c48-ab11-3e5326bf6800.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Tezos\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"XZC\": {\n                \"addressRegex\": \"^[a|Z|3|4][0-9A-za-z]{33}$\",\n                \"coin\": \"XZC\",\n                \"depositDesc\": \"Deposit Suspended\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Firo\",\n                \"network\": \"xzc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.00010000\",\n                \"withdrawMin\": \"1.00010000\",\n                \"precision\": 8,\n                \"explorerAddressUrl\": \"https://chainz.cryptoid.info/xzc/address.dws?:address\",\n                \"explorerTxUrl\": \"https://chainz.cryptoid.info/xzc/tx.dws?:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xfr.png\",\n                \"minConfirm\": 6,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Firo\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ZEC\": {\n                \"addressRegex\": \"^(t)[A-Za-z0-9]{34}$\",\n                \"coin\": \"ZEC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Zcash\",\n                \"network\": \"zec\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.zcha.in/accounts/:address\",\n                \"explorerTxUrl\": \"https://explorer.zcha.in/transactions/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/zec.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 12,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Zcash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ZIL\": {\n                \"addressRegex\": \"zil1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                \"coin\": \"ZIL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Zilliqa\",\n                \"network\": \"zil\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.2\",\n                \"withdrawMin\": \"0.4\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://viewblock.io/zilliqa/address/:address\",\n                \"explorerTxUrl\": \"https://viewblock.io/zilliqa/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80289eb9-ed6f-47ef-867e-8de7c485bcbc.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Zilliqa\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ZRX\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ZRX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"27\",\n                \"withdrawMin\": \"54\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/image_1508915067776.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"0x\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            }\n        },\n        \"updated_at\": 1631772853922\n    },\n    \"trading\": {\n        \"symbols\": [\n            {\n                \"symbol\": \"btc_thb\",\n                \"baseAsset\": \"btc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 5,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"ada_thb\",\n                \"baseAsset\": \"ada\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.7\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"algo_thb\",\n                \"baseAsset\": \"algo\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"0.02\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"atom_thb\",\n                \"baseAsset\": \"atom\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"band_thb\",\n                \"baseAsset\": \"band\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"bat_thb\",\n                \"baseAsset\": \"bat\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.06\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"bch_thb\",\n                \"baseAsset\": \"bch\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.005\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"bnb_thb\",\n                \"baseAsset\": \"bnb\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"busd_thb\",\n                \"baseAsset\": \"busd\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"cake_thb\",\n                \"baseAsset\": \"cake\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"dai_thb\",\n                \"baseAsset\": \"dai\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"dash_thb\",\n                \"baseAsset\": \"dash\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"doge_thb\",\n                \"baseAsset\": \"doge\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"dot_thb\",\n                \"baseAsset\": \"dot\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.05\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"eos_thb\",\n                \"baseAsset\": \"eos\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.003\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"etc_thb\",\n                \"baseAsset\": \"etc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"eth_thb\",\n                \"baseAsset\": \"eth\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0005\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"flow_thb\",\n                \"baseAsset\": \"flow\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"hbar_thb\",\n                \"baseAsset\": \"hbar\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"0.3\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"icp_thb\",\n                \"baseAsset\": \"icp\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"jfin_thb\",\n                \"baseAsset\": \"jfin\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"link_thb\",\n                \"baseAsset\": \"link\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.003\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"ltc_thb\",\n                \"baseAsset\": \"ltc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"luna_thb\",\n                \"baseAsset\": \"luna\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"paxg_thb\",\n                \"baseAsset\": \"paxg\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"sol_thb\",\n                \"baseAsset\": \"sol\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"trx_thb\",\n                \"baseAsset\": \"trx\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.3\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"tusd_thb\",\n                \"baseAsset\": \"tusd\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"usdc_thb\",\n                \"baseAsset\": \"usdc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"usdt_thb\",\n                \"baseAsset\": \"usdt\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"vet_thb\",\n                \"baseAsset\": \"vet\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xlm_thb\",\n                \"baseAsset\": \"xlm\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xmr_thb\",\n                \"baseAsset\": \"xmr\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xrp_thb\",\n                \"baseAsset\": \"xrp\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xtz_thb\",\n                \"baseAsset\": \"xtz\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.005\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xzc_thb\",\n                \"baseAsset\": \"xzc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"zec_thb\",\n                \"baseAsset\": \"zec\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0002\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            }\n        ]\n    },\n    \"networks\": {\n        \"networks\": {\n            \"ada\": {\n                \"ada\": {\n                    \"addressRegex\": \"^(([0-9A-Za-z]{57,59})|([0-9A-Za-z]{100,104}))$\",\n                    \"coin\": \"ada\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Cardano\",\n                    \"network\": \"ada\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://cardanoexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"https://cardanoexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ada.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Cardano\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"aion\": {\n                \"aion\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{64}$\",\n                    \"coin\": \"aion\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Aion\",\n                    \"network\": \"aion\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://mainnet.theoan.com/#/account/:address\",\n                    \"explorerTxUrl\": \"https://mainnet.theoan.com/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80528563-f821-468b-9457-ce944a0d68e6.jpg\",\n                    \"minConfirm\": 60,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"AION\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"algo\": {\n                \"algo\": {\n                    \"addressRegex\": \"^[A-Z0-9]{58,58}$\",\n                    \"coin\": \"algo\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Algorand\",\n                    \"network\": \"algo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://algoexplorer.io/address/:address\",\n                    \"explorerTxUrl\": \"https://algoexplorer.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/algo.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Algorand\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ankr\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"ankr\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your ANKR BEP2 tokens to Satang.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2.14\",\n                    \"withdrawMin\": \"4.28\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/06f11cb4-6699-4c6d-911f-6773a1aa7b98.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ankr\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"arpa\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"arpa\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"345\",\n                    \"withdrawMin\": \"690\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d2f05b7e-25c3-4403-9249-0861c221a6c9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"ARPA Chain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"atom\": {\n                \"atom\": {\n                    \"addressRegex\": \"^(cosmos1)[0-9a-z]{38}$\",\n                    \"coin\": \"atom\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Cosmos\",\n                    \"network\": \"atom\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ATOM to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.mintscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://www.mintscan.io/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/atom.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 15,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Cosmos\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"band\": {\n                \"band\": {\n                    \"addressRegex\": \"^(band1)[0-9a-z]{38}$\",\n                    \"coin\": \"band\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"BAND\",\n                    \"network\": \"band\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your BAND to Satang\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://cosmoscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://cosmoscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/band.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"BAND\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"bat\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"bat\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The name of this asset is Basic Attention Token. Please ensure you are depositing Basic Attention Token (BAT) tokens under the contract address ending in 887ef.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"36\",\n                    \"withdrawMin\": \"72\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bat.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Basic Attention Token\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"bch\": {\n                \"bch\": {\n                    \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                    \"coin\": \"bch\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Bitcoin Cash\",\n                    \"network\": \"bch\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-cash/address/:address\",\n                    \"explorerTxUrl\": \"https://blockchair.com/bitcoin-cash/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bch.png\",\n                    \"minConfirm\": 6,\n                    \"unlockConfirm\": 6,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin Cash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"bcha\": {\n                \"bcha\": {\n                    \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                    \"coin\": \"bcha\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"BCHA\",\n                    \"network\": \"bcha\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"0.005\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-abc/address/:address\",\n                    \"explorerTxUrl\": \"https://blockchair.com/bitcoin-abc/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bcha.png\",\n                    \"minConfirm\": 11,\n                    \"unlockConfirm\": 11,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin Cash ABC\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"beam\": {\n                \"beam\": {\n                    \"addressRegex\": \"^[A-Za-z0-9]{65,500}$|^(beam:)[A-Za-z0-9]{65,495}$\",\n                    \"coin\": \"beam\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Beam\",\n                    \"network\": \"beam\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.beam.mw/\",\n                    \"explorerTxUrl\": \"https://explorer.beam.mw/\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2a3788d1-5f5f-4a1f-abec-ac96528f5a33.png\",\n                    \"minConfirm\": 70,\n                    \"unlockConfirm\": 70,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Beam\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"bnb\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"bnb\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit BNB Mainnet tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bnb.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"BNB\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                },\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"bnb\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bnb.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                }\n            },\n            \"btc\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"btc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0000045\",\n                    \"withdrawMin\": \"0.000009\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/btc.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"btc\": {\n                    \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^(bc1)[0-9A-Za-z]{39,59}$\",\n                    \"coin\": \"btc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Bitcoin\",\n                    \"network\": \"btc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0005\",\n                    \"withdrawMin\": \"0.001\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://blockchair.com/bitcoin/address/:address\",\n                    \"explorerTxUrl\": \"https://blockchair.com/bitcoin/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/btc.png\",\n                    \"minConfirm\": 2,\n                    \"unlockConfirm\": 2,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Bitcoin\"\n                }\n            },\n            \"btg\": {\n                \"btg\": {\n                    \"addressRegex\": \"^[AG][a-km-zA-HJ-NP-Z1-9]{25,34}$\",\n                    \"coin\": \"btg\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Bitcoin Gold\",\n                    \"network\": \"btg\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The name of this asset is Bitcoin Gold. Please ensure you are depositing Bitcoin Gold (BTG) tokens.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://btgexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"https://btgexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/262ad6d4-eb36-4288-aaf0-c127bace866f.png\",\n                    \"minConfirm\": 70,\n                    \"unlockConfirm\": 70,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin Gold\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"btt\": {\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"btt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"28\",\n                    \"withdrawMin\": \"56\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1baa029f-4d86-4210-b382-184d2993a04c.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"BitTorrent\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"busd\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"busd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/busd.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"BUSD\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"busd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/busd.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"BUSD\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"cake\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"cake\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0096\",\n                    \"withdrawMin\": \"0.019\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cake.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"PancakeSwap\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                }\n            },\n            \"celr\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"celr\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"316\",\n                    \"withdrawMin\": \"632\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5c9b1c61-4605-4795-82ad-1206d01b54a9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Celer Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"chz\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"chz\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit CHZ BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.63\",\n                    \"withdrawMin\": \"1.26\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/721a863b-5c9d-4061-a2f0-d288dcd3d1ad.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Chiliz\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"cocos\": {\n                \"cocos\": {\n                    \"addressRegex\": \"^[a-z]{1}[a-z0-9-]{3,61}[a-z0-9]{1}$\",\n                    \"coin\": \"cocos\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^\\\\w{1,90}$\",\n                    \"name\": \"Cocos-BCX\",\n                    \"network\": \"cocos\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit COCOS to your Satang account. When depositing, ensure that you're sending the message unencrypted.\",\n                    \"withdrawDesc\": \"Withdrawals are not supported for this coin.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cocos.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Cocos-BCX\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"cos\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"cos\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit COS BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"8.91\",\n                    \"withdrawMin\": \"17\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3cb8b31e-c6b4-4d83-b7fd-25c7a470404d.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Contentos\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"cpy\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"cpy\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 18,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2dc47ff5-1689-498d-8230-f753dfcbf742.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Copytrack\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"ctxc\": {\n                \"ctxc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ctxc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Cortex\",\n                    \"network\": \"ctxc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://cerebro.cortexlabs.ai/#/address/:address\",\n                    \"explorerTxUrl\": \"https://cerebro.cortexlabs.ai/#/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e07316d8-d579-4398-9a56-61834f167fb1.png\",\n                    \"minConfirm\": 257,\n                    \"unlockConfirm\": 257,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Cortex\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"cvc\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"cvc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"55\",\n                    \"withdrawMin\": \"110\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cvc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Civic\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"dai\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"dai\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"15\",\n                    \"withdrawMin\": \"30\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dai.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dai\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"dash\": {\n                \"dash\": {\n                    \"addressRegex\": \"^[X|7][0-9A-Za-z]{33}$\",\n                    \"coin\": \"dash\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Dash\",\n                    \"network\": \"dash\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"0.004\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://chainz.cryptoid.info/dash/address.dws?:address.htm\",\n                    \"explorerTxUrl\": \"https://chainz.cryptoid.info/dash/tx.dws?:tx.htm\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6c8c554-ae01-4460-866d-fafa6f19db5c.png\",\n                    \"minConfirm\": 25,\n                    \"unlockConfirm\": 25,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"doge\": {\n                \"doge\": {\n                    \"addressRegex\": \"^(D|A|9)[a-km-zA-HJ-NP-Z1-9]{33,34}$\",\n                    \"coin\": \"doge\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"dogecoin\",\n                    \"network\": \"doge\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"5\",\n                    \"withdrawMin\": \"25\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://dogechain.info/address/:address\",\n                    \"explorerTxUrl\": \"https://dogechain.info/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/38634057-e551-44e0-8ff5-033d4ee0b612.png\",\n                    \"minConfirm\": 50,\n                    \"unlockConfirm\": 50,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dogecoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"dot\": {\n                \"dot\": {\n                    \"addressRegex\": \"^(1)[0-9a-z-A-Z]{44,50}$\",\n                    \"coin\": \"dot\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Polkadot\",\n                    \"network\": \"dot\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please note that we currently do not support deposits for staking rewards.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"1.5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://polkadot-cc1.subscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://polkadot.subscan.io/extrinsic/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dot.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Polkadot\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"dusk\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"dusk\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit DUSK BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1.28\",\n                    \"withdrawMin\": \"2.56\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3376691f-fafc-4de5-afc2-74de713bc012.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dusk Network\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"elec\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"elec\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/10cc2d49-276a-4c0a-83dd-811071a1add2.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"enj\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"enj\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"16\",\n                    \"withdrawMin\": \"32\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/enj.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Enjin Coin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"eos\": {\n                \"eos\": {\n                    \"addressRegex\": \"^[1-5a-z\\\\.]{1,12}$\",\n                    \"coin\": \"eos\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_,]{1,120}$\",\n                    \"name\": \"EOS\",\n                    \"network\": \"eos\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit EOS to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bloks.io/account/:address\",\n                    \"explorerTxUrl\": \"https://bloks.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eos.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.0001\",\n                    \"fixed\": 4,\n                    \"fullname\": \"EOS\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"erd\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"erd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ERD BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"Network swapped, BEP2 withdrawal closed.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/c7a20511-af2d-40a5-ac1f-6c2a38bc1dcb.jpg\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Elrond\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"etc\": {\n                \"etc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"etc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum Classic\",\n                    \"network\": \"etc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://classic.etccoopexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"https://classic.etccoopexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/etc.png\",\n                    \"minConfirm\": 500,\n                    \"unlockConfirm\": 500,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ethereum Classic\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"eth\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"eth\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.00006\",\n                    \"withdrawMin\": \"0.00012\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eth.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ethereum\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"eth\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eth.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ethereum\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"etp\": {\n                \"etp\": {\n                    \"addressRegex\": \"^$\",\n                    \"coin\": \"etp\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ETP\",\n                    \"network\": \"etp\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 18,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/948668ef-b20f-4b82-9cf5-819a1a21c3c1.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Meteverse\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"fet\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"fet\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"30\",\n                    \"withdrawMin\": \"60\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/12f36fe2-e77f-4694-9a31-821ea646f547.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Fetch.AI\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"flow\": {\n                \"flow\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{16}$\",\n                    \"coin\": \"flow\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Flow\",\n                    \"network\": \"flow\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://flowscan.org/account/:address\",\n                    \"explorerTxUrl\": \"https://flowscan.org/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/flow.png\",\n                    \"minConfirm\": 20,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Flow\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ftm\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"ftm\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit FTM BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.15\",\n                    \"withdrawMin\": \"0.3\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/94650447-45c9-417d-be69-e74073fcc149.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Fantom\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"ftt\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ftt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.41\",\n                    \"withdrawMin\": \"0.82\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/93f2bf75-970e-44b8-9773-20e141a6c8f9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"FTX Token\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"fun\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"fun\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1300\",\n                    \"withdrawMin\": \"2600\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2c82fac1-f5cf-4b82-8f91-cff8701efe76.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"FunFair\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"hbar\": {\n                \"hbar\": {\n                    \"addressRegex\": \"^0.0.\\\\d{1,6}$\",\n                    \"coin\": \"hbar\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^.{0,100}$\",\n                    \"name\": \"Hedera Hashgraph\",\n                    \"network\": \"hbar\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit HBAR to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.kabuto.sh/mainnet/id/:address\",\n                    \"explorerTxUrl\": \"https://explorer.kabuto.sh/mainnet/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/hbar.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Hedera Hashgraph\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"hc\": {\n                \"hc\": {\n                    \"addressRegex\": \"^[H][a-km-zA-HJ-NP-Z1-9]{26,35}$\",\n                    \"coin\": \"hc\",\n                    \"depositDesc\": \"Sorry, but this asset has been delisted. We cannot process deposits for this asset.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"HyperCash\",\n                    \"network\": \"hc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://hc-explorer.h.cash/explorer/address/:address\",\n                    \"explorerTxUrl\": \"https://hc-explorer.h.cash/explorer/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/21d02f93-0eec-4e93-8b78-e8d37fc4be13.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 30,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"HyperCash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"hot\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"hot\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The name of this asset is Holo (ticker: HOT). Please ensure you are depositing Holo (HOT) tokens under the contract address ending in 526e2.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2867\",\n                    \"withdrawMin\": \"5734\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/772281f0-386f-4582-95ac-15df3e75c2a2.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Holo\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"icp\": {\n                \"icp\": {\n                    \"addressRegex\": \"^[0-9a-zA-Z]{64}$\",\n                    \"coin\": \"icp\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Internet Computer\",\n                    \"network\": \"icp\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0003\",\n                    \"withdrawMin\": \"0.001\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.dfinityexplorer.org/\",\n                    \"explorerTxUrl\": \"https://www.dfinityexplorer.org/\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/icp.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Internet Computer\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"icx\": {\n                \"icx\": {\n                    \"addressRegex\": \"^(hx)[A-Za-z0-9]{40}$\",\n                    \"coin\": \"icx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ICON\",\n                    \"network\": \"icx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.02\",\n                    \"withdrawMin\": \"0.04\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tracker.icon.foundation/address/:address\",\n                    \"explorerTxUrl\": \"https://tracker.icon.foundation/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/6cc30281-0724-46c1-bfca-ff96ab60fccd.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"ICON\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"iost\": {\n                \"iost\": {\n                    \"addressRegex\": \"^[A-Za-z0-9_]{5,11}$\",\n                    \"coin\": \"iost\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"IOST\",\n                    \"network\": \"iost\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit IOST to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.iostabc.com/account/:address\",\n                    \"explorerTxUrl\": \"https://www.iostabc.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iost.png\",\n                    \"minConfirm\": 80,\n                    \"unlockConfirm\": 80,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"IOST\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"iota\": {\n                \"iota\": {\n                    \"addressRegex\": \"^(iota)[0-9a-z]{60}$\",\n                    \"coin\": \"iota\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"MIOTA\",\n                    \"network\": \"iota\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.5\",\n                    \"withdrawMin\": \"1.5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://thetangle.org/address/:address\",\n                    \"explorerTxUrl\": \"https://thetangle.org/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iota.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"MIOTA\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"iotx\": {\n                \"iotx\": {\n                    \"addressRegex\": \"io1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                    \"coin\": \"iotx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"IoTeX\",\n                    \"network\": \"iotx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/86c97fe9-1b7d-41ca-b5d4-a646baa22f47.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.01\",\n                    \"fixed\": 2,\n                    \"fullname\": \"IoTeX\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"jfin\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"jfin\",\n                    \"depositDesc\": \"Deposit Suspended\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"90.50000000\",\n                    \"withdrawMin\": \"181.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/7ec09a84-6de9-4649-909b-1a41f6e1b470.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"JFIN Coin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"kava\": {\n                \"kava\": {\n                    \"addressRegex\": \"^(kava1)[0-9a-z]{38}$\",\n                    \"coin\": \"kava\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"KAVA\",\n                    \"network\": \"kava\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your KAVA to Satang\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://kava.mintscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://kava.mintscan.io/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/877a71e6-291e-49e0-b84e-c99d476bf234.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Kava\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"knc\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"knc\",\n                    \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"8.45000000\",\n                    \"withdrawMin\": \"16.90000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/knc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Kyber Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"link\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"link\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.512\",\n                    \"withdrawMin\": \"1.024\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/link.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"ChainLink\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"lsk\": {\n                \"lsk\": {\n                    \"addressRegex\": \"^[0-9]{12,22}[L]$\",\n                    \"coin\": \"lsk\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Lisk\",\n                    \"network\": \"lsk\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.lisk.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.lisk.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/251bc8d8-be8c-404f-800c-e7b61f0020bb.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Lisk\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ltc\": {\n                \"ltc\": {\n                    \"addressRegex\": \"^(L|M|3)[A-Za-z0-9]{33}$|^(ltc1)[0-9A-Za-z]{39}$\",\n                    \"coin\": \"ltc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Litecoin\",\n                    \"network\": \"ltc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Minimum deposit amount: 0.001 LTC. Any deposits less than or equal to the minimum amount will not be credited or refunded.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"http://explorer.litecoin.net/address/:address\",\n                    \"explorerTxUrl\": \"http://explorer.litecoin.net/tx/:txid\",\n                    \"depositWarnings\": {\n                        \"en\": \"Minimum deposit for LTC must be greater than 0.001 LTC\",\n                        \"th\": \"ยอดฝากขั้นต่ำสำหรับ LTC จะต้องมากกว่า 0.001 LTC\"\n                    },\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ltc.png\",\n                    \"minConfirm\": 4,\n                    \"unlockConfirm\": 4,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Litecoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"lto\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"lto\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"94\",\n                    \"withdrawMin\": \"188\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/lto.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"LTO Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"luna\": {\n                \"luna\": {\n                    \"addressRegex\": \"^(terra1)[0-9a-z]{38}$\",\n                    \"coin\": \"luna\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Terra\",\n                    \"network\": \"luna\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.02\",\n                    \"withdrawMin\": \"5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://finder.terra.money/columbus-4/address/:address\",\n                    \"explorerTxUrl\": \"https://finder.terra.money/columbus-4/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/luna.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Terra\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"matic\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"matic\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"9.72\",\n                    \"withdrawMin\": \"19.44\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f35f22f1-5fbe-44e7-b27c-434bc4692243.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"MATIC Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"mbl\": {\n                \"ont\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"mbl\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ontology\",\n                    \"network\": \"ont\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"5.31\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/76ed03c0-191f-44b9-a447-bc3dc8c14dfa.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"MovieBloc\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"mco\": {\n                \"eth\": {\n                    \"addressRegex\": \"\",\n                    \"coin\": \"mco\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"\",\n                    \"withdrawMin\": \"\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/mco.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0\",\n                    \"fixed\": 0,\n                    \"fullname\": \"MCO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"mft\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"mft\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2192\",\n                    \"withdrawMin\": \"4384\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5429b273-e866-4d4d-8ff1-7f611c20e6cc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Mainframe\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"nano\": {\n                \"nano\": {\n                    \"addressRegex\": \"^(xrb_|nano_)[13456789abcdefghijkmnopqrstuwxyz]{60}\",\n                    \"coin\": \"nano\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"NANO\",\n                    \"network\": \"nano\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Minimum deposit amount: 0.001 NANO. Any deposits less than the minimum will not be credited or refunded.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://nanocrawler.cc/explorer/account/:address\",\n                    \"explorerTxUrl\": \"https://nanocrawler.cc/explorer/block/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/622eeb19-e123-4325-a157-bef257d9ae79.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"NANO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"neo\": {\n                \"neo\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"neo\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"NEP5\",\n                    \"network\": \"neo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://neoscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://neoscan.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/842d559d-f7f8-4411-9b51-764e27a53289.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"1\",\n                    \"fixed\": 0,\n                    \"fullname\": \"NEO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"nkn\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"nkn\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"72\",\n                    \"withdrawMin\": \"144\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2412984d-4a6a-4a15-8247-0cf478e589b1.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"NKN\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"npxs\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"npxs\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"4997\",\n                    \"withdrawMin\": \"9994\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/npxs.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Pundi X\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"nuls\": {\n                \"nuls\": {\n                    \"addressRegex\": \"^NULS[a-km-zA-HJ-NP-Z1-9]{33,33}$\",\n                    \"coin\": \"nuls\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Nuls\",\n                    \"network\": \"nuls\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://nuls.world/addresses/:address\",\n                    \"explorerTxUrl\": \"https://nuls.world/transactions/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/nuls.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Nuls\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ogn\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ogn\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"28\",\n                    \"withdrawMin\": \"56\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b0372bb4-3b77-4106-af0d-818d695f1734.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"OriginToken\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"omg\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"omg\",\n                    \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2.90000000\",\n                    \"withdrawMin\": \"5.80000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1d2e2f11-8c87-4232-be2c-f854fbe41825.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"OmiseGO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"one\": {\n                \"one\": {\n                    \"addressRegex\": \"^(one1)[a-z0-9]{38}$\",\n                    \"coin\": \"one\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Harmony\",\n                    \"network\": \"one\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please ensure that both sending and receiving addresses are using shard0 in order to deposit ONE tokens to your Satang account successfully.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"60\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.harmony.one/#/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.harmony.one/#/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/133e0469-3a96-4e3a-9c42-b4c5a4f8def8.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Harmony\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ong\": {\n                \"ont\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"ong\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ontology\",\n                    \"network\": \"ont\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.046\",\n                    \"withdrawMin\": \"0.092\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/180b4eca-ec14-4f65-ba14-4c5adaf4b7d0.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ontology Gas\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ont\": {\n                \"ont\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"ont\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ontology\",\n                    \"network\": \"ont\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/26ad538a-7c7c-47cf-ad78-db88fb6335de.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"1\",\n                    \"fixed\": 0,\n                    \"fullname\": \"Ontology\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"pax\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"pax\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"15\",\n                    \"withdrawMin\": \"30\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6ce1d9f-f592-4ee4-b3d5-758a591233d9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Paxos Standard\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"paxg\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"paxg\",\n                    \"depositDesc\": \"Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"0.006\",\n                    \"precision\": 18,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/paxg.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"PAX Gold\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"perl\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"perl\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Token has been upgraded to New contract, please do not deposit old tokens into your Satang wallet\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"291\",\n                    \"withdrawMin\": \"582\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/ed797f2b-b5a8-405c-a053-60a9a9b9b22f.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Perlin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"powr\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"powr\",\n                    \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"69.00000000\",\n                    \"withdrawMin\": \"138.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/powr.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Power Ledger\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"qtum\": {\n                \"qtum\": {\n                    \"addressRegex\": \"^[Q|M][A-Za-z0-9]{33}$\",\n                    \"coin\": \"qtum\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Qtum\",\n                    \"network\": \"qtum\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://qtum.info/address/:address/\",\n                    \"explorerTxUrl\": \"https://qtum.info/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/aaf3b2ce-9598-4309-845c-15705bab2e8f.png\",\n                    \"minConfirm\": 24,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Qtum\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ren\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ren\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"27\",\n                    \"withdrawMin\": \"54\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ren.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ren\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"rpx\": {\n                \"neo\": {\n                    \"addressRegex\": \"^$\",\n                    \"coin\": \"rpx\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"NEP5\",\n                    \"network\": \"neo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e4feca7f-308c-4518-8aee-4be1d21fea3c.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Red Pulse Phoenix\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"rvn\": {\n                \"rvn\": {\n                    \"addressRegex\": \"^[Rr]{1}[A-Za-z0-9]{33,34}$\",\n                    \"coin\": \"rvn\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ravencoin\",\n                    \"network\": \"rvn\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://ravencoin.network/address/:address\",\n                    \"explorerTxUrl\": \"https://ravencoin.network/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/rvn.png\",\n                    \"minConfirm\": 200,\n                    \"unlockConfirm\": 200,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ravencoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"sol\": {\n                \"sol\": {\n                    \"addressRegex\": \"^[0-9a-zA-Z]{32,44}$\",\n                    \"coin\": \"sol\",\n                    \"depositDesc\": \"Network is unstable, deposit closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Solana\",\n                    \"network\": \"sol\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The Solana blockchain will retain 0.00203928 SOL for your first token deposit. The following deposits will not be charge for any fee.\",\n                    \"withdrawDesc\": \"Network is unstable, withdrawal closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.solana.com/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.solana.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/sol.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Solana\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"stpt\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"stpt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"471\",\n                    \"withdrawMin\": \"942\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9730d4a0-7a31-41f4-91cc-6450bc3f13b2.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Standard Tokenization Protocol\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"strat\": {\n                \"strat\": {\n                    \"addressRegex\": \"\",\n                    \"coin\": \"strat\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"\",\n                    \"network\": \"strat\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"\",\n                    \"withdrawMin\": \"\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://chainz.cryptoid.info/strat/address.dws?:address\",\n                    \"explorerTxUrl\": \"https://chainz.cryptoid.info/strat/tx.dws?:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/239be534-315d-4c59-9770-91193efd74c1.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0\",\n                    \"fixed\": 0,\n                    \"fullname\": \"Stratis\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"stx\": {\n                \"stx\": {\n                    \"addressRegex\": \"^(SP)([0123456789ABCDEFGHJKMNPQRSTVWXYZ]+)$\",\n                    \"coin\": \"stx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[a-zA-Z0-9]{0,34}$\",\n                    \"name\": \"Stacks\",\n                    \"network\": \"stx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your STX to Satang.\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.blockstack.org/address/stacks/:address\",\n                    \"explorerTxUrl\": \"https://explorer.blockstack.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e746d04-1d8d-4aae-8bf8-7aa644a2c6e5.png\",\n                    \"minConfirm\": 6,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.0001\",\n                    \"fixed\": 4,\n                    \"fullname\": \"Blockstack\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"tfuel\": {\n                \"theta\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"tfuel\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Theta Token\",\n                    \"network\": \"theta\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2.52\",\n                    \"withdrawMin\": \"5.04\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                    \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d1208752-7976-4679-9347-52958184aab8.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Theta Fuel\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"theta\": {\n                \"theta\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"theta\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Theta Token\",\n                    \"network\": \"theta\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"This address is for Mainnet token deposits only. Please do not deposit ERC20 tokens to this address.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.12\",\n                    \"withdrawMin\": \"0.24\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                    \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/theta.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Theta Token\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"tomo\": {\n                \"tomo\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"tomo\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"TomoChain\",\n                    \"network\": \"tomo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://scan.tomochain.com/address/:address\",\n                    \"explorerTxUrl\": \"https://scan.tomochain.com/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/84063afa-f0e4-494d-b8af-22b0fd358ee1.png\",\n                    \"minConfirm\": 60,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"TomoChain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"troy\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"troy\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your TROY BEP2 tokens to Satang.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/25ccb5d6-0583-4e23-8669-fcad9fbd806f.jpg\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Troy\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"trx\": {\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"trx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/trx.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"TRON\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"tusd\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"tusd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"15\",\n                    \"withdrawMin\": \"30\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/tusd.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"TrueUSD\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"usdc\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"usdc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"USD Coin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"usdt\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"usdt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.8\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"TetherUS\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"usdt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"TetherUS\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                },\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"usdt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"vet\": {\n                \"vet\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"vet\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"VeChain\",\n                    \"network\": \"vet\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please note that VEN has been swapped to VET. Please avoid sending VEN to your VET address, as your funds will be forever lost.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"20\",\n                    \"withdrawMin\": \"40\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explore.vechain.org/accounts/:address/\",\n                    \"explorerTxUrl\": \"https://explore.vechain.org/transactions/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/22f5c498-2f09-4da3-8110-9583f724cc59.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"VeChain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"vite\": {\n                \"vite\": {\n                    \"addressRegex\": \"^(vite_)[a-z0-9]{50}$\",\n                    \"coin\": \"vite\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\\\\w{0,120}\",\n                    \"name\": \"VITE\",\n                    \"network\": \"vite\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your VITE to Satang.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.vite.net/account/:address\",\n                    \"explorerTxUrl\": \"https://explorer.vite.net/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f54178ac-6845-4989-98c8-759eced9289e.png\",\n                    \"minConfirm\": 150,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"VITE\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"wan\": {\n                \"wan\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"wan\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Wanchain\",\n                    \"network\": \"wan\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.wanscan.org/address/:address\",\n                    \"explorerTxUrl\": \"https://www.wanscan.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/wan.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Wanchain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"waves\": {\n                \"waves\": {\n                    \"addressRegex\": \"^(3P)[0-9A-Za-z]{33}$\",\n                    \"coin\": \"waves\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Waves\",\n                    \"network\": \"waves\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"0.004\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"http://wavesexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"http://wavesexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/4a19ba9d-d60b-4ebd-a765-bdeeda0b7de1.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Waves\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"wax\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"wax\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/29ce6c32-95db-4a6b-a05a-2bae44e8096b.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"win\": {\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"win\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"219\",\n                    \"withdrawMin\": \"438\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e5470a4-ca68-469d-a78d-abdcabbf5c51.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"WINK\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"wrx\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"wrx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.18\",\n                    \"withdrawMin\": \"0.36\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2b2bec60-c9af-46a0-92b2-64c64ed936f2.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"WazirX\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"xlm\": {\n                \"xlm\": {\n                    \"addressRegex\": \"^G[A-D]{1}[A-Z2-7]{54}$\",\n                    \"coin\": \"xlm\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z]{1,28}$\",\n                    \"name\": \"Stellar Lumens\",\n                    \"network\": \"xlm\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit XLM to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.02\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://steexp.com/account/:address\",\n                    \"explorerTxUrl\": \"https://steexp.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xlm.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.0000001\",\n                    \"fixed\": 7,\n                    \"fullname\": \"Stellar Lumens\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xmr\": {\n                \"xmr\": {\n                    \"addressRegex\": \"^[48][a-zA-Z|\\\\d]{94}([a-zA-Z|\\\\d]{11})?$\",\n                    \"coin\": \"xmr\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Monero\",\n                    \"network\": \"xmr\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0001\",\n                    \"withdrawMin\": \"0.0002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://moneroblocks.info\",\n                    \"explorerTxUrl\": \"https://moneroblocks.info/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xmr.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Monero\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xrp\": {\n                \"xrp\": {\n                    \"addressRegex\": \"^r[1-9A-HJ-NP-Za-km-z]{25,34}$\",\n                    \"coin\": \"xrp\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^((?!0)[0-9]{1,19})$\",\n                    \"name\": \"Ripple\",\n                    \"network\": \"xrp\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both Tag and Address data, which are required to deposit XRP to your Satang account successfully.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.25\",\n                    \"withdrawMin\": \"20.25\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bithomp.com/explorer/:address\",\n                    \"explorerTxUrl\": \"https://bithomp.com/explorer/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xrp.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Ripple\",\n                    \"label\": \"Tag\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xtz\": {\n                \"xtz\": {\n                    \"addressRegex\": \"^(tz[1,2,3]|KT1)[a-zA-Z0-9]{33}$\",\n                    \"coin\": \"xtz\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tezos\",\n                    \"network\": \"xtz\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tezblock.io/account/:address\",\n                    \"explorerTxUrl\": \"https://tezblock.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f80559c6-3242-4c48-ab11-3e5326bf6800.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Tezos\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xzc\": {\n                \"xzc\": {\n                    \"addressRegex\": \"^[a|Z|3|4][0-9A-za-z]{33}$\",\n                    \"coin\": \"xzc\",\n                    \"depositDesc\": \"Deposit Suspended\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Firo\",\n                    \"network\": \"xzc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.00010000\",\n                    \"withdrawMin\": \"1.00010000\",\n                    \"precision\": 8,\n                    \"explorerAddressUrl\": \"https://chainz.cryptoid.info/xzc/address.dws?:address\",\n                    \"explorerTxUrl\": \"https://chainz.cryptoid.info/xzc/tx.dws?:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xfr.png\",\n                    \"minConfirm\": 6,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Firo\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"zec\": {\n                \"zec\": {\n                    \"addressRegex\": \"^(t)[A-Za-z0-9]{34}$\",\n                    \"coin\": \"zec\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Zcash\",\n                    \"network\": \"zec\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.zcha.in/accounts/:address\",\n                    \"explorerTxUrl\": \"https://explorer.zcha.in/transactions/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/zec.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 12,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Zcash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"zil\": {\n                \"zil\": {\n                    \"addressRegex\": \"zil1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                    \"coin\": \"zil\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Zilliqa\",\n                    \"network\": \"zil\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.2\",\n                    \"withdrawMin\": \"0.4\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://viewblock.io/zilliqa/address/:address\",\n                    \"explorerTxUrl\": \"https://viewblock.io/zilliqa/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80289eb9-ed6f-47ef-867e-8de7c485bcbc.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Zilliqa\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"zrx\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"zrx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"27\",\n                    \"withdrawMin\": \"54\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/image_1508915067776.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"0x\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            }\n        },\n        \"updated_at\": 1631772853922\n    },\n    \"features\": {\n        \"fiat_instant_deposit\": {\n            \"updated_at\": 1631415991,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"Instant deposit\",\n                    \"th\": \"ฝากแบบทันที\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 19,\n                        \"warnings\": {\n                            \"top\": {\n                                \"links\": \"www.google.com\",\n                                \"messages\": {\n                                    \"en\": \"This is warning message, which configured by admin\",\n                                    \"th\": \"นี่คือคำเตือนที่เขียนโดย admin\"\n                                }\n                            }\n                        }\n                    }\n                }\n            },\n            \"enabled\": true\n        },\n        \"fiat_instant_withdrawal\": {\n            \"updated_at\": 1631415982,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"Instant deposit\",\n                    \"th\": \"ฝากแบบทันที\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 19\n                    }\n                }\n            },\n            \"enabled\": true,\n            \"Maintenance\": {\n                \"StartTime\": \"23:45\",\n                \"StopTime\": \"00:15\"\n            }\n        },\n        \"fiat_normal_deposit\": {\n            \"updated_at\": 1631593693,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"Instant deposit\",\n                    \"th\": \"ฝากแบบทันที\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 50000,\n                        \"warnings\": {\n                            \"top\": {\n                                \"links\": \"www.google.com\",\n                                \"messages\": {\n                                    \"en\": \"This is warning message, which configured by admin\",\n                                    \"th\": \"นี่คือคำเตือนที่เขียนโดย admin\"\n                                }\n                            }\n                        }\n                    }\n                }\n            },\n            \"enabled\": true\n        },\n        \"fiat_normal_withdrawal\": {\n            \"updated_at\": 1609490694,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"open PromptPay\",\n                    \"th\": \"เปิดการใช้งานพร้อมเพย์\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 50000\n                    }\n                }\n            },\n            \"enabled\": false\n        }\n    },\n    \"bank\": {\n        \"bank_list\": []\n    }\n}"}],"_postman_id":"8f3f93d1-6836-4ab4-b50c-a66590a932d1"}],"id":"0e5d680a-a477-4b63-b4ed-992b21ef5250","_postman_id":"0e5d680a-a477-4b63-b4ed-992b21ef5250","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"Private","item":[{"name":"Generate a listen key (UserStream)","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"41c05591-c1cb-4e34-95dd-9c8db79a04e1"}}],"id":"b1721f0f-216b-4672-a736-d2eeb1afb9fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-MBX-APIKey","value":"{{satang_api_key}}","type":"text"}],"url":"https://www.orbixtrade.com/api/v3/userDataStream","description":"<p>Create a new listen key. The listen key will be expired after 60 minutes</p>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["v3","userDataStream"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1721f0f-216b-4672-a736-d2eeb1afb9fb"},{"name":"Keep-alive a listen key (UserStream)","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"56f75826-e02b-4322-be40-8f27ecc26390"}}],"id":"f14c41df-58ab-44dc-95f0-00d456797043","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-MBX-APIKey","value":"{{satang_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"listenKey\": \"{{satang_userstream_listen_key}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.orbixtrade.com/api/v3/userDataStream","description":"<p>Keep-alive a listen key for 30 minutes</p>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["v3","userDataStream"],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"f14c41df-58ab-44dc-95f0-00d456797043"}],"id":"692df73a-2b6c-4dc4-a7cc-6e7070a6b44b","_postman_id":"692df73a-2b6c-4dc4-a7cc-6e7070a6b44b","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}}],"id":"2d793051-7f06-446b-9c06-a93ec17a4fc7","_postman_id":"2d793051-7f06-446b-9c06-a93ec17a4fc7","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"Websocket","item":[{"name":"General WSS info","id":"a416a0b7-e50d-4b1d-9ad3-a2756a635cb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"wss://www.orbixtrade.com/ws/","description":"<h2 id=\"base-endpoint\">Base endpoint</h2>\n<p><code>wss://www.orbixtrade.com/ws</code></p>\n<h2 id=\"stream-types\">Stream types</h2>\n<p>There are 2 types of streams.</p>\n<ol>\n<li><p><strong>Raw streams</strong> can be accessed at <code>/ws/</code></p>\n</li>\n<li><p><strong>Combined streams</strong> can be accessed at <code>/stream?streams=/</code></p>\n<ul>\n<li>Events from combined stream will be wrapped as follows, <code>{\"stream\":\"\",\"data\": }</code></li>\n</ul>\n</li>\n</ol>\n<h2 id=\"user-data-stream\">User data stream</h2>\n<ul>\n<li>User Data Streams area ccessed at <code>/ws/</code> or <code>/stream?streams?</code></li>\n</ul>\n","urlObject":{"protocol":"wss","path":["ws",""],"host":["www","orbixtrade","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a416a0b7-e50d-4b1d-9ad3-a2756a635cb8"},{"name":"User Data Streams","id":"7a1a9bfe-bfcb-47c1-bb0e-cae9e15803ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"","description":"<h2 id=\"account-update\">Account Update</h2>\n<p>Account Update consists of 2 event types <code>outboundAccountPosition</code> and <code>outboundAccountInfo</code> that would sent a current balance of user after the account balance has changed</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"e\": \"outboundAccountPosition\",  //Event type\n    \"E\": 1602843659901,              //Event Time\n    \"u\": 1602843659894,              //Time of last account update\n    \"B\": [                           //Balances Array\n        {\n            \"a\": \"thb\",              //Asset\n            \"f\": \"380.6422711375\",   //Free\n            \"l\": \"0\"                 //Locked\n        }\n    ]\n}\n\n{\n  \"e\": \"outboundAccountInfo\",    // Event type\n  \"E\": 1602843659911,            // Event time\n  \"m\": \"0\",                      // Maker commission rate (bips)\n  \"t\": \"0\",                      // Taker commission rate (bips)\n  \"b\": \"0\",                      // Buyer commission rate (bips)\n  \"s\": \"0\",                      // Seller commission rate (bips)\n  \"T\": true,                     // Can trade?\n  \"W\": true,                     // Can withdraw?\n  \"D\": true,                     // Can deposit?\n  \"u\": 1602843659894,            // Time of last account update\n  \"B\": [                         // Balances array\n    {\n      \"a\": \"ada\",                // Asset\n      \"f\": \"2\",                  // Free amount\n      \"l\": \"0\"                   // Locked amount\n    },\n    {\n      \"a\": \"eth\",\n      \"f\": \"0.373245109\",\n      \"l\": \"0\"\n    },\n    {\n      \"a\": \"omg\",\n      \"f\": \"4.34693199\",\n      \"l\": \"0\"\n    },\n    {\n      \"a\": \"usdt\",\n      \"f\": \"3.61\",\n      \"l\": \"0\"\n    },\n    {\n      \"a\": \"xlm\",\n      \"f\": \"12\",\n      \"l\": \"0\"\n    },\n    {\n      \"a\": \"thb\",\n      \"f\": \"380.6422711375\",\n      \"l\": \"0\"\n    }\n  ],\n  \"P\": [\n    \"SPOT\"\n  ]\n}\n</code></pre>\n<h2 id=\"balance-update\">Balance Update</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"e\": \"balanceUpdate\",   //Event Type\n    \"E\": 1602843659901,     //Event Time\n    \"a\": \"thb\",             //Asset\n    \"d\": \"300.642\",         //Balance Delta\n    \"T\": 1602843659894      //Clear Time\n}\n</code></pre>\n<h2 id=\"order-update\">Order Update</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{ \n  \"e\": \"executionReport\",  // Event type\n  \"E\": 1602843660084,      // Event time\n  \"s\": \"btc_thb\",          // Symbol\n  \"c\": \"879\",              // Client order ID\n  \"S\": \"BUY\",              // Side\n  \"o\": \"LIMIT\",            // Order type\n  \"f\": \"GTC\",              // Time in force\n  \"q\": \"20\",               // Order quantity\n  \"p\": \"15\",               // Order price\n  \"P\": \"0\",                // Stop price\n  \"F\": \"0\",                // Iceberg quantity\n  \"g\": -1,                 // OrderListId\n  \"C\": null,               // Original client order ID; This is the ID of the order being canceled\n  \"x\": \"CANCELED\",         // Current execution type\n  \"X\": \"CANCELLED\",        // Current order status\n  \"r\": \"NONE\",             // Order reject reason; will be an error code.\n  \"i\": \"29272745\",         // Order ID\n  \"l\": \"0\",                // Last executed quantity\n  \"z\": \"0\",                // Cumulative filled quantity\n  \"L\": \"0\",                // Last executed price\n  \"n\": \"0\",                // Commission amount\n  \"N\": \"\",                 // Commission asset\n  \"T\": 1602836292734,      // Transaction time\n  \"t\": 0,                  // Trade ID\n  \"I\": -1,                 // Ignore\n  \"w\": false,              // Is the order on the book?\n  \"m\": false,              // Is this trade the maker side?\n  \"M\": false,              // Ignore\n  \"O\": 1602836292734,      // Order creation time\n  \"Z\": \"20\",               // Cumulative quote asset transacted quantity\n  \"Y\": \"0\",                // Last quote asset transacted quantity (i.e. lastPrice * lastQty)\n  \"Q\": \"20\"                // Quote Order Qty\n}\n</code></pre>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"7a1a9bfe-bfcb-47c1-bb0e-cae9e15803ba"},{"name":"Aggregate trade stream","id":"3ce9c454-0c83-42d0-929a-780a06a206fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"wss://www.orbixtrade.com/ws/usdt_thb@aggTrade","description":"<p>Stream Name: <code>&lt;pair&gt;@aggTrade</code></p>\n<p>Update Speed: Real-time</p>\n<p>Example payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"e\": \"aggTrade\",    // Event type\n  \"E\": 1591838631614, // Event time\n  \"s\": \"btc_thb\",     // Symbol\n  \"a\": 1356597,       // Aggregate trade ID\n  \"p\": \"306888\",      // Price\n  \"q\": \"0.00066591\",  // Quantity\n  \"f\": 1356597,       // First trade ID\n  \"l\": 1356597,       // Last trade ID\n  \"T\": 1591838631552, // Trade time\n  \"m\": false,         // Is the buyer the market maker?\n  \"M\": true           // Ignore\n}\n</code></pre>\n","urlObject":{"protocol":"wss","path":["ws","usdt_thb@aggTrade"],"host":["www","orbixtrade","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ce9c454-0c83-42d0-929a-780a06a206fc"},{"name":"Partial book depth stream","id":"f74c8afd-6f13-4002-b8eb-144178d512ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"wss://www.orbixtrade.com/ws/usdt_thb@depth{{depth_level}}@{{update_speed}}","description":"<p>Stream Name: <code>&lt;pair&gt;@depth&lt;levels&gt;</code> or <code>&lt;pair&gt;@depth&lt;levels&gt;@&lt;update_speed&gt;</code></p>\n<p>Update Speed: <code>100m</code>, <code>1000ms</code></p>\n<p>Example payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"lastUpdateId\": 310816162,  // Last update ID\n  \"bids\": [                   // Bids to be updated \n    [\n      \"306499.98\",            // Price level to be updated\n      \"0.00867287\"            // Quantity\n    ],\n    [\n      \"304350\",\n      \"0.59428454\"\n    ],\n    [\n      \"304345.01\",\n      \"0.00978286\"\n    ],\n    [\n      \"303600\",\n      \"0.235\"\n    ],\n    [\n      \"303500.01\",\n      \"0.13228\"\n    ]\n  ],\n  \"asks\": [                   // Asks to be updated\n    [\n      \"306699.82\",            // Price level to be updated\n      \"0.19646838\"            // Quantity\n    ],\n    [\n      \"306887.99\",\n      \"0.1744\"\n    ],\n    [\n      \"306888\",\n      \"0.22802611\"\n    ],\n    [\n      \"306932\",\n      \"0.16290253\"\n    ],\n    [\n      \"306950\",\n      \"0.07202\"\n    ]\n  ]\n}\n</code></pre>\n","urlObject":{"protocol":"wss","path":["ws","usdt_thb@depth{{depth_level}}@{{update_speed}}"],"host":["www","orbixtrade","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f74c8afd-6f13-4002-b8eb-144178d512ad"},{"name":"Diff depth stream","id":"3581bae5-f351-4916-9bbb-b72e9e63bcdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"wss://www.orbixtrade.com/ws/usdt_thb@depth@{{update_speed}}","description":"<p>Stream Name: <code>&lt;pair&gt;@depth</code> or <code>&lt;pair&gt;@depth@&lt;update_speed&gt;</code></p>\n<p>Update Speed: <code>100m</code>, <code>1000ms</code></p>\n<p>Example payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"e\": \"depthUpdate\", // Event type\n  \"E\": 1591838700593, // Event time\n  \"s\": \"btc_thb\",     // Symbol\n  \"U\": 310816063,     // First update ID in event\n  \"u\": 310816068,     // Final update ID in event\n  \"b\": [              // Bids to be updated\n    [\n      \"304350\",       // Price level to be updated\n      \"0.59428454\"    // Quantity \n    ]\n  ],\n  \"a\": [              // Asks to be updated\n    [\n      \"306950\",       // Price level to be updated\n      \"0.24642\"       // Quantity\n    ],\n    [\n      \"307866.09\",\n      \"0.2616\"\n    ]\n  ]\n}\n</code></pre>\n","urlObject":{"protocol":"wss","path":["ws","usdt_thb@depth@{{update_speed}}"],"host":["www","orbixtrade","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3581bae5-f351-4916-9bbb-b72e9e63bcdd"},{"name":"Kline stream","id":"0484bfc0-d5e0-487e-be02-cacae6ba66bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"wss://www.orbixtrade.com/ws/usdt_thb@kline_{{kline_interval}}","description":"<h2 id=\"valid-kline-intervals\">Valid Kline intervals</h2>\n<p>| Units | Intervals |<br />| <strong>__</strong> | <strong>_____</strong> |<br />| minutes | 1m, 3m, 5m, 15m, 30m |<br />| hours | 1h, 2h, 4h, 6h, 8h, 12h |<br />| days | 1d, 3d |<br />| weeks | 1w |<br />| months | 1M |</p>\n<p>Stream Name: @kline_</p>\n<p>Update Speed: 1000ms</p>\n<p>Example payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"e\": \"kline\",                  // Event type\n  \"E\": 1591845195392,            // Event time\n  \"s\": \"btc_thb\",                // Symbol\n  \"k\": {\n    \"t\": 1590969600000,          // Kline start time\n    \"T\": 1593561599999,          // Kline close time\n    \"s\": \"btc_thb\",              // Symbol\n    \"i\": \"1M\",                   // Interval\n    \"f\": 332283374,              // First trade ID\n    \"L\": 338659987,              // Last trade ID\n    \"o\": \"9448.27000000\",        // Open price\n    \"c\": \"9930.23000000\",        // Close price\n    \"h\": \"10380.00000000\",       // High price\n    \"l\": \"9266.00000000\",        // Low price\n    \"v\": \"569228.23462500\",      // Base asset volume\n    \"n\": 6376614,                // Number of trades\n    \"x\": false,                  // Is this kline closed?\n    \"q\": \"5536922020.81383922\",  // Quote asset volume\n    \"V\": \"277310.22952600\",      // Taker buy base asset volume\n    \"Q\": \"2699814619.41102725\",  // Taker buy quote asset volume\n    \"B\": \"0\"                     // Ignore\n  }\n}\n\n</code></pre>\n","urlObject":{"protocol":"wss","path":["ws","usdt_thb@kline_{{kline_interval}}"],"host":["www","orbixtrade","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0484bfc0-d5e0-487e-be02-cacae6ba66bc"},{"name":"Ticker stream","id":"df481a74-132b-4a4e-b810-ab72875af0d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"wss://www.orbixtrade.com/ws/!miniTicker@arr","description":"<p>Stream Name: <code>!miniTicker@arr</code> or <code>!miniTicker@arr@3000ms</code></p>\n<p>Update Speed: <code>1000ms</code>, <code>3000ms</code></p>\n<p>Example payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"E\": 1591838562911,         // Event time\n    \"e\": \"24hrMiniTicker\",      // Event type\n    \"s\": \"btc_thb\",             // Symbol\n    \"c\": \"306455.28\",           // Close price\n    \"h\": \"307000\",              // Highest price\n    \"l\": \"302081\",              // Lowest price\n    \"o\": \"305992.53378218\",     // Open price\n    \"q\": \"44626761.87468288\",   // Total traded quote asset volume\n    \"v\": \"146.54558409\"         // Total traded base asset volume\n  },\n  {\n    \"E\": 1591838562910,\n    \"e\": \"24hrMiniTicker\",\n    \"s\": \"eth_thb\",\n    \"c\": \"7600\",\n    \"h\": \"7698\",\n    \"l\": \"7516.02\",\n    \"o\": \"7610.56343608\",\n    \"q\": \"13184534.95981676\",\n    \"v\": \"1736.31444217\"\n  },\n  {\n    \"E\": 1591838562912,\n    \"e\": \"24hrMiniTicker\",\n    \"s\": \"usdt_thb\",\n    \"c\": \"31.05\",\n    \"h\": \"31.39\",\n    \"l\": \"30.91\",\n    \"o\": \"31.28995838\",\n    \"q\": \"7319980.20784909\",\n    \"v\": \"234992.01862853\"\n  }\n]\n</code></pre>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"protocol":"wss","path":["ws","!miniTicker@arr"],"host":["www","orbixtrade","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"df481a74-132b-4a4e-b810-ab72875af0d4"}],"id":"e0164e24-6925-46f4-be6e-bd43c81ae2cb","_postman_id":"e0164e24-6925-46f4-be6e-bd43c81ae2cb","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"THB Deposit","item":[{"name":"Get Fiat deposit histories","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"1afb1d21-b35b-4c9b-8fa1-fc2c82e86a5a"}}],"id":"80e4751f-d62c-4c4c-99f7-3abbf3a486ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/bank-account-deposits/?limit=10&offset=10","description":"<p>Required permission: deposit_list</p>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["bank-account-deposits",""],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"}],"variable":[]}},"response":[],"_postman_id":"80e4751f-d62c-4c4c-99f7-3abbf3a486ef"}],"id":"5df254b1-f3c5-4e02-9db3-93a429637fe8","_postman_id":"5df254b1-f3c5-4e02-9db3-93a429637fe8","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"THB Withdrawal","item":[{"name":"Get histories","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"20fd70b0-58e0-4434-af9c-d7cfb34a4a62"}}],"id":"235e65c7-352c-4bd0-9d7f-a2ccc30a9e17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/fiat-withdrawals/?limit=10&offset=10","description":"<p>Required permission: withdrawal_list</p>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["fiat-withdrawals",""],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"}],"variable":[]}},"response":[],"_postman_id":"235e65c7-352c-4bd0-9d7f-a2ccc30a9e17"}],"id":"35b770f7-2aae-41b6-a7a1-fcb28eca8f59","_postman_id":"35b770f7-2aae-41b6-a7a1-fcb28eca8f59","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"Crypto Deposit","item":[{"name":"Get crypto deposit history","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"025bf933-c6e1-4e36-99be-7fb60b76f9d9"}}],"id":"5cd22a3e-ec57-4109-ad59-96fcf94e2573","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/crypto-deposits/?limit=10&offset=10","description":"<p>Required permission: deposit_list</p>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["crypto-deposits",""],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"}],"variable":[]}},"response":[],"_postman_id":"5cd22a3e-ec57-4109-ad59-96fcf94e2573"}],"id":"8d912be6-a6fe-48c2-9461-d9c7daa484ca","_postman_id":"8d912be6-a6fe-48c2-9461-d9c7daa484ca","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"Crypto Withdrawal","item":[{"name":"Get histories","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"d3cb8012-8455-4ad4-8ba5-596f0cb0708b"}}],"id":"f95c21dd-4fba-419a-a496-2e672b4188d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b","type":"text"}],"url":"https://www.orbixtrade.com/api/crypto-withdrawals/?limit=10&offset=10","description":"<p>Required permission: withdrawal_list</p>\n","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["crypto-withdrawals",""],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"10"}],"variable":[]}},"response":[],"_postman_id":"f95c21dd-4fba-419a-a496-2e672b4188d6"}],"id":"8e01b285-6cd8-4b82-8698-de495998f3b9","_postman_id":"8e01b285-6cd8-4b82-8698-de495998f3b9","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"trades","item":[{"name":"get trade history","event":[{"listen":"test","script":{"id":"d611b0b0-31d0-4c5f-a677-1b6d2167d61b","exec":["pm.test(\"Status test\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{}}}],"id":"449735da-2330-4cb9-8d67-04f00f5492c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b"}],"url":"https://www.orbixtrade.com/api/trade-history/?pair=usdt_thb","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}},"urlObject":{"path":["trade-history",""],"host":["https://www.orbixtrade.com/api"],"query":[{"key":"pair","value":"usdt_thb"}],"variable":[]}},"response":[{"id":"1e954085-7928-47e9-b694-5d8c83acbff3","name":"get trade history","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/api/trade-history/?pair=usdt_thb","host":["{{BASE_URL}}"],"path":["api","trade-history",""],"query":[{"key":"pair","value":"usdt_thb"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"items\": [\n        {\n            \"id\": 3139647,\n            \"time\": \"2024-05-20T07:05:24.769936Z\",\n            \"market\": \"usdt_thb\",\n            \"side\": \"buy\",\n            \"type\": \"limit\",\n            \"qty\": \"5.52\",\n            \"price\": \"36.07\",\n            \"quoteQty\": \"199.1064\",\n            \"fee\": \"0.497766\",\n            \"vat\": \"1.246\",\n            \"orderId\": 25000124,\n            \"isMaker\": true\n        }\n    ]\n}"}],"_postman_id":"449735da-2330-4cb9-8d67-04f00f5492c9"}],"id":"37d8577b-a048-4cb6-992c-e99191874249","_postman_id":"37d8577b-a048-4cb6-992c-e99191874249","description":"","auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"},"isInherited":true,"source":{"_postman_id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","id":"ed364eb6-d202-4cf4-a3fa-058262afdaab","name":"orbix Trade API","type":"collection"}}},{"name":"Get configs","event":[{"listen":"test","script":{"exec":["pm.test(\"Status test\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"c83add40-6cfa-47de-b7fa-32109a56ca88"}}],"id":"65cecfd8-7545-4c90-8432-7c6db94d43b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://www.orbixtrade.com/api/configs/","description":"<p>Get all configs</p>\n","urlObject":{"path":["configs",""],"host":["https://www.orbixtrade.com/api"],"query":[],"variable":[]}},"response":[{"id":"e3697a58-35d5-40df-a6b8-14788f65b812","name":"OK","originalRequest":{"method":"GET","header":[],"url":"{{BASE_URL}}/api/configs/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Sep 2021 07:22:25 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"X-New-Access-Token,X-New-Secret,X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset"},{"key":"Vary","value":"Origin"},{"key":"X-Cache-Status","value":"HIT"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Expect-CT","value":"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UpgHgQxs3E1HX9rDvi%2FElCqMJyrUdY%2FXgWeZOAz26Fnre5urOyNwXerNYRhur7Xk%2F781G3E0WUTaeLhKDOI0XBifLWJVl43hVqQ1E7ygRak5PnYENwDHdZSR%2FfO1d8Wv\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"68f857f4de7f6b3c-AMS"},{"key":"Content-Encoding","value":"br"}],"cookie":[],"responseTime":null,"body":"{\n    \"kyc\": {\n        \"url\": \"https://satangcorp.com/classic/account/profile\"\n    },\n    \"kyc_forms\": {\n        \"occupations\": [\n            {\n                \"en\": \"Company Employee\",\n                \"th\": \"พนักงานเอกชน\"\n            },\n            {\n                \"en\": \"Government Officer\",\n                \"th\": \"ข้าราชการ\"\n            },\n            {\n                \"en\": \"Freelancer\",\n                \"th\": \"อาชีพอิสระ\"\n            },\n            {\n                \"en\": \"Employer\",\n                \"th\": \"เจ้าของกิจการ\"\n            },\n            {\n                \"en\": \"Unemployed\",\n                \"th\": \"ว่างงาน\"\n            },\n            {\n                \"en\": \"Jeweler\",\n                \"th\": \"นักค้าอัญมณี\"\n            },\n            {\n                \"en\": \"Antique Dealer\",\n                \"th\": \"นักค้าของเก่า\"\n            },\n            {\n                \"en\": \"Finance\",\n                \"th\": \"อาชีพที่เกี่ยวข้องกับการเงินตามกฏหมาย\"\n            },\n            {\n                \"en\": \"Politician\",\n                \"th\": \"นักการเมือง\"\n            },\n            {\n                \"en\": \"Entrepreneur\",\n                \"th\": \"ผู้ประกอบการหรือนักลงทุนอิสระ\"\n            },\n            {\n                \"en\": \"Currency Exchange Provider (Individual or Legal Entity)\",\n                \"th\": \"รับแลกเปลี่ยนเงินตราแบบนิติบุคคลหรือบุคคลธรรมดา\"\n            },\n            {\n                \"en\": \"Money Remittance (Non-Financial Institution)\",\n                \"th\": \"ให้บริการโอนและรับโอนมูลค่าเงินทั้งภายในประเทศและข้ามประเทศโดยมิใช่สถาบันการเงิน\"\n            },\n            {\n                \"en\": \"Casino Related Business\",\n                \"th\": \"ประกอบธุรกิจคาสิโนหรือบ่อนการพนัน\"\n            },\n            {\n                \"en\": \"Brothel Business\",\n                \"th\": \"ธุรกิจสถานบริการตามกฎหมายว่าด้วยสถานบริการ\"\n            },\n            {\n                \"en\": \"Arms Dealer\",\n                \"th\": \"ค้าอาวุธยุทธภัณฑ์\"\n            },\n            {\n                \"en\": \"Travel Agency\",\n                \"th\": \"บริษัทหรือตัวแทนธุรกิจนำเที่ยว\"\n            },\n            {\n                \"en\": \"International Recruitment Agency\",\n                \"th\": \"นายหน้าจัดหางาน\"\n            },\n            {\n                \"en\": \"Health Care\",\n                \"th\": \"ด้านสุขภาพ\"\n            },\n            {\n                \"en\": \"Scientist\",\n                \"th\": \"นักวิทยาศาสตร์\"\n            },\n            {\n                \"en\": \"Police\",\n                \"th\": \"ตำรวจ\"\n            },\n            {\n                \"en\": \"Architecture\",\n                \"th\": \"สถาปนิก\"\n            },\n            {\n                \"en\": \"Teacher\",\n                \"th\": \"ครู\"\n            },\n            {\n                \"en\": \"Military\",\n                \"th\": \"อาชีพทางการทหาร\"\n            },\n            {\n                \"en\": \"Engineer\",\n                \"th\": \"วิศวกร\"\n            },\n            {\n                \"en\": \"Student\",\n                \"th\": \"นักเรียน นักศึกษา\"\n            },\n            {\n                \"en\": \"Other\",\n                \"th\": \"อื่น ๆ (ทางทีมงานอาจติดต่อสอบถามเพิ่มเติม)\"\n            }\n        ],\n        \"education_levels\": [\n            {\n                \"en\": \"Bachelor's degree\",\n                \"th\": \"ปริญญาตรี\"\n            },\n            {\n                \"en\": \"Below Bachelor's degree\",\n                \"th\": \"ต่ำกว่าปริญญาตรี\"\n            },\n            {\n                \"en\": \"Other\",\n                \"th\": \"อื่นๆ\"\n            },\n            {\n                \"en\": \"Master's degree\",\n                \"th\": \"ปริญญาโท\"\n            },\n            {\n                \"en\": \"Doctoral degree\",\n                \"th\": \"ปริญญาเอก\"\n            }\n        ],\n        \"title_names\": [\n            {\n                \"en\": \"LORD\",\n                \"th\": \"ลอร์ด\"\n            },\n            {\n                \"en\": \"Lieutenant\",\n                \"th\": \"เรือเอก\"\n            },\n            {\n                \"en\": \"Major\",\n                \"th\": \"พันตรี\"\n            },\n            {\n                \"en\": \"Reserve Officer Training Corps Student\",\n                \"th\": \"นักศึกษาวิชาทหาร\"\n            },\n            {\n                \"en\": \"Acting Sub Lieutenant\",\n                \"th\": \"ว่าที่เรือตรี\"\n            },\n            {\n                \"en\": \"Thanphuying\",\n                \"th\": \"ท่านผู้หญิง\"\n            },\n            {\n                \"en\": \"Lieutenant Junior Grade\",\n                \"th\": \"เรือโท\"\n            },\n            {\n                \"en\": \"Rear Admiral\",\n                \"th\": \"พลเรือตรี\"\n            },\n            {\n                \"en\": \"No title\",\n                \"th\": \"ไม่มีคำนำหน้าชื่อ\"\n            },\n            {\n                \"en\": \"Flight Sergeant First Class\",\n                \"th\": \"พันจ่าอากาศเอก\"\n            },\n            {\n                \"en\": \"Sergeant\",\n                \"th\": \"จ่าอากาศเอก\"\n            },\n            {\n                \"en\": \"Airman\",\n                \"th\": \"พลทหาร\"\n            },\n            {\n                \"en\": \"Lieutenant Commander\",\n                \"th\": \"นาวาตรี\"\n            },\n            {\n                \"en\": \"Chief Petty Officer First Class\",\n                \"th\": \"พันจ่าเอก\"\n            },\n            {\n                \"en\": \"Petty Officer Second Class\",\n                \"th\": \"จ่าโท\"\n            },\n            {\n                \"en\": \"Lieutenant Colonel\",\n                \"th\": \"พันโทนายแพทย์\"\n            },\n            {\n                \"en\": \"Police Sub-Lieutenant\",\n                \"th\": \"ร้อยตำรวจตรี\"\n            },\n            {\n                \"en\": \"Sub Lieutenant\",\n                \"th\": \"เรือตรี\"\n            },\n            {\n                \"en\": \"Acting Second Lieutenant\",\n                \"th\": \"ว่าที่ร้อยตรีหญิง\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"นายสัตวแพทย์\"\n            },\n            {\n                \"en\": \"Acting Major\",\n                \"th\": \"ว่าที่พันตรี\"\n            },\n            {\n                \"en\": \"Associate Professor\",\n                \"th\": \"รองศาตราจารย์\"\n            },\n            {\n                \"en\": \"Police Captain\",\n                \"th\": \"ร้อยตำรวจเอก\"\n            },\n            {\n                \"en\": \"Brigadier General\",\n                \"th\": \"พลจัตวา\"\n            },\n            {\n                \"en\": \"Khunying\",\n                \"th\": \"คุณหญิง\"\n            },\n            {\n                \"en\": \"Miss\",\n                \"th\": \"นางสาว\"\n            },\n            {\n                \"en\": \"Police General\",\n                \"th\": \"พลตำรวจเอก\"\n            },\n            {\n                \"en\": \"Air Commodore\",\n                \"th\": \"พลอากาศจัตวา\"\n            },\n            {\n                \"en\": \"Police Lance Corporal\",\n                \"th\": \"สิบตำรวจตรี\"\n            },\n            {\n                \"en\": \"Police Senior Sergeant Major\",\n                \"th\": \"ดาบตำรวจ\"\n            },\n            {\n                \"en\": \"Lieutenant Colonel\",\n                \"th\": \"พันโท\"\n            },\n            {\n                \"en\": \"General\",\n                \"th\": \"พลเอก\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"ทันตแพทย์หญิง\"\n            },\n            {\n                \"en\": \"Police Constable\",\n                \"th\": \"พลตำรวจ\"\n            },\n            {\n                \"en\": \"Flying Officer\",\n                \"th\": \"เรืออากาศโท\"\n            },\n            {\n                \"en\": \"Seaman\",\n                \"th\": \"พลทหาร\"\n            },\n            {\n                \"en\": \"Acting Pilot Officer\",\n                \"th\": \"ว่าที่ เรืออากาศตรี\"\n            },\n            {\n                \"en\": \"Police Lieutenant Colonel\",\n                \"th\": \"พันตำรวจโท\"\n            },\n            {\n                \"en\": \"Flight Sergeant Third Class\",\n                \"th\": \"พันจ่าอากาศตรี\"\n            },\n            {\n                \"en\": \"Chief Petty Officer Third Class\",\n                \"th\": \"พันจ่าตรี\"\n            },\n            {\n                \"en\": \"Marshal of the Royal Thai Air Force\",\n                \"th\": \"จอมพลอากาศ\"\n            },\n            {\n                \"en\": \"Commodore\",\n                \"th\": \"พลเรือจัตวา\"\n            },\n            {\n                \"en\": \"Naval Rating Candidate\",\n                \"th\": \"นักเรียนจ่าทหารเรือ\"\n            },\n            {\n                \"en\": \"Sergeant\",\n                \"th\": \"สิบเอก\"\n            },\n            {\n                \"en\": \"Police Colonel\",\n                \"th\": \"พันตำรวจเอก\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"ทันตแพทย์\"\n            },\n            {\n                \"en\": \"Vice Admiral\",\n                \"th\": \"พลเรือโท\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"ด๊อกเตอร์\"\n            },\n            {\n                \"en\": \"Medical Cadet\",\n                \"th\": \"นักเรียนแพทย์ทหาร\"\n            },\n            {\n                \"en\": \"Major General\",\n                \"th\": \"พลตรี\"\n            },\n            {\n                \"en\": \"Lieutenant\",\n                \"th\": \"ร้อยโท\"\n            },\n            {\n                \"en\": \"Sub Lieutenant\",\n                \"th\": \"ร้อยตรี\"\n            },\n            {\n                \"en\": \"Lance Corporal\",\n                \"th\": \"สิบตรี\"\n            },\n            {\n                \"en\": \"Police Corporal\",\n                \"th\": \"สิบตำรวจโท\"\n            },\n            {\n                \"en\": \"Sergeant Major First Class\",\n                \"th\": \"จ่าสิบเอก\"\n            },\n            {\n                \"en\": \"Police Brigadier General\",\n                \"th\": \"พลตำรวจจัตวา\"\n            },\n            {\n                \"en\": \"Sergeant Major Second Class\",\n                \"th\": \"จ่าสิบโท\"\n            },\n            {\n                \"en\": \"Wing Commander\",\n                \"th\": \"นาวาอากาศโท\"\n            },\n            {\n                \"en\": \"Chief Petty Officer Second Class\",\n                \"th\": \"พันจ่าโท\"\n            },\n            {\n                \"en\": \"Police Lieutenant\",\n                \"th\": \"ร้อยตำรวจโท\"\n            },\n            {\n                \"en\": \"Senior Captain\",\n                \"th\": \"นาวาเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Police Major\",\n                \"th\": \"พันตำรวจตรี\"\n            },\n            {\n                \"en\": \"Pilot Officer\",\n                \"th\": \"เรืออากาศตรี\"\n            },\n            {\n                \"en\": \"Flight Sergeant Second Class\",\n                \"th\": \"พันจ่าอากาศโท\"\n            },\n            {\n                \"en\": \"Mrs\",\n                \"th\": \"นาง\"\n            },\n            {\n                \"en\": \"Assistant Professor \",\n                \"th\": \"ผู้ช่วยศาสตราจารย์\"\n            },\n            {\n                \"en\": \"Police Senior Colonel\",\n                \"th\": \"พันตำรวจเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Private First Class\",\n                \"th\": \"สิบตรีกองประจำการ\"\n            },\n            {\n                \"en\": \"Captain\",\n                \"th\": \"ร้อยเอก\"\n            },\n            {\n                \"en\": \"Lieutenant General\",\n                \"th\": \"พลโท\"\n            },\n            {\n                \"en\": \"Air Technical Student\",\n                \"th\": \"นักเรียนจ่าอากาศ\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"สัตวแพทย์หญิง\"\n            },\n            {\n                \"en\": \"Police Sergeant\",\n                \"th\": \"สิบตำรวจเอก\"\n            },\n            {\n                \"en\": \"Naval Cadet\",\n                \"th\": \"นักเรียนทหารเรือ\"\n            },\n            {\n                \"en\": \"Petty Officer Third Class\",\n                \"th\": \"จ่าตรี\"\n            },\n            {\n                \"en\": \"Army Cadet\",\n                \"th\": \"นักเรียนนายร้อย\"\n            },\n            {\n                \"en\": \"Major General\",\n                \"th\": \"พลตรีหญิง\"\n            },\n            {\n                \"en\": \"Acting Police Sub-Lieutenant\",\n                \"th\": \"ว่าที่ร้อยตำรวจตรี\"\n            },\n            {\n                \"en\": \"Sergeant Major Third Class\",\n                \"th\": \"จ่าสิบตรี\"\n            },\n            {\n                \"en\": \"Admiral of the Fleet\",\n                \"th\": \"จอมพลเรือ\"\n            },\n            {\n                \"en\": \"Army Non - Commissioned Officer Student\",\n                \"th\": \"นักเรียนนายสิบทหารบก\"\n            },\n            {\n                \"en\": \"Squadron Leader\",\n                \"th\": \"นาวาอากาศตรี\"\n            },\n            {\n                \"en\": \"Acting Captain\",\n                \"th\": \"ว่าที่ร้อยเอก\"\n            },\n            {\n                \"en\": \"Police Major General\",\n                \"th\": \"พลตำรวจตรี\"\n            },\n            {\n                \"en\": \"Captain\",\n                \"th\": \"นาวาเอก\"\n            },\n            {\n                \"en\": \"Leading Aircraftman\",\n                \"th\": \"จ่าอากาศตรี\"\n            },\n            {\n                \"en\": \"Acting Sub Lieutenant\",\n                \"th\": \"ว่าที่ ร้อยตรี\"\n            },\n            {\n                \"en\": \"Professor\",\n                \"th\": \"ศาตราจารย์\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"นายแพทย์\"\n            },\n            {\n                \"en\": \"Mom Luang\",\n                \"th\": \"หม่อมหลวง\"\n            },\n            {\n                \"en\": \"Senior Colonel\",\n                \"th\": \"พันเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Air Cadet\",\n                \"th\": \"นักเรียนนายเรืออากาศ\"\n            },\n            {\n                \"en\": \"General Doctor\",\n                \"th\": \"พลเอก ด็อกเตอร์\"\n            },\n            {\n                \"en\": \"Field Marshal\",\n                \"th\": \"จอมพล\"\n            },\n            {\n                \"en\": \"Corporal\",\n                \"th\": \"จ่าอากาศโท\"\n            },\n            {\n                \"en\": \"Admiral\",\n                \"th\": \"พลเรือเอก\"\n            },\n            {\n                \"en\": \"Petty Officer First Class\",\n                \"th\": \"จ่าเอก\"\n            },\n            {\n                \"en\": \"Private\",\n                \"th\": \"พลทหาร\"\n            },\n            {\n                \"en\": \"Corporal\",\n                \"th\": \"สิบโท\"\n            },\n            {\n                \"en\": \"Colonel\",\n                \"th\": \"พันเอก\"\n            },\n            {\n                \"en\": \"Doctor\",\n                \"th\": \"แพทย์หญิง\"\n            },\n            {\n                \"en\": \"Air Marshal\",\n                \"th\": \"พลอากาศโท\"\n            },\n            {\n                \"en\": \"Mr\",\n                \"th\": \"นาย\"\n            },\n            {\n                \"en\": \"Air Vice Marshal\",\n                \"th\": \"พลอากาศตรี\"\n            },\n            {\n                \"en\": \"Police Sergeant Major\",\n                \"th\": \"จ่าสิบตำรวจ\"\n            },\n            {\n                \"en\": \"Captain\",\n                \"th\": \"ร้อยเอกหญิง\"\n            },\n            {\n                \"en\": \"Flight Lieutenant\",\n                \"th\": \"เรืออากาศเอก\"\n            },\n            {\n                \"en\": \"Police Cadet\",\n                \"th\": \"นักเรียนนายร้อยตำรวจ\"\n            },\n            {\n                \"en\": \"Police Lieutenant General\",\n                \"th\": \"พลตำรวจโท\"\n            },\n            {\n                \"en\": \"Colonel\",\n                \"th\": \"พันเอกหญิง\"\n            },\n            {\n                \"en\": \"Commander\",\n                \"th\": \"นาวาโท\"\n            },\n            {\n                \"en\": \"Senior Group Captain\",\n                \"th\": \"นาวาอากาศเอก (พิเศษ)\"\n            },\n            {\n                \"en\": \"Air Chief Marshal\",\n                \"th\": \"พลอากาศเอก\"\n            },\n            {\n                \"en\": \"Acting First Lieutenant\",\n                \"th\": \"ว่าที่ร้อยโท\"\n            },\n            {\n                \"en\": \"Group Captain\",\n                \"th\": \"นาวาอากาศเอก\"\n            },\n            {\n                \"en\": \"Acting Lieutenant (Junior Grade)\",\n                \"th\": \"ว่าที่เรือโท\"\n            }\n        ],\n        \"business_types\": [\n            {\n                \"en\": \"Tour Agency\",\n                \"th\": \"ธุรกิจนำเที่ยว บริษัททัวร์\"\n            },\n            {\n                \"en\": \"Jewelry/Gold/Antique Shop\",\n                \"th\": \"ค้าขาย อัญมณี ทองคำ วัตถุโบราณ\"\n            },\n            {\n                \"en\": \"Government Agency\",\n                \"th\": \"หน่วยงานราชการ / หน่วยงานรัฐวิสาหกิจ / องค์กรอิสระ\"\n            },\n            {\n                \"en\": \"Insurance Company\",\n                \"th\": \"ธุรกิจประกันภัย\"\n            },\n            {\n                \"en\": \"Arms Trade\",\n                \"th\": \"ธุรกิจค้าอาวุทธภัณฑ์ \"\n            },\n            {\n                \"en\": \"Real Estate Company\",\n                \"th\": \"ธุรกิจเกี่ยวกับอสังหาริมทรัพย์ \"\n            },\n            {\n                \"en\": \"Law/Accounting Office\",\n                \"th\": \"สำนักงานกฎหมายหรือบัญชี\"\n            },\n            {\n                \"en\": \"Casino/Gambling Business\",\n                \"th\": \"ธุรกิจคาสิโนหรือการพนันตามกฎหมาย\"\n            },\n            {\n                \"en\": \"Other\",\n                \"th\": \"อื่น ๆ\"\n            },\n            {\n                \"en\": \"International Recruitment Agency\",\n                \"th\": \"ธุรกิจจัดหางานข้ามประเทศ\"\n            },\n            {\n                \"en\": \"Entertainment Facility\",\n                \"th\": \"ธุรกิจสถานบริการ \"\n            },\n            {\n                \"en\": \"Financial Institution\",\n                \"th\": \"สถาบันการเงินหรือธนาคาร\"\n            },\n            {\n                \"en\": \"Foreign Exchange/Money Transfer Service\",\n                \"th\": \"ธุรกิจแลกเปลี่ยนเงินตรา/โอนเงิน\"\n            }\n        ],\n        \"phone_codes\": [\n            {\n                \"country\": \"AD\",\n                \"code\": \"376\"\n            },\n            {\n                \"country\": \"AE\",\n                \"code\": \"971\"\n            },\n            {\n                \"country\": \"AF\",\n                \"code\": \"93\"\n            },\n            {\n                \"country\": \"AG\",\n                \"code\": \"1268\"\n            },\n            {\n                \"country\": \"AI\",\n                \"code\": \"1264\"\n            },\n            {\n                \"country\": \"AL\",\n                \"code\": \"355\"\n            },\n            {\n                \"country\": \"AM\",\n                \"code\": \"374\"\n            },\n            {\n                \"country\": \"AO\",\n                \"code\": \"244\"\n            },\n            {\n                \"country\": \"AQ\",\n                \"code\": \"672\"\n            },\n            {\n                \"country\": \"AR\",\n                \"code\": \"54\"\n            },\n            {\n                \"country\": \"AS\",\n                \"code\": \"1684\"\n            },\n            {\n                \"country\": \"AT\",\n                \"code\": \"43\"\n            },\n            {\n                \"country\": \"AU\",\n                \"code\": \"61\"\n            },\n            {\n                \"country\": \"AW\",\n                \"code\": \"297\"\n            },\n            {\n                \"country\": \"AX\",\n                \"code\": \"358\"\n            },\n            {\n                \"country\": \"AZ\",\n                \"code\": \"994\"\n            },\n            {\n                \"country\": \"BA\",\n                \"code\": \"387\"\n            },\n            {\n                \"country\": \"BB\",\n                \"code\": \"1246\"\n            },\n            {\n                \"country\": \"BD\",\n                \"code\": \"880\"\n            },\n            {\n                \"country\": \"BE\",\n                \"code\": \"32\"\n            },\n            {\n                \"country\": \"BF\",\n                \"code\": \"226\"\n            },\n            {\n                \"country\": \"BG\",\n                \"code\": \"359\"\n            },\n            {\n                \"country\": \"BH\",\n                \"code\": \"973\"\n            },\n            {\n                \"country\": \"BI\",\n                \"code\": \"257\"\n            },\n            {\n                \"country\": \"BJ\",\n                \"code\": \"229\"\n            },\n            {\n                \"country\": \"BL\",\n                \"code\": \"590\"\n            },\n            {\n                \"country\": \"BM\",\n                \"code\": \"1441\"\n            },\n            {\n                \"country\": \"BN\",\n                \"code\": \"673\"\n            },\n            {\n                \"country\": \"BO\",\n                \"code\": \"591\"\n            },\n            {\n                \"country\": \"BQ\",\n                \"code\": \"5997\"\n            },\n            {\n                \"country\": \"BR\",\n                \"code\": \"55\"\n            },\n            {\n                \"country\": \"BS\",\n                \"code\": \"1242\"\n            },\n            {\n                \"country\": \"BT\",\n                \"code\": \"975\"\n            },\n            {\n                \"country\": \"BW\",\n                \"code\": \"267\"\n            },\n            {\n                \"country\": \"BY\",\n                \"code\": \"375\"\n            },\n            {\n                \"country\": \"BZ\",\n                \"code\": \"501\"\n            },\n            {\n                \"country\": \"CA\",\n                \"code\": \"1\"\n            },\n            {\n                \"country\": \"CC\",\n                \"code\": \"61\"\n            },\n            {\n                \"country\": \"CD\",\n                \"code\": \"243\"\n            },\n            {\n                \"country\": \"CF\",\n                \"code\": \"236\"\n            },\n            {\n                \"country\": \"CG\",\n                \"code\": \"242\"\n            },\n            {\n                \"country\": \"CH\",\n                \"code\": \"41\"\n            },\n            {\n                \"country\": \"CI\",\n                \"code\": \"225\"\n            },\n            {\n                \"country\": \"CK\",\n                \"code\": \"682\"\n            },\n            {\n                \"country\": \"CL\",\n                \"code\": \"56\"\n            },\n            {\n                \"country\": \"CM\",\n                \"code\": \"237\"\n            },\n            {\n                \"country\": \"CN\",\n                \"code\": \"86\"\n            },\n            {\n                \"country\": \"CO\",\n                \"code\": \"57\"\n            },\n            {\n                \"country\": \"CR\",\n                \"code\": \"506\"\n            },\n            {\n                \"country\": \"CU\",\n                \"code\": \"53\"\n            },\n            {\n                \"country\": \"CV\",\n                \"code\": \"238\"\n            },\n            {\n                \"country\": \"CW\",\n                \"code\": \"599\"\n            },\n            {\n                \"country\": \"CX\",\n                \"code\": \"61\"\n            },\n            {\n                \"country\": \"CY\",\n                \"code\": \"357\"\n            },\n            {\n                \"country\": \"CZ\",\n                \"code\": \"420\"\n            },\n            {\n                \"country\": \"DE\",\n                \"code\": \"49\"\n            },\n            {\n                \"country\": \"DJ\",\n                \"code\": \"253\"\n            },\n            {\n                \"country\": \"DK\",\n                \"code\": \"45\"\n            },\n            {\n                \"country\": \"DM\",\n                \"code\": \"1767\"\n            },\n            {\n                \"country\": \"DO\",\n                \"code\": \"1809\"\n            },\n            {\n                \"country\": \"DZ\",\n                \"code\": \"213\"\n            },\n            {\n                \"country\": \"EC\",\n                \"code\": \"593\"\n            },\n            {\n                \"country\": \"EE\",\n                \"code\": \"372\"\n            },\n            {\n                \"country\": \"EG\",\n                \"code\": \"20\"\n            },\n            {\n                \"country\": \"EH\",\n                \"code\": \"212\"\n            },\n            {\n                \"country\": \"ER\",\n                \"code\": \"291\"\n            },\n            {\n                \"country\": \"ES\",\n                \"code\": \"34\"\n            },\n            {\n                \"country\": \"ET\",\n                \"code\": \"251\"\n            },\n            {\n                \"country\": \"FI\",\n                \"code\": \"358\"\n            },\n            {\n                \"country\": \"FJ\",\n                \"code\": \"679\"\n            },\n            {\n                \"country\": \"FK\",\n                \"code\": \"500\"\n            },\n            {\n                \"country\": \"FM\",\n                \"code\": \"691\"\n            },\n            {\n                \"country\": \"FO\",\n                \"code\": \"298\"\n            },\n            {\n                \"country\": \"FR\",\n                \"code\": \"33\"\n            },\n            {\n                \"country\": \"GA\",\n                \"code\": \"241\"\n            },\n            {\n                \"country\": \"GB\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"GD\",\n                \"code\": \"1473\"\n            },\n            {\n                \"country\": \"GE\",\n                \"code\": \"995\"\n            },\n            {\n                \"country\": \"GF\",\n                \"code\": \"594\"\n            },\n            {\n                \"country\": \"GG\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"GH\",\n                \"code\": \"233\"\n            },\n            {\n                \"country\": \"GI\",\n                \"code\": \"350\"\n            },\n            {\n                \"country\": \"GL\",\n                \"code\": \"299\"\n            },\n            {\n                \"country\": \"GM\",\n                \"code\": \"220\"\n            },\n            {\n                \"country\": \"GN\",\n                \"code\": \"224\"\n            },\n            {\n                \"country\": \"GP\",\n                \"code\": \"590\"\n            },\n            {\n                \"country\": \"GQ\",\n                \"code\": \"240\"\n            },\n            {\n                \"country\": \"GR\",\n                \"code\": \"30\"\n            },\n            {\n                \"country\": \"GS\",\n                \"code\": \"500\"\n            },\n            {\n                \"country\": \"GT\",\n                \"code\": \"502\"\n            },\n            {\n                \"country\": \"GU\",\n                \"code\": \"1671\"\n            },\n            {\n                \"country\": \"GW\",\n                \"code\": \"245\"\n            },\n            {\n                \"country\": \"GY\",\n                \"code\": \"592\"\n            },\n            {\n                \"country\": \"HK\",\n                \"code\": \"852\"\n            },\n            {\n                \"country\": \"HN\",\n                \"code\": \"504\"\n            },\n            {\n                \"country\": \"HR\",\n                \"code\": \"385\"\n            },\n            {\n                \"country\": \"HT\",\n                \"code\": \"509\"\n            },\n            {\n                \"country\": \"HU\",\n                \"code\": \"36\"\n            },\n            {\n                \"country\": \"ID\",\n                \"code\": \"62\"\n            },\n            {\n                \"country\": \"IE\",\n                \"code\": \"353\"\n            },\n            {\n                \"country\": \"IL\",\n                \"code\": \"972\"\n            },\n            {\n                \"country\": \"IM\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"IN\",\n                \"code\": \"91\"\n            },\n            {\n                \"country\": \"IO\",\n                \"code\": \"246\"\n            },\n            {\n                \"country\": \"IQ\",\n                \"code\": \"964\"\n            },\n            {\n                \"country\": \"IR\",\n                \"code\": \"98\"\n            },\n            {\n                \"country\": \"IS\",\n                \"code\": \"354\"\n            },\n            {\n                \"country\": \"IT\",\n                \"code\": \"39\"\n            },\n            {\n                \"country\": \"JE\",\n                \"code\": \"44\"\n            },\n            {\n                \"country\": \"JM\",\n                \"code\": \"1876\"\n            },\n            {\n                \"country\": \"JO\",\n                \"code\": \"962\"\n            },\n            {\n                \"country\": \"JP\",\n                \"code\": \"81\"\n            },\n            {\n                \"country\": \"KE\",\n                \"code\": \"254\"\n            },\n            {\n                \"country\": \"KG\",\n                \"code\": \"996\"\n            },\n            {\n                \"country\": \"KH\",\n                \"code\": \"855\"\n            },\n            {\n                \"country\": \"KI\",\n                \"code\": \"686\"\n            },\n            {\n                \"country\": \"KM\",\n                \"code\": \"269\"\n            },\n            {\n                \"country\": \"KN\",\n                \"code\": \"1869\"\n            },\n            {\n                \"country\": \"KP\",\n                \"code\": \"850\"\n            },\n            {\n                \"country\": \"KR\",\n                \"code\": \"82\"\n            },\n            {\n                \"country\": \"KW\",\n                \"code\": \"965\"\n            },\n            {\n                \"country\": \"KY\",\n                \"code\": \"1345\"\n            },\n            {\n                \"country\": \"KZ\",\n                \"code\": \"76\"\n            },\n            {\n                \"country\": \"LA\",\n                \"code\": \"856\"\n            },\n            {\n                \"country\": \"LB\",\n                \"code\": \"961\"\n            },\n            {\n                \"country\": \"LC\",\n                \"code\": \"1758\"\n            },\n            {\n                \"country\": \"LI\",\n                \"code\": \"423\"\n            },\n            {\n                \"country\": \"LK\",\n                \"code\": \"94\"\n            },\n            {\n                \"country\": \"LR\",\n                \"code\": \"231\"\n            },\n            {\n                \"country\": \"LS\",\n                \"code\": \"266\"\n            },\n            {\n                \"country\": \"LT\",\n                \"code\": \"370\"\n            },\n            {\n                \"country\": \"LU\",\n                \"code\": \"352\"\n            },\n            {\n                \"country\": \"LV\",\n                \"code\": \"371\"\n            },\n            {\n                \"country\": \"LY\",\n                \"code\": \"218\"\n            },\n            {\n                \"country\": \"MA\",\n                \"code\": \"212\"\n            },\n            {\n                \"country\": \"MC\",\n                \"code\": \"377\"\n            },\n            {\n                \"country\": \"MD\",\n                \"code\": \"373\"\n            },\n            {\n                \"country\": \"ME\",\n                \"code\": \"382\"\n            },\n            {\n                \"country\": \"MF\",\n                \"code\": \"590\"\n            },\n            {\n                \"country\": \"MG\",\n                \"code\": \"261\"\n            },\n            {\n                \"country\": \"MH\",\n                \"code\": \"692\"\n            },\n            {\n                \"country\": \"MK\",\n                \"code\": \"389\"\n            },\n            {\n                \"country\": \"ML\",\n                \"code\": \"223\"\n            },\n            {\n                \"country\": \"MM\",\n                \"code\": \"95\"\n            },\n            {\n                \"country\": \"MN\",\n                \"code\": \"976\"\n            },\n            {\n                \"country\": \"MO\",\n                \"code\": \"853\"\n            },\n            {\n                \"country\": \"MP\",\n                \"code\": \"1670\"\n            },\n            {\n                \"country\": \"MQ\",\n                \"code\": \"596\"\n            },\n            {\n                \"country\": \"MR\",\n                \"code\": \"222\"\n            },\n            {\n                \"country\": \"MS\",\n                \"code\": \"1664\"\n            },\n            {\n                \"country\": \"MT\",\n                \"code\": \"356\"\n            },\n            {\n                \"country\": \"MU\",\n                \"code\": \"230\"\n            },\n            {\n                \"country\": \"MV\",\n                \"code\": \"960\"\n            },\n            {\n                \"country\": \"MW\",\n                \"code\": \"265\"\n            },\n            {\n                \"country\": \"MX\",\n                \"code\": \"52\"\n            },\n            {\n                \"country\": \"MY\",\n                \"code\": \"60\"\n            },\n            {\n                \"country\": \"MZ\",\n                \"code\": \"258\"\n            },\n            {\n                \"country\": \"NA\",\n                \"code\": \"264\"\n            },\n            {\n                \"country\": \"NC\",\n                \"code\": \"687\"\n            },\n            {\n                \"country\": \"NE\",\n                \"code\": \"227\"\n            },\n            {\n                \"country\": \"NF\",\n                \"code\": \"672\"\n            },\n            {\n                \"country\": \"NG\",\n                \"code\": \"234\"\n            },\n            {\n                \"country\": \"NI\",\n                \"code\": \"505\"\n            },\n            {\n                \"country\": \"NL\",\n                \"code\": \"31\"\n            },\n            {\n                \"country\": \"NO\",\n                \"code\": \"47\"\n            },\n            {\n                \"country\": \"NP\",\n                \"code\": \"977\"\n            },\n            {\n                \"country\": \"NR\",\n                \"code\": \"674\"\n            },\n            {\n                \"country\": \"NU\",\n                \"code\": \"683\"\n            },\n            {\n                \"country\": \"NZ\",\n                \"code\": \"64\"\n            },\n            {\n                \"country\": \"OM\",\n                \"code\": \"968\"\n            },\n            {\n                \"country\": \"PA\",\n                \"code\": \"507\"\n            },\n            {\n                \"country\": \"PE\",\n                \"code\": \"51\"\n            },\n            {\n                \"country\": \"PF\",\n                \"code\": \"689\"\n            },\n            {\n                \"country\": \"PG\",\n                \"code\": \"675\"\n            },\n            {\n                \"country\": \"PH\",\n                \"code\": \"63\"\n            },\n            {\n                \"country\": \"PK\",\n                \"code\": \"92\"\n            },\n            {\n                \"country\": \"PL\",\n                \"code\": \"48\"\n            },\n            {\n                \"country\": \"PM\",\n                \"code\": \"508\"\n            },\n            {\n                \"country\": \"PN\",\n                \"code\": \"64\"\n            },\n            {\n                \"country\": \"PR\",\n                \"code\": \"1787\"\n            },\n            {\n                \"country\": \"PS\",\n                \"code\": \"970\"\n            },\n            {\n                \"country\": \"PT\",\n                \"code\": \"351\"\n            },\n            {\n                \"country\": \"PW\",\n                \"code\": \"680\"\n            },\n            {\n                \"country\": \"PY\",\n                \"code\": \"595\"\n            },\n            {\n                \"country\": \"QA\",\n                \"code\": \"974\"\n            },\n            {\n                \"country\": \"RE\",\n                \"code\": \"262\"\n            },\n            {\n                \"country\": \"RO\",\n                \"code\": \"40\"\n            },\n            {\n                \"country\": \"RS\",\n                \"code\": \"381\"\n            },\n            {\n                \"country\": \"RU\",\n                \"code\": \"7\"\n            },\n            {\n                \"country\": \"RW\",\n                \"code\": \"250\"\n            },\n            {\n                \"country\": \"SA\",\n                \"code\": \"966\"\n            },\n            {\n                \"country\": \"SB\",\n                \"code\": \"677\"\n            },\n            {\n                \"country\": \"SC\",\n                \"code\": \"248\"\n            },\n            {\n                \"country\": \"SD\",\n                \"code\": \"249\"\n            },\n            {\n                \"country\": \"SE\",\n                \"code\": \"46\"\n            },\n            {\n                \"country\": \"SG\",\n                \"code\": \"65\"\n            },\n            {\n                \"country\": \"SH\",\n                \"code\": \"290\"\n            },\n            {\n                \"country\": \"SI\",\n                \"code\": \"386\"\n            },\n            {\n                \"country\": \"SJ\",\n                \"code\": \"4779\"\n            },\n            {\n                \"country\": \"SK\",\n                \"code\": \"421\"\n            },\n            {\n                \"country\": \"SL\",\n                \"code\": \"232\"\n            },\n            {\n                \"country\": \"SM\",\n                \"code\": \"378\"\n            },\n            {\n                \"country\": \"SN\",\n                \"code\": \"221\"\n            },\n            {\n                \"country\": \"SO\",\n                \"code\": \"252\"\n            },\n            {\n                \"country\": \"SR\",\n                \"code\": \"597\"\n            },\n            {\n                \"country\": \"SS\",\n                \"code\": \"211\"\n            },\n            {\n                \"country\": \"ST\",\n                \"code\": \"239\"\n            },\n            {\n                \"country\": \"SV\",\n                \"code\": \"503\"\n            },\n            {\n                \"country\": \"SX\",\n                \"code\": \"1721\"\n            },\n            {\n                \"country\": \"SY\",\n                \"code\": \"963\"\n            },\n            {\n                \"country\": \"SZ\",\n                \"code\": \"268\"\n            },\n            {\n                \"country\": \"TC\",\n                \"code\": \"1649\"\n            },\n            {\n                \"country\": \"TD\",\n                \"code\": \"235\"\n            },\n            {\n                \"country\": \"TG\",\n                \"code\": \"228\"\n            },\n            {\n                \"country\": \"TH\",\n                \"code\": \"66\"\n            },\n            {\n                \"country\": \"TJ\",\n                \"code\": \"992\"\n            },\n            {\n                \"country\": \"TK\",\n                \"code\": \"690\"\n            },\n            {\n                \"country\": \"TL\",\n                \"code\": \"670\"\n            },\n            {\n                \"country\": \"TM\",\n                \"code\": \"993\"\n            },\n            {\n                \"country\": \"TN\",\n                \"code\": \"216\"\n            },\n            {\n                \"country\": \"TO\",\n                \"code\": \"676\"\n            },\n            {\n                \"country\": \"TR\",\n                \"code\": \"90\"\n            },\n            {\n                \"country\": \"TT\",\n                \"code\": \"1868\"\n            },\n            {\n                \"country\": \"TV\",\n                \"code\": \"688\"\n            },\n            {\n                \"country\": \"TW\",\n                \"code\": \"886\"\n            },\n            {\n                \"country\": \"TZ\",\n                \"code\": \"255\"\n            },\n            {\n                \"country\": \"UA\",\n                \"code\": \"380\"\n            },\n            {\n                \"country\": \"UG\",\n                \"code\": \"256\"\n            },\n            {\n                \"country\": \"US\",\n                \"code\": \"1\"\n            },\n            {\n                \"country\": \"UY\",\n                \"code\": \"598\"\n            },\n            {\n                \"country\": \"UZ\",\n                \"code\": \"998\"\n            },\n            {\n                \"country\": \"VA\",\n                \"code\": \"379\"\n            },\n            {\n                \"country\": \"VC\",\n                \"code\": \"1784\"\n            },\n            {\n                \"country\": \"VE\",\n                \"code\": \"58\"\n            },\n            {\n                \"country\": \"VG\",\n                \"code\": \"1284\"\n            },\n            {\n                \"country\": \"VI\",\n                \"code\": \"1340\"\n            },\n            {\n                \"country\": \"VN\",\n                \"code\": \"84\"\n            },\n            {\n                \"country\": \"VU\",\n                \"code\": \"678\"\n            },\n            {\n                \"country\": \"WF\",\n                \"code\": \"681\"\n            },\n            {\n                \"country\": \"WS\",\n                \"code\": \"685\"\n            },\n            {\n                \"country\": \"XK\",\n                \"code\": \"383\"\n            },\n            {\n                \"country\": \"YE\",\n                \"code\": \"967\"\n            },\n            {\n                \"country\": \"YT\",\n                \"code\": \"262\"\n            },\n            {\n                \"country\": \"ZA\",\n                \"code\": \"27\"\n            },\n            {\n                \"country\": \"ZM\",\n                \"code\": \"260\"\n            },\n            {\n                \"country\": \"ZW\",\n                \"code\": \"263\"\n            }\n        ]\n    },\n    \"assets\": {\n        \"assets\": {\n            \"ADA\": {\n                \"addressRegex\": \"^(([0-9A-Za-z]{57,59})|([0-9A-Za-z]{100,104}))$\",\n                \"coin\": \"ADA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Cardano\",\n                \"network\": \"ada\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://cardanoexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"https://cardanoexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ada.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Cardano\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"AION\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{64}$\",\n                \"coin\": \"AION\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Aion\",\n                \"network\": \"aion\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://mainnet.theoan.com/#/account/:address\",\n                \"explorerTxUrl\": \"https://mainnet.theoan.com/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80528563-f821-468b-9457-ce944a0d68e6.jpg\",\n                \"minConfirm\": 60,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"AION\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ALGO\": {\n                \"addressRegex\": \"^[A-Z0-9]{58,58}$\",\n                \"coin\": \"ALGO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Algorand\",\n                \"network\": \"algo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://algoexplorer.io/address/:address\",\n                \"explorerTxUrl\": \"https://algoexplorer.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/algo.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Algorand\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ANKR\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ANKR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"287\",\n                \"withdrawMin\": \"574\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/06f11cb4-6699-4c6d-911f-6773a1aa7b98.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ankr\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"ARPA\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ARPA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"345\",\n                \"withdrawMin\": \"690\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d2f05b7e-25c3-4403-9249-0861c221a6c9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"ARPA Chain\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ATOM\": {\n                \"addressRegex\": \"^(cosmos1)[0-9a-z]{38}$\",\n                \"coin\": \"ATOM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Cosmos\",\n                \"network\": \"atom\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ATOM to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.mintscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://www.mintscan.io/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/atom.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 15,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Cosmos\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"BAND\": {\n                \"addressRegex\": \"^(band1)[0-9a-z]{38}$\",\n                \"coin\": \"BAND\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"BAND\",\n                \"network\": \"band\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your BAND to Satang\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://cosmoscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://cosmoscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/band.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"BAND\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"BAT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"BAT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The name of this asset is Basic Attention Token. Please ensure you are depositing Basic Attention Token (BAT) tokens under the contract address ending in 887ef.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"36\",\n                \"withdrawMin\": \"72\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bat.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Basic Attention Token\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"BCH\": {\n                \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                \"coin\": \"BCH\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Bitcoin Cash\",\n                \"network\": \"bch\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-cash/address/:address\",\n                \"explorerTxUrl\": \"https://blockchair.com/bitcoin-cash/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bch.png\",\n                \"minConfirm\": 6,\n                \"unlockConfirm\": 6,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin Cash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BCHA\": {\n                \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                \"coin\": \"BCHA\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"BCHA\",\n                \"network\": \"bcha\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0\",\n                \"withdrawMin\": \"0.005\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-abc/address/:address\",\n                \"explorerTxUrl\": \"https://blockchair.com/bitcoin-abc/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bcha.png\",\n                \"minConfirm\": 11,\n                \"unlockConfirm\": 11,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin Cash ABC\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BEAM\": {\n                \"addressRegex\": \"^[A-Za-z0-9]{65,500}$|^(beam:)[A-Za-z0-9]{65,495}$\",\n                \"coin\": \"BEAM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Beam\",\n                \"network\": \"beam\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.beam.mw/\",\n                \"explorerTxUrl\": \"https://explorer.beam.mw/\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2a3788d1-5f5f-4a1f-abec-ac96528f5a33.png\",\n                \"minConfirm\": 70,\n                \"unlockConfirm\": 70,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Beam\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BNB\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"BNB\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit BNB Mainnet tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bnb.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"BNB\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"BTC\": {\n                \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^(bc1)[0-9A-Za-z]{39,59}$\",\n                \"coin\": \"BTC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Bitcoin\",\n                \"network\": \"btc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0005\",\n                \"withdrawMin\": \"0.001\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://blockchair.com/bitcoin/address/:address\",\n                \"explorerTxUrl\": \"https://blockchair.com/bitcoin/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/btc.png\",\n                \"minConfirm\": 2,\n                \"unlockConfirm\": 2,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Bitcoin\"\n            },\n            \"BTG\": {\n                \"addressRegex\": \"^[AG][a-km-zA-HJ-NP-Z1-9]{25,34}$\",\n                \"coin\": \"BTG\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Bitcoin Gold\",\n                \"network\": \"btg\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The name of this asset is Bitcoin Gold. Please ensure you are depositing Bitcoin Gold (BTG) tokens.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://btgexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"https://btgexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/262ad6d4-eb36-4288-aaf0-c127bace866f.png\",\n                \"minConfirm\": 70,\n                \"unlockConfirm\": 70,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Bitcoin Gold\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"BTT\": {\n                \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                \"coin\": \"BTT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tron (TRC20)\",\n                \"network\": \"trx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"28\",\n                \"withdrawMin\": \"56\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1baa029f-4d86-4210-b382-184d2993a04c.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"BitTorrent\",\n                \"label\": \"\",\n                \"networkFullName\": \"Tron\"\n            },\n            \"BUSD\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"BUSD\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/busd.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"BUSD\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"CAKE\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CAKE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Binance Smart Chain (BEP20)\",\n                \"network\": \"bsc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0096\",\n                \"withdrawMin\": \"0.019\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cake.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"PancakeSwap\",\n                \"label\": \"\",\n                \"networkFullName\": \"Binance Smart Chain\"\n            },\n            \"CELR\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CELR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"316\",\n                \"withdrawMin\": \"632\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5c9b1c61-4605-4795-82ad-1206d01b54a9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Celer Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"CHZ\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"CHZ\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit CHZ BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.63\",\n                \"withdrawMin\": \"1.26\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/721a863b-5c9d-4061-a2f0-d288dcd3d1ad.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Chiliz\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"COCOS\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"COCOS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Binance Smart Chain (BEP20)\",\n                \"network\": \"cocos\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.29\",\n                \"withdrawMin\": \"0.58\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cocos.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Cocos-BCX\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"COS\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"COS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit COS BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"8.91\",\n                \"withdrawMin\": \"17\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3cb8b31e-c6b4-4d83-b7fd-25c7a470404d.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Contentos\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"CPY\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CPY\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 18,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2dc47ff5-1689-498d-8230-f753dfcbf742.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Copytrack\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"CTXC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CTXC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Cortex\",\n                \"network\": \"ctxc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://cerebro.cortexlabs.ai/#/address/:address\",\n                \"explorerTxUrl\": \"https://cerebro.cortexlabs.ai/#/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e07316d8-d579-4398-9a56-61834f167fb1.png\",\n                \"minConfirm\": 257,\n                \"unlockConfirm\": 257,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Cortex\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"CVC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"CVC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"55\",\n                \"withdrawMin\": \"110\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cvc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Civic\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"DAI\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"DAI\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"15\",\n                \"withdrawMin\": \"30\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dai.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dai\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"DASH\": {\n                \"addressRegex\": \"^[X|7][0-9A-Za-z]{33}$\",\n                \"coin\": \"DASH\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Dash\",\n                \"network\": \"dash\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"0.004\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://chainz.cryptoid.info/dash/address.dws?:address.htm\",\n                \"explorerTxUrl\": \"https://chainz.cryptoid.info/dash/tx.dws?:tx.htm\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6c8c554-ae01-4460-866d-fafa6f19db5c.png\",\n                \"minConfirm\": 25,\n                \"unlockConfirm\": 25,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"DOGE\": {\n                \"addressRegex\": \"^(D|A|9)[a-km-zA-HJ-NP-Z1-9]{33,34}$\",\n                \"coin\": \"DOGE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"dogecoin\",\n                \"network\": \"doge\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"5\",\n                \"withdrawMin\": \"25\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://dogechain.info/address/:address\",\n                \"explorerTxUrl\": \"https://dogechain.info/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/38634057-e551-44e0-8ff5-033d4ee0b612.png\",\n                \"minConfirm\": 50,\n                \"unlockConfirm\": 50,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dogecoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"DOT\": {\n                \"addressRegex\": \"^(1)[0-9a-z-A-Z]{44,50}$\",\n                \"coin\": \"DOT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Polkadot\",\n                \"network\": \"dot\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please note that we currently do not support deposits for staking rewards.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"1.5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://polkadot-cc1.subscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://polkadot.subscan.io/extrinsic/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dot.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Polkadot\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"DUSK\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"DUSK\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit DUSK BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1.28\",\n                \"withdrawMin\": \"2.56\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3376691f-fafc-4de5-afc2-74de713bc012.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Dusk Network\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"ELEC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ELEC\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/10cc2d49-276a-4c0a-83dd-811071a1add2.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ENJ\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ENJ\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"16\",\n                \"withdrawMin\": \"32\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/enj.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Enjin Coin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"EOS\": {\n                \"addressRegex\": \"^[1-5a-z\\\\.]{1,12}$\",\n                \"coin\": \"EOS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_,]{1,120}$\",\n                \"name\": \"EOS\",\n                \"network\": \"eos\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit EOS to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://bloks.io/account/:address\",\n                \"explorerTxUrl\": \"https://bloks.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eos.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.0001\",\n                \"fixed\": 4,\n                \"fullname\": \"EOS\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"ERD\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"ERD\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ERD BEP2 tokens to your Satang account.\",\n                \"withdrawDesc\": \"Network swapped, BEP2 withdrawal closed.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/c7a20511-af2d-40a5-ac1f-6c2a38bc1dcb.jpg\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Elrond\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"ETC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ETC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum Classic\",\n                \"network\": \"etc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://classic.etccoopexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"https://classic.etccoopexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/etc.png\",\n                \"minConfirm\": 500,\n                \"unlockConfirm\": 500,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ethereum Classic\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ETH\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ETH\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eth.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ethereum\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ETP\": {\n                \"addressRegex\": \"^$\",\n                \"coin\": \"ETP\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ETP\",\n                \"network\": \"etp\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 18,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/948668ef-b20f-4b82-9cf5-819a1a21c3c1.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Meteverse\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"FET\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FET\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Binance Smart Chain (BEP20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.23\",\n                \"withdrawMin\": \"0.46\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/12f36fe2-e77f-4694-9a31-821ea646f547.png\",\n                \"minConfirm\": 15,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Fetch.AI\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"FLOW\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{16}$\",\n                \"coin\": \"FLOW\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Flow\",\n                \"network\": \"flow\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://flowscan.org/account/:address\",\n                \"explorerTxUrl\": \"https://flowscan.org/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/flow.png\",\n                \"minConfirm\": 20,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Flow\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"FTM\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FTM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Fantom\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/94650447-45c9-417d-be69-e74073fcc149.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"Fantom\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"FTT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FTT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.41\",\n                \"withdrawMin\": \"0.82\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/93f2bf75-970e-44b8-9773-20e141a6c8f9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"FTX Token\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"FUN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"FUN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1300\",\n                \"withdrawMin\": \"2600\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2c82fac1-f5cf-4b82-8f91-cff8701efe76.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"FunFair\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"HBAR\": {\n                \"addressRegex\": \"^0.0.\\\\d{1,6}$\",\n                \"coin\": \"HBAR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^.{0,100}$\",\n                \"name\": \"Hedera Hashgraph\",\n                \"network\": \"hbar\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit HBAR to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.kabuto.sh/mainnet/id/:address\",\n                \"explorerTxUrl\": \"https://explorer.kabuto.sh/mainnet/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/hbar.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Hedera Hashgraph\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"HC\": {\n                \"addressRegex\": \"^[H][a-km-zA-HJ-NP-Z1-9]{26,35}$\",\n                \"coin\": \"HC\",\n                \"depositDesc\": \"Sorry, but this asset has been delisted. We cannot process deposits for this asset.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"HyperCash\",\n                \"network\": \"hc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.005\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://hc-explorer.h.cash/explorer/address/:address\",\n                \"explorerTxUrl\": \"https://hc-explorer.h.cash/explorer/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/21d02f93-0eec-4e93-8b78-e8d37fc4be13.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 30,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"HyperCash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"HOT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"HOT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The name of this asset is Holo (ticker: HOT). Please ensure you are depositing Holo (HOT) tokens under the contract address ending in 526e2.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2867\",\n                \"withdrawMin\": \"5734\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/772281f0-386f-4582-95ac-15df3e75c2a2.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Holo\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ICP\": {\n                \"addressRegex\": \"^[0-9a-zA-Z]{64}$\",\n                \"coin\": \"ICP\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Internet Computer\",\n                \"network\": \"icp\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0003\",\n                \"withdrawMin\": \"0.001\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.dfinityexplorer.org/\",\n                \"explorerTxUrl\": \"https://www.dfinityexplorer.org/\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/icp.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Internet Computer\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ICX\": {\n                \"addressRegex\": \"^(hx)[A-Za-z0-9]{40}$\",\n                \"coin\": \"ICX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ICON\",\n                \"network\": \"icx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.02\",\n                \"withdrawMin\": \"0.04\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tracker.icon.foundation/address/:address\",\n                \"explorerTxUrl\": \"https://tracker.icon.foundation/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/6cc30281-0724-46c1-bfca-ff96ab60fccd.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"ICON\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"IOST\": {\n                \"addressRegex\": \"^[A-Za-z0-9_]{5,11}$\",\n                \"coin\": \"IOST\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"IOST\",\n                \"network\": \"iost\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit IOST to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.iostabc.com/account/:address\",\n                \"explorerTxUrl\": \"https://www.iostabc.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iost.png\",\n                \"minConfirm\": 80,\n                \"unlockConfirm\": 80,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"IOST\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"IOTA\": {\n                \"addressRegex\": \"^(iota)[0-9a-z]{60}$\",\n                \"coin\": \"IOTA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"MIOTA\",\n                \"network\": \"iota\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.5\",\n                \"withdrawMin\": \"1.5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://thetangle.org/address/:address\",\n                \"explorerTxUrl\": \"https://thetangle.org/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iota.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"MIOTA\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"IOTX\": {\n                \"addressRegex\": \"io1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                \"coin\": \"IOTX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"IoTeX\",\n                \"network\": \"iotx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/86c97fe9-1b7d-41ca-b5d4-a646baa22f47.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.01\",\n                \"fixed\": 2,\n                \"fullname\": \"IoTeX\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"JFIN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"JFIN\",\n                \"depositDesc\": \"Deposit Suspended\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"90.50000000\",\n                \"withdrawMin\": \"181.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/7ec09a84-6de9-4649-909b-1a41f6e1b470.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"JFIN Coin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"KAVA\": {\n                \"addressRegex\": \"^(kava1)[0-9a-z]{38}$\",\n                \"coin\": \"KAVA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"KAVA\",\n                \"network\": \"kava\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your KAVA to Satang\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://kava.mintscan.io/account/:address\",\n                \"explorerTxUrl\": \"https://kava.mintscan.io/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/877a71e6-291e-49e0-b84e-c99d476bf234.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Kava\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"KNC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"KNC\",\n                \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"8.45000000\",\n                \"withdrawMin\": \"16.90000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/knc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Kyber Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"LINK\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"LINK\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.512\",\n                \"withdrawMin\": \"1.024\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/link.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"ChainLink\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"LSK\": {\n                \"addressRegex\": \"^[0-9]{12,22}[L]$\",\n                \"coin\": \"LSK\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Lisk\",\n                \"network\": \"lsk\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.lisk.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.lisk.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/251bc8d8-be8c-404f-800c-e7b61f0020bb.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Lisk\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"LTC\": {\n                \"addressRegex\": \"^(L|M|3)[A-Za-z0-9]{33}$|^(ltc1)[0-9A-Za-z]{39}$\",\n                \"coin\": \"LTC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Litecoin\",\n                \"network\": \"ltc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Minimum deposit amount: 0.001 LTC. Any deposits less than or equal to the minimum amount will not be credited or refunded.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"http://explorer.litecoin.net/address/:address\",\n                \"explorerTxUrl\": \"http://explorer.litecoin.net/tx/:txid\",\n                \"depositWarnings\": {\n                    \"en\": \"Minimum deposit for LTC must be greater than 0.001 LTC\",\n                    \"th\": \"ยอดฝากขั้นต่ำสำหรับ LTC จะต้องมากกว่า 0.001 LTC\"\n                },\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ltc.png\",\n                \"minConfirm\": 4,\n                \"unlockConfirm\": 4,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Litecoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"LTO\": {\n                \"addressRegex\": \"^(3J)[0-9A-Za-z]{33}$\",\n                \"coin\": \"LTO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"LTO Network\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"5\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/lto.png\",\n                \"minConfirm\": 50,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"LTO Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"LUNA\": {\n                \"addressRegex\": \"^(terra1)[0-9a-z]{38}$\",\n                \"coin\": \"LUNA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Terra\",\n                \"network\": \"luna\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.02\",\n                \"withdrawMin\": \"5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://finder.terra.money/columbus-4/address/:address\",\n                \"explorerTxUrl\": \"https://finder.terra.money/columbus-4/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/luna.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Terra\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"MATIC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"MATIC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Polygon\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f35f22f1-5fbe-44e7-b27c-434bc4692243.png\",\n                \"minConfirm\": 128,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"MATIC Network\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"MBL\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"MBL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ontology\",\n                \"network\": \"ont\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"5.31\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/76ed03c0-191f-44b9-a447-bc3dc8c14dfa.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"MovieBloc\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"MCO\": {\n                \"addressRegex\": \"\",\n                \"coin\": \"MCO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"\",\n                \"withdrawMin\": \"\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/mco.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"MCO\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"MFT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"MFT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2192\",\n                \"withdrawMin\": \"4384\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5429b273-e866-4d4d-8ff1-7f611c20e6cc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Mainframe\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"NANO\": {\n                \"addressRegex\": \"^(xrb_|nano_)[13456789abcdefghijkmnopqrstuwxyz]{60}\",\n                \"coin\": \"NANO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"NANO\",\n                \"network\": \"nano\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Minimum deposit amount: 0.001 NANO. Any deposits less than the minimum will not be credited or refunded.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://nanocrawler.cc/explorer/account/:address\",\n                \"explorerTxUrl\": \"https://nanocrawler.cc/explorer/block/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/622eeb19-e123-4325-a157-bef257d9ae79.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"NANO\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"NEO\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"NEO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"NEP5\",\n                \"network\": \"neo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://neoscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://neoscan.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/842d559d-f7f8-4411-9b51-764e27a53289.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"1\",\n                \"fixed\": 0,\n                \"fullname\": \"NEO\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"NKN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"NKN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"72\",\n                \"withdrawMin\": \"144\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2412984d-4a6a-4a15-8247-0cf478e589b1.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"NKN\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"NPXS\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"NPXS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"4997\",\n                \"withdrawMin\": \"9994\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/npxs.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Pundi X\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"NULS\": {\n                \"addressRegex\": \"^NULS[a-km-zA-HJ-NP-Z1-9]{33,33}$\",\n                \"coin\": \"NULS\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Nuls\",\n                \"network\": \"nuls\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://nuls.world/addresses/:address\",\n                \"explorerTxUrl\": \"https://nuls.world/transactions/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/nuls.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Nuls\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"OGN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"OGN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"28\",\n                \"withdrawMin\": \"56\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b0372bb4-3b77-4106-af0d-818d695f1734.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"OriginToken\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"OMG\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"OMG\",\n                \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2.90000000\",\n                \"withdrawMin\": \"5.80000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1d2e2f11-8c87-4232-be2c-f854fbe41825.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"OmiseGO\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"ONE\": {\n                \"addressRegex\": \"^(one1)[a-z0-9]{38}$\",\n                \"coin\": \"ONE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Harmony\",\n                \"network\": \"one\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please ensure that both sending and receiving addresses are using shard0 in order to deposit ONE tokens to your Satang account successfully.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"60\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.harmony.one/#/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.harmony.one/#/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/133e0469-3a96-4e3a-9c42-b4c5a4f8def8.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Harmony\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ONG\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"ONG\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ontology\",\n                \"network\": \"ont\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.046\",\n                \"withdrawMin\": \"0.092\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/180b4eca-ec14-4f65-ba14-4c5adaf4b7d0.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ontology Gas\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ONT\": {\n                \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                \"coin\": \"ONT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ontology\",\n                \"network\": \"ont\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/26ad538a-7c7c-47cf-ad78-db88fb6335de.png\",\n                \"minConfirm\": 5,\n                \"unlockConfirm\": 5,\n                \"withdrawIntegerMultiple\": \"1\",\n                \"fixed\": 0,\n                \"fullname\": \"Ontology\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"PAX\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"PAX\",\n                \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"15\",\n                \"withdrawMin\": \"30\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6ce1d9f-f592-4ee4-b3d5-758a591233d9.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Paxos Standard\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"PAXG\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"PAXG\",\n                \"depositDesc\": \"Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"0.006\",\n                \"precision\": 18,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/paxg.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"PAX Gold\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"PERL\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"PERL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Token has been upgraded to New contract, please do not deposit old tokens into your Satang wallet\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"291\",\n                \"withdrawMin\": \"582\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/ed797f2b-b5a8-405c-a053-60a9a9b9b22f.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Perlin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"POWR\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"POWR\",\n                \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"69.00000000\",\n                \"withdrawMin\": \"138.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/powr.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Power Ledger\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"QTUM\": {\n                \"addressRegex\": \"^[Q|M][A-Za-z0-9]{33}$\",\n                \"coin\": \"QTUM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Qtum\",\n                \"network\": \"qtum\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://qtum.info/address/:address/\",\n                \"explorerTxUrl\": \"https://qtum.info/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/aaf3b2ce-9598-4309-845c-15705bab2e8f.png\",\n                \"minConfirm\": 24,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Qtum\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"REN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"REN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"27\",\n                \"withdrawMin\": \"54\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ren.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ren\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"RPX\": {\n                \"addressRegex\": \"^$\",\n                \"coin\": \"RPX\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"NEP5\",\n                \"network\": \"neo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e4feca7f-308c-4518-8aee-4be1d21fea3c.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Red Pulse Phoenix\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"RVN\": {\n                \"addressRegex\": \"^[Rr]{1}[A-Za-z0-9]{33,34}$\",\n                \"coin\": \"RVN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ravencoin\",\n                \"network\": \"rvn\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://ravencoin.network/address/:address\",\n                \"explorerTxUrl\": \"https://ravencoin.network/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/rvn.png\",\n                \"minConfirm\": 200,\n                \"unlockConfirm\": 200,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Ravencoin\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"SOL\": {\n                \"addressRegex\": \"^[0-9a-zA-Z]{32,44}$\",\n                \"coin\": \"SOL\",\n                \"depositDesc\": \"Network is unstable, deposit closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Solana\",\n                \"network\": \"sol\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"The Solana blockchain will retain 0.00203928 SOL for your first token deposit. The following deposits will not be charge for any fee.\",\n                \"withdrawDesc\": \"Network is unstable, withdrawal closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.solana.com/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.solana.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/sol.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Solana\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"STPT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"STPT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"471\",\n                \"withdrawMin\": \"942\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9730d4a0-7a31-41f4-91cc-6450bc3f13b2.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Standard Tokenization Protocol\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"STRAT\": {\n                \"addressRegex\": \"\",\n                \"coin\": \"STRAT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"\",\n                \"network\": \"strat\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"\",\n                \"withdrawMin\": \"\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://chainz.cryptoid.info/strat/address.dws?:address\",\n                \"explorerTxUrl\": \"https://chainz.cryptoid.info/strat/tx.dws?:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/239be534-315d-4c59-9770-91193efd74c1.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0\",\n                \"fixed\": 0,\n                \"fullname\": \"Stratis\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"STX\": {\n                \"addressRegex\": \"^(SP)([0123456789ABCDEFGHJKMNPQRSTVWXYZ]+)$\",\n                \"coin\": \"STX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[a-zA-Z0-9]{0,34}$\",\n                \"name\": \"Stacks\",\n                \"network\": \"stx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your STX to Satang.\",\n                \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"5\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.blockstack.org/address/stacks/:address\",\n                \"explorerTxUrl\": \"https://explorer.blockstack.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e746d04-1d8d-4aae-8bf8-7aa644a2c6e5.png\",\n                \"minConfirm\": 6,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.0001\",\n                \"fixed\": 4,\n                \"fullname\": \"Blockstack\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"TFUEL\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"TFUEL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Theta Token\",\n                \"network\": \"theta\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"2.52\",\n                \"withdrawMin\": \"5.04\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d1208752-7976-4679-9347-52958184aab8.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Theta Fuel\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"THETA\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"THETA\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Theta Token\",\n                \"network\": \"theta\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"This address is for Mainnet token deposits only. Please do not deposit ERC20 tokens to this address.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.12\",\n                \"withdrawMin\": \"0.24\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/theta.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Theta Token\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"TOMO\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"TOMO\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"TomoChain\",\n                \"network\": \"tomo\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.01\",\n                \"withdrawMin\": \"0.02\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://scan.tomochain.com/address/:address\",\n                \"explorerTxUrl\": \"https://scan.tomochain.com/txs/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/84063afa-f0e4-494d-b8af-22b0fd358ee1.png\",\n                \"minConfirm\": 60,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"TomoChain\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"TROY\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"TROY\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your TROY BEP2 tokens to Satang.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/25ccb5d6-0583-4e23-8669-fcad9fbd806f.jpg\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Troy\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"TRX\": {\n                \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                \"coin\": \"TRX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tron (TRC20)\",\n                \"network\": \"trx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/trx.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"TRON\",\n                \"label\": \"\",\n                \"networkFullName\": \"Tron\"\n            },\n            \"TUSD\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"TUSD\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"15\",\n                \"withdrawMin\": \"30\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/tusd.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"TrueUSD\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"USDC\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"USDC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdc.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"USD Coin\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"USDT\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"USDT\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"25\",\n                \"withdrawMin\": \"50\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"TetherUS\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"VET\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"VET\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"VeChain\",\n                \"network\": \"vet\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please note that VEN has been swapped to VET. Please avoid sending VEN to your VET address, as your funds will be forever lost.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"20\",\n                \"withdrawMin\": \"40\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explore.vechain.org/accounts/:address/\",\n                \"explorerTxUrl\": \"https://explore.vechain.org/transactions/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/22f5c498-2f09-4da3-8110-9583f724cc59.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"VeChain\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"VITE\": {\n                \"addressRegex\": \"^(vite_)[a-z0-9]{50}$\",\n                \"coin\": \"VITE\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\\\\w{0,120}\",\n                \"name\": \"VITE\",\n                \"network\": \"vite\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your VITE to Satang.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"1\",\n                \"withdrawMin\": \"2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.vite.net/account/:address\",\n                \"explorerTxUrl\": \"https://explorer.vite.net/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f54178ac-6845-4989-98c8-759eced9289e.png\",\n                \"minConfirm\": 150,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"VITE\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"WAN\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"WAN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Wanchain\",\n                \"network\": \"wan\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"0.2\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://www.wanscan.org/address/:address\",\n                \"explorerTxUrl\": \"https://www.wanscan.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/wan.png\",\n                \"minConfirm\": 30,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Wanchain\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"WAVES\": {\n                \"addressRegex\": \"^(3P)[0-9A-Za-z]{33}$\",\n                \"coin\": \"WAVES\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Waves\",\n                \"network\": \"waves\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.002\",\n                \"withdrawMin\": \"0.004\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"http://wavesexplorer.com/address/:address\",\n                \"explorerTxUrl\": \"http://wavesexplorer.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/4a19ba9d-d60b-4ebd-a765-bdeeda0b7de1.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Waves\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"WAX\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"WAX\",\n                \"depositDesc\": \"Delisted, Deposit Suspended\",\n                \"depositEnable\": false,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"ERC20\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": false,\n                \"withdrawFee\": \"0.00000000\",\n                \"withdrawMin\": \"0.00000000\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"\",\n                \"explorerTxUrl\": \"\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/29ce6c32-95db-4a6b-a05a-2bae44e8096b.png\",\n                \"minConfirm\": 0,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            },\n            \"WIN\": {\n                \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                \"coin\": \"WIN\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tron (TRC20)\",\n                \"network\": \"trx\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"219\",\n                \"withdrawMin\": \"438\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e5470a4-ca68-469d-a78d-abdcabbf5c51.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"WINK\",\n                \"label\": \"\",\n                \"networkFullName\": \"Tron\"\n            },\n            \"WRX\": {\n                \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                \"coin\": \"WRX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                \"name\": \"Binance Chain (BEP2)\",\n                \"network\": \"bnb\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.18\",\n                \"withdrawMin\": \"0.36\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2b2bec60-c9af-46a0-92b2-64c64ed936f2.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"WazirX\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"Binance Chain\"\n            },\n            \"XLM\": {\n                \"addressRegex\": \"^G[A-D]{1}[A-Z2-7]{54}$\",\n                \"coin\": \"XLM\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^[0-9A-Za-z]{1,28}$\",\n                \"name\": \"Stellar Lumens\",\n                \"network\": \"xlm\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit XLM to your Satang account.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.02\",\n                \"withdrawMin\": \"10\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://steexp.com/account/:address\",\n                \"explorerTxUrl\": \"https://steexp.com/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xlm.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.0000001\",\n                \"fixed\": 7,\n                \"fullname\": \"Stellar Lumens\",\n                \"label\": \"MEMO\",\n                \"networkFullName\": \"\"\n            },\n            \"XMR\": {\n                \"addressRegex\": \"^[48][a-zA-Z|\\\\d]{94}([a-zA-Z|\\\\d]{11})?$\",\n                \"coin\": \"XMR\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Monero\",\n                \"network\": \"xmr\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.0001\",\n                \"withdrawMin\": \"0.0002\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://moneroblocks.info\",\n                \"explorerTxUrl\": \"https://moneroblocks.info/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xmr.png\",\n                \"minConfirm\": 3,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Monero\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"XRP\": {\n                \"addressRegex\": \"^r[1-9A-HJ-NP-Za-km-z]{25,34}$\",\n                \"coin\": \"XRP\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"^((?!0)[0-9]{1,19})$\",\n                \"name\": \"Ripple\",\n                \"network\": \"xrp\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"Please enter both Tag and Address data, which are required to deposit XRP to your Satang account successfully.\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.25\",\n                \"withdrawMin\": \"20.25\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://bithomp.com/explorer/:address\",\n                \"explorerTxUrl\": \"https://bithomp.com/explorer/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xrp.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.000001\",\n                \"fixed\": 6,\n                \"fullname\": \"Ripple\",\n                \"label\": \"Tag\",\n                \"networkFullName\": \"\"\n            },\n            \"XTZ\": {\n                \"addressRegex\": \"^(tz[1,2,3]|KT1)[a-zA-Z0-9]{33}$\",\n                \"coin\": \"XTZ\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Tezos\",\n                \"network\": \"xtz\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.1\",\n                \"withdrawMin\": \"1\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://tezblock.io/account/:address\",\n                \"explorerTxUrl\": \"https://tezblock.io/transaction/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f80559c6-3242-4c48-ab11-3e5326bf6800.png\",\n                \"minConfirm\": 10,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Tezos\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"XZC\": {\n                \"addressRegex\": \"^[a|Z|3|4][0-9A-za-z]{33}$\",\n                \"coin\": \"XZC\",\n                \"depositDesc\": \"Deposit Suspended\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Firo\",\n                \"network\": \"xzc\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.00010000\",\n                \"withdrawMin\": \"1.00010000\",\n                \"precision\": 8,\n                \"explorerAddressUrl\": \"https://chainz.cryptoid.info/xzc/address.dws?:address\",\n                \"explorerTxUrl\": \"https://chainz.cryptoid.info/xzc/tx.dws?:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xfr.png\",\n                \"minConfirm\": 6,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Firo\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ZEC\": {\n                \"addressRegex\": \"^(t)[A-Za-z0-9]{34}$\",\n                \"coin\": \"ZEC\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Zcash\",\n                \"network\": \"zec\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.001\",\n                \"withdrawMin\": \"0.01\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://explorer.zcha.in/accounts/:address\",\n                \"explorerTxUrl\": \"https://explorer.zcha.in/transactions/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/zec.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 12,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Zcash\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ZIL\": {\n                \"addressRegex\": \"zil1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                \"coin\": \"ZIL\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Zilliqa\",\n                \"network\": \"zil\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"0.2\",\n                \"withdrawMin\": \"0.4\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://viewblock.io/zilliqa/address/:address\",\n                \"explorerTxUrl\": \"https://viewblock.io/zilliqa/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80289eb9-ed6f-47ef-867e-8de7c485bcbc.png\",\n                \"minConfirm\": 1,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"Zilliqa\",\n                \"label\": \"\",\n                \"networkFullName\": \"\"\n            },\n            \"ZRX\": {\n                \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                \"coin\": \"ZRX\",\n                \"depositDesc\": \"\",\n                \"depositEnable\": true,\n                \"isDefault\": true,\n                \"memoRegex\": \"\",\n                \"name\": \"Ethereum (ERC20)\",\n                \"network\": \"eth\",\n                \"resetAddressStatus\": false,\n                \"specialTips\": \"\",\n                \"withdrawDesc\": \"\",\n                \"withdrawEnable\": true,\n                \"withdrawFee\": \"27\",\n                \"withdrawMin\": \"54\",\n                \"precision\": 0,\n                \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                \"depositWarnings\": null,\n                \"withdrawWarnings\": null,\n                \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/image_1508915067776.png\",\n                \"minConfirm\": 12,\n                \"unlockConfirm\": 0,\n                \"withdrawIntegerMultiple\": \"0.00000001\",\n                \"fixed\": 8,\n                \"fullname\": \"0x\",\n                \"label\": \"\",\n                \"networkFullName\": \"Ethereum\"\n            }\n        },\n        \"updated_at\": 1631772853922\n    },\n    \"trading\": {\n        \"symbols\": [\n            {\n                \"symbol\": \"btc_thb\",\n                \"baseAsset\": \"btc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 5,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"ada_thb\",\n                \"baseAsset\": \"ada\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.7\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"algo_thb\",\n                \"baseAsset\": \"algo\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"0.02\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"atom_thb\",\n                \"baseAsset\": \"atom\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"band_thb\",\n                \"baseAsset\": \"band\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"bat_thb\",\n                \"baseAsset\": \"bat\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.06\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"bch_thb\",\n                \"baseAsset\": \"bch\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.005\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"bnb_thb\",\n                \"baseAsset\": \"bnb\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"busd_thb\",\n                \"baseAsset\": \"busd\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"cake_thb\",\n                \"baseAsset\": \"cake\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"dai_thb\",\n                \"baseAsset\": \"dai\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"dash_thb\",\n                \"baseAsset\": \"dash\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"doge_thb\",\n                \"baseAsset\": \"doge\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"dot_thb\",\n                \"baseAsset\": \"dot\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.05\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"eos_thb\",\n                \"baseAsset\": \"eos\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.003\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"etc_thb\",\n                \"baseAsset\": \"etc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"eth_thb\",\n                \"baseAsset\": \"eth\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0005\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"flow_thb\",\n                \"baseAsset\": \"flow\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"hbar_thb\",\n                \"baseAsset\": \"hbar\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"0.3\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"icp_thb\",\n                \"baseAsset\": \"icp\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"jfin_thb\",\n                \"baseAsset\": \"jfin\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"link_thb\",\n                \"baseAsset\": \"link\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.003\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"ltc_thb\",\n                \"baseAsset\": \"ltc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"luna_thb\",\n                \"baseAsset\": \"luna\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"paxg_thb\",\n                \"baseAsset\": \"paxg\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"sol_thb\",\n                \"baseAsset\": \"sol\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"trx_thb\",\n                \"baseAsset\": \"trx\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.3\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"tusd_thb\",\n                \"baseAsset\": \"tusd\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"usdc_thb\",\n                \"baseAsset\": \"usdc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"usdt_thb\",\n                \"baseAsset\": \"usdt\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"vet_thb\",\n                \"baseAsset\": \"vet\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 3,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xlm_thb\",\n                \"baseAsset\": \"xlm\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xmr_thb\",\n                \"baseAsset\": \"xmr\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0001\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xrp_thb\",\n                \"baseAsset\": \"xrp\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 1,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"1\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xtz_thb\",\n                \"baseAsset\": \"xtz\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 3,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.005\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"xzc_thb\",\n                \"baseAsset\": \"xzc\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 2,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.01\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            },\n            {\n                \"symbol\": \"zec_thb\",\n                \"baseAsset\": \"zec\",\n                \"quoteAsset\": \"thb\",\n                \"baseAssetPrecision\": 4,\n                \"quoteAssetPrecision\": 2,\n                \"minTradeAmount\": \"0.0002\",\n                \"orderTypes\": [\n                    \"LIMIT\"\n                ],\n                \"isSpotTradingAllowed\": true,\n                \"createOrderEnabled\": true\n            }\n        ]\n    },\n    \"networks\": {\n        \"networks\": {\n            \"ada\": {\n                \"ada\": {\n                    \"addressRegex\": \"^(([0-9A-Za-z]{57,59})|([0-9A-Za-z]{100,104}))$\",\n                    \"coin\": \"ada\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Cardano\",\n                    \"network\": \"ada\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://cardanoexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"https://cardanoexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ada.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Cardano\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"aion\": {\n                \"aion\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{64}$\",\n                    \"coin\": \"aion\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Aion\",\n                    \"network\": \"aion\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://mainnet.theoan.com/#/account/:address\",\n                    \"explorerTxUrl\": \"https://mainnet.theoan.com/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80528563-f821-468b-9457-ce944a0d68e6.jpg\",\n                    \"minConfirm\": 60,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"AION\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"algo\": {\n                \"algo\": {\n                    \"addressRegex\": \"^[A-Z0-9]{58,58}$\",\n                    \"coin\": \"algo\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Algorand\",\n                    \"network\": \"algo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://algoexplorer.io/address/:address\",\n                    \"explorerTxUrl\": \"https://algoexplorer.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/algo.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Algorand\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ankr\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"ankr\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your ANKR BEP2 tokens to Satang.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2.14\",\n                    \"withdrawMin\": \"4.28\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/06f11cb4-6699-4c6d-911f-6773a1aa7b98.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ankr\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"arpa\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"arpa\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"345\",\n                    \"withdrawMin\": \"690\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d2f05b7e-25c3-4403-9249-0861c221a6c9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"ARPA Chain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"atom\": {\n                \"atom\": {\n                    \"addressRegex\": \"^(cosmos1)[0-9a-z]{38}$\",\n                    \"coin\": \"atom\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Cosmos\",\n                    \"network\": \"atom\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ATOM to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.mintscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://www.mintscan.io/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/atom.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 15,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Cosmos\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"band\": {\n                \"band\": {\n                    \"addressRegex\": \"^(band1)[0-9a-z]{38}$\",\n                    \"coin\": \"band\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"BAND\",\n                    \"network\": \"band\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your BAND to Satang\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://cosmoscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://cosmoscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/band.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"BAND\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"bat\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"bat\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The name of this asset is Basic Attention Token. Please ensure you are depositing Basic Attention Token (BAT) tokens under the contract address ending in 887ef.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"36\",\n                    \"withdrawMin\": \"72\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bat.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Basic Attention Token\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"bch\": {\n                \"bch\": {\n                    \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                    \"coin\": \"bch\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Bitcoin Cash\",\n                    \"network\": \"bch\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-cash/address/:address\",\n                    \"explorerTxUrl\": \"https://blockchair.com/bitcoin-cash/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bch.png\",\n                    \"minConfirm\": 6,\n                    \"unlockConfirm\": 6,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin Cash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"bcha\": {\n                \"bcha\": {\n                    \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[0-9A-Za-z]{42,42}$\",\n                    \"coin\": \"bcha\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"BCHA\",\n                    \"network\": \"bcha\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"0.005\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://blockchair.com/bitcoin-abc/address/:address\",\n                    \"explorerTxUrl\": \"https://blockchair.com/bitcoin-abc/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bcha.png\",\n                    \"minConfirm\": 11,\n                    \"unlockConfirm\": 11,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin Cash ABC\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"beam\": {\n                \"beam\": {\n                    \"addressRegex\": \"^[A-Za-z0-9]{65,500}$|^(beam:)[A-Za-z0-9]{65,495}$\",\n                    \"coin\": \"beam\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Beam\",\n                    \"network\": \"beam\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.beam.mw/\",\n                    \"explorerTxUrl\": \"https://explorer.beam.mw/\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2a3788d1-5f5f-4a1f-abec-ac96528f5a33.png\",\n                    \"minConfirm\": 70,\n                    \"unlockConfirm\": 70,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Beam\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"bnb\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"bnb\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit BNB Mainnet tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bnb.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"BNB\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                },\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"bnb\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/bnb.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                }\n            },\n            \"btc\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"btc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0000045\",\n                    \"withdrawMin\": \"0.000009\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/btc.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"btc\": {\n                    \"addressRegex\": \"^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^(bc1)[0-9A-Za-z]{39,59}$\",\n                    \"coin\": \"btc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Bitcoin\",\n                    \"network\": \"btc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0005\",\n                    \"withdrawMin\": \"0.001\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://blockchair.com/bitcoin/address/:address\",\n                    \"explorerTxUrl\": \"https://blockchair.com/bitcoin/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/btc.png\",\n                    \"minConfirm\": 2,\n                    \"unlockConfirm\": 2,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Bitcoin\"\n                }\n            },\n            \"btg\": {\n                \"btg\": {\n                    \"addressRegex\": \"^[AG][a-km-zA-HJ-NP-Z1-9]{25,34}$\",\n                    \"coin\": \"btg\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Bitcoin Gold\",\n                    \"network\": \"btg\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The name of this asset is Bitcoin Gold. Please ensure you are depositing Bitcoin Gold (BTG) tokens.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://btgexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"https://btgexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/262ad6d4-eb36-4288-aaf0-c127bace866f.png\",\n                    \"minConfirm\": 70,\n                    \"unlockConfirm\": 70,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Bitcoin Gold\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"btt\": {\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"btt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"28\",\n                    \"withdrawMin\": \"56\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1baa029f-4d86-4210-b382-184d2993a04c.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"BitTorrent\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"busd\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"busd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/busd.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"BUSD\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"busd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/busd.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"BUSD\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"cake\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"cake\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0096\",\n                    \"withdrawMin\": \"0.019\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cake.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"PancakeSwap\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                }\n            },\n            \"celr\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"celr\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"316\",\n                    \"withdrawMin\": \"632\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5c9b1c61-4605-4795-82ad-1206d01b54a9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Celer Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"chz\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"chz\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit CHZ BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.63\",\n                    \"withdrawMin\": \"1.26\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/721a863b-5c9d-4061-a2f0-d288dcd3d1ad.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Chiliz\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"cocos\": {\n                \"cocos\": {\n                    \"addressRegex\": \"^[a-z]{1}[a-z0-9-]{3,61}[a-z0-9]{1}$\",\n                    \"coin\": \"cocos\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^\\\\w{1,90}$\",\n                    \"name\": \"Cocos-BCX\",\n                    \"network\": \"cocos\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit COCOS to your Satang account. When depositing, ensure that you're sending the message unencrypted.\",\n                    \"withdrawDesc\": \"Withdrawals are not supported for this coin.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cocos.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Cocos-BCX\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"cos\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"cos\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit COS BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"8.91\",\n                    \"withdrawMin\": \"17\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3cb8b31e-c6b4-4d83-b7fd-25c7a470404d.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Contentos\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"cpy\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"cpy\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 18,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2dc47ff5-1689-498d-8230-f753dfcbf742.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Copytrack\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"ctxc\": {\n                \"ctxc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ctxc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Cortex\",\n                    \"network\": \"ctxc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://cerebro.cortexlabs.ai/#/address/:address\",\n                    \"explorerTxUrl\": \"https://cerebro.cortexlabs.ai/#/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e07316d8-d579-4398-9a56-61834f167fb1.png\",\n                    \"minConfirm\": 257,\n                    \"unlockConfirm\": 257,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Cortex\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"cvc\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"cvc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"55\",\n                    \"withdrawMin\": \"110\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/cvc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Civic\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"dai\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"dai\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"15\",\n                    \"withdrawMin\": \"30\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dai.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dai\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"dash\": {\n                \"dash\": {\n                    \"addressRegex\": \"^[X|7][0-9A-Za-z]{33}$\",\n                    \"coin\": \"dash\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Dash\",\n                    \"network\": \"dash\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"0.004\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://chainz.cryptoid.info/dash/address.dws?:address.htm\",\n                    \"explorerTxUrl\": \"https://chainz.cryptoid.info/dash/tx.dws?:tx.htm\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6c8c554-ae01-4460-866d-fafa6f19db5c.png\",\n                    \"minConfirm\": 25,\n                    \"unlockConfirm\": 25,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"doge\": {\n                \"doge\": {\n                    \"addressRegex\": \"^(D|A|9)[a-km-zA-HJ-NP-Z1-9]{33,34}$\",\n                    \"coin\": \"doge\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"dogecoin\",\n                    \"network\": \"doge\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"5\",\n                    \"withdrawMin\": \"25\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://dogechain.info/address/:address\",\n                    \"explorerTxUrl\": \"https://dogechain.info/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/38634057-e551-44e0-8ff5-033d4ee0b612.png\",\n                    \"minConfirm\": 50,\n                    \"unlockConfirm\": 50,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dogecoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"dot\": {\n                \"dot\": {\n                    \"addressRegex\": \"^(1)[0-9a-z-A-Z]{44,50}$\",\n                    \"coin\": \"dot\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Polkadot\",\n                    \"network\": \"dot\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please note that we currently do not support deposits for staking rewards.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"1.5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://polkadot-cc1.subscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://polkadot.subscan.io/extrinsic/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/dot.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Polkadot\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"dusk\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"dusk\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit DUSK BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1.28\",\n                    \"withdrawMin\": \"2.56\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/3376691f-fafc-4de5-afc2-74de713bc012.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Dusk Network\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"elec\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"elec\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/10cc2d49-276a-4c0a-83dd-811071a1add2.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"enj\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"enj\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"16\",\n                    \"withdrawMin\": \"32\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/enj.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Enjin Coin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"eos\": {\n                \"eos\": {\n                    \"addressRegex\": \"^[1-5a-z\\\\.]{1,12}$\",\n                    \"coin\": \"eos\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_,]{1,120}$\",\n                    \"name\": \"EOS\",\n                    \"network\": \"eos\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit EOS to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bloks.io/account/:address\",\n                    \"explorerTxUrl\": \"https://bloks.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eos.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.0001\",\n                    \"fixed\": 4,\n                    \"fullname\": \"EOS\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"erd\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"erd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit ERD BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"Network swapped, BEP2 withdrawal closed.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/c7a20511-af2d-40a5-ac1f-6c2a38bc1dcb.jpg\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Elrond\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"etc\": {\n                \"etc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"etc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum Classic\",\n                    \"network\": \"etc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://classic.etccoopexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"https://classic.etccoopexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/etc.png\",\n                    \"minConfirm\": 500,\n                    \"unlockConfirm\": 500,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ethereum Classic\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"eth\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"eth\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.00006\",\n                    \"withdrawMin\": \"0.00012\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eth.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ethereum\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"eth\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/eth.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ethereum\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"etp\": {\n                \"etp\": {\n                    \"addressRegex\": \"^$\",\n                    \"coin\": \"etp\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ETP\",\n                    \"network\": \"etp\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 18,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/948668ef-b20f-4b82-9cf5-819a1a21c3c1.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Meteverse\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"fet\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"fet\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"30\",\n                    \"withdrawMin\": \"60\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/12f36fe2-e77f-4694-9a31-821ea646f547.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Fetch.AI\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"flow\": {\n                \"flow\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{16}$\",\n                    \"coin\": \"flow\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Flow\",\n                    \"network\": \"flow\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://flowscan.org/account/:address\",\n                    \"explorerTxUrl\": \"https://flowscan.org/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/flow.png\",\n                    \"minConfirm\": 20,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Flow\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ftm\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"ftm\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit FTM BEP2 tokens to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.15\",\n                    \"withdrawMin\": \"0.3\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/94650447-45c9-417d-be69-e74073fcc149.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Fantom\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"ftt\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ftt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.41\",\n                    \"withdrawMin\": \"0.82\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/93f2bf75-970e-44b8-9773-20e141a6c8f9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"FTX Token\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"fun\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"fun\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1300\",\n                    \"withdrawMin\": \"2600\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2c82fac1-f5cf-4b82-8f91-cff8701efe76.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"FunFair\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"hbar\": {\n                \"hbar\": {\n                    \"addressRegex\": \"^0.0.\\\\d{1,6}$\",\n                    \"coin\": \"hbar\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^.{0,100}$\",\n                    \"name\": \"Hedera Hashgraph\",\n                    \"network\": \"hbar\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit HBAR to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.kabuto.sh/mainnet/id/:address\",\n                    \"explorerTxUrl\": \"https://explorer.kabuto.sh/mainnet/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/hbar.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Hedera Hashgraph\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"hc\": {\n                \"hc\": {\n                    \"addressRegex\": \"^[H][a-km-zA-HJ-NP-Z1-9]{26,35}$\",\n                    \"coin\": \"hc\",\n                    \"depositDesc\": \"Sorry, but this asset has been delisted. We cannot process deposits for this asset.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"HyperCash\",\n                    \"network\": \"hc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.005\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://hc-explorer.h.cash/explorer/address/:address\",\n                    \"explorerTxUrl\": \"https://hc-explorer.h.cash/explorer/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/21d02f93-0eec-4e93-8b78-e8d37fc4be13.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 30,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"HyperCash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"hot\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"hot\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The name of this asset is Holo (ticker: HOT). Please ensure you are depositing Holo (HOT) tokens under the contract address ending in 526e2.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2867\",\n                    \"withdrawMin\": \"5734\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/772281f0-386f-4582-95ac-15df3e75c2a2.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Holo\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"icp\": {\n                \"icp\": {\n                    \"addressRegex\": \"^[0-9a-zA-Z]{64}$\",\n                    \"coin\": \"icp\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Internet Computer\",\n                    \"network\": \"icp\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0003\",\n                    \"withdrawMin\": \"0.001\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.dfinityexplorer.org/\",\n                    \"explorerTxUrl\": \"https://www.dfinityexplorer.org/\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/icp.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Internet Computer\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"icx\": {\n                \"icx\": {\n                    \"addressRegex\": \"^(hx)[A-Za-z0-9]{40}$\",\n                    \"coin\": \"icx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ICON\",\n                    \"network\": \"icx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.02\",\n                    \"withdrawMin\": \"0.04\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tracker.icon.foundation/address/:address\",\n                    \"explorerTxUrl\": \"https://tracker.icon.foundation/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/6cc30281-0724-46c1-bfca-ff96ab60fccd.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"ICON\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"iost\": {\n                \"iost\": {\n                    \"addressRegex\": \"^[A-Za-z0-9_]{5,11}$\",\n                    \"coin\": \"iost\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"IOST\",\n                    \"network\": \"iost\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit IOST to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.iostabc.com/account/:address\",\n                    \"explorerTxUrl\": \"https://www.iostabc.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iost.png\",\n                    \"minConfirm\": 80,\n                    \"unlockConfirm\": 80,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"IOST\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"iota\": {\n                \"iota\": {\n                    \"addressRegex\": \"^(iota)[0-9a-z]{60}$\",\n                    \"coin\": \"iota\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"MIOTA\",\n                    \"network\": \"iota\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.5\",\n                    \"withdrawMin\": \"1.5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://thetangle.org/address/:address\",\n                    \"explorerTxUrl\": \"https://thetangle.org/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/iota.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"MIOTA\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"iotx\": {\n                \"iotx\": {\n                    \"addressRegex\": \"io1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                    \"coin\": \"iotx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"IoTeX\",\n                    \"network\": \"iotx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/86c97fe9-1b7d-41ca-b5d4-a646baa22f47.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.01\",\n                    \"fixed\": 2,\n                    \"fullname\": \"IoTeX\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"jfin\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"jfin\",\n                    \"depositDesc\": \"Deposit Suspended\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"90.50000000\",\n                    \"withdrawMin\": \"181.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/7ec09a84-6de9-4649-909b-1a41f6e1b470.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"JFIN Coin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"kava\": {\n                \"kava\": {\n                    \"addressRegex\": \"^(kava1)[0-9a-z]{38}$\",\n                    \"coin\": \"kava\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"KAVA\",\n                    \"network\": \"kava\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your KAVA to Satang\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://kava.mintscan.io/account/:address\",\n                    \"explorerTxUrl\": \"https://kava.mintscan.io/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/877a71e6-291e-49e0-b84e-c99d476bf234.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Kava\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"knc\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"knc\",\n                    \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"8.45000000\",\n                    \"withdrawMin\": \"16.90000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/knc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Kyber Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"link\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"link\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.512\",\n                    \"withdrawMin\": \"1.024\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/link.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"ChainLink\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"lsk\": {\n                \"lsk\": {\n                    \"addressRegex\": \"^[0-9]{12,22}[L]$\",\n                    \"coin\": \"lsk\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Lisk\",\n                    \"network\": \"lsk\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.lisk.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.lisk.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/251bc8d8-be8c-404f-800c-e7b61f0020bb.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Lisk\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ltc\": {\n                \"ltc\": {\n                    \"addressRegex\": \"^(L|M|3)[A-Za-z0-9]{33}$|^(ltc1)[0-9A-Za-z]{39}$\",\n                    \"coin\": \"ltc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Litecoin\",\n                    \"network\": \"ltc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Minimum deposit amount: 0.001 LTC. Any deposits less than or equal to the minimum amount will not be credited or refunded.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"http://explorer.litecoin.net/address/:address\",\n                    \"explorerTxUrl\": \"http://explorer.litecoin.net/tx/:txid\",\n                    \"depositWarnings\": {\n                        \"en\": \"Minimum deposit for LTC must be greater than 0.001 LTC\",\n                        \"th\": \"ยอดฝากขั้นต่ำสำหรับ LTC จะต้องมากกว่า 0.001 LTC\"\n                    },\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ltc.png\",\n                    \"minConfirm\": 4,\n                    \"unlockConfirm\": 4,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Litecoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"lto\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"lto\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"94\",\n                    \"withdrawMin\": \"188\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/lto.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"LTO Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"luna\": {\n                \"luna\": {\n                    \"addressRegex\": \"^(terra1)[0-9a-z]{38}$\",\n                    \"coin\": \"luna\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Terra\",\n                    \"network\": \"luna\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.02\",\n                    \"withdrawMin\": \"5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://finder.terra.money/columbus-4/address/:address\",\n                    \"explorerTxUrl\": \"https://finder.terra.money/columbus-4/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/luna.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Terra\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"matic\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"matic\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"9.72\",\n                    \"withdrawMin\": \"19.44\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f35f22f1-5fbe-44e7-b27c-434bc4692243.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"MATIC Network\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"mbl\": {\n                \"ont\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"mbl\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ontology\",\n                    \"network\": \"ont\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"5.31\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/76ed03c0-191f-44b9-a447-bc3dc8c14dfa.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"MovieBloc\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"mco\": {\n                \"eth\": {\n                    \"addressRegex\": \"\",\n                    \"coin\": \"mco\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"\",\n                    \"withdrawMin\": \"\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/mco.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0\",\n                    \"fixed\": 0,\n                    \"fullname\": \"MCO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"mft\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"mft\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2192\",\n                    \"withdrawMin\": \"4384\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/5429b273-e866-4d4d-8ff1-7f611c20e6cc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Mainframe\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"nano\": {\n                \"nano\": {\n                    \"addressRegex\": \"^(xrb_|nano_)[13456789abcdefghijkmnopqrstuwxyz]{60}\",\n                    \"coin\": \"nano\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"NANO\",\n                    \"network\": \"nano\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Minimum deposit amount: 0.001 NANO. Any deposits less than the minimum will not be credited or refunded.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://nanocrawler.cc/explorer/account/:address\",\n                    \"explorerTxUrl\": \"https://nanocrawler.cc/explorer/block/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/622eeb19-e123-4325-a157-bef257d9ae79.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"NANO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"neo\": {\n                \"neo\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"neo\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"NEP5\",\n                    \"network\": \"neo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://neoscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://neoscan.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/842d559d-f7f8-4411-9b51-764e27a53289.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"1\",\n                    \"fixed\": 0,\n                    \"fullname\": \"NEO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"nkn\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"nkn\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"72\",\n                    \"withdrawMin\": \"144\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2412984d-4a6a-4a15-8247-0cf478e589b1.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"NKN\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"npxs\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"npxs\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"4997\",\n                    \"withdrawMin\": \"9994\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/npxs.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Pundi X\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"nuls\": {\n                \"nuls\": {\n                    \"addressRegex\": \"^NULS[a-km-zA-HJ-NP-Z1-9]{33,33}$\",\n                    \"coin\": \"nuls\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Nuls\",\n                    \"network\": \"nuls\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://nuls.world/addresses/:address\",\n                    \"explorerTxUrl\": \"https://nuls.world/transactions/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/nuls.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Nuls\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ogn\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ogn\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"28\",\n                    \"withdrawMin\": \"56\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b0372bb4-3b77-4106-af0d-818d695f1734.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"OriginToken\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"omg\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"omg\",\n                    \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2.90000000\",\n                    \"withdrawMin\": \"5.80000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/1d2e2f11-8c87-4232-be2c-f854fbe41825.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"OmiseGO\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"one\": {\n                \"one\": {\n                    \"addressRegex\": \"^(one1)[a-z0-9]{38}$\",\n                    \"coin\": \"one\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Harmony\",\n                    \"network\": \"one\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please ensure that both sending and receiving addresses are using shard0 in order to deposit ONE tokens to your Satang account successfully.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"60\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.harmony.one/#/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.harmony.one/#/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/133e0469-3a96-4e3a-9c42-b4c5a4f8def8.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Harmony\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ong\": {\n                \"ont\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"ong\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ontology\",\n                    \"network\": \"ont\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.046\",\n                    \"withdrawMin\": \"0.092\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/180b4eca-ec14-4f65-ba14-4c5adaf4b7d0.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ontology Gas\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ont\": {\n                \"ont\": {\n                    \"addressRegex\": \"^(A)[A-Za-z0-9]{33}$\",\n                    \"coin\": \"ont\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ontology\",\n                    \"network\": \"ont\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.ont.io/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.ont.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/26ad538a-7c7c-47cf-ad78-db88fb6335de.png\",\n                    \"minConfirm\": 5,\n                    \"unlockConfirm\": 5,\n                    \"withdrawIntegerMultiple\": \"1\",\n                    \"fixed\": 0,\n                    \"fullname\": \"Ontology\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"pax\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"pax\",\n                    \"depositDesc\": \"We have disabled deposits as our systems are currently undergoing maintenance.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"15\",\n                    \"withdrawMin\": \"30\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/b6ce1d9f-f592-4ee4-b3d5-758a591233d9.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Paxos Standard\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"paxg\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"paxg\",\n                    \"depositDesc\": \"Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"0.006\",\n                    \"precision\": 18,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/paxg.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"PAX Gold\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"perl\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"perl\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Token has been upgraded to New contract, please do not deposit old tokens into your Satang wallet\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"291\",\n                    \"withdrawMin\": \"582\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/ed797f2b-b5a8-405c-a053-60a9a9b9b22f.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Perlin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"powr\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"powr\",\n                    \"depositDesc\": \"Wallet Maintenance, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"69.00000000\",\n                    \"withdrawMin\": \"138.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/powr.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Power Ledger\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"qtum\": {\n                \"qtum\": {\n                    \"addressRegex\": \"^[Q|M][A-Za-z0-9]{33}$\",\n                    \"coin\": \"qtum\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Qtum\",\n                    \"network\": \"qtum\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://qtum.info/address/:address/\",\n                    \"explorerTxUrl\": \"https://qtum.info/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/aaf3b2ce-9598-4309-845c-15705bab2e8f.png\",\n                    \"minConfirm\": 24,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Qtum\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"ren\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"ren\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"27\",\n                    \"withdrawMin\": \"54\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/ren.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ren\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"rpx\": {\n                \"neo\": {\n                    \"addressRegex\": \"^$\",\n                    \"coin\": \"rpx\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"NEP5\",\n                    \"network\": \"neo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/e4feca7f-308c-4518-8aee-4be1d21fea3c.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Red Pulse Phoenix\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"rvn\": {\n                \"rvn\": {\n                    \"addressRegex\": \"^[Rr]{1}[A-Za-z0-9]{33,34}$\",\n                    \"coin\": \"rvn\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ravencoin\",\n                    \"network\": \"rvn\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://ravencoin.network/address/:address\",\n                    \"explorerTxUrl\": \"https://ravencoin.network/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/rvn.png\",\n                    \"minConfirm\": 200,\n                    \"unlockConfirm\": 200,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Ravencoin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"sol\": {\n                \"sol\": {\n                    \"addressRegex\": \"^[0-9a-zA-Z]{32,44}$\",\n                    \"coin\": \"sol\",\n                    \"depositDesc\": \"Network is unstable, deposit closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Solana\",\n                    \"network\": \"sol\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"The Solana blockchain will retain 0.00203928 SOL for your first token deposit. The following deposits will not be charge for any fee.\",\n                    \"withdrawDesc\": \"Network is unstable, withdrawal closed. For more information, please see %https://twitter.com/SolanaStatus/status/1437856638279487493%.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.solana.com/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.solana.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/sol.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Solana\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"stpt\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"stpt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"471\",\n                    \"withdrawMin\": \"942\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9730d4a0-7a31-41f4-91cc-6450bc3f13b2.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Standard Tokenization Protocol\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"strat\": {\n                \"strat\": {\n                    \"addressRegex\": \"\",\n                    \"coin\": \"strat\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"\",\n                    \"network\": \"strat\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"\",\n                    \"withdrawMin\": \"\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://chainz.cryptoid.info/strat/address.dws?:address\",\n                    \"explorerTxUrl\": \"https://chainz.cryptoid.info/strat/tx.dws?:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/239be534-315d-4c59-9770-91193efd74c1.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0\",\n                    \"fixed\": 0,\n                    \"fullname\": \"Stratis\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"stx\": {\n                \"stx\": {\n                    \"addressRegex\": \"^(SP)([0123456789ABCDEFGHJKMNPQRSTVWXYZ]+)$\",\n                    \"coin\": \"stx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[a-zA-Z0-9]{0,34}$\",\n                    \"name\": \"Stacks\",\n                    \"network\": \"stx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your STX to Satang.\",\n                    \"withdrawDesc\": \"We have disabled withdrawals as our systems are currently undergoing maintenance.\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"5\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.blockstack.org/address/stacks/:address\",\n                    \"explorerTxUrl\": \"https://explorer.blockstack.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e746d04-1d8d-4aae-8bf8-7aa644a2c6e5.png\",\n                    \"minConfirm\": 6,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.0001\",\n                    \"fixed\": 4,\n                    \"fullname\": \"Blockstack\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"tfuel\": {\n                \"theta\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"tfuel\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Theta Token\",\n                    \"network\": \"theta\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"2.52\",\n                    \"withdrawMin\": \"5.04\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                    \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/d1208752-7976-4679-9347-52958184aab8.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Theta Fuel\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"theta\": {\n                \"theta\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"theta\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Theta Token\",\n                    \"network\": \"theta\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"This address is for Mainnet token deposits only. Please do not deposit ERC20 tokens to this address.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.12\",\n                    \"withdrawMin\": \"0.24\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.thetatoken.org/account/:address\",\n                    \"explorerTxUrl\": \"https://explorer.thetatoken.org/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/theta.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Theta Token\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"tomo\": {\n                \"tomo\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"tomo\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"TomoChain\",\n                    \"network\": \"tomo\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.01\",\n                    \"withdrawMin\": \"0.02\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://scan.tomochain.com/address/:address\",\n                    \"explorerTxUrl\": \"https://scan.tomochain.com/txs/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/84063afa-f0e4-494d-b8af-22b0fd358ee1.png\",\n                    \"minConfirm\": 60,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"TomoChain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"troy\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"troy\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your TROY BEP2 tokens to Satang.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/25ccb5d6-0583-4e23-8669-fcad9fbd806f.jpg\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Troy\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"trx\": {\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"trx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/trx.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"TRON\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"tusd\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"tusd\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"15\",\n                    \"withdrawMin\": \"30\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/tusd.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"TrueUSD\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"usdc\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"usdc\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdc.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"USD Coin\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"usdt\": {\n                \"bsc\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"usdt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Binance Smart Chain (BEP20)\",\n                    \"network\": \"bsc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.8\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bscscan.com/address/:address\",\n                    \"explorerTxUrl\": \"https://bscscan.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                    \"minConfirm\": 15,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"TetherUS\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Binance Smart Chain\"\n                },\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"usdt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"25\",\n                    \"withdrawMin\": \"50\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"TetherUS\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                },\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"usdt\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": false,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/usdt.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"vet\": {\n                \"vet\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"vet\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"VeChain\",\n                    \"network\": \"vet\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please note that VEN has been swapped to VET. Please avoid sending VEN to your VET address, as your funds will be forever lost.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"20\",\n                    \"withdrawMin\": \"40\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explore.vechain.org/accounts/:address/\",\n                    \"explorerTxUrl\": \"https://explore.vechain.org/transactions/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/22f5c498-2f09-4da3-8110-9583f724cc59.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"VeChain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"vite\": {\n                \"vite\": {\n                    \"addressRegex\": \"^(vite_)[a-z0-9]{50}$\",\n                    \"coin\": \"vite\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\\\\w{0,120}\",\n                    \"name\": \"VITE\",\n                    \"network\": \"vite\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Both a MEMO and an Address are required to successfully deposit your VITE to Satang.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"1\",\n                    \"withdrawMin\": \"2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.vite.net/account/:address\",\n                    \"explorerTxUrl\": \"https://explorer.vite.net/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f54178ac-6845-4989-98c8-759eced9289e.png\",\n                    \"minConfirm\": 150,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"VITE\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"wan\": {\n                \"wan\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"wan\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Wanchain\",\n                    \"network\": \"wan\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"0.2\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://www.wanscan.org/address/:address\",\n                    \"explorerTxUrl\": \"https://www.wanscan.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/wan.png\",\n                    \"minConfirm\": 30,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Wanchain\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"waves\": {\n                \"waves\": {\n                    \"addressRegex\": \"^(3P)[0-9A-Za-z]{33}$\",\n                    \"coin\": \"waves\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Waves\",\n                    \"network\": \"waves\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.002\",\n                    \"withdrawMin\": \"0.004\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"http://wavesexplorer.com/address/:address\",\n                    \"explorerTxUrl\": \"http://wavesexplorer.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/4a19ba9d-d60b-4ebd-a765-bdeeda0b7de1.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Waves\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"wax\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"wax\",\n                    \"depositDesc\": \"Delisted, Deposit Suspended\",\n                    \"depositEnable\": false,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"ERC20\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": false,\n                    \"withdrawFee\": \"0.00000000\",\n                    \"withdrawMin\": \"0.00000000\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"\",\n                    \"explorerTxUrl\": \"\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/29ce6c32-95db-4a6b-a05a-2bae44e8096b.png\",\n                    \"minConfirm\": 0,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            },\n            \"win\": {\n                \"trx\": {\n                    \"addressRegex\": \"^T[1-9A-HJ-NP-Za-km-z]{33}$\",\n                    \"coin\": \"win\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tron (TRC20)\",\n                    \"network\": \"trx\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"219\",\n                    \"withdrawMin\": \"438\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tronscan.org/#/address/:address\",\n                    \"explorerTxUrl\": \"https://tronscan.org/#/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/9e5470a4-ca68-469d-a78d-abdcabbf5c51.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"WINK\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Tron\"\n                }\n            },\n            \"wrx\": {\n                \"bnb\": {\n                    \"addressRegex\": \"^(bnb1)[0-9a-z]{38}$\",\n                    \"coin\": \"wrx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z\\\\-_]{1,120}$\",\n                    \"name\": \"Binance Chain (BEP2)\",\n                    \"network\": \"bnb\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.18\",\n                    \"withdrawMin\": \"0.36\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.binance.org/address/:address\",\n                    \"explorerTxUrl\": \"https://explorer.binance.org/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/2b2bec60-c9af-46a0-92b2-64c64ed936f2.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"WazirX\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"Binance Chain\"\n                }\n            },\n            \"xlm\": {\n                \"xlm\": {\n                    \"addressRegex\": \"^G[A-D]{1}[A-Z2-7]{54}$\",\n                    \"coin\": \"xlm\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^[0-9A-Za-z]{1,28}$\",\n                    \"name\": \"Stellar Lumens\",\n                    \"network\": \"xlm\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both MEMO and Address data, which are required to deposit XLM to your Satang account.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.02\",\n                    \"withdrawMin\": \"10\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://steexp.com/account/:address\",\n                    \"explorerTxUrl\": \"https://steexp.com/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xlm.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.0000001\",\n                    \"fixed\": 7,\n                    \"fullname\": \"Stellar Lumens\",\n                    \"label\": \"MEMO\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xmr\": {\n                \"xmr\": {\n                    \"addressRegex\": \"^[48][a-zA-Z|\\\\d]{94}([a-zA-Z|\\\\d]{11})?$\",\n                    \"coin\": \"xmr\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Monero\",\n                    \"network\": \"xmr\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.0001\",\n                    \"withdrawMin\": \"0.0002\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://moneroblocks.info\",\n                    \"explorerTxUrl\": \"https://moneroblocks.info/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xmr.png\",\n                    \"minConfirm\": 3,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Monero\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xrp\": {\n                \"xrp\": {\n                    \"addressRegex\": \"^r[1-9A-HJ-NP-Za-km-z]{25,34}$\",\n                    \"coin\": \"xrp\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"^((?!0)[0-9]{1,19})$\",\n                    \"name\": \"Ripple\",\n                    \"network\": \"xrp\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"Please enter both Tag and Address data, which are required to deposit XRP to your Satang account successfully.\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.25\",\n                    \"withdrawMin\": \"20.25\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://bithomp.com/explorer/:address\",\n                    \"explorerTxUrl\": \"https://bithomp.com/explorer/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xrp.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.000001\",\n                    \"fixed\": 6,\n                    \"fullname\": \"Ripple\",\n                    \"label\": \"Tag\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xtz\": {\n                \"xtz\": {\n                    \"addressRegex\": \"^(tz[1,2,3]|KT1)[a-zA-Z0-9]{33}$\",\n                    \"coin\": \"xtz\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Tezos\",\n                    \"network\": \"xtz\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.1\",\n                    \"withdrawMin\": \"1\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://tezblock.io/account/:address\",\n                    \"explorerTxUrl\": \"https://tezblock.io/transaction/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/f80559c6-3242-4c48-ab11-3e5326bf6800.png\",\n                    \"minConfirm\": 10,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Tezos\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"xzc\": {\n                \"xzc\": {\n                    \"addressRegex\": \"^[a|Z|3|4][0-9A-za-z]{33}$\",\n                    \"coin\": \"xzc\",\n                    \"depositDesc\": \"Deposit Suspended\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Firo\",\n                    \"network\": \"xzc\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"Wallet Maintenance, Withdrawal Suspended\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.00010000\",\n                    \"withdrawMin\": \"1.00010000\",\n                    \"precision\": 8,\n                    \"explorerAddressUrl\": \"https://chainz.cryptoid.info/xzc/address.dws?:address\",\n                    \"explorerTxUrl\": \"https://chainz.cryptoid.info/xzc/tx.dws?:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/xfr.png\",\n                    \"minConfirm\": 6,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Firo\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"zec\": {\n                \"zec\": {\n                    \"addressRegex\": \"^(t)[A-Za-z0-9]{34}$\",\n                    \"coin\": \"zec\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Zcash\",\n                    \"network\": \"zec\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.001\",\n                    \"withdrawMin\": \"0.01\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://explorer.zcha.in/accounts/:address\",\n                    \"explorerTxUrl\": \"https://explorer.zcha.in/transactions/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coins/zec.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 12,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Zcash\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"zil\": {\n                \"zil\": {\n                    \"addressRegex\": \"zil1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{38}\",\n                    \"coin\": \"zil\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Zilliqa\",\n                    \"network\": \"zil\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"0.2\",\n                    \"withdrawMin\": \"0.4\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://viewblock.io/zilliqa/address/:address\",\n                    \"explorerTxUrl\": \"https://viewblock.io/zilliqa/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/80289eb9-ed6f-47ef-867e-8de7c485bcbc.png\",\n                    \"minConfirm\": 1,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"Zilliqa\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"\"\n                }\n            },\n            \"zrx\": {\n                \"eth\": {\n                    \"addressRegex\": \"^(0x)[0-9A-Fa-f]{40}$\",\n                    \"coin\": \"zrx\",\n                    \"depositDesc\": \"\",\n                    \"depositEnable\": true,\n                    \"isDefault\": true,\n                    \"memoRegex\": \"\",\n                    \"name\": \"Ethereum (ERC20)\",\n                    \"network\": \"eth\",\n                    \"resetAddressStatus\": false,\n                    \"specialTips\": \"\",\n                    \"withdrawDesc\": \"\",\n                    \"withdrawEnable\": true,\n                    \"withdrawFee\": \"27\",\n                    \"withdrawMin\": \"54\",\n                    \"precision\": 0,\n                    \"explorerAddressUrl\": \"https://etherscan.io/address/:address\",\n                    \"explorerTxUrl\": \"https://etherscan.io/tx/:txid\",\n                    \"depositWarnings\": null,\n                    \"withdrawWarnings\": null,\n                    \"logoUrl\": \"https://storage.googleapis.com/satang-pro/public/assets/icons/coin/image_1508915067776.png\",\n                    \"minConfirm\": 12,\n                    \"unlockConfirm\": 0,\n                    \"withdrawIntegerMultiple\": \"0.00000001\",\n                    \"fixed\": 8,\n                    \"fullname\": \"0x\",\n                    \"label\": \"\",\n                    \"networkFullName\": \"Ethereum\"\n                }\n            }\n        },\n        \"updated_at\": 1631772853922\n    },\n    \"features\": {\n        \"fiat_instant_deposit\": {\n            \"updated_at\": 1631415991,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"Instant deposit\",\n                    \"th\": \"ฝากแบบทันที\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 19,\n                        \"warnings\": {\n                            \"top\": {\n                                \"links\": \"www.google.com\",\n                                \"messages\": {\n                                    \"en\": \"This is warning message, which configured by admin\",\n                                    \"th\": \"นี่คือคำเตือนที่เขียนโดย admin\"\n                                }\n                            }\n                        }\n                    }\n                }\n            },\n            \"enabled\": true\n        },\n        \"fiat_instant_withdrawal\": {\n            \"updated_at\": 1631415982,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"Instant deposit\",\n                    \"th\": \"ฝากแบบทันที\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 19\n                    }\n                }\n            },\n            \"enabled\": true,\n            \"Maintenance\": {\n                \"StartTime\": \"23:45\",\n                \"StopTime\": \"00:15\"\n            }\n        },\n        \"fiat_normal_deposit\": {\n            \"updated_at\": 1631593693,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"Instant deposit\",\n                    \"th\": \"ฝากแบบทันที\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 50000,\n                        \"warnings\": {\n                            \"top\": {\n                                \"links\": \"www.google.com\",\n                                \"messages\": {\n                                    \"en\": \"This is warning message, which configured by admin\",\n                                    \"th\": \"นี่คือคำเตือนที่เขียนโดย admin\"\n                                }\n                            }\n                        }\n                    }\n                }\n            },\n            \"enabled\": true\n        },\n        \"fiat_normal_withdrawal\": {\n            \"updated_at\": 1609490694,\n            \"fields\": {\n                \"changed_message\": {\n                    \"en\": \"open PromptPay\",\n                    \"th\": \"เปิดการใช้งานพร้อมเพย์\"\n                },\n                \"steps\": {\n                    \"enter_amount\": {\n                        \"min\": 50000\n                    }\n                }\n            },\n            \"enabled\": false\n        }\n    },\n    \"bank\": {\n        \"bank_list\": []\n    }\n}"}],"_postman_id":"65cecfd8-7545-4c90-8432-7c6db94d43b4"}],"auth":{"type":"apikey","apikey":{"value":"<value>","key":"<key>"}},"event":[{"listen":"prerequest","script":{"id":"7edb2c0c-b304-4180-bd25-85e9c77ba56e","type":"text/javascript","exec":["// const ts  = Date.now();","// pm.environment.set(\"timestamp\", ts);","","let paramsObject = {};","","const api_secret = pm.environment.get(\"satang_api_secret\");","","const signatureHeaders = pm.request.headers.filter(h=>{","  return h.key=='Signature'","})","const needSignature = signatureHeaders.length>0","// console.log('signatureHeaders',signatureHeaders)","// console.log('needSignature',needSignature)","","","const haveBody = pm.request.body.mode===\"raw\" && pm.request.body.raw!==\"\"","// console.log('haveBody',haveBody)","","console.log('delete',pm.request.method=='DELETE')","","if (needSignature && haveBody) {","  const parameters = JSON.parse(pm.request.body.raw)","  Object.entries(parameters).map(([k,v]) => {","      if (k != 'signature' && ","          k != 'timestamp' && ","          !is_empty(v.toString())) {","              paramsObject[k] = v.toString();","      }","  })","}","","","        ","//Object.assign(paramsObject, {'timestamp': ts});","","if (api_secret) {","    const queryString = Object.keys(paramsObject).map((key) => {","        return `${key}=${paramsObject[key]}`;","    }).join('&');","    console.log(queryString);","    const signature = CryptoJS.HmacSHA512(queryString, api_secret).toString();","    pm.environment.set(\"satang_signature\", signature);","}","","","function is_disabled(str) {","    return str == true;","}","","function is_empty(str) {","    if (typeof str == 'undefined' ||","        !str || ","        str.length === 0 || ","        str === \"\" ||","        !/[^\\s]/.test(str) ||","        /^\\s*$/.test(str) ||","        str.replace(/\\s/g,\"\") === \"\")","    {","        return true;","    }","    else","    {","        return false;","    }","}"]}},{"listen":"test","script":{"id":"301a3575-5998-4129-b6f6-25ce88f23944","type":"text/javascript","exec":[""]}}],"variable":[{"key":"satang_api_url","value":"https://www.orbixtrade.com/api"},{"key":"pair","value":"usdt_thb"},{"key":"order_id","value":"1234000"},{"key":"satang_signature","value":"03bb410cdae08803a92003c4ac444f4235438bf8ff17a7bef77524db7d91866e9915abb7f2c6d9e3e681dc15271bc3c81ad2fed997afbc387eebb8ca51e6703b"}]}