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

Merthyr Town vs Chorley

National League North · England · 29 Aug 2026, 14:00 UTC

Final score
1 : 1
Result
Lost
Pick
Merthyr Town
Market
1X2
CLV vs fair close
+10.02%
Model prob.
44.7%
Best price
2.45
Min odds
2.28
Stake factor
2.20

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)
ee5ujUyXxZLiQdN/Kbtuy5w1wOQaF5v03+3glvC5ANB4tByPBQXNL5ZGVUqp4armsNrAHERsQhOxnVNjBQIyU6IbGQej46qffzruDJSzXZmkbsw2Gi1j42l4vRZgTALHIy2BsE8Qqo0V0G8ciH5acpQ/TY9UNm6Wr0QSLhr24HcvjZYrTZJeOhQ6epWTDUgeyb6BlxAUWiEhSkeo7IfyeQOg/5ykAhN84KV89gHk3d5Jka8xsX4ztPPtMQDYyPRs6qtdDEpoItNY1sp+aPlJOiDQJd/mMWPr4AC5bU8uoQ8hh/B8Vy3q1DX/s4u3hcSFx7dueuDQBillJwYsayu9rnPzA508Eg3C7Aw42cXoO18=
key fingerprint sha256: ef41457de3fb886eb13634f1e51d2a80ac3153e70e4c112083ff07654e0c0444
Decrypt it & read the pick
Decryption key (released after the match)
bb59a59f40083b64567df798066784127a56f794910b0b71322a7a1446cd74ac
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("ee5ujUyXxZLiQdN/Kbtuy5w1wOQaF5v03+3glvC5ANB4tByPBQXNL5ZGVUqp4armsNrAHERsQhOxnVNjBQIyU6IbGQej46qffzruDJSzXZmkbsw2Gi1j42l4vRZgTALHIy2BsE8Qqo0V0G8ciH5acpQ/TY9UNm6Wr0QSLhr24HcvjZYrTZJeOhQ6epWTDUgeyb6BlxAUWiEhSkeo7IfyeQOg/5ykAhN84KV89gHk3d5Jka8xsX4ztPPtMQDYyPRs6qtdDEpoItNY1sp+aPlJOiDQJd/mMWPr4AC5bU8uoQ8hh/B8Vy3q1DX/s4u3hcSFx7dueuDQBillJwYsayu9rnPzA508Eg3C7Aw42cXoO18="), c => c.charCodeAt(0));
const key  = Uint8Array.from("bb59a59f40083b64567df798066784127a56f794910b0b71322a7a1446cd74ac".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): bb59a59f40083b64567df798066784127a56f794910b0b71322a7a1446cd74ac
  • IV / nonce (hex): 79ee6e8d4c97c592e241d37f
  • Ciphertext (hex): 29bb6ecb9c35c0e41a179bf4dfede096f0b900d078b41c8f0505cd2f9646554aa9e1aae6b0dac01c446c4213b19d536305023253a21b1907a3e3aa9f7f3aee0c94b35d99a46ecc361a2d63e36978bd16604c02c7232d81b04f10aa8d15d06f1c887e5a72943f4d8f54366e96af44122e1af6e0772f8d962b4d925e3a143a7a95930d481ec9be819710145a21214a47a8ec87f27903a0ff9ca402137ce0a57cf601e4ddde4991af31b17e33b4f3ed3100d8c8f46ceaab5d0c4a6822d358d6ca7e68f9493a20d025dfe63163ebe000b96d4f2ea10f2187f07c572dead435ffb38bb785c485c7b76e7ae0d006296527062c6b2bbdae
  • Auth tag (hex): 73f3039d3c120dc2ec0c38d9c5e83b5f

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