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

Green Gully U23 vs Altona Magic U23

Victoria NPL Youth League · Australia · 11 Jul 2026, 02:30 UTC

Final score
4 : 0
Result
Won
Pick
Green Gully U23
Market
1x2
Model prob.
49.6%
Best price
2.37
Min odds
2.19
Stake factor
2.40

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)
3HkvS/uIAcYvPcv/uUx2PCHG8cXg6qC7fqbwUfSVz5ozMOcG2QrhCavseEaGWrg6+zzhtO1HhbO/wwKRoOm/vZG56f3w6P70RFafU1v5b9NcOqVIC0ANu8EpImHwqckwXNtB3sxdLsGXBC5mpxn2dpbF45mpJJgnDdfzsUH1RM3EteNuHXsav+pN3neMBWoKksAPgqeWZp3aZyxpmKYyupHd1/rTqgikhSNes8KDn5ZK8YrzvjVcBkIMO1c/DaQMxjLmW6NPD88qUraIJgRdQCZjZgnXb0lLn7c5+zCLQdlhDKSX/a+eHeUTP+sGMtQV1aZg2yaXj5x7yTKnLuyuoZSuoh7hcx15GXB/n95H
key fingerprint sha256: f35bd3624f02b432c95311118afb40008d5d92eef1a0a08e2ce094684c0b1e88
Decrypt it & read the pick
Decryption key (released after the match)
9d0b0878a36e3804e226de5c10e96221fe7763bb70136bfa5fe8f6cea375d16f
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("3HkvS/uIAcYvPcv/uUx2PCHG8cXg6qC7fqbwUfSVz5ozMOcG2QrhCavseEaGWrg6+zzhtO1HhbO/wwKRoOm/vZG56f3w6P70RFafU1v5b9NcOqVIC0ANu8EpImHwqckwXNtB3sxdLsGXBC5mpxn2dpbF45mpJJgnDdfzsUH1RM3EteNuHXsav+pN3neMBWoKksAPgqeWZp3aZyxpmKYyupHd1/rTqgikhSNes8KDn5ZK8YrzvjVcBkIMO1c/DaQMxjLmW6NPD88qUraIJgRdQCZjZgnXb0lLn7c5+zCLQdlhDKSX/a+eHeUTP+sGMtQV1aZg2yaXj5x7yTKnLuyuoZSuoh7hcx15GXB/n95H"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9d0b0878a36e3804e226de5c10e96221fe7763bb70136bfa5fe8f6cea375d16f".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): 9d0b0878a36e3804e226de5c10e96221fe7763bb70136bfa5fe8f6cea375d16f
  • IV / nonce (hex): dc792f4bfb8801c62f3dcbff
  • Ciphertext (hex): b94c763c21c6f1c5e0eaa0bb7ea6f051f495cf9a3330e706d90ae109abec7846865ab83afb3ce1b4ed4785b3bfc30291a0e9bfbd91b9e9fdf0e8fef444569f535bf96fd35c3aa5480b400dbbc1292261f0a9c9305cdb41decc5d2ec197042e66a719f67696c5e399a92498270dd7f3b141f544cdc4b5e36e1d7b1abfea4dde778c056a0a92c00f82a796669dda672c6998a632ba91ddd7fad3aa08a485235eb3c2839f964af18af3be355c06420c3b573f0da40cc632e65ba34f0fcf2a52b68826045d4026636609d76f494b9fb739fb308b41d9610ca497fdaf9e1de5133feb0632d415d5a660db26978f9c7bc932a72eec
  • Auth tag (hex): aea194aea21ee1731d7919707f9fde47

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