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

Adelaide Atletico Res. vs Salisbury Unted Res.

South Australia State League 1 Reserves · Australia · 01 Aug 2026, 02:45 UTC

Final score
3 : 0
Result
Lost
Pick
Salisbury Unted Res.
Market
1x2
Model prob.
14.0%
Best price
13.80
Min odds
9.96
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)
RhJrs2yWyt15LJc/RAZcCEyeI70EmdHS4GYDAkOpQehygZBHj6Nt5DzzmWtR175Dz+3jU0EJe4/o3UedodwA4UsGV3BuA1mloEvmkaXCTin2kb1g76D3uajrf5AnUlPskHepddxxUVMxW+aBi/zdD06C96mF8tJBvnVdHUcurRaA4r/CzdegwYEWVG/lJCaLwu5s7IybviHfZCnG7EA1IYeexOwH16uSupVMPsHNkPBVcATiF5AJqQtOr8GvssLR7UL0jb/kZY2lbcfdYC993tI/hWd5Sm0xTssbYBLn3D5a3tdtSymPQDxuDrgr9Adt+Z23fhIFHGjoubFPPCOzk55E13QLRUKftbEpPHbY4W4TTA==
key fingerprint sha256: bfd194699234de55ab6ab4a43ff61ecfb06cfb0de95530254e8d096e8959eba0
Decrypt it & read the pick
Decryption key (released after the match)
9bc925883776ce38b2c9712803943cbcbedab68dafed11368a49a89e60658a9c
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("RhJrs2yWyt15LJc/RAZcCEyeI70EmdHS4GYDAkOpQehygZBHj6Nt5DzzmWtR175Dz+3jU0EJe4/o3UedodwA4UsGV3BuA1mloEvmkaXCTin2kb1g76D3uajrf5AnUlPskHepddxxUVMxW+aBi/zdD06C96mF8tJBvnVdHUcurRaA4r/CzdegwYEWVG/lJCaLwu5s7IybviHfZCnG7EA1IYeexOwH16uSupVMPsHNkPBVcATiF5AJqQtOr8GvssLR7UL0jb/kZY2lbcfdYC993tI/hWd5Sm0xTssbYBLn3D5a3tdtSymPQDxuDrgr9Adt+Z23fhIFHGjoubFPPCOzk55E13QLRUKftbEpPHbY4W4TTA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9bc925883776ce38b2c9712803943cbcbedab68dafed11368a49a89e60658a9c".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): 9bc925883776ce38b2c9712803943cbcbedab68dafed11368a49a89e60658a9c
  • IV / nonce (hex): 46126bb36c96cadd792c973f
  • Ciphertext (hex): 44065c084c9e23bd0499d1d2e066030243a941e8728190478fa36de43cf3996b51d7be43cfede35341097b8fe8dd479da1dc00e14b0657706e0359a5a04be691a5c24e29f691bd60efa0f7b9a8eb7f90275253ec9077a975dc715153315be6818bfcdd0f4e82f7a985f2d241be755d1d472ead1680e2bfc2cdd7a0c18116546fe524268bc2ee6cec8c9bbe21df6429c6ec403521879ec4ec07d7ab92ba954c3ec1cd90f0557004e2179009a90b4eafc1afb2c2d1ed42f48dbfe4658da56dc7dd602f7dded23f8567794a6d314ecb1b6012e7dc3e5aded76d4b298f403c6e0eb82bf4076df99db77e12051c68e8b9b14f3c23b3939e44
  • Auth tag (hex): d7740b45429fb5b1293c76d8e16e134c

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