Sign in
← All matches
✅ Cryptographically verified · sealed pick #281

Apotheos vs East Atlanta

USL League Two · United States · 02 Jul 2026, 23:30 UTC

Final score
0 : 3
Result
Won
Pick
East Atlanta
Market
1x2
Model prob.
25.7%
Best price
5.15
Min odds
4.61
Stake factor
3.00

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
0Rs51CeDZaeAQd/69+5X9K+p2OEW//EW535n8sfwVVbX5Wttkstkw+YWmcGC1Riv6lILB+eJZpKZ66lssRCsIXghylBCrG0cDUxprbsywrYXCxeM+pgGcGAIHRpMfayIl1ylioWBD43bV32+EMC/dRumZBTasO84+FTx65z6xxt+0c0OjwCUX6g9X+P1eJwqEn5EDW9kMkYuWGp/EIIHWUnBGHeAPys/kyVUI9diPciYz8R8ZhFMsdA8DsC1jiY3rddt7txpnm1eOVwL/uZ3MFbrJIMkmRjTvcRYFo02o/bdXpRlJFB8ZpQXyXdl7vIOgRHEwjK0OGVWepR3EWGEcGEKxC5FsFza4txd
key fingerprint sha256: 66e78c2029a1c2d0633c982214cd708f42d7674fdec20d724420922eaf9f73eb
Decrypt it & read the pick
Decryption key (released after the match)
a0381dd4edc28bfac970b8fbbe6dab082e3dbaa513dbaf7450031936999b6702
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("0Rs51CeDZaeAQd/69+5X9K+p2OEW//EW535n8sfwVVbX5Wttkstkw+YWmcGC1Riv6lILB+eJZpKZ66lssRCsIXghylBCrG0cDUxprbsywrYXCxeM+pgGcGAIHRpMfayIl1ylioWBD43bV32+EMC/dRumZBTasO84+FTx65z6xxt+0c0OjwCUX6g9X+P1eJwqEn5EDW9kMkYuWGp/EIIHWUnBGHeAPys/kyVUI9diPciYz8R8ZhFMsdA8DsC1jiY3rddt7txpnm1eOVwL/uZ3MFbrJIMkmRjTvcRYFo02o/bdXpRlJFB8ZpQXyXdl7vIOgRHEwjK0OGVWepR3EWGEcGEKxC5FsFza4txd"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a0381dd4edc28bfac970b8fbbe6dab082e3dbaa513dbaf7450031936999b6702".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): a0381dd4edc28bfac970b8fbbe6dab082e3dbaa513dbaf7450031936999b6702
  • IV / nonce (hex): d11b39d4278365a78041dffa
  • Ciphertext (hex): f7ee57f4afa9d8e116fff116e77e67f2c7f05556d7e56b6d92cb64c3e61699c182d518afea520b07e789669299eba96cb110ac217821ca5042ac6d1c0d4c69adbb32c2b6170b178cfa98067060081d1a4c7dac88975ca58a85810f8ddb577dbe10c0bf751ba66414dab0ef38f854f1eb9cfac71b7ed1cd0e8f00945fa83d5fe3f5789c2a127e440d6f6432462e586a7f1082075949c11877803f2b3f93255423d7623dc898cfc47c66114cb1d03c0ec0b58e2637add76deedc699e6d5e395c0bfee6773056eb2483249918d3bdc458168d36a3f6dd5e946524507c669417c97765eef20e8111c4c232b43865567a94
  • Auth tag (hex): 7711618470610ac42e45b05cdae2dc5d

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #956413 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.