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

Auckland City vs Tauranga City United

National League · New Zealand · 18 Jul 2026, 03:00 UTC

Final score
3 : 2
Result
Won
Pick
Auckland City
Market
1x2
Model prob.
79.8%
Best price
1.42
Min odds
1.32
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)
SfERVnpGN0/qo7ag31HIPQhCbN8h49pKvPuicj0nHZcRW4KfNY3OBLCuDH5B/8Sl4JxXQSUoQnBw1lt6NN1QAx0pSI+HdCbiBY5Od49hdRfKzkbKn5yKg4AQfloFS8v/8APOOzdWd0C9FHODfX4fS54vqRCfTFFf0jBgv8Z1c1lE0OfFMxwKq9RY/+UD1487aWb9yg4XU4neZe5zr3Xvuf6bESOW3iGRQcvAnVZxlcuLOzeJjO+UqAOK7Pmq+6GvLurb2jRMW8g4pFqxn9yySHXhZ5VNW/SxDCLVrHGWhd4fXE4GYp/ZN9frBLuWo1+UcZujVLhe/Fp6QJrfWpQjlT6F7RFteW9NQgyMnC4q
key fingerprint sha256: a7f7cb831736ad3a3799807b6ed47dfbaad01df7e455c25b15b14f3cb4e878b2
Decrypt it & read the pick
Decryption key (released after the match)
55e2cba0d2cf3425f64d3767daab3a6276cfb354751f0bf85d69dc1db089b681
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("SfERVnpGN0/qo7ag31HIPQhCbN8h49pKvPuicj0nHZcRW4KfNY3OBLCuDH5B/8Sl4JxXQSUoQnBw1lt6NN1QAx0pSI+HdCbiBY5Od49hdRfKzkbKn5yKg4AQfloFS8v/8APOOzdWd0C9FHODfX4fS54vqRCfTFFf0jBgv8Z1c1lE0OfFMxwKq9RY/+UD1487aWb9yg4XU4neZe5zr3Xvuf6bESOW3iGRQcvAnVZxlcuLOzeJjO+UqAOK7Pmq+6GvLurb2jRMW8g4pFqxn9yySHXhZ5VNW/SxDCLVrHGWhd4fXE4GYp/ZN9frBLuWo1+UcZujVLhe/Fp6QJrfWpQjlT6F7RFteW9NQgyMnC4q"), c => c.charCodeAt(0));
const key  = Uint8Array.from("55e2cba0d2cf3425f64d3767daab3a6276cfb354751f0bf85d69dc1db089b681".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): 55e2cba0d2cf3425f64d3767daab3a6276cfb354751f0bf85d69dc1db089b681
  • IV / nonce (hex): 49f111567a46374feaa3b6a0
  • Ciphertext (hex): df51c83d08426cdf21e3da4abcfba2723d271d97115b829f358dce04b0ae0c7e41ffc4a5e09c57412528427070d65b7a34dd50031d29488f877426e2058e4e778f617517cace46ca9f9c8a8380107e5a054bcbfff003ce3b37567740bd1473837d7e1f4b9e2fa9109f4c515fd23060bfc675735944d0e7c5331c0aabd458ffe503d78f3b6966fdca0e175389de65ee73af75efb9fe9b112396de219141cbc09d567195cb8b3b37898cef94a8038aecf9aafba1af2eeadbda344c5bc838a45ab19fdcb24875e167954d5bf4b10c22d5ac719685de1f5c4e06629fd937d7eb04bb96a35f94719ba354b85efc5a7a409adf5a94
  • Auth tag (hex): 23953e85ed116d796f4d420c8c9c2e2a

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