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

Auckland City vs Bay Olympic

National League · New Zealand · 29 Jul 2026, 07:30 UTC

Final score
5 : 1
Result
Won
Pick
Auckland City
Market
1x2
Model prob.
88.5%
Best price
1.29
Min odds
1.18
Stake factor
2.10

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)
gGD+1+bv+N6Z/3+ubI8PArpImtP60hOrQGlYoVaOKqYzZPvaHvMVoidQ+PYIvCHHmFcjkKJrA9Mswai0WSKGTHh2jMcmcCJgixTatmu7iY+VuDVKR8mPpKVtKOXUwYUjLA4J3mgkIi6FwkFDVM01CDzl2kjtnerleaA+Y+sTb1Ntk3hqMHE4digRBlCcnZPqcqNE115d4D2htHfo2p/l/e3DsZD6KEK0a7WpBgr7vcvn3vgoaC51P7mFwt1CrEJafcQZgW+0xgDlGs/w/maoANE8jMcb+3y9Ewv6BBwdnHihECTaucPicGTZyqe5WKemtfexqXY7n+0xxNknUAmeROnC7fBw3OwkXZ85qvfv
key fingerprint sha256: da36e8ee258bf208c65abd51e7045e59129cecb61df6654c68d4a922a4e62cc3
Decrypt it & read the pick
Decryption key (released after the match)
4e9cd8d6011694ce1052e3ddffe16d827e39e816c24787a368381e1e6d1c040c
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("gGD+1+bv+N6Z/3+ubI8PArpImtP60hOrQGlYoVaOKqYzZPvaHvMVoidQ+PYIvCHHmFcjkKJrA9Mswai0WSKGTHh2jMcmcCJgixTatmu7iY+VuDVKR8mPpKVtKOXUwYUjLA4J3mgkIi6FwkFDVM01CDzl2kjtnerleaA+Y+sTb1Ntk3hqMHE4digRBlCcnZPqcqNE115d4D2htHfo2p/l/e3DsZD6KEK0a7WpBgr7vcvn3vgoaC51P7mFwt1CrEJafcQZgW+0xgDlGs/w/maoANE8jMcb+3y9Ewv6BBwdnHihECTaucPicGTZyqe5WKemtfexqXY7n+0xxNknUAmeROnC7fBw3OwkXZ85qvfv"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4e9cd8d6011694ce1052e3ddffe16d827e39e816c24787a368381e1e6d1c040c".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): 4e9cd8d6011694ce1052e3ddffe16d827e39e816c24787a368381e1e6d1c040c
  • IV / nonce (hex): 8060fed7e6eff8de99ff7fae
  • Ciphertext (hex): 6c8f0f02ba489ad3fad213ab406958a1568e2aa63364fbda1ef315a22750f8f608bc21c798572390a26b03d32cc1a8b45922864c78768cc7267022608b14dab66bbb898f95b8354a47c98fa4a56d28e5d4c185232c0e09de6824222e85c2414354cd35083ce5da48ed9deae579a03e63eb136f536d93786a30713876281106509c9d93ea72a344d75e5de03da1b477e8da9fe5fdedc3b190fa2842b46bb5a9060afbbdcbe7def828682e753fb985c2dd42ac425a7dc419816fb4c600e51acff0fe66a800d13c8cc71bfb7cbd130bfa041c1d9c78a11024dab9c3e27064d9caa7b958a7a6b5f7b1a9763b9fed31c4d9275009
  • Auth tag (hex): 9e44e9c2edf070dcec245d9f39aaf7ef

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