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

Gold Coast United W vs Souths Strikers W

Queensland NPL Women · Australia · 04 Jul 2026, 05:00 UTC

Final score
12 : 0
Result
Won
Pick
Gold Coast United W
Market
1x2
Model prob.
81.6%
Best price
1.46
Min odds
1.29
Stake factor
2.60

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)
SUWkgYvvssaaZEd220qPwPOzgQv13gL4cjXYucdg+Q0B9p7qxsfPrtOxdzeNzDN6+SYQWgOB9smMUoswPzgZuXiDqV+EGFshHgtUHwCCUZe6UOA004GNIKokt8V74OrtWyTtEXiDqd4hYKPV7r1hVMZw1yEyNSKylcKaadaSgMAT43+/nEoGmabXg4begFWnAs7uvyFw2rX4sryY0QzY2KIPbEKKbn5vMUbofT3X/nzrmF79DEQyV2k22ccEY5MqYZHEHVdtxnQbHWQoxCANQB66Bkid4aIFHpmibfgr5iiHZRKoRfuP6wdIMV6zjOLbB5UUFZYqbQHfCv2UgpTgpk0RMxQsajbITBC7FSSUNhttoajr
key fingerprint sha256: e97627616926e0c7e60d29ab69ba3929162a2ec0060754685f7bf96dd6689571
Decrypt it & read the pick
Decryption key (released after the match)
6d638448e0a1c074fb69d237b3cdb7b9cfde44f4ca8efd10a45975f44f557e68
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("SUWkgYvvssaaZEd220qPwPOzgQv13gL4cjXYucdg+Q0B9p7qxsfPrtOxdzeNzDN6+SYQWgOB9smMUoswPzgZuXiDqV+EGFshHgtUHwCCUZe6UOA004GNIKokt8V74OrtWyTtEXiDqd4hYKPV7r1hVMZw1yEyNSKylcKaadaSgMAT43+/nEoGmabXg4begFWnAs7uvyFw2rX4sryY0QzY2KIPbEKKbn5vMUbofT3X/nzrmF79DEQyV2k22ccEY5MqYZHEHVdtxnQbHWQoxCANQB66Bkid4aIFHpmibfgr5iiHZRKoRfuP6wdIMV6zjOLbB5UUFZYqbQHfCv2UgpTgpk0RMxQsajbITBC7FSSUNhttoajr"), c => c.charCodeAt(0));
const key  = Uint8Array.from("6d638448e0a1c074fb69d237b3cdb7b9cfde44f4ca8efd10a45975f44f557e68".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): 6d638448e0a1c074fb69d237b3cdb7b9cfde44f4ca8efd10a45975f44f557e68
  • IV / nonce (hex): 4945a4818befb2c69a644776
  • Ciphertext (hex): db4a8fc0f3b3810bf5de02f87235d8b9c760f90d01f69eeac6c7cfaed3b177378dcc337af926105a0381f6c98c528b303f3819b97883a95f84185b211e0b541f00825197ba50e034d3818d20aa24b7c57be0eaed5b24ed117883a9de2160a3d5eebd6154c670d721323522b295c29a69d69280c013e37fbf9c4a0699a6d78386de8055a702ceeebf2170dab5f8b2bc98d10cd8d8a20f6c428a6e7e6f3146e87d3dd7fe7ceb985efd0c4432576936d9c70463932a6191c41d576dc6741b1d6428c4200d401eba06489de1a2051e99a26df82be628876512a845fb8feb0748315eb38ce2db07951415962a6d01df0afd948294e0a64d113314
  • Auth tag (hex): 2c6a36c84c10bb152494361b6da1a8eb

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