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

Kahibah vs Adamstown Rosebuds

Northern Nsw · Australia · 24 Jun 2026, 10:00 UTC

Final score
1 : 2
Result
Lost
Pick
Kahibah
Market
1x2
Model prob.
35.6%
Best price
3.40
Min odds
3.16
Stake factor
2.70

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)
Qbei2yMzZjw/5arL+ZPovIddRh5zxMv87AMMXfqykSLfxPi8PjC6fD6a1rnvjPiAD8nUJQ7yQVoPLpAd7B0vYB6UqlBDDwMRoVDMQjL1K+hgZ88cAyv0v/wMohKUOJz3DmlSgmg7ok9xSeBA2thWuEHLmRA6AJPUUEqk0+ClNLt0tW7ZiLU9n4rzhVib7g1QqBOCPhnKuC+VOdjjNuuktUPKoIYEYBKTi6kqTyjI51n4eCvmatowpmt50n187COKVTGH7epbdbFUKfTDcYeCQ/eM7WBdLDGC5v1nNcoujBKNr7LSCcSu7iaFwz/VWH47osbX62FHqcO5uqbcV/NJzNvphF5vFA==
key fingerprint sha256: a7d3e7ed009a4bc3a9205da9510e94d89597085ecdfb10290f7368faa1b1bc8f
Decrypt it & read the pick
Decryption key (released after the match)
f66ae4be4de13197cb16f1ebe49f6fb06611bed94966b30296a8bbe4b44c59bf
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("Qbei2yMzZjw/5arL+ZPovIddRh5zxMv87AMMXfqykSLfxPi8PjC6fD6a1rnvjPiAD8nUJQ7yQVoPLpAd7B0vYB6UqlBDDwMRoVDMQjL1K+hgZ88cAyv0v/wMohKUOJz3DmlSgmg7ok9xSeBA2thWuEHLmRA6AJPUUEqk0+ClNLt0tW7ZiLU9n4rzhVib7g1QqBOCPhnKuC+VOdjjNuuktUPKoIYEYBKTi6kqTyjI51n4eCvmatowpmt50n187COKVTGH7epbdbFUKfTDcYeCQ/eM7WBdLDGC5v1nNcoujBKNr7LSCcSu7iaFwz/VWH47osbX62FHqcO5uqbcV/NJzNvphF5vFA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f66ae4be4de13197cb16f1ebe49f6fb06611bed94966b30296a8bbe4b44c59bf".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): f66ae4be4de13197cb16f1ebe49f6fb06611bed94966b30296a8bbe4b44c59bf
  • IV / nonce (hex): 41b7a2db2333663c3fe5aacb
  • Ciphertext (hex): f993e8bc875d461e73c4cbfcec030c5dfab29122dfc4f8bc3e30ba7c3e9ad6b9ef8cf8800fc9d4250ef2415a0f2e901dec1d2f601e94aa50430f0311a150cc4232f52be86067cf1c032bf4bffc0ca21294389cf70e695282683ba24f7149e040dad856b841cb99103a0093d4504aa4d3e0a534bb74b56ed988b53d9f8af385589bee0d50a813823e19cab82f9539d8e336eba4b543caa086046012938ba92a4f28c8e759f8782be66ada30a66b79d27d7cec238a553187edea5b75b15429f4c371878243f78ced605d2c3182e6fd6735ca2e8c128dafb2d209c4aeee2685c33fd5587e3ba2c6d7eb6147
  • Auth tag (hex): a9c3b9baa6dc57f349ccdbe9845e6f14

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