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

Ethiopia Nigd Bank vs Bahardar

Premier League · Ethiopia · 03 Jul 2026, 10:00 UTC

Final score
2 : 2
Result
Lost
Pick
Bahardar
Market
1x2
Model prob.
27.1%
Best price
7.59
Min odds
4.34
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)
USIH0+fGVQvzBp0eEqBq9Dcepil5ty3v0+b0hGemWtZuIgZ4SkJC+tgz/f3l7dvYrKNyb6kDK01znF9/Dsf+VQD8GJ8FFuh2scj1ATS6H7aqi22f8ypTQDNwSwLZIeHrXtP8l+TAEdPki75EukF2mQ0HcHJde35exDoGx20Ot6iUbNGQYhfxXmPOZqOyfJwZjxh3zXSRC8mQA6aGFjUEr0ECSst18N/IVGfmpARqdaRjKbN5jZqbb8agPTa++zeoaWDI2N0Mfg4couA6LnFGZpGV2yu5vbeGBzckU2xwRbac5X87g1A/UA35ItV7QSXoBtpQjG/YAJ198FCJpoNdTncPulFaOrZX
key fingerprint sha256: c5ede28bf3237886a2672036e4a8e2b878607300dc2c9823b124c1167151fd60
Decrypt it & read the pick
Decryption key (released after the match)
1e16917f0575308fc00da79abd2c939d983c400a75ff362b48f2f0797f0625c4
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("USIH0+fGVQvzBp0eEqBq9Dcepil5ty3v0+b0hGemWtZuIgZ4SkJC+tgz/f3l7dvYrKNyb6kDK01znF9/Dsf+VQD8GJ8FFuh2scj1ATS6H7aqi22f8ypTQDNwSwLZIeHrXtP8l+TAEdPki75EukF2mQ0HcHJde35exDoGx20Ot6iUbNGQYhfxXmPOZqOyfJwZjxh3zXSRC8mQA6aGFjUEr0ECSst18N/IVGfmpARqdaRjKbN5jZqbb8agPTa++zeoaWDI2N0Mfg4couA6LnFGZpGV2yu5vbeGBzckU2xwRbac5X87g1A/UA35ItV7QSXoBtpQjG/YAJ198FCJpoNdTncPulFaOrZX"), c => c.charCodeAt(0));
const key  = Uint8Array.from("1e16917f0575308fc00da79abd2c939d983c400a75ff362b48f2f0797f0625c4".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): 1e16917f0575308fc00da79abd2c939d983c400a75ff362b48f2f0797f0625c4
  • IV / nonce (hex): 512207d3e7c6550bf3069d1e
  • Ciphertext (hex): 12a06af4371ea62979b72defd3e6f48467a65ad66e2206784a4242fad833fdfde5eddbd8aca3726fa9032b4d739c5f7f0ec7fe5500fc189f0516e876b1c8f50134ba1fb6aa8b6d9ff32a534033704b02d921e1eb5ed3fc97e4c011d3e48bbe44ba4176990d0770725d7b7e5ec43a06c76d0eb7a8946cd1906217f15e63ce66a3b27c9c198f1877cd74910bc99003a686163504af41024acb75f0dfc85467e6a4046a75a46329b3798d9a9b6fc6a03d36befb37a86960c8d8dd0c7e0e1ca2e03a2e7146669195db2bb9bdb786073724536c7045b69ce57f3b83503f500df922d57b4125e806da508c6fd8009d
  • Auth tag (hex): 7df05089a6835d4e770fba515a3ab657

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