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

Bentleigh Greens W vs Alamein W

Victoria NPL Women · Australia · 26 Jun 2026, 08:15 UTC

Final score
1 : 1
Result
Lost
Pick
Alamein W
Market
1x2
Model prob.
65.3%
Best price
1.70
Min odds
1.63
Stake factor
1.80

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)
ESoBRxg5bb8QYhFAo1hBcg9s5mLIwl/+zSimQsA8XHCQ/4TIYRbpSUzQY203aDc5S/3y8MXzlNm88lK6HVS0pWtE2So89XzRDWW/kU20bgUccHf9Np2VxnMknFnfHRmGAb6ha/dQFu2QKuVsi9Jsni2sCDkh0rt5fyjD/bB8IKthSjBIKs7NGUfV6eA6txApyRN8CfL0/IQEBcJ4e/GWc5ln9gksNtMQU3hpSKhyreu/IfybmCVbCRGRO1zkO94eUBP6jtsPmWE4ac0Qk7lFnqmPcK8PLtc7aa7LO65kAnTQ9o5kpJJCHj8A8eyHNF5fyq1RLeMOOMFxNfelP8GwmiB7Wr9KdOM=
key fingerprint sha256: f32837360e4acebcc07cb6e88fcf3ca7da802d1b56be875cdce3b306dd037e73
Decrypt it & read the pick
Decryption key (released after the match)
2b5306bc470df5f59686ce36c4b8d880654ba80484810888151f7f06e899c267
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("ESoBRxg5bb8QYhFAo1hBcg9s5mLIwl/+zSimQsA8XHCQ/4TIYRbpSUzQY203aDc5S/3y8MXzlNm88lK6HVS0pWtE2So89XzRDWW/kU20bgUccHf9Np2VxnMknFnfHRmGAb6ha/dQFu2QKuVsi9Jsni2sCDkh0rt5fyjD/bB8IKthSjBIKs7NGUfV6eA6txApyRN8CfL0/IQEBcJ4e/GWc5ln9gksNtMQU3hpSKhyreu/IfybmCVbCRGRO1zkO94eUBP6jtsPmWE4ac0Qk7lFnqmPcK8PLtc7aa7LO65kAnTQ9o5kpJJCHj8A8eyHNF5fyq1RLeMOOMFxNfelP8GwmiB7Wr9KdOM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2b5306bc470df5f59686ce36c4b8d880654ba80484810888151f7f06e899c267".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): 2b5306bc470df5f59686ce36c4b8d880654ba80484810888151f7f06e899c267
  • IV / nonce (hex): 112a014718396dbf10621140
  • Ciphertext (hex): a35841720f6ce662c8c25ffecd28a642c03c5c7090ff84c86116e9494cd0636d376837394bfdf2f0c5f394d9bcf252ba1d54b4a56b44d92a3cf57cd10d65bf914db46e051c7077fd369d95c673249c59df1d198601bea16bf75016ed902ae56c8bd26c9e2dac083921d2bb797f28c3fdb07c20ab614a30482acecd1947d5e9e03ab71029c9137c09f2f4fc840405c2787bf196739967f6092c36d31053786948a872adebbf21fc9b98255b0911913b5ce43bde1e5013fa8edb0f99613869cd1093b9459ea98f70af0f2ed73b69aecb3bae640274d0f68e64a492421e3f00f1ec87345e5fcaad512de30e38
  • Auth tag (hex): c17135f7a53fc1b09a207b5abf4a74e3

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