dubs-server 1.0.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.
Files changed (304) hide show
  1. package/.claude/settings.local.json +280 -0
  2. package/CLAUDE.md +46 -0
  3. package/CONNECT4_PRODUCTION_DEPLOY.md +155 -0
  4. package/CURRENT_SESSION.md +171 -0
  5. package/CURRENT_SESSION_DRAW.md +516 -0
  6. package/MARCH_MADNESS_SURVIVOR.md +254 -0
  7. package/PANDA.md +166 -0
  8. package/Procfile +4 -0
  9. package/README.md +476 -0
  10. package/controllers/livescoresController.js +376 -0
  11. package/controllers/pickemController.js +554 -0
  12. package/controllers/survivorAdminController.js +887 -0
  13. package/controllers/survivorController.js +623 -0
  14. package/cron/oracleMonitor.js +77 -0
  15. package/cron/pickemOracleMonitor.js +73 -0
  16. package/data/jackpot-history.json +952 -0
  17. package/data/ncaaTeams.js +406 -0
  18. package/documentation/API_SECURITY_GUIDE.md +327 -0
  19. package/documentation/ARCADE_API.md +593 -0
  20. package/documentation/ARCADE_IMPLEMENTATION_SUMMARY.md +399 -0
  21. package/documentation/ARCADE_QUICKSTART.md +242 -0
  22. package/documentation/AUTOMATIC_MODE_ORACLE.md +321 -0
  23. package/documentation/BUG_FIX_COHORT_DATE_DISPLAY.md +171 -0
  24. package/documentation/CLAIM_MIGRATION_INSTRUCTIONS.md +52 -0
  25. package/documentation/CLAIM_STATUS_FIX.md +67 -0
  26. package/documentation/CLI_TOOL_GUIDE.md +372 -0
  27. package/documentation/COHORT_RETENTION_ANALYSIS.md +295 -0
  28. package/documentation/COHORT_RETENTION_IMPLEMENTATION_COMPLETE.md +461 -0
  29. package/documentation/COHORT_RETENTION_SUMMARY.md +204 -0
  30. package/documentation/COMPLETE_PROJECT_SUMMARY.md +490 -0
  31. package/documentation/DATABASE_QUERIES.md +269 -0
  32. package/documentation/DATABASE_RETENTION_POLICY.md +390 -0
  33. package/documentation/DATABASE_SETUP_GUIDE.md +361 -0
  34. package/documentation/DATABASE_SETUP_SUMMARY.md +247 -0
  35. package/documentation/DEMO_API_CURL_COMMANDS.md +656 -0
  36. package/documentation/DEPLOYMENT_SUMMARY.txt +100 -0
  37. package/documentation/DUPLICATE_NOTIFICATIONS_FIXED.md +201 -0
  38. package/documentation/EXCHANGE_RATES_INTEGRATION.md +371 -0
  39. package/documentation/FINAL_API_PROTECTION_TABLE.md +175 -0
  40. package/documentation/GAME_START_NOTIFICATIONS_DEPLOYMENT.md +256 -0
  41. package/documentation/GAME_START_NOTIFICATIONS_INTEGRATION.md +275 -0
  42. package/documentation/HEROKU_DEPLOYMENT.md +134 -0
  43. package/documentation/HEROKU_SCHEDULER_SETUP.md +271 -0
  44. package/documentation/JACKPOT_API.md +521 -0
  45. package/documentation/JACKPOT_DEPLOYMENT_GUIDE.md +362 -0
  46. package/documentation/JWT_IMPLEMENTATION_SUMMARY.md +373 -0
  47. package/documentation/JWT_QUICK_SETUP.md +268 -0
  48. package/documentation/JWT_TESTING_GUIDE.md +404 -0
  49. package/documentation/KEEPER_RECOVERY_GUIDE.md +381 -0
  50. package/documentation/KEEPER_SETUP.md +206 -0
  51. package/documentation/KEEPER_STATE_MACHINE.md +423 -0
  52. package/documentation/LATEST_PRODUCTION_SETUP.md +387 -0
  53. package/documentation/LOCAL_VOTING_TEST.md +279 -0
  54. package/documentation/ORACLE_FIXES_SUMMARY.md +188 -0
  55. package/documentation/ORACLE_POSTGRESQL_UPDATE.md +202 -0
  56. package/documentation/PAYMENT_DEPLOYMENT.md +209 -0
  57. package/documentation/PNL_TRACKING_SETUP.md +189 -0
  58. package/documentation/PREVENTING_LOCKUP_ERRORS.md +472 -0
  59. package/documentation/PRODUCTION_READY_SUMMARY.md +227 -0
  60. package/documentation/PUBLIC_VS_PRIVATE_ENDPOINTS.md +278 -0
  61. package/documentation/QUICK_AUTH_SETUP.md +99 -0
  62. package/documentation/QUICK_DEPLOY.md +224 -0
  63. package/documentation/QUICK_FIX.md +114 -0
  64. package/documentation/QUICK_START.md +152 -0
  65. package/documentation/REFEREE_MODE_GUIDE.md +392 -0
  66. package/documentation/RETENTION_CORE_ACTION_UPDATE.md +313 -0
  67. package/documentation/RETENTION_UPDATE_SUMMARY.md +108 -0
  68. package/documentation/RUN_MIGRATION_NOW.md +39 -0
  69. package/documentation/SCRIPTS_UPDATE_SUMMARY.md +251 -0
  70. package/documentation/SETUP_GUIDE.md +184 -0
  71. package/documentation/STATE_MACHINE_IMPLEMENTATION.md +250 -0
  72. package/documentation/TELEGRAM_NOTIFICATIONS_DIAGNOSIS.md +361 -0
  73. package/documentation/UNIFIED_ARCHITECTURE.md +231 -0
  74. package/documentation/VOTING_DEPLOYMENT_SUMMARY.md +392 -0
  75. package/documentation/WEBSOCKET_ARCHITECTURE.md +881 -0
  76. package/documentation/WHAT_WE_BUILT_TODAY.md +369 -0
  77. package/documentation/latest/LATEST_PRODUCTION_SETUP.md +865 -0
  78. package/ecosystem.config.js +65 -0
  79. package/env.template +125 -0
  80. package/middleware/apiKeyAuth.js +136 -0
  81. package/middleware/authenticate.js +214 -0
  82. package/middleware/developerUserAuth.js +76 -0
  83. package/middleware/socketAuth.js +69 -0
  84. package/package.json +49 -0
  85. package/postman/Dubs-API-v1-With-Voting.postman_collection.json +555 -0
  86. package/postman/Dubs-API-v1.postman_collection.json +205 -0
  87. package/postman/Dubs_Developer_API.postman_collection.json +662 -0
  88. package/postman/QUICKSTART.md +118 -0
  89. package/postman/QUICK_REFERENCE.md +246 -0
  90. package/postman/README.md +71 -0
  91. package/postman/VOTING_API_GUIDE.md +426 -0
  92. package/refactor/Animations.md +148 -0
  93. package/refactor/Chat.md +252 -0
  94. package/routes/actionsRoutes.js +699 -0
  95. package/routes/adminRoutes.js +370 -0
  96. package/routes/analyticsRoutes.js +1262 -0
  97. package/routes/arcadeRoutes.js +557 -0
  98. package/routes/authRoutes.js +2310 -0
  99. package/routes/avatarRoutes.js +85 -0
  100. package/routes/botRoutes.js +211 -0
  101. package/routes/chatRoutes.js +377 -0
  102. package/routes/cryptoPriceRoutes.js +105 -0
  103. package/routes/developerRoutes.js +4201 -0
  104. package/routes/deviceRoutes.js +214 -0
  105. package/routes/dmRoutes.js +167 -0
  106. package/routes/esportsRoutes.js +806 -0
  107. package/routes/exchangeRateRoutes.js +233 -0
  108. package/routes/gamesRoutes.js +3028 -0
  109. package/routes/jackpotRoutes.js +754 -0
  110. package/routes/keeperMonitoringRoutes.js +156 -0
  111. package/routes/keeperWebhookRoutes.js +466 -0
  112. package/routes/livescoresRoutes.js +31 -0
  113. package/routes/pickemAdminRoutes.js +199 -0
  114. package/routes/pickemRoutes.js +231 -0
  115. package/routes/playerStatsRoutes.js +147 -0
  116. package/routes/portfolioRoutes.js +217 -0
  117. package/routes/promoRoutes.js +418 -0
  118. package/routes/referralEarningsRoutes.js +392 -0
  119. package/routes/socialRoutes.js +459 -0
  120. package/routes/sportsRoutes.js +1271 -0
  121. package/routes/survivorAdminRoutes.js +345 -0
  122. package/routes/survivorRoutes.js +756 -0
  123. package/routes/uploadRoutes.js +256 -0
  124. package/routes/userProfileRoutes.js +244 -0
  125. package/routes/whatsNewRoutes.js +331 -0
  126. package/scripts/.claude/settings.local.json +15 -0
  127. package/scripts/README.md +170 -0
  128. package/scripts/RESTART_EVERYTHING.sh +104 -0
  129. package/scripts/add-claim-columns.sql +48 -0
  130. package/scripts/add-crypto-prices-cache.sql +27 -0
  131. package/scripts/add-exchange-rates-cache.sql +40 -0
  132. package/scripts/add-game-invite-column.sql +23 -0
  133. package/scripts/add-game-invite-notification.sql +33 -0
  134. package/scripts/add-game-invite-telegram-pref.sql +16 -0
  135. package/scripts/add-game-joined-notification.sql +16 -0
  136. package/scripts/add-game-joined-pref.js +40 -0
  137. package/scripts/add-game-joined-preference.sql +6 -0
  138. package/scripts/add-game-start-notifications.sql +41 -0
  139. package/scripts/add-notification-flags-to-games.sql +55 -0
  140. package/scripts/add-pending-game-dismissals.sql +19 -0
  141. package/scripts/add-preferred-currency.sql +34 -0
  142. package/scripts/add-winner-columns.js +61 -0
  143. package/scripts/add_mention_system.sql +53 -0
  144. package/scripts/add_payment_system.sql +96 -0
  145. package/scripts/add_sports_event_id_column.sql +22 -0
  146. package/scripts/analyze-cohort-data-heroku.js +276 -0
  147. package/scripts/analyze-cohort-data.js +295 -0
  148. package/scripts/analyze-prod-cohorts.sh +10 -0
  149. package/scripts/backfill-matchup-images.js +245 -0
  150. package/scripts/backfill-missing-signatures.js +175 -0
  151. package/scripts/backfill-referral-earnings.js +202 -0
  152. package/scripts/check-chat-schema.js +130 -0
  153. package/scripts/check-db.sh +14 -0
  154. package/scripts/check_oracle_in_game.js +54 -0
  155. package/scripts/cleanup-database.js +193 -0
  156. package/scripts/clear-notification-cache.js +85 -0
  157. package/scripts/convert-mnemonic.js +50 -0
  158. package/scripts/create-users-table.sql +44 -0
  159. package/scripts/debug-cohort-counts.js +248 -0
  160. package/scripts/debug-winner-calc.js +84 -0
  161. package/scripts/deploy-payment-system.sh +118 -0
  162. package/scripts/deploy-to-heroku.sh +63 -0
  163. package/scripts/diagnose-locked-round.js +143 -0
  164. package/scripts/dubs-cli.js +720 -0
  165. package/scripts/dump-account.js +65 -0
  166. package/scripts/find-vrf-offset.js +48 -0
  167. package/scripts/fix-chat-notifications-constraint.sql +122 -0
  168. package/scripts/fix-claim-columns.js +124 -0
  169. package/scripts/fix-constraint-now.js +44 -0
  170. package/scripts/fix-lock-timestamps.js +96 -0
  171. package/scripts/fix-locked-round.sh +126 -0
  172. package/scripts/fix-missing-badges.sql +91 -0
  173. package/scripts/fix-payment-notifications.sql +41 -0
  174. package/scripts/force-new-round.js +55 -0
  175. package/scripts/force-resolve-and-claim.js +278 -0
  176. package/scripts/important/README.md +115 -0
  177. package/scripts/important/authority-force-lock.js +197 -0
  178. package/scripts/important/authority-resolve-game.js +267 -0
  179. package/scripts/important/check-game-status.js +373 -0
  180. package/scripts/important/list-pending-games-by-version.js +270 -0
  181. package/scripts/important/reconcile-v1-v2-payouts.js +270 -0
  182. package/scripts/initialize-jackpot.js +111 -0
  183. package/scripts/jackpot/.claude/settings.local.json +10 -0
  184. package/scripts/jackpot/force-reset.js +84 -0
  185. package/scripts/jackpot/initialize-mainnet.js +100 -0
  186. package/scripts/jackpot/keeper.js +742 -0
  187. package/scripts/jackpot/status.js +107 -0
  188. package/scripts/jackpot/update-round-duration.js +143 -0
  189. package/scripts/keeper-bot.js +112 -0
  190. package/scripts/list-pending-games.js +131 -0
  191. package/scripts/migrate-chat-v2.js +127 -0
  192. package/scripts/migrate-chat-winners.js +84 -0
  193. package/scripts/migrate-chat.sh +17 -0
  194. package/scripts/migrate-game-invite.js +83 -0
  195. package/scripts/migrate-heroku-game-notifications.sh +159 -0
  196. package/scripts/migrations/001_analytics_tables.sql +422 -0
  197. package/scripts/migrations/002_add_matchup_image_url.sql +14 -0
  198. package/scripts/migrations/003_referral_earnings.sql +208 -0
  199. package/scripts/migrations/004_add_whats_new_notification_type.sql +62 -0
  200. package/scripts/migrations/005_add_connect4_your_turn_notification.sql +61 -0
  201. package/scripts/migrations/005_push_notifications.sql +55 -0
  202. package/scripts/migrations/006_add_draw_team_players.sql +28 -0
  203. package/scripts/migrations/006_add_game_cancelled_notification.sql +62 -0
  204. package/scripts/migrations/007_add_gif_url.sql +8 -0
  205. package/scripts/migrations/008_add_connect4_columns.sql +139 -0
  206. package/scripts/migrations/008_add_pool_tracking.sql +22 -0
  207. package/scripts/migrations/009_create_survivor_pool_tables.sql +174 -0
  208. package/scripts/migrations/010_add_survivor_pool_outcome.sql +28 -0
  209. package/scripts/migrations/011_create_developer_tables.sql +67 -0
  210. package/scripts/migrations/011_fix_keeper_tables.sql +85 -0
  211. package/scripts/migrations/012_create_developer_webhooks.sql +31 -0
  212. package/scripts/migrations/013_add_network_mode.sql +18 -0
  213. package/scripts/migrations/014_create_developer_app_users.sql +19 -0
  214. package/scripts/migrations/015_add_ui_config.sql +4 -0
  215. package/scripts/migrations/016_add_resolution_secret.sql +4 -0
  216. package/scripts/migrations/017_add_external_game_id.sql +3 -0
  217. package/scripts/migrations/018_create_pickem_tables.sql +115 -0
  218. package/scripts/migrations/019_expo_push_tokens.sql +19 -0
  219. package/scripts/migrations/create_whats_new_tables.sql +88 -0
  220. package/scripts/migrations/drop_live_games_tables.sql +34 -0
  221. package/scripts/open-jackpot-round.js +85 -0
  222. package/scripts/purge-all-data.sh +329 -0
  223. package/scripts/purge-all-data.sql +142 -0
  224. package/scripts/purge-heroku-data.sh +149 -0
  225. package/scripts/purge-heroku-data.sql +62 -0
  226. package/scripts/rebuild-heroku-database.sh +113 -0
  227. package/scripts/recover-funds.js +357 -0
  228. package/scripts/regenerate-epl-images.js +278 -0
  229. package/scripts/resize-s3-matchup-images.js +374 -0
  230. package/scripts/resolve-direct.js +88 -0
  231. package/scripts/resolve-mock-game.js +124 -0
  232. package/scripts/resolve-pickem-game.js +55 -0
  233. package/scripts/resolve-round-manual.js +83 -0
  234. package/scripts/resolve-stuck-game.js +382 -0
  235. package/scripts/resolve-stuck-round.js +42 -0
  236. package/scripts/run-connect4-migration.sh +16 -0
  237. package/scripts/run-mention-migration.sh +32 -0
  238. package/scripts/run-payment-migration.sh +51 -0
  239. package/scripts/run-preferred-currency-migration.sh +31 -0
  240. package/scripts/run-referral-earnings-migration.sh +32 -0
  241. package/scripts/run-survivor-outcome-migration.sh +16 -0
  242. package/scripts/seed-test-users.js +346 -0
  243. package/scripts/setup-auth-tables.js +78 -0
  244. package/scripts/setup-complete-database.sql +992 -0
  245. package/scripts/setup-database-fresh.sh +359 -0
  246. package/scripts/setup-heroku-keeper.sh +48 -0
  247. package/scripts/setup-keeper-database.js +83 -0
  248. package/scripts/setup-keeper-state-db.sql +110 -0
  249. package/scripts/setup-oracle.sh +39 -0
  250. package/scripts/setup-pnl-tracking.js +111 -0
  251. package/scripts/start-devnet.sh +14 -0
  252. package/scripts/test-arcade-devnet.sh +160 -0
  253. package/scripts/test-arcade-match.sh +109 -0
  254. package/scripts/test-automatic-mode.sh +239 -0
  255. package/scripts/test-connect4-cancel-claim.js +370 -0
  256. package/scripts/test-connect4-e2e.js +369 -0
  257. package/scripts/test-connect4-resolve.js +369 -0
  258. package/scripts/test-game-state-endpoint.js +136 -0
  259. package/scripts/test-invite-notification.js +86 -0
  260. package/scripts/test-jackpot-api.sh +71 -0
  261. package/scripts/test-poll-confirmation.js +267 -0
  262. package/scripts/test-resolve-game.js +271 -0
  263. package/scripts/test-resolve-signature.js +223 -0
  264. package/scripts/test-signature-preservation.js +124 -0
  265. package/scripts/test-state-machine.js +291 -0
  266. package/scripts/test-webhook-receiver.js +60 -0
  267. package/scripts/update-notification-constraint.js +52 -0
  268. package/scripts/verify-account-layout.js +145 -0
  269. package/scripts/verify-winner-algorithm.js +278 -0
  270. package/server.js +5259 -0
  271. package/services/arcadeMatchService.js +763 -0
  272. package/services/automaticGameOracle.js +1596 -0
  273. package/services/chatService.js +1612 -0
  274. package/services/connect4GameService.js +1049 -0
  275. package/services/connect4NotificationService.js +374 -0
  276. package/services/cryptoPriceService.js +223 -0
  277. package/services/customGameResolver.js +260 -0
  278. package/services/db.js +79 -0
  279. package/services/directMessageService.js +389 -0
  280. package/services/discordNotifications.js +160 -0
  281. package/services/exchangeRateService.js +289 -0
  282. package/services/expoPushService.js +314 -0
  283. package/services/gamesCacheService.js +539 -0
  284. package/services/jackpotHistory.js +331 -0
  285. package/services/jackpotService.js +856 -0
  286. package/services/keeperStateService.js +355 -0
  287. package/services/matchupImageService.js +591 -0
  288. package/services/notificationCacheService.js +407 -0
  289. package/services/pickemOracle.js +440 -0
  290. package/services/playerStatsService.js +389 -0
  291. package/services/portfolioService.js +555 -0
  292. package/services/promoService.js +757 -0
  293. package/services/promoTreasuryService.js +239 -0
  294. package/services/pushNotifications.js +353 -0
  295. package/services/redisService.js +422 -0
  296. package/services/referralEarningsService.js +728 -0
  297. package/services/s3Service.js +396 -0
  298. package/services/socialService.js +1202 -0
  299. package/services/survivorOracle.js +469 -0
  300. package/services/survivorSimulator.js +475 -0
  301. package/services/telegramNotifications.js +461 -0
  302. package/services/userProfileStatsService.js +1185 -0
  303. package/services/whatsNewService.js +388 -0
  304. package/utils/urlHelper.js +95 -0
@@ -0,0 +1,952 @@
1
+ {
2
+ "rounds": [
3
+ {
4
+ "roundId": "77",
5
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
6
+ "winAmount": "28500000",
7
+ "totalPot": "30000000",
8
+ "entryCount": 3,
9
+ "timestamp": "2025-11-16T21:18:20.607Z",
10
+ "signature": "59tmFZV57LuHtKnBtA4CJ7mVmte1gasDxfXqsbt6mhKCFVhyg7UbzNxCe3TqDYjg1YhiLpYmLcapCHwxYRdsATpt",
11
+ "serverSeed": "370e13d2e884a75816ef27fb601788240eb3623f0b6186ad7aa38fedc14de070",
12
+ "serverSeedHash": "873728406de8ad4f8865492ec292e6d84ae7e8010d22775ffb0bbfbcaef5130f",
13
+ "oracleSeed": "dbf32b91984c96f513b3bc612218004b50c6eb9b8f834f2efcf7747117a0382b"
14
+ },
15
+ {
16
+ "roundId": "70",
17
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
18
+ "winAmount": "28500000",
19
+ "totalPot": "30000000",
20
+ "entryCount": 3,
21
+ "timestamp": "2025-11-16T21:10:56.833Z",
22
+ "signature": "3tGaqVJAGP8ygtw1b7vGcJUwuj52GfwjG2Tptq4gsucEgepgC1NEin4XQY3mCc9rsJWGNPrdrr4brU77Qb1n6eUT",
23
+ "serverSeed": null,
24
+ "serverSeedHash": null,
25
+ "oracleSeed": null
26
+ },
27
+ {
28
+ "roundId": "69",
29
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
30
+ "winAmount": "9500000",
31
+ "totalPot": "10000000",
32
+ "entryCount": 1,
33
+ "timestamp": "2025-11-16T21:09:48.373Z",
34
+ "signature": "3rqy3y4WcbxgRnq2ne38GyR2H2E33iVz8bkStmtAcuoa3oue2Dg2zqjNCQVHeYJTHGgcybN3iqNfRjqJkEGbNsLo",
35
+ "serverSeed": "1dc9a1d755a5a4911ffea77cb16e57bb9fc286e97422a48bd63ad33f6e13ed9e",
36
+ "serverSeedHash": "d07078be10f52bcaaf8aca7593192781353a73bdf6accd96e13a494a9944b01c",
37
+ "oracleSeed": "b5500aff0578123ade1682d355639830c760cfaee41c5cfddba55a5438f9c42d"
38
+ },
39
+ {
40
+ "roundId": "64",
41
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
42
+ "winAmount": "19000000",
43
+ "totalPot": "20000000",
44
+ "entryCount": 2,
45
+ "timestamp": "2025-11-16T21:04:29.838Z",
46
+ "signature": "2EqoNEHTyPMgmtmD9xovhu5kwBGrfU9oSBiVHh5S7x2PFK7hbooimpd6MeTBqoS7FWpyKassbV2jHwXspzyvjz76",
47
+ "serverSeed": null,
48
+ "serverSeedHash": null,
49
+ "oracleSeed": null
50
+ },
51
+ {
52
+ "roundId": "60",
53
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
54
+ "winAmount": "28500000",
55
+ "totalPot": "30000000",
56
+ "entryCount": 3,
57
+ "timestamp": "2025-11-16T21:00:17.440Z",
58
+ "signature": "4KMBerUt7PoBFF91UuX4d2PHXxQC1bSJFtpgBuEjmdeUZNkYCPCTd562nchxpC3CgCdpxEkZ8pmxWNxhrsqsuLma",
59
+ "serverSeed": "0174f2152e1861f4178c5ee8199932417a9d0e29bf8957d69babf114af3c64f4",
60
+ "serverSeedHash": "1d7c05e322f2d51c0f1cabb75cc955e817d7d930687361d014a2f2ac84d148fa",
61
+ "oracleSeed": "317a7f6a6043613ee48949b8f120c552aadd2953ff282d913b457de31f4e359b"
62
+ },
63
+ {
64
+ "roundId": "58",
65
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
66
+ "winAmount": "9500000",
67
+ "totalPot": "10000000",
68
+ "entryCount": 1,
69
+ "timestamp": "2025-11-16T20:58:06.341Z",
70
+ "signature": "2si5mo26ydMkgxgyWajX4JPjJRFR74FhVckhLfghN8ZXdvnXgwbmRjTvpT2eoPZDDDjDSK14AGcgBZ9aDdVR6qVh",
71
+ "serverSeed": "d739f53c58ab4c0d8c7513f2026bcafd510e6284104d35e206ac8c6c4ddf4eed",
72
+ "serverSeedHash": "4f422b6979898366d084b8f9bfea8a9687c4f5c7e76f4629c0c62ce2f29cf38d",
73
+ "oracleSeed": "643ff8f8118d36eb1af77bcbfc9a56dbc3698c5234897b7492d4612fcfea79b5"
74
+ },
75
+ {
76
+ "roundId": "56",
77
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
78
+ "winAmount": "57009500",
79
+ "totalPot": "60010000",
80
+ "entryCount": 3,
81
+ "timestamp": "2025-11-16T20:55:55.458Z",
82
+ "signature": "543YyjtPuAhMswK7QiPKohR6Js5fDEjybCwmQuvdHFeJWq4PLZogv1hjF11jLJQUwVBA4XXSvszxSYDMw7uZ8WDe",
83
+ "serverSeed": "3315c1a6138a3e541599f2c60b0ccfa9278626ec025a6c43ec7f2d558f610feb",
84
+ "serverSeedHash": "a489d752fc0a15e098a207e85f917640e18a0c73885bc8ec7ee98f55224f3813",
85
+ "oracleSeed": "a262d524734ffdfb3268d5a47fddae1070dfda20bb14a2e7ce42f3622099f6ca"
86
+ },
87
+ {
88
+ "roundId": "55",
89
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
90
+ "winAmount": "9500000",
91
+ "totalPot": "10000000",
92
+ "entryCount": 1,
93
+ "timestamp": "2025-11-16T20:54:42.463Z",
94
+ "signature": "5a1DQrjpyzySfKnBHCWdvnJvawMTQxhiaBLj3uEEUjiVUoD8RBYSLdBWvLSegzgo8UQmJCY3XJXKyv33YV2erpKy",
95
+ "serverSeed": "d98a735892a39dba75fa49865c3fc3c96439fdf53719d565a46565e73f431fc1",
96
+ "serverSeedHash": "2e718b6af4e10a2b480202669500a48fd40edef4a7de97e3e0cf675a635eae68",
97
+ "oracleSeed": "d4d303cc9e18397364a9410c01fde19ea991950c01912ef0849b8d7e3d9b5251"
98
+ },
99
+ {
100
+ "roundId": "49",
101
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
102
+ "winAmount": "9500000",
103
+ "totalPot": "10000000",
104
+ "entryCount": 1,
105
+ "timestamp": "2025-11-16T20:48:19.801Z",
106
+ "signature": "GJZ3NmHzP4TsXRKjTFRpDhctKvFgNRERHkXD55cusFreM2YDbnJt6EWcfiULhA3uxwzxCY8Xywjucd2QJwYbgu3",
107
+ "serverSeed": "2fd501626893dd84c2af69eccee7d0e361dbc07d49720c98f1134b26268cd0a2",
108
+ "serverSeedHash": "28db41c72d8983290b2cd35c7fcc49adfa8cabdbfdad821fe997067833bf8ce1",
109
+ "oracleSeed": "227c9b3d6fcae7e48bfd55e93618ca16a3ee9e85ef2b1d6b6cab39dece9ce0b6"
110
+ },
111
+ {
112
+ "roundId": "45",
113
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
114
+ "winAmount": "19000000",
115
+ "totalPot": "20000000",
116
+ "entryCount": 2,
117
+ "timestamp": "2025-11-16T20:43:58.186Z",
118
+ "signature": "86R66KM9bJ8uWe6wKwS548HmbFVhDeN5MUaVyFqSVczpjk9Egcu5puHL3786Y7Ac3dAb3xCfP4GmGoe3bbGcNzA",
119
+ "serverSeed": null,
120
+ "serverSeedHash": null,
121
+ "oracleSeed": null
122
+ },
123
+ {
124
+ "roundId": "35",
125
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
126
+ "winAmount": "9500000",
127
+ "totalPot": "10000000",
128
+ "entryCount": 1,
129
+ "timestamp": "2025-11-16T20:33:19.907Z",
130
+ "signature": "3CTzJAzqywddPJvs9FR1YZPdH2kDqrCGQ5GiYL7R33HZHTGDN3RkEaQ3bxHJVjWcTWupwrAzAXYCox9ZKYkHptJ5",
131
+ "serverSeed": "676f28b9ae096f7a5e668319d7dc74123af82bc7dbd0ea4b6d49fef850df6a1a",
132
+ "serverSeedHash": "f787b2aad83a764accf6161284ad3a9661a237cc9642524b8728d26f0aba0003",
133
+ "oracleSeed": "ef634a567610a43f70f0447bd05f69eab49fcd4da9c6e8c4e4c1642c1518add9"
134
+ },
135
+ {
136
+ "roundId": "33",
137
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
138
+ "winAmount": "19000000",
139
+ "totalPot": "20000000",
140
+ "entryCount": 2,
141
+ "timestamp": "2025-11-16T20:31:03.772Z",
142
+ "signature": "Dpe3uNuYyv7dbEiYAc2z7qhMSUdgAHESVx1Mo5vrJM7u3W4pTvgF6giLvwekhSVavvcC9B6M5f1xb6cYnPyMi5u",
143
+ "serverSeed": null,
144
+ "serverSeedHash": null,
145
+ "oracleSeed": null
146
+ },
147
+ {
148
+ "roundId": "2",
149
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
150
+ "winAmount": "28500000",
151
+ "totalPot": "30000000",
152
+ "entryCount": 3,
153
+ "timestamp": "2025-11-16T19:57:05.504Z",
154
+ "signature": "2q67KMPj9dNvkCwGLgSXAshzpWX4aZzamqMVDFzSPxeGd8X3JNMtW4UuFHib49oKnBcCZBWNsnzzTPcgHiYGv9Ee",
155
+ "serverSeed": "366c40161c44182d3ea3c69f3efbe7d23c77d024b73fe5108517234b49e25ef4",
156
+ "serverSeedHash": "4ee7ec212c5c658495c1dfc8dd9c18eb7f85ab89f0c5a6e8e41ff153d5134c80",
157
+ "oracleSeed": "1e003f1280d2b8fbbd930af479d59b61dc134a61b1380c898fc2d6800dacd713"
158
+ },
159
+ {
160
+ "roundId": "60",
161
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
162
+ "winAmount": "9500000",
163
+ "totalPot": "10000000",
164
+ "entryCount": 1,
165
+ "timestamp": "2025-11-16T03:25:12.572Z",
166
+ "signature": "vyZXAXvPBwJHZyYSKoUoc9qtvPm8p22DuyGHHceAdR2V8JM5ZpzQvHLcGcRQpqRiRvtPuQJnwWBj6vUqxa1n7Wo",
167
+ "serverSeed": "efd44f027a05f2d2b6dae810546b14669192f8a7edeaa460928568904e231133",
168
+ "serverSeedHash": "ea26a83901a37056a24f486ffc260556f90767ea8aae4cdccbe5052152f8a1a9",
169
+ "oracleSeed": "e68bbfd214a79e144c648ce8880c5252bfb59770c93bc11a4516dab1c76068a3"
170
+ },
171
+ {
172
+ "roundId": "57",
173
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
174
+ "winAmount": "19000000",
175
+ "totalPot": "20000000",
176
+ "entryCount": 2,
177
+ "timestamp": "2025-11-16T03:21:53.741Z",
178
+ "signature": "3G6yhgmdgsVSBrR83zJs7oiNWWX3zgsC9TsEevy9T4fbhcKCzTiGqCf4mrqYNTVnQ6Jo2mTeFhmDaJai5MHY6oSn",
179
+ "serverSeed": "b1ee81b97485d848ad8371c3faec7c793f0121c719537abf45ded5479a1cb0fd",
180
+ "serverSeedHash": "6bdcc7ebb5bc5d1d2e657b724a8444a63834dce0f8eb75c3b37ea9898b9df339",
181
+ "oracleSeed": "a183c81f86905d32705cf1d11d6fbed534f9c1e2789cbff2ca476f4680e8fa97"
182
+ },
183
+ {
184
+ "roundId": "56",
185
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
186
+ "winAmount": "28500000",
187
+ "totalPot": "30000000",
188
+ "entryCount": 3,
189
+ "timestamp": "2025-11-16T03:20:42.308Z",
190
+ "signature": "3w22PReK6zD5nhALXBSELC6swBnS18coQuQBpxmouDfcufEdoG6pEfioCZ4WcALmYNHAfFmX3EPSdeQdmupa1EHX",
191
+ "serverSeed": "272797fa62a36304891022d2fff93960294f44b2dd8c11046b367edcc61b1135",
192
+ "serverSeedHash": "7d5bee0334e1b05f709e92d42fcdf044c57e3817cef841eb4a3b6da2937fc5b5",
193
+ "oracleSeed": "c990bc874d3d3539d6d927c983b7011b7498ca3b9178238fd684b6e9f9c9ea05"
194
+ },
195
+ {
196
+ "roundId": "52",
197
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
198
+ "winAmount": "28500000",
199
+ "totalPot": "30000000",
200
+ "entryCount": 3,
201
+ "timestamp": "2025-11-16T03:15:41.870Z",
202
+ "signature": "5HtJJkgh7zMUWL6zP5otTv5CWjMS6Yikkz2RZsijLs9yaAUFjhDnWm7QT69LJT2EcgWWb6qJ1mmRfEp1ifF1nyZW",
203
+ "serverSeed": null,
204
+ "serverSeedHash": null,
205
+ "oracleSeed": null
206
+ },
207
+ {
208
+ "roundId": "52",
209
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
210
+ "winAmount": "28500000",
211
+ "totalPot": "30000000",
212
+ "entryCount": 3,
213
+ "timestamp": "2025-11-16T03:15:30.045Z",
214
+ "signature": "2uNpY7CWey3iFj8h5hkU7F5PsQDFUjDqqyVj1ViPVnWQpDnnHzJF4DxCCzLxrUWGMZbP9VLsFMBWg9WTUufd4uHa",
215
+ "serverSeed": null,
216
+ "serverSeedHash": null,
217
+ "oracleSeed": null
218
+ },
219
+ {
220
+ "roundId": "52",
221
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
222
+ "winAmount": "28500000",
223
+ "totalPot": "30000000",
224
+ "entryCount": 3,
225
+ "timestamp": "2025-11-16T03:15:15.818Z",
226
+ "signature": "5wzxnaRjMQpdh2dznHYK8Q5V6FDZeKQAjeEeTagrX3JzmvMc5J19zHhhbqjzn4ckUr3Ts4qYKAkeBZZqNXScroJy",
227
+ "serverSeed": null,
228
+ "serverSeedHash": null,
229
+ "oracleSeed": null
230
+ },
231
+ {
232
+ "roundId": "52",
233
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
234
+ "winAmount": "28500000",
235
+ "totalPot": "30000000",
236
+ "entryCount": 3,
237
+ "timestamp": "2025-11-16T03:15:03.897Z",
238
+ "signature": "3REFrSGnpDV743uB6biQkFVhSjEPfPEuxS6TLoEyabmxPPoFoGwSbXJSCztBCs863hvbuFuUbvVLzUPjUcrJsmEm",
239
+ "serverSeed": null,
240
+ "serverSeedHash": null,
241
+ "oracleSeed": null
242
+ },
243
+ {
244
+ "roundId": "52",
245
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
246
+ "winAmount": "28500000",
247
+ "totalPot": "30000000",
248
+ "entryCount": 3,
249
+ "timestamp": "2025-11-16T03:14:52.672Z",
250
+ "signature": "vJJPXppxg3Qyc837P3UQuiTZ1jQFr2LnqRAAut1ae6XBEJH5eAfBfvcqcTy5NzazzNDp9aH5CM9nPWCYBPXFWUB",
251
+ "serverSeed": null,
252
+ "serverSeedHash": null,
253
+ "oracleSeed": null
254
+ },
255
+ {
256
+ "roundId": "52",
257
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
258
+ "winAmount": "28500000",
259
+ "totalPot": "30000000",
260
+ "entryCount": 3,
261
+ "timestamp": "2025-11-16T03:14:41.246Z",
262
+ "signature": "323fRHpDx8ADbPtkJ4NUoneRVCbWojaBN9nG6CufjJksk7QgaQAsMRfXAvMRXjwGwrFhJJggR5T9iwmKDnfLsKRG",
263
+ "serverSeed": "56075b6b427d0535e843697a6fc2a1380c4b1b1923a10b418a093c62bd0a54c7",
264
+ "serverSeedHash": "13e10ff6e7daffc6e0276359e3be4f52f30e51707193f2ca97d826418a1bd9ac",
265
+ "oracleSeed": "2897f1bbcfb640f6d9786ba6d803b9a05bd96575b9e693ab63a046c84a23842b"
266
+ },
267
+ {
268
+ "roundId": "51",
269
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
270
+ "winAmount": "28500000",
271
+ "totalPot": "30000000",
272
+ "entryCount": 3,
273
+ "timestamp": "2025-11-16T03:13:33.381Z",
274
+ "signature": "x18qzBCVBAVHJKN7XAou22f1yewR3jUDUWDQE4wBEtyWmHZMhDrvfnVFuGu389TZTTyrq7LhBrSCgdu8X2dBcaq",
275
+ "serverSeed": "b615a5465c56e73f67339159ad7afb3b64773fc2e217e4dc8680e3da1604ac5a",
276
+ "serverSeedHash": "cd24b981ffaaa58e3b8503e40aa0d490884cfd28d7389bcb06cd9281379a6096",
277
+ "oracleSeed": "259fe9af4ab8afca51da86e6a7f52b5287cdef2b4f35a7eb7de2a69e977a0ffe"
278
+ },
279
+ {
280
+ "roundId": "50",
281
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
282
+ "winAmount": "47519000",
283
+ "totalPot": "50020000",
284
+ "entryCount": 3,
285
+ "timestamp": "2025-11-16T03:12:22.082Z",
286
+ "signature": "5JSz3mXMQT7KwgFkfuRAZU2VVhTgRdMpAbGNkGZUovgY5YjJEZmP6YqFcyCMRFmS47Tthw1kErmv1ow8ERBs8QX8",
287
+ "serverSeed": null,
288
+ "serverSeedHash": null,
289
+ "oracleSeed": null
290
+ },
291
+ {
292
+ "roundId": "50",
293
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
294
+ "winAmount": "47519000",
295
+ "totalPot": "50020000",
296
+ "entryCount": 3,
297
+ "timestamp": "2025-11-16T03:12:10.588Z",
298
+ "signature": "2xwVcnExYaxr2jBsVGaBUNbYWmsXPWTEPE8E7gJWWBENSmYzQN8XCd6aB1bVV73xp2sfj7riqAx7r9RNwtbTvH9F",
299
+ "serverSeed": null,
300
+ "serverSeedHash": null,
301
+ "oracleSeed": null
302
+ },
303
+ {
304
+ "roundId": "50",
305
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
306
+ "winAmount": "47519000",
307
+ "totalPot": "50020000",
308
+ "entryCount": 3,
309
+ "timestamp": "2025-11-16T03:11:59.365Z",
310
+ "signature": "KoUWmG6aDYjmrxHGkQm8vXLto78Bcx9SiMKiC7MBQv51tyWccidnmiUHjqrjUVRk2xX91nE9JqykonF56SbtKoZ",
311
+ "serverSeed": null,
312
+ "serverSeedHash": null,
313
+ "oracleSeed": null
314
+ },
315
+ {
316
+ "roundId": "50",
317
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
318
+ "winAmount": "47519000",
319
+ "totalPot": "50020000",
320
+ "entryCount": 3,
321
+ "timestamp": "2025-11-16T03:11:48.243Z",
322
+ "signature": "5tKMyBWKZZpb315CMHkX6qitzhP8WZEyMUux4U7NXKJ1pXQu4EvQDdmb1dgeQck5Kn2hcWjYNmVfLAR6a1Ljcw9e",
323
+ "serverSeed": null,
324
+ "serverSeedHash": null,
325
+ "oracleSeed": null
326
+ },
327
+ {
328
+ "roundId": "50",
329
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
330
+ "winAmount": "47519000",
331
+ "totalPot": "50020000",
332
+ "entryCount": 3,
333
+ "timestamp": "2025-11-16T03:11:25.687Z",
334
+ "signature": "5XNTnjxkHB8cj6xx2mYuCsyrgdMJSfnVxmjWx2af7f5VZdBPKtPggE6rApay8QUh3mNoSRWRvWA8q8x2jR3YFP3Q",
335
+ "serverSeed": null,
336
+ "serverSeedHash": null,
337
+ "oracleSeed": null
338
+ },
339
+ {
340
+ "roundId": "50",
341
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
342
+ "winAmount": "47519000",
343
+ "totalPot": "50020000",
344
+ "entryCount": 3,
345
+ "timestamp": "2025-11-16T03:11:14.089Z",
346
+ "signature": "41uxCzo1jJxJvjwFPCQfTwSuHNspAmKB83GaLoZycmbbjo6Ezd5879c43Z3z7w8PEoxHxpeBPJQYLJLcDC3hrUcX",
347
+ "serverSeed": null,
348
+ "serverSeedHash": null,
349
+ "oracleSeed": null
350
+ },
351
+ {
352
+ "roundId": "50",
353
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
354
+ "winAmount": "47519000",
355
+ "totalPot": "50020000",
356
+ "entryCount": 3,
357
+ "timestamp": "2025-11-16T03:11:02.530Z",
358
+ "signature": "56hX6SsPji4soSnnRDXevr9r55Xcw8b4k2KbdUwDzV4DoqVXcegz5PjnSWvzGs3bNFyt531aAiavD4NDZ3SGUTzp",
359
+ "serverSeed": null,
360
+ "serverSeedHash": null,
361
+ "oracleSeed": null
362
+ },
363
+ {
364
+ "roundId": "50",
365
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
366
+ "winAmount": "47519000",
367
+ "totalPot": "50020000",
368
+ "entryCount": 3,
369
+ "timestamp": "2025-11-16T03:10:51.201Z",
370
+ "signature": "2FU12qTKw4m5Z41HmWTrHBRqbbKafZgTw58bSfJYadDGoBobN9w7QR5GToTHSbJL59KdWP7sS7dXNfgmL3xGuJ6S",
371
+ "serverSeed": null,
372
+ "serverSeedHash": null,
373
+ "oracleSeed": null
374
+ },
375
+ {
376
+ "roundId": "50",
377
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
378
+ "winAmount": "47519000",
379
+ "totalPot": "50020000",
380
+ "entryCount": 3,
381
+ "timestamp": "2025-11-16T03:10:39.876Z",
382
+ "signature": "631ceVQpcHhDAWVhD8ziqX4YEixprAACQNBU37vc1tcsMWXJVRACeMNrYLsLV5d5AS9APReEX6JKEcBCUAXKwxYu",
383
+ "serverSeed": null,
384
+ "serverSeedHash": null,
385
+ "oracleSeed": null
386
+ },
387
+ {
388
+ "roundId": "50",
389
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
390
+ "winAmount": "47519000",
391
+ "totalPot": "50020000",
392
+ "entryCount": 3,
393
+ "timestamp": "2025-11-16T03:10:28.448Z",
394
+ "signature": "2QEdYnxTxsECo1KXbwPXgcB4yMLcSkqGoRFWErMnyedzzxFixuUNJcce1ijgpLUjMmBsNrVEdnyXiE8smoV2DWcT",
395
+ "serverSeed": null,
396
+ "serverSeedHash": null,
397
+ "oracleSeed": null
398
+ },
399
+ {
400
+ "roundId": "50",
401
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
402
+ "winAmount": "47519000",
403
+ "totalPot": "50020000",
404
+ "entryCount": 3,
405
+ "timestamp": "2025-11-16T03:10:17.021Z",
406
+ "signature": "4jjoF52x9yaahNKnuJKkzWwhMzZJ5dANZkJc7MJJSkpqtAmfSrKicwKiEUNy9hngGfUkvTjqYe8EZaR4drU5BHHs",
407
+ "serverSeed": null,
408
+ "serverSeedHash": null,
409
+ "oracleSeed": null
410
+ },
411
+ {
412
+ "roundId": "50",
413
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
414
+ "winAmount": "47519000",
415
+ "totalPot": "50020000",
416
+ "entryCount": 3,
417
+ "timestamp": "2025-11-16T03:10:05.895Z",
418
+ "signature": "5whHkGWF9EeTJsdbUSnzHP4ms3VoRvzbarBjpMmxbPvDUTCcYXotiCCYTd8c7DJ6CAZLh2sLwvX5NnFSCVBA7stx",
419
+ "serverSeed": null,
420
+ "serverSeedHash": null,
421
+ "oracleSeed": null
422
+ },
423
+ {
424
+ "roundId": "50",
425
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
426
+ "winAmount": "47519000",
427
+ "totalPot": "50020000",
428
+ "entryCount": 3,
429
+ "timestamp": "2025-11-16T03:09:51.560Z",
430
+ "signature": "5V8eBDRz7i8bBs3rJxzL82hocGqS2ux4jS9nosWXGHb8D7qjxtnDoymwpdXDbh6b7wyfmSxUhAYCMf5hCHK1wsNB",
431
+ "serverSeed": null,
432
+ "serverSeedHash": null,
433
+ "oracleSeed": null
434
+ },
435
+ {
436
+ "roundId": "50",
437
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
438
+ "winAmount": "47519000",
439
+ "totalPot": "50020000",
440
+ "entryCount": 3,
441
+ "timestamp": "2025-11-16T03:09:39.935Z",
442
+ "signature": "4teh9Bo4ruRZVoY7kRAGq5Hs7YVAHV9cfm61UjcriSgbCRNDozXtWEGK2FUdrmoxTX9d4hTfErVRkpjr5DotnYth",
443
+ "serverSeed": null,
444
+ "serverSeedHash": null,
445
+ "oracleSeed": null
446
+ },
447
+ {
448
+ "roundId": "50",
449
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
450
+ "winAmount": "47519000",
451
+ "totalPot": "50020000",
452
+ "entryCount": 3,
453
+ "timestamp": "2025-11-16T03:09:28.108Z",
454
+ "signature": "4rS8e2VRc6izyDzsgepvjKYPMBtsShPjHBw1YEPQMBJmumfFxcaMzjsVn3kwTd3hjm9azhJHHytLerd412eqUxax",
455
+ "serverSeed": null,
456
+ "serverSeedHash": null,
457
+ "oracleSeed": null
458
+ },
459
+ {
460
+ "roundId": "50",
461
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
462
+ "winAmount": "47519000",
463
+ "totalPot": "50020000",
464
+ "entryCount": 3,
465
+ "timestamp": "2025-11-16T03:09:16.333Z",
466
+ "signature": "t8cWqyFD2Frp5NhZHcaZBqDEdC7p75hof3YpkiMZdnwR4nGDmaNWfPNTSnPyFA1LaBqhwyXaW7XDp91HEdUxvCE",
467
+ "serverSeed": null,
468
+ "serverSeedHash": null,
469
+ "oracleSeed": null
470
+ },
471
+ {
472
+ "roundId": "50",
473
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
474
+ "winAmount": "47519000",
475
+ "totalPot": "50020000",
476
+ "entryCount": 3,
477
+ "timestamp": "2025-11-16T03:09:04.550Z",
478
+ "signature": "MQXQxnUruTjo9zokYjoYr1Kqd6puKqJ4cs3kfLVn7uGzrcWGQmdc1XF3BUMBaXP2jUancRsAZkhaBSQVsyD6p77",
479
+ "serverSeed": null,
480
+ "serverSeedHash": null,
481
+ "oracleSeed": null
482
+ },
483
+ {
484
+ "roundId": "50",
485
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
486
+ "winAmount": "47519000",
487
+ "totalPot": "50020000",
488
+ "entryCount": 3,
489
+ "timestamp": "2025-11-16T03:08:52.983Z",
490
+ "signature": "4tcEEH2oawgcGjbMcKWvn2RMrBWJxyRcU6PwEQMMg7AnBJs69TY5JdLN5MKZGmAp9n7WZ2QcCeq3KAdLEWjKRhoM",
491
+ "serverSeed": null,
492
+ "serverSeedHash": null,
493
+ "oracleSeed": null
494
+ },
495
+ {
496
+ "roundId": "50",
497
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
498
+ "winAmount": "47519000",
499
+ "totalPot": "50020000",
500
+ "entryCount": 3,
501
+ "timestamp": "2025-11-16T03:08:41.199Z",
502
+ "signature": "22sefrfUTBv2mfaGjfu3jB3JwAy3KUV7PJr8HrjPqBXfpS6UaTzg5sJMRjVTopSi2s5eumhmDD5Khvpwpy3ENv4N",
503
+ "serverSeed": null,
504
+ "serverSeedHash": null,
505
+ "oracleSeed": null
506
+ },
507
+ {
508
+ "roundId": "50",
509
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
510
+ "winAmount": "47519000",
511
+ "totalPot": "50020000",
512
+ "entryCount": 3,
513
+ "timestamp": "2025-11-16T03:08:29.274Z",
514
+ "signature": "3W5ymCcmpk66rnHVBwbaNh476RDnJktqHFm7eQHpmbj1youyJ13ZbSvPaHdaR9LyASWhnx9sffMckMGhnrkTWfJG",
515
+ "serverSeed": null,
516
+ "serverSeedHash": null,
517
+ "oracleSeed": null
518
+ },
519
+ {
520
+ "roundId": "50",
521
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
522
+ "winAmount": "47519000",
523
+ "totalPot": "50020000",
524
+ "entryCount": 3,
525
+ "timestamp": "2025-11-16T03:08:17.758Z",
526
+ "signature": "2LfFUk4VJFeYs1r4Y4Ti3PnWk5C9VeU7dyAA2m5sT6D2eTf7ZtN9kuRpJ6hHkgKyc4tAPr4Sd8eMPhoMVDfF5cpq",
527
+ "serverSeed": null,
528
+ "serverSeedHash": null,
529
+ "oracleSeed": null
530
+ },
531
+ {
532
+ "roundId": "50",
533
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
534
+ "winAmount": "47519000",
535
+ "totalPot": "50020000",
536
+ "entryCount": 3,
537
+ "timestamp": "2025-11-16T03:08:06.413Z",
538
+ "signature": "3qsAfmiDKV27RzUkE1mSTpYZNgWMpM4D84Nes6Ld9VwTbzGufjXEPBpr8DPB6rvcgkuMMWQLtojcJUpzabmezTRw",
539
+ "serverSeed": null,
540
+ "serverSeedHash": null,
541
+ "oracleSeed": null
542
+ },
543
+ {
544
+ "roundId": "50",
545
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
546
+ "winAmount": "47519000",
547
+ "totalPot": "50020000",
548
+ "entryCount": 3,
549
+ "timestamp": "2025-11-16T03:07:55.126Z",
550
+ "signature": "3e7XxsMnFSKUHFjNzusnf9HUDaqQLJaCiaXa295wZ7cFbowDSqam2RqVPmv3rdQiHvbvmGC3tdgQSM4TDeQvGVu6",
551
+ "serverSeed": null,
552
+ "serverSeedHash": null,
553
+ "oracleSeed": null
554
+ },
555
+ {
556
+ "roundId": "50",
557
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
558
+ "winAmount": "47519000",
559
+ "totalPot": "50020000",
560
+ "entryCount": 3,
561
+ "timestamp": "2025-11-16T03:07:43.462Z",
562
+ "signature": "C3R3oxZXfrq6v5wLNCNrbLZBZBxjHcwQdT1CEgkLJx1kqbZRFEDfLCpML1hKDr5yrHZH53zgjHhJTowFuVvyXw3",
563
+ "serverSeed": null,
564
+ "serverSeedHash": null,
565
+ "oracleSeed": null
566
+ },
567
+ {
568
+ "roundId": "50",
569
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
570
+ "winAmount": "47519000",
571
+ "totalPot": "50020000",
572
+ "entryCount": 3,
573
+ "timestamp": "2025-11-16T03:07:32.191Z",
574
+ "signature": "3s6EK98XBr1p3piDf1BLbBvceZBRbXhaQzXCc3HxSZryP1pq6oxNuMVpd6UMrK2NDiAkbAskWAuwRGT7NLCbMr4S",
575
+ "serverSeed": null,
576
+ "serverSeedHash": null,
577
+ "oracleSeed": null
578
+ },
579
+ {
580
+ "roundId": "50",
581
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
582
+ "winAmount": "47519000",
583
+ "totalPot": "50020000",
584
+ "entryCount": 3,
585
+ "timestamp": "2025-11-16T03:07:20.912Z",
586
+ "signature": "52s1rFWcUE2ZJatVVSwFQJ27r7hCqPKuX6TiafWxtBtbCbM8ednzoS6PqGV9ueNKtLfRhTwoSbqQCLigCUCJDZ7N",
587
+ "serverSeed": null,
588
+ "serverSeedHash": null,
589
+ "oracleSeed": null
590
+ },
591
+ {
592
+ "roundId": "50",
593
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
594
+ "winAmount": "47519000",
595
+ "totalPot": "50020000",
596
+ "entryCount": 3,
597
+ "timestamp": "2025-11-16T03:07:08.983Z",
598
+ "signature": "GyHPnTve33Wc3YU1YixmLxGug1xdZ9oeJHdfKarWjPmBbNrJa4a8ZyYMZxT31zcs46UTDv1tGqHfPh3Pa4UWGxS",
599
+ "serverSeed": null,
600
+ "serverSeedHash": null,
601
+ "oracleSeed": null
602
+ },
603
+ {
604
+ "roundId": "50",
605
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
606
+ "winAmount": "47519000",
607
+ "totalPot": "50020000",
608
+ "entryCount": 3,
609
+ "timestamp": "2025-11-16T03:06:49.035Z",
610
+ "signature": "3rui55Mk3cU1CYhvpjmyEj4ZQ8E7F2frfpqDJYHjWp1i3EwfGNn74s22ieiZ6FzaR1RLwNFBHWzgu8WE6nMeAEnA",
611
+ "serverSeed": null,
612
+ "serverSeedHash": null,
613
+ "oracleSeed": null
614
+ },
615
+ {
616
+ "roundId": "50",
617
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
618
+ "winAmount": "47519000",
619
+ "totalPot": "50020000",
620
+ "entryCount": 3,
621
+ "timestamp": "2025-11-16T03:06:37.916Z",
622
+ "signature": "26vCJz7fpUoGnW3V7Gdnt7ZteS7SjRBCFwi2Ers3CKzVqgQPxbrs7YGD5MhqYCdBC1xdkwTVsACbaf2JVwFhLByy",
623
+ "serverSeed": null,
624
+ "serverSeedHash": null,
625
+ "oracleSeed": null
626
+ },
627
+ {
628
+ "roundId": "50",
629
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
630
+ "winAmount": "47519000",
631
+ "totalPot": "50020000",
632
+ "entryCount": 3,
633
+ "timestamp": "2025-11-16T03:06:26.141Z",
634
+ "signature": "4WwH2YXPj358cUXL6KYj6NJyBunpWAatDutujcgSwJsSpuSmg76Czy9YYYPnLJ7sL4TCVyb5qBPMLUAdaD6dPJZD",
635
+ "serverSeed": null,
636
+ "serverSeedHash": null,
637
+ "oracleSeed": null
638
+ },
639
+ {
640
+ "roundId": "50",
641
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
642
+ "winAmount": "47519000",
643
+ "totalPot": "50020000",
644
+ "entryCount": 3,
645
+ "timestamp": "2025-11-16T03:06:14.570Z",
646
+ "signature": "Uw5C3HMKrwqmz2ET7xdgYas3m23k9oP5R4kvaAzTQXHev5iqun3mksw6aF2qFaVvDyPtMHqnLL3KutKWSVHDyXz",
647
+ "serverSeed": null,
648
+ "serverSeedHash": null,
649
+ "oracleSeed": null
650
+ },
651
+ {
652
+ "roundId": "50",
653
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
654
+ "winAmount": "47519000",
655
+ "totalPot": "50020000",
656
+ "entryCount": 3,
657
+ "timestamp": "2025-11-16T03:06:02.586Z",
658
+ "signature": "5BX7LRVEfMPGUqxtvqfV6myFhemtqh6bfnQggRhADsTrQJ9CjvXHoSqBMkbi4QZX8XAJxms4zHZdCAPSeSkAoeeP",
659
+ "serverSeed": null,
660
+ "serverSeedHash": null,
661
+ "oracleSeed": null
662
+ },
663
+ {
664
+ "roundId": "50",
665
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
666
+ "winAmount": "47519000",
667
+ "totalPot": "50020000",
668
+ "entryCount": 3,
669
+ "timestamp": "2025-11-16T03:04:13.061Z",
670
+ "signature": "5DDb4Sofpx89hk9wELrSjjfYAQzWtpMr5KymxPMdHR8ABHW7weZN1d4auepKBi7kUb86da127pV5g5fLVJnkzeyq",
671
+ "serverSeed": null,
672
+ "serverSeedHash": null,
673
+ "oracleSeed": null
674
+ },
675
+ {
676
+ "roundId": "50",
677
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
678
+ "winAmount": "47519000",
679
+ "totalPot": "50020000",
680
+ "entryCount": 3,
681
+ "timestamp": "2025-11-16T03:04:01.855Z",
682
+ "signature": "4HsXQFzBTGJBocMHXnPCHmkPVbpTqobqGUZnQcKiTKcTAWwvTU9yA3gTXeSh68gqJ6ijTMNSt56mpGU7W9FKMagH",
683
+ "serverSeed": null,
684
+ "serverSeedHash": null,
685
+ "oracleSeed": null
686
+ },
687
+ {
688
+ "roundId": "50",
689
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
690
+ "winAmount": "47519000",
691
+ "totalPot": "50020000",
692
+ "entryCount": 3,
693
+ "timestamp": "2025-11-16T03:03:49.605Z",
694
+ "signature": "4wKDgZvtbH7CSgcYxy8Ty69UXVYLcyCRs1ojP6TiqC8JoXwxJCb42C5UmXEQBZtm5q2gs9VnnvDWtxjwnpEDuPWZ",
695
+ "serverSeed": null,
696
+ "serverSeedHash": null,
697
+ "oracleSeed": null
698
+ },
699
+ {
700
+ "roundId": "50",
701
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
702
+ "winAmount": "47519000",
703
+ "totalPot": "50020000",
704
+ "entryCount": 3,
705
+ "timestamp": "2025-11-16T03:03:37.774Z",
706
+ "signature": "674KeWf9q5K8yn45MZusJA2V9DoCZh4DuB6zPHtiYRL4e6PDD5pY3MVUUFe197aQCPJWANYATDUArkpWnsGpKV5B",
707
+ "serverSeed": null,
708
+ "serverSeedHash": null,
709
+ "oracleSeed": null
710
+ },
711
+ {
712
+ "roundId": "50",
713
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
714
+ "winAmount": "47519000",
715
+ "totalPot": "50020000",
716
+ "entryCount": 3,
717
+ "timestamp": "2025-11-16T03:03:25.945Z",
718
+ "signature": "5fy7DopTe2tH95NBNCZnqMLjJYf6fiAsisbsShkUj6Sx9fiKybwzvrHrTcvsh39cUnMrL7oZMGQTPo6ygziJWnf",
719
+ "serverSeed": null,
720
+ "serverSeedHash": null,
721
+ "oracleSeed": null
722
+ },
723
+ {
724
+ "roundId": "50",
725
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
726
+ "winAmount": "47519000",
727
+ "totalPot": "50020000",
728
+ "entryCount": 3,
729
+ "timestamp": "2025-11-16T03:03:14.015Z",
730
+ "signature": "oz2nbqnPVhV5JECSw9VVSY93Ee4RU9JEwZ9Wf7DXEpvGjzB6hmF3Nkx96R3fZSBSQ5mX5b3ds1oK8KLRqn91joS",
731
+ "serverSeed": null,
732
+ "serverSeedHash": null,
733
+ "oracleSeed": null
734
+ },
735
+ {
736
+ "roundId": "50",
737
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
738
+ "winAmount": "47519000",
739
+ "totalPot": "50020000",
740
+ "entryCount": 3,
741
+ "timestamp": "2025-11-16T03:03:02.790Z",
742
+ "signature": "4Cn9hS9G1ZqoANaVjk6vUK4rDMaWQWRJkx5ZywrRsWpbebu4oYguycQwhgTw2uC2wn6xbv1tURqv5oVxmMuBdeAG",
743
+ "serverSeed": null,
744
+ "serverSeedHash": null,
745
+ "oracleSeed": null
746
+ },
747
+ {
748
+ "roundId": "50",
749
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
750
+ "winAmount": "47519000",
751
+ "totalPot": "50020000",
752
+ "entryCount": 3,
753
+ "timestamp": "2025-11-16T03:02:50.986Z",
754
+ "signature": "cm6DLFR2Z1QWDPJb62bXtSaUagGxTLFuJ3nyP1sWJcXAMHji39JYKGhhBCoECeZogwBFNzuXb7mDjtHRrxax9tK",
755
+ "serverSeed": null,
756
+ "serverSeedHash": null,
757
+ "oracleSeed": null
758
+ },
759
+ {
760
+ "roundId": "50",
761
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
762
+ "winAmount": "47519000",
763
+ "totalPot": "50020000",
764
+ "entryCount": 3,
765
+ "timestamp": "2025-11-16T03:02:38.933Z",
766
+ "signature": "3baWFdbR7H8ZiiPLEAv1k8MFMkhuEB9bbpLp3DmTh77siGixrMK9S23wdU8LFBrhBEnkhM9jE84mqw79V8UCvhSY",
767
+ "serverSeed": null,
768
+ "serverSeedHash": null,
769
+ "oracleSeed": null
770
+ },
771
+ {
772
+ "roundId": "50",
773
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
774
+ "winAmount": "47519000",
775
+ "totalPot": "50020000",
776
+ "entryCount": 3,
777
+ "timestamp": "2025-11-16T03:02:27.710Z",
778
+ "signature": "5MzudM9fi3GJX53JZMC6pYCnPwY794aXamEqvxpcSXsKX9U4KwyHL6iAnH4ouQjwf6TWc1d7cm14Jr8U17shitn4",
779
+ "serverSeed": null,
780
+ "serverSeedHash": null,
781
+ "oracleSeed": null
782
+ },
783
+ {
784
+ "roundId": "50",
785
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
786
+ "winAmount": "47519000",
787
+ "totalPot": "50020000",
788
+ "entryCount": 3,
789
+ "timestamp": "2025-11-16T03:02:16.384Z",
790
+ "signature": "4Fo8WVbsZngwt3v3ipE5jcwQNWCQSpgBYHm1d45oB6f56detEeaVCw4stHKBoYW57GnouMd9MzpXRymRL9yjf5sU",
791
+ "serverSeed": null,
792
+ "serverSeedHash": null,
793
+ "oracleSeed": null
794
+ },
795
+ {
796
+ "roundId": "50",
797
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
798
+ "winAmount": "47519000",
799
+ "totalPot": "50020000",
800
+ "entryCount": 3,
801
+ "timestamp": "2025-11-16T03:02:05.052Z",
802
+ "signature": "ZhKs1v6186va9QjD3JMZCSKzNnjYWxWcqoQur6wkEJv1xd8tywW6kfcymmKCvujUhBiv8HtzyzqhH4JAJzBfdmJ",
803
+ "serverSeed": null,
804
+ "serverSeedHash": null,
805
+ "oracleSeed": null
806
+ },
807
+ {
808
+ "roundId": "50",
809
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
810
+ "winAmount": "47519000",
811
+ "totalPot": "50020000",
812
+ "entryCount": 3,
813
+ "timestamp": "2025-11-16T03:01:53.448Z",
814
+ "signature": "3UsNazGF6wSP4Wiy5nfzyZe2TUHSDn1LAivbuUDKt49Gud611v46UcAe3qwHisyZQebeDSE1ptzg1eyNBq5ZYkGw",
815
+ "serverSeed": null,
816
+ "serverSeedHash": null,
817
+ "oracleSeed": null
818
+ },
819
+ {
820
+ "roundId": "50",
821
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
822
+ "winAmount": "47519000",
823
+ "totalPot": "50020000",
824
+ "entryCount": 3,
825
+ "timestamp": "2025-11-16T03:01:41.404Z",
826
+ "signature": "39YP55BXVDXzT35tB5uptrKeRMEKRCya2JjpkJGGuqr8P3rvQnatMmCD2kHcPA2qstFTGFpHLjWwSWBo56djtVtj",
827
+ "serverSeed": "0c9663a6ce3a4dceed777d1c5a3c7f6a63d46fa176b678ea78a34861b4a8a7f5",
828
+ "serverSeedHash": "517197a9bf4c04fa6ea2a41bb90c2dd40f38023e1905ee732d6247b828270fe0",
829
+ "oracleSeed": "bc77fd3efc7584e1607e2c6a6d355cac94bd4f2f7646d51a7c7e121b71db2b1e"
830
+ },
831
+ {
832
+ "roundId": "46",
833
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
834
+ "winAmount": "28500000",
835
+ "totalPot": "30000000",
836
+ "entryCount": 3,
837
+ "timestamp": "2025-11-16T02:57:24.499Z",
838
+ "signature": "VRatQEvoFkkKLRvRyPYkU6kKtr4tGRwJSDE1iXVeJiAZhFFD8sBxrMBF44kYgGwFNd4ioeKLbbv7YgrGVhd7NVB",
839
+ "serverSeed": "674df5c32eab300783d80fad974a81d6fca8f329c64f7abdfd4b6ae64d0e9d6b",
840
+ "serverSeedHash": "23b7e06390363a9608da0d5af090cb5b191e794f118f471a96d608c1ec75a42b",
841
+ "oracleSeed": "177d50687f82763ef79af4006e0405b50b92e66b24586a3205899854b75df276"
842
+ },
843
+ {
844
+ "roundId": "44",
845
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
846
+ "winAmount": "28500000",
847
+ "totalPot": "30000000",
848
+ "entryCount": 3,
849
+ "timestamp": "2025-11-16T02:55:09.880Z",
850
+ "signature": "23hevwAr1mbnGMaHozviLcx9zMLWgxJTxMoVSKGw137rAVXTN19PBXaWpQYAK5hHgiiGTEPWrmfR7GASapydTr81",
851
+ "serverSeed": "5e89974d2f5bc01bbd716be74c1d5e367d25a99cbaf80284773e47535bb345d9",
852
+ "serverSeedHash": "fd7143610e020f2ed65015e6cb8db2dc3e9657e3e3d6206d6b7a78b843469448",
853
+ "oracleSeed": "1374b0fe045b862f6c5739135494ae04ec85e49e21024f88c03780dcdc9ac33e"
854
+ },
855
+ {
856
+ "roundId": "43",
857
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
858
+ "winAmount": "28500000",
859
+ "totalPot": "30000000",
860
+ "entryCount": 3,
861
+ "timestamp": "2025-11-16T02:53:58.610Z",
862
+ "signature": "AftA5W4to43SyuGXhPEn1ug12YywRjkFWHEnP29dqfHyw3Yd3DMzwUnL3PNLLkCKt2C4d3s8cBfgnYNukNiTj8D",
863
+ "serverSeed": "1eb9b8a2b795f54bda4b8aabac66e0e1b9735827970092d3a7fd57694f60bd73",
864
+ "serverSeedHash": "e0dcc76e192b27582f4b45c8a9b909f8028758518a526a8a85e7fa2b5a255faa",
865
+ "oracleSeed": "8c470425cdb80ba30f9a7f803b0923c62fb95ad352170762d7c6ac055bf52b02"
866
+ },
867
+ {
868
+ "roundId": "39",
869
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
870
+ "winAmount": "19000000",
871
+ "totalPot": "20000000",
872
+ "entryCount": 2,
873
+ "timestamp": "2025-11-16T02:44:14.286Z",
874
+ "signature": "4QvfGUDYW1cu9NTrDPv8WJAYc6VyqDStXKofxfpjwv55NyFJEXD5iGueiPV1fGExB7fuDDgqqLkrWshjuU7N1srU",
875
+ "serverSeed": null,
876
+ "serverSeedHash": null,
877
+ "oracleSeed": null
878
+ },
879
+ {
880
+ "roundId": "15",
881
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
882
+ "winAmount": "28500000",
883
+ "totalPot": "30000000",
884
+ "entryCount": 3,
885
+ "timestamp": "2025-11-16T01:46:07.836Z",
886
+ "signature": "3d44Fkszdp2i7LDTXequrEVv5zF1xpr9dmgkoNdZFuQt1wZtr2NsrY1QZqWJcdToGTeccrHmPoX5AZkeeapY4Kgd"
887
+ },
888
+ {
889
+ "roundId": "14",
890
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
891
+ "winAmount": "9500000",
892
+ "totalPot": "10000000",
893
+ "entryCount": 1,
894
+ "timestamp": "2025-11-16T01:44:56.365Z",
895
+ "signature": "56FRWw8XYXVgXB3cB8kJZLEdVWDhyDUSXwDp5RvQxo11FbJpBrV2bETALXXERz71Z3p5CQSxkD6v6cKRp29pRbfn"
896
+ },
897
+ {
898
+ "roundId": "13",
899
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
900
+ "winAmount": "19019000",
901
+ "totalPot": "20020000",
902
+ "entryCount": 2,
903
+ "timestamp": "2025-11-16T01:43:43.493Z",
904
+ "signature": "3C12nCWq5iXw8N3J3ndMnAzX5Xv65TpSTVnHzc4LQeNx2hEi28H43SLSgbATVVVa2JKaVH6N1NZ2g7D1k3cUMF6z"
905
+ },
906
+ {
907
+ "roundId": "12",
908
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
909
+ "winAmount": "28528500",
910
+ "totalPot": "30030000",
911
+ "entryCount": 3,
912
+ "timestamp": "2025-11-16T01:42:32.781Z",
913
+ "signature": "3BRUbXKMP6FyThZnqH6mtkW5RXMuNxT661dtzpgCCQuWAihNxdawKRPniSXNs4TEB5rRZBNvjqiVL8GrSxT84f6b"
914
+ },
915
+ {
916
+ "roundId": "11",
917
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
918
+ "winAmount": "9509500",
919
+ "totalPot": "10010000",
920
+ "entryCount": 1,
921
+ "timestamp": "2025-11-16T01:41:22.349Z",
922
+ "signature": "5qd2UrGcNytuNvDosFMRmc6ReanzH786rypkigxrzaDsWXigzwiTAXDSn5NcZcXERZxTRt1ySRicYyDnRxG3dcF9"
923
+ },
924
+ {
925
+ "roundId": "10",
926
+ "winner": "999SXwHrYYygJJUNPst7xKm3dKtKYMwGsdb8dEPR3hTA",
927
+ "winAmount": "28519000",
928
+ "totalPot": "30020000",
929
+ "entryCount": 3,
930
+ "timestamp": "2025-11-16T01:40:11.585Z",
931
+ "signature": "2hGkXMnG6LHAoBnZgVMi6ESYwk72F6tYbAhyTqx7bzgyk6XXbvSMyswWX5tiRDHAPqHXXQj31RUbvu92Pi3x6w8g"
932
+ },
933
+ {
934
+ "roundId": "9",
935
+ "winner": "DU4CHEHUJ2EeezAXyfyi8vLB7dmXKq41myKnA5DZ9Mru",
936
+ "winAmount": "19000000",
937
+ "totalPot": "20000000",
938
+ "entryCount": 2,
939
+ "timestamp": "2025-11-16T01:39:01.127Z",
940
+ "signature": "SoAhCSxdx4t8FXbXPD625gDsKTWXaXP3BaqJ1H1xFZXPU1Yt7LeUMU1zdFs1pKiAybwZrdJ4y9YpgXyxcqVjYTr"
941
+ },
942
+ {
943
+ "roundId": "8",
944
+ "winner": "E2SXYN3GVvQyEo1Pei8PUsyTmFqgkfuK7jTau9CrpfYC",
945
+ "winAmount": "9500000",
946
+ "totalPot": "10000000",
947
+ "entryCount": 1,
948
+ "timestamp": "2025-11-16T01:37:50.454Z",
949
+ "signature": "4hw6DaPa5FosRUjTjUHQfWjpetPxokrh7ShuRiyp3SR4mj3x2Ws5xYAY2wYeNmiubcVjqAtw9zTnr8xZmPoSojhB"
950
+ }
951
+ ]
952
+ }