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

Reading vs Charlton Athletic

Club Friendlies 3 · World · 01 Aug 2026, 14:00 UTC

Final score
0 : 3
Result
Lost
Pick
Reading
Market
1x2
Model prob.
33.9%
Best price
4.33
Min odds
3.34
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)
iHL7tuBsSqN5U5ifPKpxYOTg8+9iK9iUaiTy7cgYdvDq1Vg6flTWmPEVmHBIfBieL2RctvN0v2xBG+I+lwUyjwd7h8SdOCT9QfbqMwv58fczubb0TSrryr3OljAN/sb+cbC15ntojDMEunYKxD1Z1g37iAHOI13eAPP/QINgg8caH32AHelyx5IlJYPYSCRFscVCLucBbYGN0VUQKYdwRLxiEFMMlH1MquuL6m31lQPvGYvBFtp0DYqoaEd/sVsaMJNFbAFFCxk8aOzGjdUhD7VY2zTmQ9CUzYK6YnyrY2zXV8t6WcFnHcLqVOHuvT9ibH9oMQlKLqGni2Smg29ZPaDhTLrUTQ==
key fingerprint sha256: b105a3c826a083823dcdb1821f3eb9b6fc6a49ca9f821051e4044de4be3b8375
Decrypt it & read the pick
Decryption key (released after the match)
0108bde2141ba2040f5442f97afb2f2ee8270e692c03b11b0ff8911cee45e3fb
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("iHL7tuBsSqN5U5ifPKpxYOTg8+9iK9iUaiTy7cgYdvDq1Vg6flTWmPEVmHBIfBieL2RctvN0v2xBG+I+lwUyjwd7h8SdOCT9QfbqMwv58fczubb0TSrryr3OljAN/sb+cbC15ntojDMEunYKxD1Z1g37iAHOI13eAPP/QINgg8caH32AHelyx5IlJYPYSCRFscVCLucBbYGN0VUQKYdwRLxiEFMMlH1MquuL6m31lQPvGYvBFtp0DYqoaEd/sVsaMJNFbAFFCxk8aOzGjdUhD7VY2zTmQ9CUzYK6YnyrY2zXV8t6WcFnHcLqVOHuvT9ibH9oMQlKLqGni2Smg29ZPaDhTLrUTQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0108bde2141ba2040f5442f97afb2f2ee8270e692c03b11b0ff8911cee45e3fb".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): 0108bde2141ba2040f5442f97afb2f2ee8270e692c03b11b0ff8911cee45e3fb
  • IV / nonce (hex): 8872fbb6e06c4aa37953989f
  • Ciphertext (hex): 3caa7160e4e0f3ef622bd8946a24f2edc81876f0ead5583a7e54d698f1159870487c189e2f645cb6f374bf6c411be23e9705328f077b87c49d3824fd41f6ea330bf9f1f733b9b6f44d2aebcabdce96300dfec6fe71b0b5e67b688c3304ba760ac43d59d60dfb8801ce235dde00f3ff40836083c71a1f7d801de972c792252583d8482445b1c5422ee7016d818dd1551029877044bc6210530c947d4caaeb8bea6df59503ef198bc116da740d8aa868477fb15b1a3093456c01450b193c68ecc68dd5210fb558db34e643d094cd82ba627cab636cd757cb7a59c1671dc2ea54e1eebd3f626c7f6831094a
  • Auth tag (hex): 2ea1a78b64a6836f593da0e14cbad44d

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