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

Preston Lions U23 vs Bentleigh Greens U23

Victoria NPL Youth League · Australia · 26 Jul 2026, 04:00 UTC

Final score
3 : 2
Result
Won
Pick
Preston Lions U23
Market
1x2
Model prob.
38.4%
Best price
3.14
Min odds
2.91
Stake factor
2.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)
CGJ7IJUA1/29+BW28OKk0nkRdwhm1gzf8NRtXTQXvibxieFXK+IZn4HzfB4w6oEjr04NIwWOc1/ZeoKVaETx50DO5WArv2HmumdfweNW8D3uch5cz7wgQu0FyQyIk0T1AVLccQAsOxKnHGNQf7RwMaEMP0fXm4Zf5riyXQ7aKWsIVDMioxH/tv51DUWd6gflHfQO0eJDn9gAubjPdJnfzeIgVI5wMnoM6R9q+l92zzonAGvP3G2uAQI0rH0hBf0cMMA1xOnAJaCya9zkxfUAcpjQWw9fJB/5FANyRIjsrrVOZttDGoR2/m6N7rjB1KgBtpO8qVdhrl4/8E7k8y+4GQGwn7kSI2ReuBPSRX/DzRGY
key fingerprint sha256: cb74d518e512858aba8d94d1a42944ff864e8db51995c4295d37952e3346ef45
Decrypt it & read the pick
Decryption key (released after the match)
2aabf88e1681cb4da0f936576b5418b21361a0da1526b14ec12a33b386365f0b
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("CGJ7IJUA1/29+BW28OKk0nkRdwhm1gzf8NRtXTQXvibxieFXK+IZn4HzfB4w6oEjr04NIwWOc1/ZeoKVaETx50DO5WArv2HmumdfweNW8D3uch5cz7wgQu0FyQyIk0T1AVLccQAsOxKnHGNQf7RwMaEMP0fXm4Zf5riyXQ7aKWsIVDMioxH/tv51DUWd6gflHfQO0eJDn9gAubjPdJnfzeIgVI5wMnoM6R9q+l92zzonAGvP3G2uAQI0rH0hBf0cMMA1xOnAJaCya9zkxfUAcpjQWw9fJB/5FANyRIjsrrVOZttDGoR2/m6N7rjB1KgBtpO8qVdhrl4/8E7k8y+4GQGwn7kSI2ReuBPSRX/DzRGY"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2aabf88e1681cb4da0f936576b5418b21361a0da1526b14ec12a33b386365f0b".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): 2aabf88e1681cb4da0f936576b5418b21361a0da1526b14ec12a33b386365f0b
  • IV / nonce (hex): 08627b209500d7fdbdf815b6
  • Ciphertext (hex): f0e2a4d27911770866d60cdff0d46d5d3417be26f189e1572be2199f81f37c1e30ea8123af4e0d23058e735fd97a82956844f1e740cee5602bbf61e6ba675fc1e356f03dee721e5ccfbc2042ed05c90c889344f50152dc71002c3b12a71c63507fb47031a10c3f47d79b865fe6b8b25d0eda296b08543322a311ffb6fe750d459dea07e51df40ed1e2439fd800b9b8cf7499dfcde220548e70327a0ce91f6afa5f76cf3a27006bcfdc6dae010234ac7d2105fd1c30c035c4e9c025a0b26bdce4c5f5007298d05b0f5f241ff91403724488ecaeb54e66db431a8476fe6e8deeb8c1d4a801b693bca95761ae5e3ff04ee4f32fb81901
  • Auth tag (hex): b09fb91223645eb813d2457fc3cd1198

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