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

Oldham Athletic vs Swindon Town

League 2 · England · 29 Aug 2026, 14:00 UTC

Final score
3 : 0
Result
Won
Pick
Oldham Athletic
Market
1X2
CLV vs fair close
+17.70%
Model prob.
48.3%
Best price
2.20
Min odds
2.11
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)
xatLBS3BoCcL+V0BdSUbsXpESaaG0+HBjoGVpXpFTQiud+zh57JF0kIAkv0+SU3bRIVUEAO4KbSnt5pDyT0Wft4HwPvP4iR9MYnU4Qv7eWHjb2cy+7Sx9x+79NXf7UAUqGdM+wlAmIerzsYGdVYGiAcTN/t2IzeD3lKezGj9ETFqAJMu1UXKyAdQ37OXv88fGcNyCe95KQgL7gwGScih0e7JDavifSvNgPUUrk/nphBEUPO4qDKwgz/NOw8fl3UpmYB0ZkTLrwtbGA0mAI0VqX8iK9vah8C+BPk1f8R1J4q5pvTdB8w5hF3ytcjigbgRuacPqOECPcZYTlBve/qsVuv9DUtZbYzo3HywNGgYjrYd
key fingerprint sha256: e8fd8d80bbf805f4f03c9a3b53a2ed3e548926f3238b7c2ac499353c1640dde6
Decrypt it & read the pick
Decryption key (released after the match)
8b297ae531b18e9ff3cd8fa31ee487f37984e754a5eb13147dea4fb306bfa0d8
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("xatLBS3BoCcL+V0BdSUbsXpESaaG0+HBjoGVpXpFTQiud+zh57JF0kIAkv0+SU3bRIVUEAO4KbSnt5pDyT0Wft4HwPvP4iR9MYnU4Qv7eWHjb2cy+7Sx9x+79NXf7UAUqGdM+wlAmIerzsYGdVYGiAcTN/t2IzeD3lKezGj9ETFqAJMu1UXKyAdQ37OXv88fGcNyCe95KQgL7gwGScih0e7JDavifSvNgPUUrk/nphBEUPO4qDKwgz/NOw8fl3UpmYB0ZkTLrwtbGA0mAI0VqX8iK9vah8C+BPk1f8R1J4q5pvTdB8w5hF3ytcjigbgRuacPqOECPcZYTlBve/qsVuv9DUtZbYzo3HywNGgYjrYd"), c => c.charCodeAt(0));
const key  = Uint8Array.from("8b297ae531b18e9ff3cd8fa31ee487f37984e754a5eb13147dea4fb306bfa0d8".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): 8b297ae531b18e9ff3cd8fa31ee487f37984e754a5eb13147dea4fb306bfa0d8
  • IV / nonce (hex): c5ab4b052dc1a0270bf95d01
  • Ciphertext (hex): 75251bb17a4449a686d3e1c18e8195a57a454d08ae77ece1e7b245d2420092fd3e494ddb4485541003b829b4a7b79a43c93d167ede07c0fbcfe2247d3189d4e10bfb7961e36f6732fbb4b1f71fbbf4d5dfed4014a8674cfb09409887abcec60675560688071337fb76233783de529ecc68fd11316a00932ed545cac80750dfb397bfcf1f19c37209ef7929080bee0c0649c8a1d1eec90dabe27d2bcd80f514ae4fe7a6104450f3b8a832b0833fcd3b0f1f9775299980746644cbaf0b5b180d26008d15a97f222bdbda87c0be04f9357fc475278ab9a6f4dd07cc39845df2b5c8e281b811b9a70fa8e1023dc6584e506f7bfaac56eb
  • Auth tag (hex): fd0d4b596d8ce8dc7cb03468188eb61d

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