blockyard 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +929 -0
- package/LICENSE +202 -0
- package/NOTICE +4 -0
- package/README.md +191 -4
- package/SECURITY.md +38 -0
- package/bin/blockyard.js +41 -0
- package/config/pool-map.json +2620 -0
- package/docs/API.md +1577 -0
- package/docs/ARCHITECTURE.md +1394 -0
- package/docs/AUTO-UPDATE.md +269 -0
- package/docs/CONFIGURATION.md +847 -0
- package/docs/DEFECTS.md +813 -0
- package/docs/EFFECTS-AGENTS.md +448 -0
- package/docs/GETTING-STARTED.md +205 -0
- package/docs/INSTALL.md +547 -0
- package/docs/MEASUREMENTS.md +1401 -0
- package/docs/RULES.md +681 -0
- package/docs/SECURITY-AUDIT-2026-09-14.md +177 -0
- package/docs/SECURITY-AUDIT.md +258 -0
- package/docs/SECURITY.md +212 -0
- package/docs/TROUBLESHOOTING.md +332 -0
- package/docs/USER-GUIDE.md +1262 -0
- package/package.json +53 -5
- package/public/404.html +9 -0
- package/public/css/app.css +2009 -0
- package/public/donate-qr.png +0 -0
- package/public/index.html +1085 -0
- package/public/js/about.js +112 -0
- package/public/js/agents.js +1141 -0
- package/public/js/app.js +1386 -0
- package/public/js/arkanoid.js +806 -0
- package/public/js/blockanoid.js +347 -0
- package/public/js/blockout.js +347 -0
- package/public/js/blockpack.js +428 -0
- package/public/js/blockscene3d.js +2830 -0
- package/public/js/breakout.js +224 -0
- package/public/js/charts.js +635 -0
- package/public/js/depthchart.js +315 -0
- package/public/js/details3d.js +4342 -0
- package/public/js/doom.js +31 -0
- package/public/js/dosaudio.js +48 -0
- package/public/js/dosgame.js +389 -0
- package/public/js/dosio.js +186 -0
- package/public/js/dospc.js +1353 -0
- package/public/js/dosworker.js +196 -0
- package/public/js/explorer.js +405 -0
- package/public/js/feepalette.js +149 -0
- package/public/js/fmt.js +162 -0
- package/public/js/goggles.js +886 -0
- package/public/js/kiosk.js +41 -0
- package/public/js/login.js +88 -0
- package/public/js/markets.js +395 -0
- package/public/js/mining.js +1416 -0
- package/public/js/panels.js +970 -0
- package/public/js/pricechart.js +189 -0
- package/public/js/quake.js +20 -0
- package/public/js/settings.js +1096 -0
- package/public/js/soundcard.js +459 -0
- package/public/js/tetris.js +226 -0
- package/public/js/tetrust.js +356 -0
- package/public/js/tetsound.js +175 -0
- package/public/js/theme.js +235 -0
- package/public/js/wolf3d.js +22 -0
- package/public/js/x86.js +1978 -0
- package/public/login.html +33 -0
- package/scripts/blockfile-measure.js +156 -0
- package/scripts/browser-check.mjs +286 -0
- package/scripts/check.js +173 -0
- package/scripts/decode-check.js +81 -0
- package/scripts/doc-counts.js +109 -0
- package/scripts/donate-qr.py +23 -0
- package/scripts/dos-bench.js +56 -0
- package/scripts/fake-node.js +534 -0
- package/scripts/index-bench.js +216 -0
- package/scripts/index-benchmark.js +117 -0
- package/scripts/index-build.js +40 -0
- package/scripts/live-render-check.mjs +89 -0
- package/scripts/manage-users.js +132 -0
- package/scripts/motion-check.mjs +138 -0
- package/scripts/pool-map.js +157 -0
- package/scripts/setup.js +432 -0
- package/scripts/shots.mjs +278 -0
- package/scripts/smoke.sh +327 -0
- package/scripts/tls.js +31 -0
- package/scripts/ui.js +174 -0
- package/server/auth/sessions.js +221 -0
- package/server/auth/users.js +243 -0
- package/server/chain/blockfile.js +234 -0
- package/server/chain/index/build.js +210 -0
- package/server/chain/index/heights.js +36 -0
- package/server/chain/index/live.js +276 -0
- package/server/chain/index/rows.js +145 -0
- package/server/chain/index/store.js +154 -0
- package/server/chain/index/worker.js +109 -0
- package/server/chain/tx.js +310 -0
- package/server/collect/gbt.js +229 -0
- package/server/collect/logparse.js +765 -0
- package/server/collect/logtail.js +189 -0
- package/server/collect/markets.js +333 -0
- package/server/collect/mining.js +333 -0
- package/server/collect/monitor.js +2545 -0
- package/server/collect/network.js +295 -0
- package/server/collect/nextblock.js +275 -0
- package/server/collect/sync.js +386 -0
- package/server/config.js +644 -0
- package/server/http/api.js +1319 -0
- package/server/http/explorer.js +418 -0
- package/server/http/games.js +77 -0
- package/server/http/server.js +420 -0
- package/server/http/sse.js +176 -0
- package/server/http/static.js +212 -0
- package/server/main.js +673 -0
- package/server/netinfo.js +253 -0
- package/server/rpc/allowlist.js +130 -0
- package/server/rpc/client.js +414 -0
- package/server/store/audit.js +148 -0
- package/server/store/history.js +220 -0
- package/server/store/ledger.js +290 -0
- package/server/store/ring.js +173 -0
- package/server/tls/selfsigned.js +160 -0
- package/server/util/fmt.js +29 -0
- package/systemd/blockyard.service +102 -0
|
@@ -0,0 +1,2620 @@
|
|
|
1
|
+
{
|
|
2
|
+
"source": "https://raw.githubusercontent.com/mempool/mining-pools/master/pools-v2.json",
|
|
3
|
+
"sourceSha256": "0491a15f88dbd7726f00b809b65f5fa86f4b072e44aefa93e4f3414a9a61aa90",
|
|
4
|
+
"fetchedAt": "2026-09-09T19:13:11.024Z",
|
|
5
|
+
"attribution": "mempool.space/mining-pools (MIT). Labels are their curated mapping, matched by literal coinbase text; unmatched blocks keep their raw tag and an unknown fingerprint.",
|
|
6
|
+
"matchRule": "longest literal tag substring wins, case-insensitive, on the whole coinbase scriptSig as text; tags shorter than 3 normalised characters are dropped",
|
|
7
|
+
"pools": [
|
|
8
|
+
{
|
|
9
|
+
"key": "blockfills",
|
|
10
|
+
"name": "BlockFills",
|
|
11
|
+
"slug": null,
|
|
12
|
+
"link": "https://www.blockfills.com/mining",
|
|
13
|
+
"tags": [
|
|
14
|
+
"/BlockfillsPool/"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"key": "ultimuspool",
|
|
19
|
+
"name": "ULTIMUSPOOL",
|
|
20
|
+
"slug": null,
|
|
21
|
+
"link": "https://www.ultimuspool.com",
|
|
22
|
+
"tags": [
|
|
23
|
+
"/ultimus/"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"key": "terra pool",
|
|
28
|
+
"name": "Terra Pool",
|
|
29
|
+
"slug": null,
|
|
30
|
+
"link": "https://terrapool.io",
|
|
31
|
+
"tags": [
|
|
32
|
+
"Validated with Clean Energy",
|
|
33
|
+
"terrapool.io"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"key": "luxor",
|
|
38
|
+
"name": "Luxor",
|
|
39
|
+
"slug": null,
|
|
40
|
+
"link": "https://mining.luxor.tech",
|
|
41
|
+
"tags": [
|
|
42
|
+
"Luxor Tech",
|
|
43
|
+
"/LUXOR/"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"key": "1thash",
|
|
48
|
+
"name": "1THash",
|
|
49
|
+
"slug": null,
|
|
50
|
+
"link": "https://www.1thash.top",
|
|
51
|
+
"tags": [
|
|
52
|
+
"/1THash&58COIN/",
|
|
53
|
+
"/1THash/"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"key": "btc.com",
|
|
58
|
+
"name": "BTC.com",
|
|
59
|
+
"slug": null,
|
|
60
|
+
"link": "https://pool.btc.com",
|
|
61
|
+
"tags": [
|
|
62
|
+
"/BTC.COM/",
|
|
63
|
+
"/BTC.com/",
|
|
64
|
+
"btccom"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"key": "bitfarms",
|
|
69
|
+
"name": "Bitfarms",
|
|
70
|
+
"slug": null,
|
|
71
|
+
"link": "https://www.bitfarms.io",
|
|
72
|
+
"tags": [
|
|
73
|
+
"BITFARMS"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"key": "huobi.pool",
|
|
78
|
+
"name": "Huobi.pool",
|
|
79
|
+
"slug": null,
|
|
80
|
+
"link": "https://www.hpt.com",
|
|
81
|
+
"tags": [
|
|
82
|
+
"/HuoBi/",
|
|
83
|
+
"/Huobi/"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"key": "wayi.cn",
|
|
88
|
+
"name": "WAYI.CN",
|
|
89
|
+
"slug": null,
|
|
90
|
+
"link": "https://www.easy2mine.com",
|
|
91
|
+
"tags": [
|
|
92
|
+
"/E2M & BTC.TOP/"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"key": "canoepool",
|
|
97
|
+
"name": "CanoePool",
|
|
98
|
+
"slug": null,
|
|
99
|
+
"link": "https://btc.canoepool.com",
|
|
100
|
+
"tags": [
|
|
101
|
+
"/canoepool/",
|
|
102
|
+
"/CANOE/"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"key": "btc.top",
|
|
107
|
+
"name": "BTC.TOP",
|
|
108
|
+
"slug": null,
|
|
109
|
+
"link": "https://btc.top",
|
|
110
|
+
"tags": [
|
|
111
|
+
"/BTC.TOP/"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"key": "bitcoin.com",
|
|
116
|
+
"name": "Bitcoin.com",
|
|
117
|
+
"slug": null,
|
|
118
|
+
"link": "https://www.bitcoin.com",
|
|
119
|
+
"tags": [
|
|
120
|
+
"pool.bitcoin.com"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"key": "175btc",
|
|
125
|
+
"name": "175btc",
|
|
126
|
+
"slug": null,
|
|
127
|
+
"link": "https://www.175btc.com",
|
|
128
|
+
"tags": [
|
|
129
|
+
"Mined By 175btc.com"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"key": "gbminers",
|
|
134
|
+
"name": "GBMiners",
|
|
135
|
+
"slug": null,
|
|
136
|
+
"link": "https://gbminers.com",
|
|
137
|
+
"tags": [
|
|
138
|
+
"/mined by gbminers/"
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"key": "a-xbt",
|
|
143
|
+
"name": "A-XBT",
|
|
144
|
+
"slug": null,
|
|
145
|
+
"link": "https://www.a-xbt.com",
|
|
146
|
+
"tags": [
|
|
147
|
+
"/A-XBT/"
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"key": "asicminer",
|
|
152
|
+
"name": "ASICMiner",
|
|
153
|
+
"slug": null,
|
|
154
|
+
"link": "https://www.asicminer.co",
|
|
155
|
+
"tags": [
|
|
156
|
+
"ASICMiner"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"key": "bitminter",
|
|
161
|
+
"name": "BitMinter",
|
|
162
|
+
"slug": null,
|
|
163
|
+
"link": "https://bitminter.com",
|
|
164
|
+
"tags": [
|
|
165
|
+
"BitMinter"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"key": "bitcoinrussia",
|
|
170
|
+
"name": "BitcoinRussia",
|
|
171
|
+
"slug": null,
|
|
172
|
+
"link": "https://bitcoin-russia.ru",
|
|
173
|
+
"tags": [
|
|
174
|
+
"/Bitcoin-Russia.ru/"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"key": "btcserv",
|
|
179
|
+
"name": "BTCServ",
|
|
180
|
+
"slug": null,
|
|
181
|
+
"link": "https://btcserv.net",
|
|
182
|
+
"tags": [
|
|
183
|
+
"btcserv"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"key": "simplecoin.us",
|
|
188
|
+
"name": "simplecoin.us",
|
|
189
|
+
"slug": null,
|
|
190
|
+
"link": "https://simplecoin.us",
|
|
191
|
+
"tags": [
|
|
192
|
+
"simplecoin"
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"key": "btc guild",
|
|
197
|
+
"name": "BTC Guild",
|
|
198
|
+
"slug": null,
|
|
199
|
+
"link": "https://www.btcguild.com",
|
|
200
|
+
"tags": [
|
|
201
|
+
"BTC Guild"
|
|
202
|
+
]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"key": "eligius",
|
|
206
|
+
"name": "Eligius",
|
|
207
|
+
"slug": null,
|
|
208
|
+
"link": "https://eligius.st",
|
|
209
|
+
"tags": [
|
|
210
|
+
"Eligius"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"key": "ozcoin",
|
|
215
|
+
"name": "OzCoin",
|
|
216
|
+
"slug": null,
|
|
217
|
+
"link": "https://ozcoin.net",
|
|
218
|
+
"tags": [
|
|
219
|
+
"ozco.in",
|
|
220
|
+
"ozcoin"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"key": "eclipsemc",
|
|
225
|
+
"name": "EclipseMC",
|
|
226
|
+
"slug": null,
|
|
227
|
+
"link": "https://eclipsemc.com",
|
|
228
|
+
"tags": [
|
|
229
|
+
"EMC ",
|
|
230
|
+
"EMC:"
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"key": "maxbtc",
|
|
235
|
+
"name": "MaxBTC",
|
|
236
|
+
"slug": null,
|
|
237
|
+
"link": "https://maxbtc.com",
|
|
238
|
+
"tags": [
|
|
239
|
+
"MaxBTC"
|
|
240
|
+
]
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"key": "triplemining",
|
|
244
|
+
"name": "TripleMining",
|
|
245
|
+
"slug": null,
|
|
246
|
+
"link": "https://www.triplemining.com",
|
|
247
|
+
"tags": [
|
|
248
|
+
"Triplemining.com",
|
|
249
|
+
"triplemining"
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"key": "coinlab",
|
|
254
|
+
"name": "CoinLab",
|
|
255
|
+
"slug": null,
|
|
256
|
+
"link": "https://coinlab.com",
|
|
257
|
+
"tags": [
|
|
258
|
+
"CoinLab"
|
|
259
|
+
]
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"key": "50btc",
|
|
263
|
+
"name": "50BTC",
|
|
264
|
+
"slug": null,
|
|
265
|
+
"link": "https://www.50btc.com",
|
|
266
|
+
"tags": [
|
|
267
|
+
"50BTC"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"key": "ghash.io",
|
|
272
|
+
"name": "GHash.IO",
|
|
273
|
+
"slug": null,
|
|
274
|
+
"link": "https://ghash.io",
|
|
275
|
+
"tags": [
|
|
276
|
+
"ghash.io"
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"key": "st mining corp",
|
|
281
|
+
"name": "ST Mining Corp",
|
|
282
|
+
"slug": null,
|
|
283
|
+
"link": "https://bitcointalk.org/index.php?topic=77000.msg3207708#msg3207708",
|
|
284
|
+
"tags": [
|
|
285
|
+
"st mining corp"
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"key": "bitparking",
|
|
290
|
+
"name": "Bitparking",
|
|
291
|
+
"slug": null,
|
|
292
|
+
"link": "https://mmpool.bitparking.com",
|
|
293
|
+
"tags": [
|
|
294
|
+
"bitparking"
|
|
295
|
+
]
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"key": "mmpool",
|
|
299
|
+
"name": "mmpool",
|
|
300
|
+
"slug": null,
|
|
301
|
+
"link": "https://mmpool.org/pool",
|
|
302
|
+
"tags": [
|
|
303
|
+
"mmpool"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"key": "polmine",
|
|
308
|
+
"name": "Polmine",
|
|
309
|
+
"slug": null,
|
|
310
|
+
"link": "https://polmine.pl",
|
|
311
|
+
"tags": [
|
|
312
|
+
"by polmine.pl",
|
|
313
|
+
"bypmneU"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"key": "kncminer",
|
|
318
|
+
"name": "KnCMiner",
|
|
319
|
+
"slug": null,
|
|
320
|
+
"link": "https://portal.kncminer.com/pool",
|
|
321
|
+
"tags": [
|
|
322
|
+
"KnCMiner"
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"key": "bitalo",
|
|
327
|
+
"name": "Bitalo",
|
|
328
|
+
"slug": null,
|
|
329
|
+
"link": "https://bitalo.com/mining",
|
|
330
|
+
"tags": [
|
|
331
|
+
"Bitalo"
|
|
332
|
+
]
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"key": "f2pool",
|
|
336
|
+
"name": "F2Pool",
|
|
337
|
+
"slug": null,
|
|
338
|
+
"link": "https://www.f2pool.com",
|
|
339
|
+
"tags": [
|
|
340
|
+
"F2Pool",
|
|
341
|
+
"七彩神仙鱼",
|
|
342
|
+
"🐟"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"key": "hhtt",
|
|
347
|
+
"name": "HHTT",
|
|
348
|
+
"slug": null,
|
|
349
|
+
"link": "https://hhtt.1209k.com",
|
|
350
|
+
"tags": [
|
|
351
|
+
"HHTT"
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"key": "megabigpower",
|
|
356
|
+
"name": "MegaBigPower",
|
|
357
|
+
"slug": null,
|
|
358
|
+
"link": "https://megabigpower.com",
|
|
359
|
+
"tags": [
|
|
360
|
+
"megabigpower.com"
|
|
361
|
+
]
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"key": "mt red",
|
|
365
|
+
"name": "Mt Red",
|
|
366
|
+
"slug": null,
|
|
367
|
+
"link": "https://mtred.com",
|
|
368
|
+
"tags": [
|
|
369
|
+
"/mtred/"
|
|
370
|
+
]
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"key": "nmcbit",
|
|
374
|
+
"name": "NMCbit",
|
|
375
|
+
"slug": null,
|
|
376
|
+
"link": "https://nmcbit.com",
|
|
377
|
+
"tags": [
|
|
378
|
+
"nmcbit.com"
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"key": "yourbtc.net",
|
|
383
|
+
"name": "Yourbtc.net",
|
|
384
|
+
"slug": null,
|
|
385
|
+
"link": "https://yourbtc.net",
|
|
386
|
+
"tags": [
|
|
387
|
+
"yourbtc.net"
|
|
388
|
+
]
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"key": "give me coins",
|
|
392
|
+
"name": "Give Me Coins",
|
|
393
|
+
"slug": null,
|
|
394
|
+
"link": "https://give-me-coins.com",
|
|
395
|
+
"tags": [
|
|
396
|
+
"Give-Me-Coins"
|
|
397
|
+
]
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"key": "braiins pool",
|
|
401
|
+
"name": "Braiins Pool",
|
|
402
|
+
"slug": null,
|
|
403
|
+
"link": "https://braiins.com/pool",
|
|
404
|
+
"tags": [
|
|
405
|
+
"/slush/"
|
|
406
|
+
]
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"key": "antpool",
|
|
410
|
+
"name": "AntPool",
|
|
411
|
+
"slug": null,
|
|
412
|
+
"link": "https://www.antpool.com",
|
|
413
|
+
"tags": [
|
|
414
|
+
"Mined By AntPool",
|
|
415
|
+
"Mined by AntPool",
|
|
416
|
+
"/AntPool/"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"key": "multicoin.co",
|
|
421
|
+
"name": "MultiCoin.co",
|
|
422
|
+
"slug": null,
|
|
423
|
+
"link": "https://multicoin.co",
|
|
424
|
+
"tags": [
|
|
425
|
+
"Mined by MultiCoin.co"
|
|
426
|
+
]
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"key": "bcpool.io",
|
|
430
|
+
"name": "bcpool.io",
|
|
431
|
+
"slug": null,
|
|
432
|
+
"link": "https://bcpool.io",
|
|
433
|
+
"tags": [
|
|
434
|
+
"bcpool.io"
|
|
435
|
+
]
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"key": "cointerra",
|
|
439
|
+
"name": "Cointerra",
|
|
440
|
+
"slug": null,
|
|
441
|
+
"link": "https://cointerra.com",
|
|
442
|
+
"tags": [
|
|
443
|
+
"cointerra"
|
|
444
|
+
]
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"key": "kanopool",
|
|
448
|
+
"name": "KanoPool",
|
|
449
|
+
"slug": null,
|
|
450
|
+
"link": "https://kano.is",
|
|
451
|
+
"tags": [
|
|
452
|
+
"Kano"
|
|
453
|
+
]
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"key": "solo ck",
|
|
457
|
+
"name": "Solo CK",
|
|
458
|
+
"slug": null,
|
|
459
|
+
"link": "https://solo.ckpool.org",
|
|
460
|
+
"tags": [
|
|
461
|
+
"/solo.ckpool.org/"
|
|
462
|
+
]
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"key": "ckpool",
|
|
466
|
+
"name": "CKPool",
|
|
467
|
+
"slug": null,
|
|
468
|
+
"link": "https://ckpool.org",
|
|
469
|
+
"tags": [
|
|
470
|
+
"/ckpool.org/"
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"key": "nicehash",
|
|
475
|
+
"name": "NiceHash",
|
|
476
|
+
"slug": null,
|
|
477
|
+
"link": "https://www.nicehash.com",
|
|
478
|
+
"tags": [
|
|
479
|
+
"/NiceHashMining/",
|
|
480
|
+
"/NiceHashSolo",
|
|
481
|
+
"/NiceHash/"
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"key": "bitclub",
|
|
486
|
+
"name": "BitClub",
|
|
487
|
+
"slug": null,
|
|
488
|
+
"link": "https://bitclubpool.com",
|
|
489
|
+
"tags": [
|
|
490
|
+
"/BitClub Network/"
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"key": "bitcoin affiliate network",
|
|
495
|
+
"name": "Bitcoin Affiliate Network",
|
|
496
|
+
"slug": null,
|
|
497
|
+
"link": "https://mining.bitcoinaffiliatenetwork.com",
|
|
498
|
+
"tags": [
|
|
499
|
+
"bitcoinaffiliatenetwork.com"
|
|
500
|
+
]
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"key": "btcc",
|
|
504
|
+
"name": "BTCC",
|
|
505
|
+
"slug": null,
|
|
506
|
+
"link": "https://pool.btcc.com",
|
|
507
|
+
"tags": [
|
|
508
|
+
"BTCChina Pool",
|
|
509
|
+
"BTCChina.com",
|
|
510
|
+
"btcchina.com",
|
|
511
|
+
"/BTCC/"
|
|
512
|
+
]
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"key": "bwpool",
|
|
516
|
+
"name": "BWPool",
|
|
517
|
+
"slug": null,
|
|
518
|
+
"link": "https://bwpool.net",
|
|
519
|
+
"tags": [
|
|
520
|
+
"BW Pool",
|
|
521
|
+
"BWPool"
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"key": "exx&bw",
|
|
526
|
+
"name": "EXX&BW",
|
|
527
|
+
"slug": null,
|
|
528
|
+
"link": "https://xbtc.exx.com",
|
|
529
|
+
"tags": [
|
|
530
|
+
"xbtc.exx.com&bw.com"
|
|
531
|
+
]
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"key": "bitsolo",
|
|
535
|
+
"name": "Bitsolo",
|
|
536
|
+
"slug": null,
|
|
537
|
+
"link": "https://bitsolo.net",
|
|
538
|
+
"tags": [
|
|
539
|
+
"Bitsolo Pool"
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"key": "bitfury",
|
|
544
|
+
"name": "BitFury",
|
|
545
|
+
"slug": null,
|
|
546
|
+
"link": "https://bitfury.com",
|
|
547
|
+
"tags": [
|
|
548
|
+
"/BitFury/",
|
|
549
|
+
"/Bitfury/"
|
|
550
|
+
]
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"key": "21 inc.",
|
|
554
|
+
"name": "21 Inc.",
|
|
555
|
+
"slug": null,
|
|
556
|
+
"link": "https://21.co",
|
|
557
|
+
"tags": [
|
|
558
|
+
"/pool34/"
|
|
559
|
+
]
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"key": "digitalbtc",
|
|
563
|
+
"name": "digitalBTC",
|
|
564
|
+
"slug": null,
|
|
565
|
+
"link": "https://digitalbtc.com",
|
|
566
|
+
"tags": [
|
|
567
|
+
"/agentD/"
|
|
568
|
+
]
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"key": "8baochi",
|
|
572
|
+
"name": "8baochi",
|
|
573
|
+
"slug": null,
|
|
574
|
+
"link": "https://8baochi.com",
|
|
575
|
+
"tags": [
|
|
576
|
+
"/八宝池 8baochi.com/"
|
|
577
|
+
]
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"key": "mybtccoin pool",
|
|
581
|
+
"name": "myBTCcoin Pool",
|
|
582
|
+
"slug": null,
|
|
583
|
+
"link": "https://mybtccoin.com",
|
|
584
|
+
"tags": [
|
|
585
|
+
"myBTCcoin Pool"
|
|
586
|
+
]
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"key": "tbdice",
|
|
590
|
+
"name": "TBDice",
|
|
591
|
+
"slug": null,
|
|
592
|
+
"link": "https://tbdice.org",
|
|
593
|
+
"tags": [
|
|
594
|
+
"TBDice"
|
|
595
|
+
]
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"key": "hashpool",
|
|
599
|
+
"name": "HASHPOOL",
|
|
600
|
+
"slug": null,
|
|
601
|
+
"link": "https://hashpool.com",
|
|
602
|
+
"tags": [
|
|
603
|
+
"HASHPOOL"
|
|
604
|
+
]
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"key": "nexious",
|
|
608
|
+
"name": "Nexious",
|
|
609
|
+
"slug": null,
|
|
610
|
+
"link": "https://nexious.com",
|
|
611
|
+
"tags": [
|
|
612
|
+
"/Nexious/"
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"key": "bravo mining",
|
|
617
|
+
"name": "Bravo Mining",
|
|
618
|
+
"slug": null,
|
|
619
|
+
"link": "https://www.bravo-mining.com",
|
|
620
|
+
"tags": [
|
|
621
|
+
"/bravo-mining/"
|
|
622
|
+
]
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"key": "hotpool",
|
|
626
|
+
"name": "HotPool",
|
|
627
|
+
"slug": null,
|
|
628
|
+
"link": "https://hotpool.co",
|
|
629
|
+
"tags": [
|
|
630
|
+
"/HotPool/"
|
|
631
|
+
]
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"key": "okexpool",
|
|
635
|
+
"name": "OKExPool",
|
|
636
|
+
"slug": null,
|
|
637
|
+
"link": "https://www.okex.com",
|
|
638
|
+
"tags": [
|
|
639
|
+
"/www.okex.com/"
|
|
640
|
+
]
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"key": "bcmonster",
|
|
644
|
+
"name": "BCMonster",
|
|
645
|
+
"slug": null,
|
|
646
|
+
"link": "https://www.bcmonster.com",
|
|
647
|
+
"tags": [
|
|
648
|
+
"/BCMonster/"
|
|
649
|
+
]
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"key": "1hash",
|
|
653
|
+
"name": "1Hash",
|
|
654
|
+
"slug": null,
|
|
655
|
+
"link": "https://www.1hash.com",
|
|
656
|
+
"tags": [
|
|
657
|
+
"Mined by 1hash.com"
|
|
658
|
+
]
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"key": "bixin",
|
|
662
|
+
"name": "Bixin",
|
|
663
|
+
"slug": null,
|
|
664
|
+
"link": "https://haopool.com",
|
|
665
|
+
"tags": [
|
|
666
|
+
"/HaoBTC/",
|
|
667
|
+
"/Bixin/",
|
|
668
|
+
"HAOBTC"
|
|
669
|
+
]
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"key": "tatmas pool",
|
|
673
|
+
"name": "TATMAS Pool",
|
|
674
|
+
"slug": null,
|
|
675
|
+
"link": "https://tmsminer.com",
|
|
676
|
+
"tags": [
|
|
677
|
+
"/ViaBTC/TATMAS Pool/"
|
|
678
|
+
]
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"key": "viabtc",
|
|
682
|
+
"name": "ViaBTC",
|
|
683
|
+
"slug": null,
|
|
684
|
+
"link": "https://viabtc.com",
|
|
685
|
+
"tags": [
|
|
686
|
+
"viabtc.com deploy",
|
|
687
|
+
"/ViaBTC/"
|
|
688
|
+
]
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"key": "connectbtc",
|
|
692
|
+
"name": "ConnectBTC",
|
|
693
|
+
"slug": null,
|
|
694
|
+
"link": "https://www.connectbtc.com",
|
|
695
|
+
"tags": [
|
|
696
|
+
"/ConnectBTC - Home for Miners/"
|
|
697
|
+
]
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"key": "batpool",
|
|
701
|
+
"name": "BATPOOL",
|
|
702
|
+
"slug": null,
|
|
703
|
+
"link": "https://www.batpool.com",
|
|
704
|
+
"tags": [
|
|
705
|
+
"/BATPOOL/"
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"key": "waterhole",
|
|
710
|
+
"name": "Waterhole",
|
|
711
|
+
"slug": null,
|
|
712
|
+
"link": "https://btc.waterhole.io",
|
|
713
|
+
"tags": [
|
|
714
|
+
"/WATERHOLE.IO/"
|
|
715
|
+
]
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"key": "dcexploration",
|
|
719
|
+
"name": "DCExploration",
|
|
720
|
+
"slug": null,
|
|
721
|
+
"link": "https://dcexploration.cn",
|
|
722
|
+
"tags": [
|
|
723
|
+
"/DCExploration/"
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"key": "dcex",
|
|
728
|
+
"name": "DCEX",
|
|
729
|
+
"slug": null,
|
|
730
|
+
"link": "https://dcexploration.cn",
|
|
731
|
+
"tags": [
|
|
732
|
+
"/DCEX/"
|
|
733
|
+
]
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"key": "btpool",
|
|
737
|
+
"name": "BTPOOL",
|
|
738
|
+
"slug": null,
|
|
739
|
+
"link": "",
|
|
740
|
+
"tags": [
|
|
741
|
+
"/BTPOOL/"
|
|
742
|
+
]
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"key": "58coin",
|
|
746
|
+
"name": "58COIN",
|
|
747
|
+
"slug": null,
|
|
748
|
+
"link": "https://www.58coin.com",
|
|
749
|
+
"tags": [
|
|
750
|
+
"/58coin.com/"
|
|
751
|
+
]
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"key": "bitcoin india",
|
|
755
|
+
"name": "Bitcoin India",
|
|
756
|
+
"slug": null,
|
|
757
|
+
"link": "https://bitcoin-india.org",
|
|
758
|
+
"tags": [
|
|
759
|
+
"/Bitcoin-India/"
|
|
760
|
+
]
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"key": "shawnp0wers",
|
|
764
|
+
"name": "shawnp0wers",
|
|
765
|
+
"slug": null,
|
|
766
|
+
"link": "https://www.brainofshawn.com",
|
|
767
|
+
"tags": [
|
|
768
|
+
"--Nug--"
|
|
769
|
+
]
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"key": "phash.io",
|
|
773
|
+
"name": "PHash.IO",
|
|
774
|
+
"slug": null,
|
|
775
|
+
"link": "https://phash.io",
|
|
776
|
+
"tags": [
|
|
777
|
+
"/phash.cn/",
|
|
778
|
+
"/phash.io/"
|
|
779
|
+
]
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"key": "rigpool",
|
|
783
|
+
"name": "RigPool",
|
|
784
|
+
"slug": null,
|
|
785
|
+
"link": "https://www.rigpool.com",
|
|
786
|
+
"tags": [
|
|
787
|
+
"/RigPool.com/"
|
|
788
|
+
]
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"key": "haozhuzhu",
|
|
792
|
+
"name": "HAOZHUZHU",
|
|
793
|
+
"slug": null,
|
|
794
|
+
"link": "https://haozhuzhu.com",
|
|
795
|
+
"tags": [
|
|
796
|
+
"/haozhuzhu/"
|
|
797
|
+
]
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"key": "7pool",
|
|
801
|
+
"name": "7pool",
|
|
802
|
+
"slug": null,
|
|
803
|
+
"link": "https://7pool.com",
|
|
804
|
+
"tags": [
|
|
805
|
+
"/$Mined by 7pool.com/"
|
|
806
|
+
]
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"key": "miningkings",
|
|
810
|
+
"name": "MiningKings",
|
|
811
|
+
"slug": null,
|
|
812
|
+
"link": "https://miningkings.com",
|
|
813
|
+
"tags": [
|
|
814
|
+
"/mined by poopbut/"
|
|
815
|
+
]
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"key": "hashbx",
|
|
819
|
+
"name": "HashBX",
|
|
820
|
+
"slug": null,
|
|
821
|
+
"link": "https://hashbx.io",
|
|
822
|
+
"tags": [
|
|
823
|
+
"/Mined by HashBX.io/"
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"key": "dpool",
|
|
828
|
+
"name": "DPOOL",
|
|
829
|
+
"slug": null,
|
|
830
|
+
"link": "https://www.dpool.top",
|
|
831
|
+
"tags": [
|
|
832
|
+
"/DPOOL.TOP/"
|
|
833
|
+
]
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"key": "rawpool",
|
|
837
|
+
"name": "Rawpool",
|
|
838
|
+
"slug": null,
|
|
839
|
+
"link": "https://www.rawpool.com",
|
|
840
|
+
"tags": [
|
|
841
|
+
"/Rawpool.com/"
|
|
842
|
+
]
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"key": "haominer",
|
|
846
|
+
"name": "haominer",
|
|
847
|
+
"slug": null,
|
|
848
|
+
"link": "https://haominer.com",
|
|
849
|
+
"tags": [
|
|
850
|
+
"/haominer/"
|
|
851
|
+
]
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"key": "helix",
|
|
855
|
+
"name": "Helix",
|
|
856
|
+
"slug": null,
|
|
857
|
+
"link": "",
|
|
858
|
+
"tags": [
|
|
859
|
+
"/Helix/"
|
|
860
|
+
]
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"key": "bitcoin-ukraine",
|
|
864
|
+
"name": "Bitcoin-Ukraine",
|
|
865
|
+
"slug": null,
|
|
866
|
+
"link": "https://bitcoin-ukraine.com.ua",
|
|
867
|
+
"tags": [
|
|
868
|
+
"/Bitcoin-Ukraine.com.ua/"
|
|
869
|
+
]
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"key": "poolin",
|
|
873
|
+
"name": "Poolin",
|
|
874
|
+
"slug": null,
|
|
875
|
+
"link": "https://www.poolin.com",
|
|
876
|
+
"tags": [
|
|
877
|
+
"/poolin.com",
|
|
878
|
+
"/poolin/"
|
|
879
|
+
]
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"key": "secretsuperstar",
|
|
883
|
+
"name": "SecretSuperstar",
|
|
884
|
+
"slug": null,
|
|
885
|
+
"link": "",
|
|
886
|
+
"tags": [
|
|
887
|
+
"/SecretSuperstar/"
|
|
888
|
+
]
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"key": "tigerpool.net",
|
|
892
|
+
"name": "tigerpool.net",
|
|
893
|
+
"slug": null,
|
|
894
|
+
"link": "",
|
|
895
|
+
"tags": [
|
|
896
|
+
"/tigerpool.net"
|
|
897
|
+
]
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"key": "sigmapool.com",
|
|
901
|
+
"name": "Sigmapool.com",
|
|
902
|
+
"slug": null,
|
|
903
|
+
"link": "https://sigmapool.com",
|
|
904
|
+
"tags": [
|
|
905
|
+
"/Sigmapool.com/"
|
|
906
|
+
]
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"key": "okpool.top",
|
|
910
|
+
"name": "okpool.top",
|
|
911
|
+
"slug": null,
|
|
912
|
+
"link": "https://www.okpool.top",
|
|
913
|
+
"tags": [
|
|
914
|
+
"/www.okpool.top/"
|
|
915
|
+
]
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"key": "hummerpool",
|
|
919
|
+
"name": "Hummerpool",
|
|
920
|
+
"slug": null,
|
|
921
|
+
"link": "https://www.hummerpool.com",
|
|
922
|
+
"tags": [
|
|
923
|
+
"HummerPool",
|
|
924
|
+
"Hummerpool"
|
|
925
|
+
]
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"key": "tangpool",
|
|
929
|
+
"name": "Tangpool",
|
|
930
|
+
"slug": null,
|
|
931
|
+
"link": "https://www.tangpool.com",
|
|
932
|
+
"tags": [
|
|
933
|
+
"/Tangpool/"
|
|
934
|
+
]
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"key": "bytepool",
|
|
938
|
+
"name": "BytePool",
|
|
939
|
+
"slug": null,
|
|
940
|
+
"link": "https://www.bytepool.com",
|
|
941
|
+
"tags": [
|
|
942
|
+
"/bytepool.com/"
|
|
943
|
+
]
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"key": "spiderpool",
|
|
947
|
+
"name": "SpiderPool",
|
|
948
|
+
"slug": null,
|
|
949
|
+
"link": "https://www.spiderpool.com",
|
|
950
|
+
"tags": [
|
|
951
|
+
"SpiderPool"
|
|
952
|
+
]
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"key": "novablock",
|
|
956
|
+
"name": "NovaBlock",
|
|
957
|
+
"slug": null,
|
|
958
|
+
"link": "https://novablock.com",
|
|
959
|
+
"tags": [
|
|
960
|
+
"/NovaBlock/"
|
|
961
|
+
]
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"key": "miningcity",
|
|
965
|
+
"name": "MiningCity",
|
|
966
|
+
"slug": null,
|
|
967
|
+
"link": "https://www.miningcity.com",
|
|
968
|
+
"tags": [
|
|
969
|
+
"MiningCity"
|
|
970
|
+
]
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"key": "binance pool",
|
|
974
|
+
"name": "Binance Pool",
|
|
975
|
+
"slug": null,
|
|
976
|
+
"link": "https://pool.binance.com",
|
|
977
|
+
"tags": [
|
|
978
|
+
"/Binance/",
|
|
979
|
+
"binance"
|
|
980
|
+
]
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"key": "minerium",
|
|
984
|
+
"name": "Minerium",
|
|
985
|
+
"slug": null,
|
|
986
|
+
"link": "https://www.minerium.com",
|
|
987
|
+
"tags": [
|
|
988
|
+
"/Mined in the USA by: /Minerium.com/",
|
|
989
|
+
"/Minerium.com/"
|
|
990
|
+
]
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"key": "lubian.com",
|
|
994
|
+
"name": "Lubian.com",
|
|
995
|
+
"slug": null,
|
|
996
|
+
"link": "https://www.lubian.com",
|
|
997
|
+
"tags": [
|
|
998
|
+
"/lubian.com/",
|
|
999
|
+
"/Buffett/"
|
|
1000
|
+
]
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"key": "okkong",
|
|
1004
|
+
"name": "OKKONG",
|
|
1005
|
+
"slug": null,
|
|
1006
|
+
"link": "https://hash.okkong.com",
|
|
1007
|
+
"tags": [
|
|
1008
|
+
"/hash.okkong.com/"
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"key": "aao pool",
|
|
1013
|
+
"name": "AAO Pool",
|
|
1014
|
+
"slug": null,
|
|
1015
|
+
"link": "https://btc.tmspool.top",
|
|
1016
|
+
"tags": [
|
|
1017
|
+
"/AAOPOOL/"
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"key": "emcdpool",
|
|
1022
|
+
"name": "EMCDPool",
|
|
1023
|
+
"slug": null,
|
|
1024
|
+
"link": "https://pool.emcd.io",
|
|
1025
|
+
"tags": [
|
|
1026
|
+
"/one_more_mcd/",
|
|
1027
|
+
"get___emcd",
|
|
1028
|
+
"/EMCD/",
|
|
1029
|
+
"emcd"
|
|
1030
|
+
]
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"key": "foundry usa",
|
|
1034
|
+
"name": "Foundry USA",
|
|
1035
|
+
"slug": null,
|
|
1036
|
+
"link": "https://foundrydigital.com",
|
|
1037
|
+
"tags": [
|
|
1038
|
+
"Foundry USA Pool",
|
|
1039
|
+
"/2cDw/"
|
|
1040
|
+
]
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"key": "sbi crypto",
|
|
1044
|
+
"name": "SBI Crypto",
|
|
1045
|
+
"slug": null,
|
|
1046
|
+
"link": "https://sbicrypto.com",
|
|
1047
|
+
"tags": [
|
|
1048
|
+
"/SBICrypto.com Pool/",
|
|
1049
|
+
"SBI Crypto",
|
|
1050
|
+
"SBICrypto"
|
|
1051
|
+
]
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"key": "arkpool",
|
|
1055
|
+
"name": "ArkPool",
|
|
1056
|
+
"slug": null,
|
|
1057
|
+
"link": "https://www.arkpool.com",
|
|
1058
|
+
"tags": [
|
|
1059
|
+
"/ArkPool/"
|
|
1060
|
+
]
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"key": "purebtc.com",
|
|
1064
|
+
"name": "PureBTC.COM",
|
|
1065
|
+
"slug": null,
|
|
1066
|
+
"link": "https://purebtc.com",
|
|
1067
|
+
"tags": [
|
|
1068
|
+
"/PureBTC.COM/"
|
|
1069
|
+
]
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"key": "mara pool",
|
|
1073
|
+
"name": "MARA Pool",
|
|
1074
|
+
"slug": null,
|
|
1075
|
+
"link": "https://marapool.com",
|
|
1076
|
+
"tags": [
|
|
1077
|
+
"MARA Made in USA",
|
|
1078
|
+
"MARA Pool"
|
|
1079
|
+
]
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"key": "kucoinpool",
|
|
1083
|
+
"name": "KuCoinPool",
|
|
1084
|
+
"slug": null,
|
|
1085
|
+
"link": "https://www.kucoin.com/mining-pool",
|
|
1086
|
+
"tags": [
|
|
1087
|
+
"KuCoinPool"
|
|
1088
|
+
]
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"key": "entrust charity pool",
|
|
1092
|
+
"name": "Entrust Charity Pool",
|
|
1093
|
+
"slug": null,
|
|
1094
|
+
"link": "pool.entustus.org",
|
|
1095
|
+
"tags": [
|
|
1096
|
+
"Entrustus"
|
|
1097
|
+
]
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"key": "okminer",
|
|
1101
|
+
"name": "OKMINER",
|
|
1102
|
+
"slug": null,
|
|
1103
|
+
"link": "https://okminer.com",
|
|
1104
|
+
"tags": [
|
|
1105
|
+
"okminer.com/euz"
|
|
1106
|
+
]
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"key": "titan",
|
|
1110
|
+
"name": "Titan",
|
|
1111
|
+
"slug": null,
|
|
1112
|
+
"link": "https://titan.io",
|
|
1113
|
+
"tags": [
|
|
1114
|
+
"Titan.io"
|
|
1115
|
+
]
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"key": "pega pool",
|
|
1119
|
+
"name": "PEGA Pool",
|
|
1120
|
+
"slug": null,
|
|
1121
|
+
"link": "https://www.pega-pool.com",
|
|
1122
|
+
"tags": [
|
|
1123
|
+
"/pegapool/"
|
|
1124
|
+
]
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"key": "zulupool",
|
|
1128
|
+
"name": "Zulupool",
|
|
1129
|
+
"slug": null,
|
|
1130
|
+
"link": "https://beta.zulupool.com/",
|
|
1131
|
+
"tags": [
|
|
1132
|
+
"ZULUPooL",
|
|
1133
|
+
"ZU_test"
|
|
1134
|
+
]
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"key": "secpool",
|
|
1138
|
+
"name": "SECPOOL",
|
|
1139
|
+
"slug": null,
|
|
1140
|
+
"link": "https://www.secpool.com",
|
|
1141
|
+
"tags": [
|
|
1142
|
+
"SecPool"
|
|
1143
|
+
]
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"key": "ocean",
|
|
1147
|
+
"name": "OCEAN",
|
|
1148
|
+
"slug": null,
|
|
1149
|
+
"link": "https://ocean.xyz/",
|
|
1150
|
+
"tags": [
|
|
1151
|
+
"OCEAN.XYZ"
|
|
1152
|
+
]
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"key": "whitepool",
|
|
1156
|
+
"name": "WhitePool",
|
|
1157
|
+
"slug": null,
|
|
1158
|
+
"link": "https://whitebit.com/mining-pool",
|
|
1159
|
+
"tags": [
|
|
1160
|
+
"WhitePool"
|
|
1161
|
+
]
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"key": "wiz",
|
|
1165
|
+
"name": "wiz",
|
|
1166
|
+
"slug": null,
|
|
1167
|
+
"link": "https://wiz.biz/",
|
|
1168
|
+
"tags": [
|
|
1169
|
+
"/@wiz/"
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"key": "mononaut",
|
|
1174
|
+
"name": "mononaut",
|
|
1175
|
+
"slug": null,
|
|
1176
|
+
"link": "https://twitter.com/mononautical",
|
|
1177
|
+
"tags": [
|
|
1178
|
+
"🐵🚀"
|
|
1179
|
+
]
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"key": "rijndael",
|
|
1183
|
+
"name": "rijndael",
|
|
1184
|
+
"slug": null,
|
|
1185
|
+
"link": "https://twitter.com/rot13maxi",
|
|
1186
|
+
"tags": [
|
|
1187
|
+
"rijndael's toaster"
|
|
1188
|
+
]
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"key": "wk057",
|
|
1192
|
+
"name": "wk057",
|
|
1193
|
+
"slug": null,
|
|
1194
|
+
"link": "",
|
|
1195
|
+
"tags": [
|
|
1196
|
+
"wizkid057's block"
|
|
1197
|
+
]
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"key": "futurebit apollo solo",
|
|
1201
|
+
"name": "FutureBit Apollo Solo",
|
|
1202
|
+
"slug": null,
|
|
1203
|
+
"link": "https://www.futurebit.io",
|
|
1204
|
+
"tags": [
|
|
1205
|
+
"/mined by a Solo FutureBit Apollo/",
|
|
1206
|
+
"FutureBit",
|
|
1207
|
+
"Apollo"
|
|
1208
|
+
]
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"key": "emzy",
|
|
1212
|
+
"name": "emzy",
|
|
1213
|
+
"slug": null,
|
|
1214
|
+
"link": "https://twitter.com/emzy",
|
|
1215
|
+
"tags": [
|
|
1216
|
+
"Emzy was here."
|
|
1217
|
+
]
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"key": "knorrium",
|
|
1221
|
+
"name": "knorrium",
|
|
1222
|
+
"slug": null,
|
|
1223
|
+
"link": "https://twitter.com/knorrium",
|
|
1224
|
+
"tags": [
|
|
1225
|
+
"knorrium"
|
|
1226
|
+
]
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"key": "portland.hodl",
|
|
1230
|
+
"name": "Portland.HODL",
|
|
1231
|
+
"slug": null,
|
|
1232
|
+
"link": "",
|
|
1233
|
+
"tags": [
|
|
1234
|
+
"Portland.HODL"
|
|
1235
|
+
]
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"key": "phoenix",
|
|
1239
|
+
"name": "Phoenix",
|
|
1240
|
+
"slug": null,
|
|
1241
|
+
"link": "https://phoenixpool.com",
|
|
1242
|
+
"tags": [
|
|
1243
|
+
"/Phoenix/"
|
|
1244
|
+
]
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"key": "neopool",
|
|
1248
|
+
"name": "Neopool",
|
|
1249
|
+
"slug": null,
|
|
1250
|
+
"link": "https://neopool.com/",
|
|
1251
|
+
"tags": [
|
|
1252
|
+
"/Neopool/"
|
|
1253
|
+
]
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"key": "maxipool",
|
|
1257
|
+
"name": "MaxiPool",
|
|
1258
|
+
"slug": null,
|
|
1259
|
+
"link": "https://maxipool.org/",
|
|
1260
|
+
"tags": [
|
|
1261
|
+
"/MaxiPool/"
|
|
1262
|
+
]
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"key": "drdetroit",
|
|
1266
|
+
"name": "DrDetroit",
|
|
1267
|
+
"slug": null,
|
|
1268
|
+
"link": "https://x.com/bankhatin",
|
|
1269
|
+
"tags": [
|
|
1270
|
+
"DrDetroit"
|
|
1271
|
+
]
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"key": "bitfufupool",
|
|
1275
|
+
"name": "BitFuFuPool",
|
|
1276
|
+
"slug": null,
|
|
1277
|
+
"link": "https://www.bitfufu.com/pool",
|
|
1278
|
+
"tags": [
|
|
1279
|
+
"/BitFuFu/"
|
|
1280
|
+
]
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"key": "gdpool",
|
|
1284
|
+
"name": "GDPool",
|
|
1285
|
+
"slug": null,
|
|
1286
|
+
"link": "",
|
|
1287
|
+
"tags": [
|
|
1288
|
+
"Lucky pool",
|
|
1289
|
+
"GDPool"
|
|
1290
|
+
]
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"key": "mining-dutch",
|
|
1294
|
+
"name": "Mining-Dutch",
|
|
1295
|
+
"slug": null,
|
|
1296
|
+
"link": "https://www.mining-dutch.nl/",
|
|
1297
|
+
"tags": [
|
|
1298
|
+
"/Mining-Dutch/"
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"key": "public pool",
|
|
1303
|
+
"name": "Public Pool",
|
|
1304
|
+
"slug": null,
|
|
1305
|
+
"link": "https://web.public-pool.io/",
|
|
1306
|
+
"tags": [
|
|
1307
|
+
"Public Pool on Umbrel",
|
|
1308
|
+
"Public-Pool"
|
|
1309
|
+
]
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"key": "mining squared",
|
|
1313
|
+
"name": "Mining Squared",
|
|
1314
|
+
"slug": null,
|
|
1315
|
+
"link": "https://pool.bsquared.network/",
|
|
1316
|
+
"tags": [
|
|
1317
|
+
"BSquared Network",
|
|
1318
|
+
"MiningSquared",
|
|
1319
|
+
"/bsquared/"
|
|
1320
|
+
]
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"key": "innopolis tech",
|
|
1324
|
+
"name": "Innopolis Tech",
|
|
1325
|
+
"slug": null,
|
|
1326
|
+
"link": "https://innopolis.tech/",
|
|
1327
|
+
"tags": [
|
|
1328
|
+
"Innopolis.tech",
|
|
1329
|
+
"Innopolis"
|
|
1330
|
+
]
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"key": "nymkappa",
|
|
1334
|
+
"name": "nymkappa",
|
|
1335
|
+
"slug": null,
|
|
1336
|
+
"link": "https://github.com/nymkappa",
|
|
1337
|
+
"tags": [
|
|
1338
|
+
"/@nymkappa/"
|
|
1339
|
+
]
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"key": "btclab",
|
|
1343
|
+
"name": "BTCLab",
|
|
1344
|
+
"slug": null,
|
|
1345
|
+
"link": "https://btclab.dev/",
|
|
1346
|
+
"tags": [
|
|
1347
|
+
"BTCLab.dev",
|
|
1348
|
+
"BTCLab"
|
|
1349
|
+
]
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"key": "parasite",
|
|
1353
|
+
"name": "Parasite",
|
|
1354
|
+
"slug": null,
|
|
1355
|
+
"link": "https://parasite.space",
|
|
1356
|
+
"tags": [
|
|
1357
|
+
"parasite"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"key": "redrock pool",
|
|
1362
|
+
"name": "RedRock Pool",
|
|
1363
|
+
"slug": null,
|
|
1364
|
+
"link": "https://redrock.pro/",
|
|
1365
|
+
"tags": [
|
|
1366
|
+
"RedRock"
|
|
1367
|
+
]
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"key": "est3lar",
|
|
1371
|
+
"name": "Est3lar",
|
|
1372
|
+
"slug": null,
|
|
1373
|
+
"link": "https://est3lar.io",
|
|
1374
|
+
"tags": [
|
|
1375
|
+
"/Est3lar/",
|
|
1376
|
+
"est3lar",
|
|
1377
|
+
"Est3lar",
|
|
1378
|
+
"EST3LAR"
|
|
1379
|
+
]
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"key": "braiins solo",
|
|
1383
|
+
"name": "Braiins Solo",
|
|
1384
|
+
"slug": null,
|
|
1385
|
+
"link": "https://solo.braiins.com",
|
|
1386
|
+
"tags": [
|
|
1387
|
+
"/braiinssolo/"
|
|
1388
|
+
]
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"key": "solopool.com",
|
|
1392
|
+
"name": "SoloPool.com",
|
|
1393
|
+
"slug": null,
|
|
1394
|
+
"link": "https://solopool.com",
|
|
1395
|
+
"tags": [
|
|
1396
|
+
"/Mined @ SoloPool.Com/"
|
|
1397
|
+
]
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"key": "noderunners",
|
|
1401
|
+
"name": "Noderunners",
|
|
1402
|
+
"slug": null,
|
|
1403
|
+
"link": "https://pool.noderunners.network",
|
|
1404
|
+
"tags": [
|
|
1405
|
+
"/Noderunners/"
|
|
1406
|
+
]
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"key": "dmnd",
|
|
1410
|
+
"name": "DMND",
|
|
1411
|
+
"slug": null,
|
|
1412
|
+
"link": "https://www.dmnd.work/",
|
|
1413
|
+
"tags": [
|
|
1414
|
+
"/DMND/"
|
|
1415
|
+
]
|
|
1416
|
+
}
|
|
1417
|
+
],
|
|
1418
|
+
"matchers": [
|
|
1419
|
+
{
|
|
1420
|
+
"tag": "/Mined in the USA by: /Minerium.com/",
|
|
1421
|
+
"tagNorm": "/mined in the usa by: /minerium.com/",
|
|
1422
|
+
"key": "minerium",
|
|
1423
|
+
"name": "Minerium"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"tag": "/mined by a Solo FutureBit Apollo/",
|
|
1427
|
+
"tagNorm": "/mined by a solo futurebit apollo/",
|
|
1428
|
+
"key": "futurebit apollo solo",
|
|
1429
|
+
"name": "FutureBit Apollo Solo"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"tag": "/ConnectBTC - Home for Miners/",
|
|
1433
|
+
"tagNorm": "/connectbtc - home for miners/",
|
|
1434
|
+
"key": "connectbtc",
|
|
1435
|
+
"name": "ConnectBTC"
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"tag": "Validated with Clean Energy",
|
|
1439
|
+
"tagNorm": "validated with clean energy",
|
|
1440
|
+
"key": "terra pool",
|
|
1441
|
+
"name": "Terra Pool"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"tag": "bitcoinaffiliatenetwork.com",
|
|
1445
|
+
"tagNorm": "bitcoinaffiliatenetwork.com",
|
|
1446
|
+
"key": "bitcoin affiliate network",
|
|
1447
|
+
"name": "Bitcoin Affiliate Network"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"tag": "/Bitcoin-Ukraine.com.ua/",
|
|
1451
|
+
"tagNorm": "/bitcoin-ukraine.com.ua/",
|
|
1452
|
+
"key": "bitcoin-ukraine",
|
|
1453
|
+
"name": "Bitcoin-Ukraine"
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
"tag": "/Mined @ SoloPool.Com/",
|
|
1457
|
+
"tagNorm": "/mined @ solopool.com/",
|
|
1458
|
+
"key": "solopool.com",
|
|
1459
|
+
"name": "SoloPool.com"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"tag": "Mined by MultiCoin.co",
|
|
1463
|
+
"tagNorm": "mined by multicoin.co",
|
|
1464
|
+
"key": "multicoin.co",
|
|
1465
|
+
"name": "MultiCoin.co"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"tag": "/$Mined by 7pool.com/",
|
|
1469
|
+
"tagNorm": "/$mined by 7pool.com/",
|
|
1470
|
+
"key": "7pool",
|
|
1471
|
+
"name": "7pool"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"tag": "Public Pool on Umbrel",
|
|
1475
|
+
"tagNorm": "public pool on umbrel",
|
|
1476
|
+
"key": "public pool",
|
|
1477
|
+
"name": "Public Pool"
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
"tag": "/ViaBTC/TATMAS Pool/",
|
|
1481
|
+
"tagNorm": "/viabtc/tatmas pool/",
|
|
1482
|
+
"key": "tatmas pool",
|
|
1483
|
+
"name": "TATMAS Pool"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"tag": "/Mined by HashBX.io/",
|
|
1487
|
+
"tagNorm": "/mined by hashbx.io/",
|
|
1488
|
+
"key": "hashbx",
|
|
1489
|
+
"name": "HashBX"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"tag": "/SBICrypto.com Pool/",
|
|
1493
|
+
"tagNorm": "/sbicrypto.com pool/",
|
|
1494
|
+
"key": "sbi crypto",
|
|
1495
|
+
"name": "SBI Crypto"
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"tag": "Mined By 175btc.com",
|
|
1499
|
+
"tagNorm": "mined by 175btc.com",
|
|
1500
|
+
"key": "175btc",
|
|
1501
|
+
"name": "175btc"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"tag": "/mined by gbminers/",
|
|
1505
|
+
"tagNorm": "/mined by gbminers/",
|
|
1506
|
+
"key": "gbminers",
|
|
1507
|
+
"name": "GBMiners"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"tag": "/Bitcoin-Russia.ru/",
|
|
1511
|
+
"tagNorm": "/bitcoin-russia.ru/",
|
|
1512
|
+
"key": "bitcoinrussia",
|
|
1513
|
+
"name": "BitcoinRussia"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"tag": "xbtc.exx.com&bw.com",
|
|
1517
|
+
"tagNorm": "xbtc.exx.com&bw.com",
|
|
1518
|
+
"key": "exx&bw",
|
|
1519
|
+
"name": "EXX&BW"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"tag": "Mined by 1hash.com",
|
|
1523
|
+
"tagNorm": "mined by 1hash.com",
|
|
1524
|
+
"key": "1hash",
|
|
1525
|
+
"name": "1Hash"
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"tag": "/mined by poopbut/",
|
|
1529
|
+
"tagNorm": "/mined by poopbut/",
|
|
1530
|
+
"key": "miningkings",
|
|
1531
|
+
"name": "MiningKings"
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"tag": "rijndael's toaster",
|
|
1535
|
+
"tagNorm": "rijndael's toaster",
|
|
1536
|
+
"key": "rijndael",
|
|
1537
|
+
"name": "rijndael"
|
|
1538
|
+
},
|
|
1539
|
+
{
|
|
1540
|
+
"tag": "/solo.ckpool.org/",
|
|
1541
|
+
"tagNorm": "/solo.ckpool.org/",
|
|
1542
|
+
"key": "solo ck",
|
|
1543
|
+
"name": "Solo CK"
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"tag": "/BitClub Network/",
|
|
1547
|
+
"tagNorm": "/bitclub network/",
|
|
1548
|
+
"key": "bitclub",
|
|
1549
|
+
"name": "BitClub"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"tag": "/八宝池 8baochi.com/",
|
|
1553
|
+
"tagNorm": "/八宝池 8baochi.com/",
|
|
1554
|
+
"key": "8baochi",
|
|
1555
|
+
"name": "8baochi"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"tag": "viabtc.com deploy",
|
|
1559
|
+
"tagNorm": "viabtc.com deploy",
|
|
1560
|
+
"key": "viabtc",
|
|
1561
|
+
"name": "ViaBTC"
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"tag": "/SecretSuperstar/",
|
|
1565
|
+
"tagNorm": "/secretsuperstar/",
|
|
1566
|
+
"key": "secretsuperstar",
|
|
1567
|
+
"name": "SecretSuperstar"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"tag": "/hash.okkong.com/",
|
|
1571
|
+
"tagNorm": "/hash.okkong.com/",
|
|
1572
|
+
"key": "okkong",
|
|
1573
|
+
"name": "OKKONG"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"tag": "wizkid057's block",
|
|
1577
|
+
"tagNorm": "wizkid057's block",
|
|
1578
|
+
"key": "wk057",
|
|
1579
|
+
"name": "wk057"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"tag": "/BlockfillsPool/",
|
|
1583
|
+
"tagNorm": "/blockfillspool/",
|
|
1584
|
+
"key": "blockfills",
|
|
1585
|
+
"name": "BlockFills"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"tag": "pool.bitcoin.com",
|
|
1589
|
+
"tagNorm": "pool.bitcoin.com",
|
|
1590
|
+
"key": "bitcoin.com",
|
|
1591
|
+
"name": "Bitcoin.com"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"tag": "Triplemining.com",
|
|
1595
|
+
"tagNorm": "triplemining.com",
|
|
1596
|
+
"key": "triplemining",
|
|
1597
|
+
"name": "TripleMining"
|
|
1598
|
+
},
|
|
1599
|
+
{
|
|
1600
|
+
"tag": "megabigpower.com",
|
|
1601
|
+
"tagNorm": "megabigpower.com",
|
|
1602
|
+
"key": "megabigpower",
|
|
1603
|
+
"name": "MegaBigPower"
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"tag": "Mined By AntPool",
|
|
1607
|
+
"tagNorm": "mined by antpool",
|
|
1608
|
+
"key": "antpool",
|
|
1609
|
+
"name": "AntPool"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"tag": "Mined by AntPool",
|
|
1613
|
+
"tagNorm": "mined by antpool",
|
|
1614
|
+
"key": "antpool",
|
|
1615
|
+
"name": "AntPool"
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"tag": "/NiceHashMining/",
|
|
1619
|
+
"tagNorm": "/nicehashmining/",
|
|
1620
|
+
"key": "nicehash",
|
|
1621
|
+
"name": "NiceHash"
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"tag": "/www.okpool.top/",
|
|
1625
|
+
"tagNorm": "/www.okpool.top/",
|
|
1626
|
+
"key": "okpool.top",
|
|
1627
|
+
"name": "okpool.top"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"tag": "Foundry USA Pool",
|
|
1631
|
+
"tagNorm": "foundry usa pool",
|
|
1632
|
+
"key": "foundry usa",
|
|
1633
|
+
"name": "Foundry USA"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"tag": "MARA Made in USA",
|
|
1637
|
+
"tagNorm": "mara made in usa",
|
|
1638
|
+
"key": "mara pool",
|
|
1639
|
+
"name": "MARA Pool"
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"tag": "BSquared Network",
|
|
1643
|
+
"tagNorm": "bsquared network",
|
|
1644
|
+
"key": "mining squared",
|
|
1645
|
+
"name": "Mining Squared"
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"tag": "/1THash&58COIN/",
|
|
1649
|
+
"tagNorm": "/1thash&58coin/",
|
|
1650
|
+
"key": "1thash",
|
|
1651
|
+
"name": "1THash"
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"tag": "/E2M & BTC.TOP/",
|
|
1655
|
+
"tagNorm": "/e2m & btc.top/",
|
|
1656
|
+
"key": "wayi.cn",
|
|
1657
|
+
"name": "WAYI.CN"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"tag": "/DCExploration/",
|
|
1661
|
+
"tagNorm": "/dcexploration/",
|
|
1662
|
+
"key": "dcexploration",
|
|
1663
|
+
"name": "DCExploration"
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"tag": "/Bitcoin-India/",
|
|
1667
|
+
"tagNorm": "/bitcoin-india/",
|
|
1668
|
+
"key": "bitcoin india",
|
|
1669
|
+
"name": "Bitcoin India"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"tag": "/Sigmapool.com/",
|
|
1673
|
+
"tagNorm": "/sigmapool.com/",
|
|
1674
|
+
"key": "sigmapool.com",
|
|
1675
|
+
"name": "Sigmapool.com"
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"tag": "okminer.com/euz",
|
|
1679
|
+
"tagNorm": "okminer.com/euz",
|
|
1680
|
+
"key": "okminer",
|
|
1681
|
+
"name": "OKMINER"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"tag": "st mining corp",
|
|
1685
|
+
"tagNorm": "st mining corp",
|
|
1686
|
+
"key": "st mining corp",
|
|
1687
|
+
"name": "ST Mining Corp"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"tag": "myBTCcoin Pool",
|
|
1691
|
+
"tagNorm": "mybtccoin pool",
|
|
1692
|
+
"key": "mybtccoin pool",
|
|
1693
|
+
"name": "myBTCcoin Pool"
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"tag": "/bravo-mining/",
|
|
1697
|
+
"tagNorm": "/bravo-mining/",
|
|
1698
|
+
"key": "bravo mining",
|
|
1699
|
+
"name": "Bravo Mining"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"tag": "/www.okex.com/",
|
|
1703
|
+
"tagNorm": "/www.okex.com/",
|
|
1704
|
+
"key": "okexpool",
|
|
1705
|
+
"name": "OKExPool"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"tag": "/WATERHOLE.IO/",
|
|
1709
|
+
"tagNorm": "/waterhole.io/",
|
|
1710
|
+
"key": "waterhole",
|
|
1711
|
+
"name": "Waterhole"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"tag": "/tigerpool.net",
|
|
1715
|
+
"tagNorm": "/tigerpool.net",
|
|
1716
|
+
"key": "tigerpool.net",
|
|
1717
|
+
"name": "tigerpool.net"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"tag": "/bytepool.com/",
|
|
1721
|
+
"tagNorm": "/bytepool.com/",
|
|
1722
|
+
"key": "bytepool",
|
|
1723
|
+
"name": "BytePool"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"tag": "/Minerium.com/",
|
|
1727
|
+
"tagNorm": "/minerium.com/",
|
|
1728
|
+
"key": "minerium",
|
|
1729
|
+
"name": "Minerium"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"tag": "/one_more_mcd/",
|
|
1733
|
+
"tagNorm": "/one_more_mcd/",
|
|
1734
|
+
"key": "emcdpool",
|
|
1735
|
+
"name": "EMCDPool"
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
"tag": "Emzy was here.",
|
|
1739
|
+
"tagNorm": "emzy was here.",
|
|
1740
|
+
"key": "emzy",
|
|
1741
|
+
"name": "emzy"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"tag": "/Mining-Dutch/",
|
|
1745
|
+
"tagNorm": "/mining-dutch/",
|
|
1746
|
+
"key": "mining-dutch",
|
|
1747
|
+
"name": "Mining-Dutch"
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
"tag": "Innopolis.tech",
|
|
1751
|
+
"tagNorm": "innopolis.tech",
|
|
1752
|
+
"key": "innopolis tech",
|
|
1753
|
+
"name": "Innopolis Tech"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"tag": "by polmine.pl",
|
|
1757
|
+
"tagNorm": "by polmine.pl",
|
|
1758
|
+
"key": "polmine",
|
|
1759
|
+
"name": "Polmine"
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"tag": "Give-Me-Coins",
|
|
1763
|
+
"tagNorm": "give-me-coins",
|
|
1764
|
+
"key": "give me coins",
|
|
1765
|
+
"name": "Give Me Coins"
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
"tag": "/NiceHashSolo",
|
|
1769
|
+
"tagNorm": "/nicehashsolo",
|
|
1770
|
+
"key": "nicehash",
|
|
1771
|
+
"name": "NiceHash"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"tag": "BTCChina Pool",
|
|
1775
|
+
"tagNorm": "btcchina pool",
|
|
1776
|
+
"key": "btcc",
|
|
1777
|
+
"name": "BTCC"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"tag": "/RigPool.com/",
|
|
1781
|
+
"tagNorm": "/rigpool.com/",
|
|
1782
|
+
"key": "rigpool",
|
|
1783
|
+
"name": "RigPool"
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"tag": "/Rawpool.com/",
|
|
1787
|
+
"tagNorm": "/rawpool.com/",
|
|
1788
|
+
"key": "rawpool",
|
|
1789
|
+
"name": "Rawpool"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"tag": "/PureBTC.COM/",
|
|
1793
|
+
"tagNorm": "/purebtc.com/",
|
|
1794
|
+
"key": "purebtc.com",
|
|
1795
|
+
"name": "PureBTC.COM"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"tag": "Portland.HODL",
|
|
1799
|
+
"tagNorm": "portland.hodl",
|
|
1800
|
+
"key": "portland.hodl",
|
|
1801
|
+
"name": "Portland.HODL"
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
"tag": "MiningSquared",
|
|
1805
|
+
"tagNorm": "miningsquared",
|
|
1806
|
+
"key": "mining squared",
|
|
1807
|
+
"name": "Mining Squared"
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"tag": "/braiinssolo/",
|
|
1811
|
+
"tagNorm": "/braiinssolo/",
|
|
1812
|
+
"key": "braiins solo",
|
|
1813
|
+
"name": "Braiins Solo"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
"tag": "/Noderunners/",
|
|
1817
|
+
"tagNorm": "/noderunners/",
|
|
1818
|
+
"key": "noderunners",
|
|
1819
|
+
"name": "Noderunners"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"tag": "terrapool.io",
|
|
1823
|
+
"tagNorm": "terrapool.io",
|
|
1824
|
+
"key": "terra pool",
|
|
1825
|
+
"name": "Terra Pool"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"tag": "triplemining",
|
|
1829
|
+
"tagNorm": "triplemining",
|
|
1830
|
+
"key": "triplemining",
|
|
1831
|
+
"name": "TripleMining"
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"tag": "/ckpool.org/",
|
|
1835
|
+
"tagNorm": "/ckpool.org/",
|
|
1836
|
+
"key": "ckpool",
|
|
1837
|
+
"name": "CKPool"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"tag": "BTCChina.com",
|
|
1841
|
+
"tagNorm": "btcchina.com",
|
|
1842
|
+
"key": "btcc",
|
|
1843
|
+
"name": "BTCC"
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"tag": "btcchina.com",
|
|
1847
|
+
"tagNorm": "btcchina.com",
|
|
1848
|
+
"key": "btcc",
|
|
1849
|
+
"name": "BTCC"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"tag": "Bitsolo Pool",
|
|
1853
|
+
"tagNorm": "bitsolo pool",
|
|
1854
|
+
"key": "bitsolo",
|
|
1855
|
+
"name": "Bitsolo"
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"tag": "/58coin.com/",
|
|
1859
|
+
"tagNorm": "/58coin.com/",
|
|
1860
|
+
"key": "58coin",
|
|
1861
|
+
"name": "58COIN"
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
"tag": "/lubian.com/",
|
|
1865
|
+
"tagNorm": "/lubian.com/",
|
|
1866
|
+
"key": "lubian.com",
|
|
1867
|
+
"name": "Lubian.com"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"tag": "/canoepool/",
|
|
1871
|
+
"tagNorm": "/canoepool/",
|
|
1872
|
+
"key": "canoepool",
|
|
1873
|
+
"name": "CanoePool"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"tag": "yourbtc.net",
|
|
1877
|
+
"tagNorm": "yourbtc.net",
|
|
1878
|
+
"key": "yourbtc.net",
|
|
1879
|
+
"name": "Yourbtc.net"
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"tag": "/BCMonster/",
|
|
1883
|
+
"tagNorm": "/bcmonster/",
|
|
1884
|
+
"key": "bcmonster",
|
|
1885
|
+
"name": "BCMonster"
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"tag": "/haozhuzhu/",
|
|
1889
|
+
"tagNorm": "/haozhuzhu/",
|
|
1890
|
+
"key": "haozhuzhu",
|
|
1891
|
+
"name": "HAOZHUZHU"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"tag": "/DPOOL.TOP/",
|
|
1895
|
+
"tagNorm": "/dpool.top/",
|
|
1896
|
+
"key": "dpool",
|
|
1897
|
+
"name": "DPOOL"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
"tag": "/poolin.com",
|
|
1901
|
+
"tagNorm": "/poolin.com",
|
|
1902
|
+
"key": "poolin",
|
|
1903
|
+
"name": "Poolin"
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
"tag": "/NovaBlock/",
|
|
1907
|
+
"tagNorm": "/novablock/",
|
|
1908
|
+
"key": "novablock",
|
|
1909
|
+
"name": "NovaBlock"
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"tag": "Public-Pool",
|
|
1913
|
+
"tagNorm": "public-pool",
|
|
1914
|
+
"key": "public pool",
|
|
1915
|
+
"name": "Public Pool"
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"tag": "/@nymkappa/",
|
|
1919
|
+
"tagNorm": "/@nymkappa/",
|
|
1920
|
+
"key": "nymkappa",
|
|
1921
|
+
"name": "nymkappa"
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"tag": "Luxor Tech",
|
|
1925
|
+
"tagNorm": "luxor tech",
|
|
1926
|
+
"key": "luxor",
|
|
1927
|
+
"name": "Luxor"
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"tag": "simplecoin",
|
|
1931
|
+
"tagNorm": "simplecoin",
|
|
1932
|
+
"key": "simplecoin.us",
|
|
1933
|
+
"name": "simplecoin.us"
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"tag": "bitparking",
|
|
1937
|
+
"tagNorm": "bitparking",
|
|
1938
|
+
"key": "bitparking",
|
|
1939
|
+
"name": "Bitparking"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"tag": "nmcbit.com",
|
|
1943
|
+
"tagNorm": "nmcbit.com",
|
|
1944
|
+
"key": "nmcbit",
|
|
1945
|
+
"name": "NMCbit"
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
"tag": "/NiceHash/",
|
|
1949
|
+
"tagNorm": "/nicehash/",
|
|
1950
|
+
"key": "nicehash",
|
|
1951
|
+
"name": "NiceHash"
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
"tag": "/phash.cn/",
|
|
1955
|
+
"tagNorm": "/phash.cn/",
|
|
1956
|
+
"key": "phash.io",
|
|
1957
|
+
"name": "PHash.IO"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"tag": "/phash.io/",
|
|
1961
|
+
"tagNorm": "/phash.io/",
|
|
1962
|
+
"key": "phash.io",
|
|
1963
|
+
"name": "PHash.IO"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"tag": "/haominer/",
|
|
1967
|
+
"tagNorm": "/haominer/",
|
|
1968
|
+
"key": "haominer",
|
|
1969
|
+
"name": "haominer"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"tag": "HummerPool",
|
|
1973
|
+
"tagNorm": "hummerpool",
|
|
1974
|
+
"key": "hummerpool",
|
|
1975
|
+
"name": "Hummerpool"
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"tag": "Hummerpool",
|
|
1979
|
+
"tagNorm": "hummerpool",
|
|
1980
|
+
"key": "hummerpool",
|
|
1981
|
+
"name": "Hummerpool"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
"tag": "/Tangpool/",
|
|
1985
|
+
"tagNorm": "/tangpool/",
|
|
1986
|
+
"key": "tangpool",
|
|
1987
|
+
"name": "Tangpool"
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"tag": "SpiderPool",
|
|
1991
|
+
"tagNorm": "spiderpool",
|
|
1992
|
+
"key": "spiderpool",
|
|
1993
|
+
"name": "SpiderPool"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"tag": "MiningCity",
|
|
1997
|
+
"tagNorm": "miningcity",
|
|
1998
|
+
"key": "miningcity",
|
|
1999
|
+
"name": "MiningCity"
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
"tag": "get___emcd",
|
|
2003
|
+
"tagNorm": "get___emcd",
|
|
2004
|
+
"key": "emcdpool",
|
|
2005
|
+
"name": "EMCDPool"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"tag": "SBI Crypto",
|
|
2009
|
+
"tagNorm": "sbi crypto",
|
|
2010
|
+
"key": "sbi crypto",
|
|
2011
|
+
"name": "SBI Crypto"
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"tag": "KuCoinPool",
|
|
2015
|
+
"tagNorm": "kucoinpool",
|
|
2016
|
+
"key": "kucoinpool",
|
|
2017
|
+
"name": "KuCoinPool"
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"tag": "/pegapool/",
|
|
2021
|
+
"tagNorm": "/pegapool/",
|
|
2022
|
+
"key": "pega pool",
|
|
2023
|
+
"name": "PEGA Pool"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"tag": "/MaxiPool/",
|
|
2027
|
+
"tagNorm": "/maxipool/",
|
|
2028
|
+
"key": "maxipool",
|
|
2029
|
+
"name": "MaxiPool"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"tag": "Lucky pool",
|
|
2033
|
+
"tagNorm": "lucky pool",
|
|
2034
|
+
"key": "gdpool",
|
|
2035
|
+
"name": "GDPool"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"tag": "/bsquared/",
|
|
2039
|
+
"tagNorm": "/bsquared/",
|
|
2040
|
+
"key": "mining squared",
|
|
2041
|
+
"name": "Mining Squared"
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"tag": "BTCLab.dev",
|
|
2045
|
+
"tagNorm": "btclab.dev",
|
|
2046
|
+
"key": "btclab",
|
|
2047
|
+
"name": "BTCLab"
|
|
2048
|
+
},
|
|
2049
|
+
{
|
|
2050
|
+
"tag": "/ultimus/",
|
|
2051
|
+
"tagNorm": "/ultimus/",
|
|
2052
|
+
"key": "ultimuspool",
|
|
2053
|
+
"name": "ULTIMUSPOOL"
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"tag": "/BTC.COM/",
|
|
2057
|
+
"tagNorm": "/btc.com/",
|
|
2058
|
+
"key": "btc.com",
|
|
2059
|
+
"name": "BTC.com"
|
|
2060
|
+
},
|
|
2061
|
+
{
|
|
2062
|
+
"tag": "/BTC.com/",
|
|
2063
|
+
"tagNorm": "/btc.com/",
|
|
2064
|
+
"key": "btc.com",
|
|
2065
|
+
"name": "BTC.com"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"tag": "/BTC.TOP/",
|
|
2069
|
+
"tagNorm": "/btc.top/",
|
|
2070
|
+
"key": "btc.top",
|
|
2071
|
+
"name": "BTC.TOP"
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"tag": "ASICMiner",
|
|
2075
|
+
"tagNorm": "asicminer",
|
|
2076
|
+
"key": "asicminer",
|
|
2077
|
+
"name": "ASICMiner"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"tag": "BitMinter",
|
|
2081
|
+
"tagNorm": "bitminter",
|
|
2082
|
+
"key": "bitminter",
|
|
2083
|
+
"name": "BitMinter"
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"tag": "BTC Guild",
|
|
2087
|
+
"tagNorm": "btc guild",
|
|
2088
|
+
"key": "btc guild",
|
|
2089
|
+
"name": "BTC Guild"
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"tag": "/AntPool/",
|
|
2093
|
+
"tagNorm": "/antpool/",
|
|
2094
|
+
"key": "antpool",
|
|
2095
|
+
"name": "AntPool"
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"tag": "bcpool.io",
|
|
2099
|
+
"tagNorm": "bcpool.io",
|
|
2100
|
+
"key": "bcpool.io",
|
|
2101
|
+
"name": "bcpool.io"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"tag": "cointerra",
|
|
2105
|
+
"tagNorm": "cointerra",
|
|
2106
|
+
"key": "cointerra",
|
|
2107
|
+
"name": "Cointerra"
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
"tag": "/BitFury/",
|
|
2111
|
+
"tagNorm": "/bitfury/",
|
|
2112
|
+
"key": "bitfury",
|
|
2113
|
+
"name": "BitFury"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"tag": "/Bitfury/",
|
|
2117
|
+
"tagNorm": "/bitfury/",
|
|
2118
|
+
"key": "bitfury",
|
|
2119
|
+
"name": "BitFury"
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"tag": "/Nexious/",
|
|
2123
|
+
"tagNorm": "/nexious/",
|
|
2124
|
+
"key": "nexious",
|
|
2125
|
+
"name": "Nexious"
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"tag": "/HotPool/",
|
|
2129
|
+
"tagNorm": "/hotpool/",
|
|
2130
|
+
"key": "hotpool",
|
|
2131
|
+
"name": "HotPool"
|
|
2132
|
+
},
|
|
2133
|
+
{
|
|
2134
|
+
"tag": "/BATPOOL/",
|
|
2135
|
+
"tagNorm": "/batpool/",
|
|
2136
|
+
"key": "batpool",
|
|
2137
|
+
"name": "BATPOOL"
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"tag": "/Binance/",
|
|
2141
|
+
"tagNorm": "/binance/",
|
|
2142
|
+
"key": "binance pool",
|
|
2143
|
+
"name": "Binance Pool"
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"tag": "/Buffett/",
|
|
2147
|
+
"tagNorm": "/buffett/",
|
|
2148
|
+
"key": "lubian.com",
|
|
2149
|
+
"name": "Lubian.com"
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"tag": "/AAOPOOL/",
|
|
2153
|
+
"tagNorm": "/aaopool/",
|
|
2154
|
+
"key": "aao pool",
|
|
2155
|
+
"name": "AAO Pool"
|
|
2156
|
+
},
|
|
2157
|
+
{
|
|
2158
|
+
"tag": "SBICrypto",
|
|
2159
|
+
"tagNorm": "sbicrypto",
|
|
2160
|
+
"key": "sbi crypto",
|
|
2161
|
+
"name": "SBI Crypto"
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"tag": "/ArkPool/",
|
|
2165
|
+
"tagNorm": "/arkpool/",
|
|
2166
|
+
"key": "arkpool",
|
|
2167
|
+
"name": "ArkPool"
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"tag": "MARA Pool",
|
|
2171
|
+
"tagNorm": "mara pool",
|
|
2172
|
+
"key": "mara pool",
|
|
2173
|
+
"name": "MARA Pool"
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"tag": "Entrustus",
|
|
2177
|
+
"tagNorm": "entrustus",
|
|
2178
|
+
"key": "entrust charity pool",
|
|
2179
|
+
"name": "Entrust Charity Pool"
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
"tag": "OCEAN.XYZ",
|
|
2183
|
+
"tagNorm": "ocean.xyz",
|
|
2184
|
+
"key": "ocean",
|
|
2185
|
+
"name": "OCEAN"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"tag": "WhitePool",
|
|
2189
|
+
"tagNorm": "whitepool",
|
|
2190
|
+
"key": "whitepool",
|
|
2191
|
+
"name": "WhitePool"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"tag": "FutureBit",
|
|
2195
|
+
"tagNorm": "futurebit",
|
|
2196
|
+
"key": "futurebit apollo solo",
|
|
2197
|
+
"name": "FutureBit Apollo Solo"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"tag": "/Phoenix/",
|
|
2201
|
+
"tagNorm": "/phoenix/",
|
|
2202
|
+
"key": "phoenix",
|
|
2203
|
+
"name": "Phoenix"
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
"tag": "/Neopool/",
|
|
2207
|
+
"tagNorm": "/neopool/",
|
|
2208
|
+
"key": "neopool",
|
|
2209
|
+
"name": "Neopool"
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
"tag": "DrDetroit",
|
|
2213
|
+
"tagNorm": "drdetroit",
|
|
2214
|
+
"key": "drdetroit",
|
|
2215
|
+
"name": "DrDetroit"
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"tag": "/BitFuFu/",
|
|
2219
|
+
"tagNorm": "/bitfufu/",
|
|
2220
|
+
"key": "bitfufupool",
|
|
2221
|
+
"name": "BitFuFuPool"
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
"tag": "Innopolis",
|
|
2225
|
+
"tagNorm": "innopolis",
|
|
2226
|
+
"key": "innopolis tech",
|
|
2227
|
+
"name": "Innopolis Tech"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"tag": "/Est3lar/",
|
|
2231
|
+
"tagNorm": "/est3lar/",
|
|
2232
|
+
"key": "est3lar",
|
|
2233
|
+
"name": "Est3lar"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"tag": "/1THash/",
|
|
2237
|
+
"tagNorm": "/1thash/",
|
|
2238
|
+
"key": "1thash",
|
|
2239
|
+
"name": "1THash"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"tag": "BITFARMS",
|
|
2243
|
+
"tagNorm": "bitfarms",
|
|
2244
|
+
"key": "bitfarms",
|
|
2245
|
+
"name": "Bitfarms"
|
|
2246
|
+
},
|
|
2247
|
+
{
|
|
2248
|
+
"tag": "ghash.io",
|
|
2249
|
+
"tagNorm": "ghash.io",
|
|
2250
|
+
"key": "ghash.io",
|
|
2251
|
+
"name": "GHash.IO"
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"tag": "KnCMiner",
|
|
2255
|
+
"tagNorm": "kncminer",
|
|
2256
|
+
"key": "kncminer",
|
|
2257
|
+
"name": "KnCMiner"
|
|
2258
|
+
},
|
|
2259
|
+
{
|
|
2260
|
+
"tag": "/pool34/",
|
|
2261
|
+
"tagNorm": "/pool34/",
|
|
2262
|
+
"key": "21 inc.",
|
|
2263
|
+
"name": "21 Inc."
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"tag": "/agentD/",
|
|
2267
|
+
"tagNorm": "/agentd/",
|
|
2268
|
+
"key": "digitalbtc",
|
|
2269
|
+
"name": "digitalBTC"
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"tag": "HASHPOOL",
|
|
2273
|
+
"tagNorm": "hashpool",
|
|
2274
|
+
"key": "hashpool",
|
|
2275
|
+
"name": "HASHPOOL"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"tag": "/HaoBTC/",
|
|
2279
|
+
"tagNorm": "/haobtc/",
|
|
2280
|
+
"key": "bixin",
|
|
2281
|
+
"name": "Bixin"
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
"tag": "/ViaBTC/",
|
|
2285
|
+
"tagNorm": "/viabtc/",
|
|
2286
|
+
"key": "viabtc",
|
|
2287
|
+
"name": "ViaBTC"
|
|
2288
|
+
},
|
|
2289
|
+
{
|
|
2290
|
+
"tag": "/BTPOOL/",
|
|
2291
|
+
"tagNorm": "/btpool/",
|
|
2292
|
+
"key": "btpool",
|
|
2293
|
+
"name": "BTPOOL"
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"tag": "/poolin/",
|
|
2297
|
+
"tagNorm": "/poolin/",
|
|
2298
|
+
"key": "poolin",
|
|
2299
|
+
"name": "Poolin"
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"tag": "Titan.io",
|
|
2303
|
+
"tagNorm": "titan.io",
|
|
2304
|
+
"key": "titan",
|
|
2305
|
+
"name": "Titan"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"tag": "ZULUPooL",
|
|
2309
|
+
"tagNorm": "zulupool",
|
|
2310
|
+
"key": "zulupool",
|
|
2311
|
+
"name": "Zulupool"
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"tag": "knorrium",
|
|
2315
|
+
"tagNorm": "knorrium",
|
|
2316
|
+
"key": "knorrium",
|
|
2317
|
+
"name": "knorrium"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"tag": "parasite",
|
|
2321
|
+
"tagNorm": "parasite",
|
|
2322
|
+
"key": "parasite",
|
|
2323
|
+
"name": "Parasite"
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"tag": "/LUXOR/",
|
|
2327
|
+
"tagNorm": "/luxor/",
|
|
2328
|
+
"key": "luxor",
|
|
2329
|
+
"name": "Luxor"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"tag": "/HuoBi/",
|
|
2333
|
+
"tagNorm": "/huobi/",
|
|
2334
|
+
"key": "huobi.pool",
|
|
2335
|
+
"name": "Huobi.pool"
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
"tag": "/Huobi/",
|
|
2339
|
+
"tagNorm": "/huobi/",
|
|
2340
|
+
"key": "huobi.pool",
|
|
2341
|
+
"name": "Huobi.pool"
|
|
2342
|
+
},
|
|
2343
|
+
{
|
|
2344
|
+
"tag": "/CANOE/",
|
|
2345
|
+
"tagNorm": "/canoe/",
|
|
2346
|
+
"key": "canoepool",
|
|
2347
|
+
"name": "CanoePool"
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
"tag": "/A-XBT/",
|
|
2351
|
+
"tagNorm": "/a-xbt/",
|
|
2352
|
+
"key": "a-xbt",
|
|
2353
|
+
"name": "A-XBT"
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"tag": "btcserv",
|
|
2357
|
+
"tagNorm": "btcserv",
|
|
2358
|
+
"key": "btcserv",
|
|
2359
|
+
"name": "BTCServ"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
"tag": "Eligius",
|
|
2363
|
+
"tagNorm": "eligius",
|
|
2364
|
+
"key": "eligius",
|
|
2365
|
+
"name": "Eligius"
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
"tag": "ozco.in",
|
|
2369
|
+
"tagNorm": "ozco.in",
|
|
2370
|
+
"key": "ozcoin",
|
|
2371
|
+
"name": "OzCoin"
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"tag": "CoinLab",
|
|
2375
|
+
"tagNorm": "coinlab",
|
|
2376
|
+
"key": "coinlab",
|
|
2377
|
+
"name": "CoinLab"
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
"tag": "bypmneU",
|
|
2381
|
+
"tagNorm": "bypmneu",
|
|
2382
|
+
"key": "polmine",
|
|
2383
|
+
"name": "Polmine"
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"tag": "/mtred/",
|
|
2387
|
+
"tagNorm": "/mtred/",
|
|
2388
|
+
"key": "mt red",
|
|
2389
|
+
"name": "Mt Red"
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"tag": "/slush/",
|
|
2393
|
+
"tagNorm": "/slush/",
|
|
2394
|
+
"key": "braiins pool",
|
|
2395
|
+
"name": "Braiins Pool"
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
"tag": "BW Pool",
|
|
2399
|
+
"tagNorm": "bw pool",
|
|
2400
|
+
"key": "bwpool",
|
|
2401
|
+
"name": "BWPool"
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"tag": "/Bixin/",
|
|
2405
|
+
"tagNorm": "/bixin/",
|
|
2406
|
+
"key": "bixin",
|
|
2407
|
+
"name": "Bixin"
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"tag": "--Nug--",
|
|
2411
|
+
"tagNorm": "--nug--",
|
|
2412
|
+
"key": "shawnp0wers",
|
|
2413
|
+
"name": "shawnp0wers"
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"tag": "/Helix/",
|
|
2417
|
+
"tagNorm": "/helix/",
|
|
2418
|
+
"key": "helix",
|
|
2419
|
+
"name": "Helix"
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"tag": "binance",
|
|
2423
|
+
"tagNorm": "binance",
|
|
2424
|
+
"key": "binance pool",
|
|
2425
|
+
"name": "Binance Pool"
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"tag": "ZU_test",
|
|
2429
|
+
"tagNorm": "zu_test",
|
|
2430
|
+
"key": "zulupool",
|
|
2431
|
+
"name": "Zulupool"
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"tag": "SecPool",
|
|
2435
|
+
"tagNorm": "secpool",
|
|
2436
|
+
"key": "secpool",
|
|
2437
|
+
"name": "SECPOOL"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"tag": "RedRock",
|
|
2441
|
+
"tagNorm": "redrock",
|
|
2442
|
+
"key": "redrock pool",
|
|
2443
|
+
"name": "RedRock Pool"
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
"tag": "est3lar",
|
|
2447
|
+
"tagNorm": "est3lar",
|
|
2448
|
+
"key": "est3lar",
|
|
2449
|
+
"name": "Est3lar"
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
"tag": "Est3lar",
|
|
2453
|
+
"tagNorm": "est3lar",
|
|
2454
|
+
"key": "est3lar",
|
|
2455
|
+
"name": "Est3lar"
|
|
2456
|
+
},
|
|
2457
|
+
{
|
|
2458
|
+
"tag": "EST3LAR",
|
|
2459
|
+
"tagNorm": "est3lar",
|
|
2460
|
+
"key": "est3lar",
|
|
2461
|
+
"name": "Est3lar"
|
|
2462
|
+
},
|
|
2463
|
+
{
|
|
2464
|
+
"tag": "btccom",
|
|
2465
|
+
"tagNorm": "btccom",
|
|
2466
|
+
"key": "btc.com",
|
|
2467
|
+
"name": "BTC.com"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"tag": "ozcoin",
|
|
2471
|
+
"tagNorm": "ozcoin",
|
|
2472
|
+
"key": "ozcoin",
|
|
2473
|
+
"name": "OzCoin"
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"tag": "MaxBTC",
|
|
2477
|
+
"tagNorm": "maxbtc",
|
|
2478
|
+
"key": "maxbtc",
|
|
2479
|
+
"name": "MaxBTC"
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"tag": "mmpool",
|
|
2483
|
+
"tagNorm": "mmpool",
|
|
2484
|
+
"key": "mmpool",
|
|
2485
|
+
"name": "mmpool"
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
"tag": "Bitalo",
|
|
2489
|
+
"tagNorm": "bitalo",
|
|
2490
|
+
"key": "bitalo",
|
|
2491
|
+
"name": "Bitalo"
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"tag": "F2Pool",
|
|
2495
|
+
"tagNorm": "f2pool",
|
|
2496
|
+
"key": "f2pool",
|
|
2497
|
+
"name": "F2Pool"
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"tag": "/BTCC/",
|
|
2501
|
+
"tagNorm": "/btcc/",
|
|
2502
|
+
"key": "btcc",
|
|
2503
|
+
"name": "BTCC"
|
|
2504
|
+
},
|
|
2505
|
+
{
|
|
2506
|
+
"tag": "BWPool",
|
|
2507
|
+
"tagNorm": "bwpool",
|
|
2508
|
+
"key": "bwpool",
|
|
2509
|
+
"name": "BWPool"
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"tag": "TBDice",
|
|
2513
|
+
"tagNorm": "tbdice",
|
|
2514
|
+
"key": "tbdice",
|
|
2515
|
+
"name": "TBDice"
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
"tag": "HAOBTC",
|
|
2519
|
+
"tagNorm": "haobtc",
|
|
2520
|
+
"key": "bixin",
|
|
2521
|
+
"name": "Bixin"
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"tag": "/DCEX/",
|
|
2525
|
+
"tagNorm": "/dcex/",
|
|
2526
|
+
"key": "dcex",
|
|
2527
|
+
"name": "DCEX"
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"tag": "/EMCD/",
|
|
2531
|
+
"tagNorm": "/emcd/",
|
|
2532
|
+
"key": "emcdpool",
|
|
2533
|
+
"name": "EMCDPool"
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"tag": "/2cDw/",
|
|
2537
|
+
"tagNorm": "/2cdw/",
|
|
2538
|
+
"key": "foundry usa",
|
|
2539
|
+
"name": "Foundry USA"
|
|
2540
|
+
},
|
|
2541
|
+
{
|
|
2542
|
+
"tag": "/@wiz/",
|
|
2543
|
+
"tagNorm": "/@wiz/",
|
|
2544
|
+
"key": "wiz",
|
|
2545
|
+
"name": "wiz"
|
|
2546
|
+
},
|
|
2547
|
+
{
|
|
2548
|
+
"tag": "Apollo",
|
|
2549
|
+
"tagNorm": "apollo",
|
|
2550
|
+
"key": "futurebit apollo solo",
|
|
2551
|
+
"name": "FutureBit Apollo Solo"
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"tag": "GDPool",
|
|
2555
|
+
"tagNorm": "gdpool",
|
|
2556
|
+
"key": "gdpool",
|
|
2557
|
+
"name": "GDPool"
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
"tag": "BTCLab",
|
|
2561
|
+
"tagNorm": "btclab",
|
|
2562
|
+
"key": "btclab",
|
|
2563
|
+
"name": "BTCLab"
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
"tag": "/DMND/",
|
|
2567
|
+
"tagNorm": "/dmnd/",
|
|
2568
|
+
"key": "dmnd",
|
|
2569
|
+
"name": "DMND"
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"tag": "50BTC",
|
|
2573
|
+
"tagNorm": "50btc",
|
|
2574
|
+
"key": "50btc",
|
|
2575
|
+
"name": "50BTC"
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"tag": "七彩神仙鱼",
|
|
2579
|
+
"tagNorm": "七彩神仙鱼",
|
|
2580
|
+
"key": "f2pool",
|
|
2581
|
+
"name": "F2Pool"
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
"tag": "EMC:",
|
|
2585
|
+
"tagNorm": "emc:",
|
|
2586
|
+
"key": "eclipsemc",
|
|
2587
|
+
"name": "EclipseMC"
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"tag": "HHTT",
|
|
2591
|
+
"tagNorm": "hhtt",
|
|
2592
|
+
"key": "hhtt",
|
|
2593
|
+
"name": "HHTT"
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
"tag": "Kano",
|
|
2597
|
+
"tagNorm": "kano",
|
|
2598
|
+
"key": "kanopool",
|
|
2599
|
+
"name": "KanoPool"
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
"tag": "emcd",
|
|
2603
|
+
"tagNorm": "emcd",
|
|
2604
|
+
"key": "emcdpool",
|
|
2605
|
+
"name": "EMCDPool"
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
"tag": "🐵🚀",
|
|
2609
|
+
"tagNorm": "🐵🚀",
|
|
2610
|
+
"key": "mononaut",
|
|
2611
|
+
"name": "mononaut"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"tag": "EMC ",
|
|
2615
|
+
"tagNorm": "emc",
|
|
2616
|
+
"key": "eclipsemc",
|
|
2617
|
+
"name": "EclipseMC"
|
|
2618
|
+
}
|
|
2619
|
+
]
|
|
2620
|
+
}
|