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

Launceston United W vs Taroona W

Tasmania Women's Super League · Australia · 11 Jul 2026, 06:45 UTC

Final score
4 : 1
Result
Won
Pick
Launceston United W
Market
1x2
Model prob.
61.8%
Best price
2.03
Min odds
1.73
Stake factor
3.00

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)
TAKERBvSTyiZU+fPAxneDAk6c8yiat+rvLx7TpeY99LNqGqu44EKcmMC5KV/59MqoKXizppJE6UqyYXMd2pF8DLW4ML2hWRwrYsGLUrrPXV/wJWpnFXIW6jJVndJbNJx+4PWvuuKXDwDdATS+o9dZkzb9JLPXURU7jZsFcvSaAwQ+LDrtFwhzDF8ApR9QSAnc0k9uDHAs9DX2BcFZhDMhWDu/uiPU3U5Qo2v1O/nNLPAh9in6nYGEQBt+BMe+EfV3JvfczCtgBWej7SNpu4F68hsOMFbwsCwlmfFsvOFI9UyDab99zT4Y1bW/j9tGaa6PVNimHRweRHoxN1vqqX1QsKEp1jxo8R/U/FHfbUH9qk70Q==
key fingerprint sha256: 193cccd4694ab98e489b54ebd82e7720bd4ec253e20aca596570ab9120f4aeaa
Decrypt it & read the pick
Decryption key (released after the match)
149989ad8fcddba91fa595bee51bd3f15f3b604131792dc08ffeeb5f013e0b88
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("TAKERBvSTyiZU+fPAxneDAk6c8yiat+rvLx7TpeY99LNqGqu44EKcmMC5KV/59MqoKXizppJE6UqyYXMd2pF8DLW4ML2hWRwrYsGLUrrPXV/wJWpnFXIW6jJVndJbNJx+4PWvuuKXDwDdATS+o9dZkzb9JLPXURU7jZsFcvSaAwQ+LDrtFwhzDF8ApR9QSAnc0k9uDHAs9DX2BcFZhDMhWDu/uiPU3U5Qo2v1O/nNLPAh9in6nYGEQBt+BMe+EfV3JvfczCtgBWej7SNpu4F68hsOMFbwsCwlmfFsvOFI9UyDab99zT4Y1bW/j9tGaa6PVNimHRweRHoxN1vqqX1QsKEp1jxo8R/U/FHfbUH9qk70Q=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("149989ad8fcddba91fa595bee51bd3f15f3b604131792dc08ffeeb5f013e0b88".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): 149989ad8fcddba91fa595bee51bd3f15f3b604131792dc08ffeeb5f013e0b88
  • IV / nonce (hex): 4c0284441bd24f289953e7cf
  • Ciphertext (hex): 0319de0c093a73cca26adfabbcbc7b4e9798f7d2cda86aaee3810a726302e4a57fe7d32aa0a5e2ce9a4913a52ac985cc776a45f032d6e0c2f6856470ad8b062d4aeb3d757fc095a99c55c85ba8c95677496cd271fb83d6beeb8a5c3c037404d2fa8f5d664cdbf492cf5d4454ee366c15cbd2680c10f8b0ebb45c21cc317c02947d41202773493db831c0b3d0d7d817056610cc8560eefee88f537539428dafd4efe734b3c087d8a7ea760611006df8131ef847d5dc9bdf7330ad80159e8fb48da6ee05ebc86c38c15bc2c0b09667c5b2f38523d5320da6fdf734f86356d6fe3f6d19a6ba3d53629874707911e8c4dd6faaa5f542c284
  • Auth tag (hex): a758f1a3c47f53f1477db507f6a93bd1

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