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

Ba vs Nadi

National Football League · Fiji · 05 Jul 2026, 03:00 UTC

Final score
1 : 1
Result
Lost
Pick
Ba
Market
1x2
Model prob.
80.4%
Best price
1.36
Min odds
1.31
Stake factor
1.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)
fEpdy+Hz/Dm7w/yjJLWPUkKISonEuMz7h7J0OB2vvizes+seq052Kcm2aTWPg/5xVlV8waM9MzOhOoasCmcbRQMaC5Ytg4cszlSa3TtEeO9cMHSkbB0RWcC7LYjFQGPepxx1x1F1RcwxhrJc/LxUpV8WyXzqFj3BeotkgWzDldWJoUI+yGaqz9h655fNSpE+0DVBxaKDDSOUSUvO4ABRiaebKrrxV10V5SRgwGgp6Q4WWfZ9TKkUscbUugS15M7/LVTvCbF1sIxTPb24k4jTNH4aIg874cyhC+sGWO5pQcvAztjP5nhywTFNeI0FvFGFuiLM22GQt3nP8S0CW1L0KiHE
key fingerprint sha256: ba68c55b19b6583a62a042ce6e70d58cdfc0633b7efcf878e87456c348353420
Decrypt it & read the pick
Decryption key (released after the match)
f97d4a35b023f3d42c5c93ee86994235aa10c8d86d8a87c1f97d4f6cafda8801
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("fEpdy+Hz/Dm7w/yjJLWPUkKISonEuMz7h7J0OB2vvizes+seq052Kcm2aTWPg/5xVlV8waM9MzOhOoasCmcbRQMaC5Ytg4cszlSa3TtEeO9cMHSkbB0RWcC7LYjFQGPepxx1x1F1RcwxhrJc/LxUpV8WyXzqFj3BeotkgWzDldWJoUI+yGaqz9h655fNSpE+0DVBxaKDDSOUSUvO4ABRiaebKrrxV10V5SRgwGgp6Q4WWfZ9TKkUscbUugS15M7/LVTvCbF1sIxTPb24k4jTNH4aIg874cyhC+sGWO5pQcvAztjP5nhywTFNeI0FvFGFuiLM22GQt3nP8S0CW1L0KiHE"), c => c.charCodeAt(0));
const key  = Uint8Array.from("f97d4a35b023f3d42c5c93ee86994235aa10c8d86d8a87c1f97d4f6cafda8801".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): f97d4a35b023f3d42c5c93ee86994235aa10c8d86d8a87c1f97d4f6cafda8801
  • IV / nonce (hex): 7c4a5dcbe1f3fc39bbc3fca3
  • Ciphertext (hex): 24b58f5242884a89c4b8ccfb87b274381dafbe2cdeb3eb1eab4e7629c9b669358f83fe7156557cc1a33d3333a13a86ac0a671b45031a0b962d83872cce549add3b4478ef5c3074a46c1d1159c0bb2d88c54063dea71c75c7517545cc3186b25cfcbc54a55f16c97cea163dc17a8b64816cc395d589a1423ec866aacfd87ae797cd4a913ed03541c5a2830d2394494bcee0005189a79b2abaf1575d15e52460c06829e90e1659f67d4ca914b1c6d4ba04b5e4ceff2d54ef09b175b08c533dbdb89388d3347e1a220f3be1cca10beb0658ee6941cbc0ced8cfe67872c1314d788d05bc5185ba22
  • Auth tag (hex): ccdb6190b779cff12d025b52f42a21c4

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