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

Canvey Island vs Ebbsfleet United

Club Friendlies 4 · World · 04 Jul 2026, 12:00 UTC

Final score
0 : 0
Result
Lost
Pick
Ebbsfleet United
Market
1x2
Model prob.
71.0%
Best price
1.54
Min odds
1.49
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.

Sealed at 04 Jul 2026, 01:38 UTC — published in:
Encrypted pick (AES-256-GCM)
dlYGcGk0upEUi8slrgYLXrwO7o3iBkIDW4YsVeCqwXeYdqoZWXdP00nbwSU9jZFwdEDJW0bQPADLpLxI6lM+UKjMk6kVmom3RIYX7sph8AunGbqQwUb2T9WmG8OWlenaDZJiWqTAaK32Ou/rDkPVWXxIvbOJbk81SmGzH2hhhkER/Owgaaoti27QGmXPiCzC7XUZFivQb1fOHG8LwrgVXff2/tUXd1lHyaNezy7A7WupqTEx1uQjJvElFYoP5bEtpCa4My3kn6dXVNOVj5lYaaC00/w+pjc0FkL1fxXDU6vDmN0+SchoYmOGPHBxVts0Eb/STPHYYa/KAzVG2G8wR4qayvqNeL2LuevBlV0CUVM=
key fingerprint sha256: 1db926649da623f349b4234d3817d99d1a889dcff6d53f4ddaeab650f3a6b0a0
Decrypt it & read the pick
Decryption key (released after the match)
14d058d0f9fdffdb6f0365682f69dc5deb69d919e95006a31328ea28ab6ca467
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("dlYGcGk0upEUi8slrgYLXrwO7o3iBkIDW4YsVeCqwXeYdqoZWXdP00nbwSU9jZFwdEDJW0bQPADLpLxI6lM+UKjMk6kVmom3RIYX7sph8AunGbqQwUb2T9WmG8OWlenaDZJiWqTAaK32Ou/rDkPVWXxIvbOJbk81SmGzH2hhhkER/Owgaaoti27QGmXPiCzC7XUZFivQb1fOHG8LwrgVXff2/tUXd1lHyaNezy7A7WupqTEx1uQjJvElFYoP5bEtpCa4My3kn6dXVNOVj5lYaaC00/w+pjc0FkL1fxXDU6vDmN0+SchoYmOGPHBxVts0Eb/STPHYYa/KAzVG2G8wR4qayvqNeL2LuevBlV0CUVM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("14d058d0f9fdffdb6f0365682f69dc5deb69d919e95006a31328ea28ab6ca467".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): 14d058d0f9fdffdb6f0365682f69dc5deb69d919e95006a31328ea28ab6ca467
  • IV / nonce (hex): 765606706934ba91148bcb25
  • Ciphertext (hex): ae060b5ebc0eee8de20642035b862c55e0aac1779876aa1959774fd349dbc1253d8d91707440c95b46d03c00cba4bc48ea533e50a8cc93a9159a89b7448617eeca61f00ba719ba90c146f64fd5a61bc39695e9da0d92625aa4c068adf63aefeb0e43d5597c48bdb3896e4f354a61b31f6861864111fcec2069aa2d8b6ed01a65cf882cc2ed7519162bd06f57ce1c6f0bc2b8155df7f6fed517775947c9a35ecf2ec0ed6ba9a93131d6e42326f125158a0fe5b12da426b8332de49fa75754d3958f995869a0b4d3fc3ea637341642f57f15c353abc398dd3e49c8686263863c707156db3411bfd24cf1d861afca033546d86f3047
  • Auth tag (hex): 8a9acafa8d78bd8bb9ebc1955d025153

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. 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.