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

RKC W vs Minnesota Aurora W

USL W League · United States · 28 Jun 2026, 22:00 UTC

Final score
0 : 3
Result
Won
Pick
Minnesota Aurora W
Market
1x2
Model prob.
87.0%
Best price
1.26
Min odds
1.20
Stake factor
1.70

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)
twQaukI5c9uxChGoSwGhzht0C1ph9NGN6k+JYOY2Qg1npONZZlT+IvuIG9YyW0eEU7jcPRvNkLQ1O+AsF0Vl3yHL+WDpQqY2/S3Cq9/k3PodVgNYS07xuM/F1y95YJaKC+VbHkEAkjE/6zSQwMopd7FXLKsQLdi3l60BXE7jBwTiWRtb9KUgl5SEnQtowvB2PSgtqhOIURAhHK46lGTCjLD4Ycl6hE0jzlsev49Sd4TtrYZihmRUyYoXykd3x3merH8xmEW1uEn5Tykntu+zqCWVNraX6exQGV1UGptu4DRDmFo53n3z99vMCo5YyTn8QJphQh5GtQsSUaM/pb/8pdFyktx1j5bzurzhwppM3V0i
key fingerprint sha256: 0b60152305d49cc54fa4933b73f98af0efa01d905cefa4e24d63e78123fec392
Decrypt it & read the pick
Decryption key (released after the match)
e0b3461edfa16b5049e58047e3e9912704ad8cd6d92c6ac478b21705ccc71d91
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("twQaukI5c9uxChGoSwGhzht0C1ph9NGN6k+JYOY2Qg1npONZZlT+IvuIG9YyW0eEU7jcPRvNkLQ1O+AsF0Vl3yHL+WDpQqY2/S3Cq9/k3PodVgNYS07xuM/F1y95YJaKC+VbHkEAkjE/6zSQwMopd7FXLKsQLdi3l60BXE7jBwTiWRtb9KUgl5SEnQtowvB2PSgtqhOIURAhHK46lGTCjLD4Ycl6hE0jzlsev49Sd4TtrYZihmRUyYoXykd3x3merH8xmEW1uEn5Tykntu+zqCWVNraX6exQGV1UGptu4DRDmFo53n3z99vMCo5YyTn8QJphQh5GtQsSUaM/pb/8pdFyktx1j5bzurzhwppM3V0i"), c => c.charCodeAt(0));
const key  = Uint8Array.from("e0b3461edfa16b5049e58047e3e9912704ad8cd6d92c6ac478b21705ccc71d91".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): e0b3461edfa16b5049e58047e3e9912704ad8cd6d92c6ac478b21705ccc71d91
  • IV / nonce (hex): b7041aba423973dbb10a11a8
  • Ciphertext (hex): 4b01a1ce1b740b5a61f4d18dea4f8960e636420d67a4e3596654fe22fb881bd6325b478453b8dc3d1bcd90b4353be02c174565df21cbf960e942a636fd2dc2abdfe4dcfa1d5603584b4ef1b8cfc5d72f7960968a0be55b1e410092313feb3490c0ca2977b1572cab102dd8b797ad015c4ee30704e2591b5bf4a5209794849d0b68c2f0763d282daa13885110211cae3a9464c28cb0f861c97a844d23ce5b1ebf8f527784edad8662866454c98a17ca4777c7799eac7f319845b5b849f94f2927b6efb3a8259536b697e9ec50195d541a9b6ee03443985a39de7df3f7dbcc0a8e58c939fc409a61421e46b50b1251a33fa5bffca5d1
  • Auth tag (hex): 7292dc758f96f3babce1c29a4cdd5d22

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 #955823 · 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.