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

Malahide United vs Lucan United

Leinster Senior League · Ireland · 26 Aug 2026, 18:45 UTC

Final score
2 : 0
Result
Lost
Pick
Lucan United
Market
1X2
CLV vs fair close
-21.15%
Model prob.
17.9%
Best price
6.00
Min odds
5.70
Stake factor
1.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)
wA+V4Pf5SUsw6rITBx6qKfqz8685CJ3sOVdf9r9jry5/iS8301e0VQ28xz/P24UjhoDAJi7TqiHKsAbiyujMquyCVfAjxV3TtlaZnVC8ltDCe7L8Y4Gof3tL9/NmoAfXSK3aLUrI3gVh9R5NjcZH0+4Mrlo19A0fb1ipPIFxZfHh8ixrUNoS3iRO9QERMHLpiLNPnqUPD5cfpru9rADqDCZh40MQ6LtL3GXP0dlHCzuhtURRAEvBDz+NUdIn3TpigA8hxKXVKrZaauZBulgtI9C06aF+OzPftsjizUdkjcNslPojRbZqJbduIZHLp2OJwyAnSkV2gRFUCoOYM13bbDVFBkC2mw==
key fingerprint sha256: 52dc569255865dfa67ca6dbb73a68834d15e4fbf8f3a0081b1c1459082df406d
Decrypt it & read the pick
Decryption key (released after the match)
ca07f12ece9b5331e2fb391b9b9f9e83bfccb9d1d77f622f0e5efa749cfc70b2
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("wA+V4Pf5SUsw6rITBx6qKfqz8685CJ3sOVdf9r9jry5/iS8301e0VQ28xz/P24UjhoDAJi7TqiHKsAbiyujMquyCVfAjxV3TtlaZnVC8ltDCe7L8Y4Gof3tL9/NmoAfXSK3aLUrI3gVh9R5NjcZH0+4Mrlo19A0fb1ipPIFxZfHh8ixrUNoS3iRO9QERMHLpiLNPnqUPD5cfpru9rADqDCZh40MQ6LtL3GXP0dlHCzuhtURRAEvBDz+NUdIn3TpigA8hxKXVKrZaauZBulgtI9C06aF+OzPftsjizUdkjcNslPojRbZqJbduIZHLp2OJwyAnSkV2gRFUCoOYM13bbDVFBkC2mw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ca07f12ece9b5331e2fb391b9b9f9e83bfccb9d1d77f622f0e5efa749cfc70b2".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): ca07f12ece9b5331e2fb391b9b9f9e83bfccb9d1d77f622f0e5efa749cfc70b2
  • IV / nonce (hex): c00f95e0f7f9494b30eab213
  • Ciphertext (hex): 071eaa29fab3f3af39089dec39575ff6bf63af2e7f892f37d357b4550dbcc73fcfdb85238680c0262ed3aa21cab006e2cae8ccaaec8255f023c55dd3b656999d50bc96d0c27bb2fc6381a87f7b4bf7f366a007d748adda2d4ac8de0561f51e4d8dc647d3ee0cae5a35f40d1f6f58a93c817165f1e1f22c6b50da12de244ef501113072e988b34f9ea50f0f971fa6bbbdac00ea0c2661e34310e8bb4bdc65cfd1d9470b3ba1b54451004bc10f3f8d51d227dd3a62800f21c4a5d52ab65a6ae641ba582d23d0b4e9a17e3b33dfb6c8e2cd47648dc36c94fa2345b66a25b76e2191cba76389c320274a4576
  • Auth tag (hex): 8111540a8398335ddb6c35450640b69b

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