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

Awassa Kenema vs Adama Kenema

Premier League · Ethiopia · 02 Jul 2026, 12:00 UTC

Final score
2 : 3
Result
Lost
Pick
Awassa Kenema
Market
1x2
Model prob.
32.1%
Best price
4.08
Min odds
3.56
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)
SQPZ2bjiI9iv0NpVPlUxYSDe21fm+2zgRCs3MS0ml/3V5eCXkK1nEEGxEl1QE7KrX2webFDqonAGHw35TsBn3W8ktYYn75P3Fd+P4oMB5gLaN3LJN6foAv6Z7JRUezg1A+L7pnJ1OXJzILWZNyOm4rZ9PQnea3jWvk4T5ac0UKuebKzYdKR7gxljnIFJjX1koiiwg7ZCPNinPvm1KK5QlLfR4vKCWOopOiuzxYTzJyA+MON543TcWPyot7WcD8JRA/XfINOA7LMFi0EnWg2D3ZDdMAIku/15BLoOmDzcGqKSmVPBxjlLYRJIlf2u6Gg/KgDYShB2h+tgMvZZSWsTODIa9gYTOIpAryU=
key fingerprint sha256: b7b7cfcdea5047b33c8b9aac79e6e458a5d1b28d908d64418a9176394f1b0d93
Decrypt it & read the pick
Decryption key (released after the match)
327bff91baf5f13d145c178f84563575943a19f8502a61a6d9a6c45d660132a3
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("SQPZ2bjiI9iv0NpVPlUxYSDe21fm+2zgRCs3MS0ml/3V5eCXkK1nEEGxEl1QE7KrX2webFDqonAGHw35TsBn3W8ktYYn75P3Fd+P4oMB5gLaN3LJN6foAv6Z7JRUezg1A+L7pnJ1OXJzILWZNyOm4rZ9PQnea3jWvk4T5ac0UKuebKzYdKR7gxljnIFJjX1koiiwg7ZCPNinPvm1KK5QlLfR4vKCWOopOiuzxYTzJyA+MON543TcWPyot7WcD8JRA/XfINOA7LMFi0EnWg2D3ZDdMAIku/15BLoOmDzcGqKSmVPBxjlLYRJIlf2u6Gg/KgDYShB2h+tgMvZZSWsTODIa9gYTOIpAryU="), c => c.charCodeAt(0));
const key  = Uint8Array.from("327bff91baf5f13d145c178f84563575943a19f8502a61a6d9a6c45d660132a3".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): 327bff91baf5f13d145c178f84563575943a19f8502a61a6d9a6c45d660132a3
  • IV / nonce (hex): 4903d9d9b8e223d8afd0da55
  • Ciphertext (hex): 3e55316120dedb57e6fb6ce0442b37312d2697fdd5e5e09790ad671041b1125d5013b2ab5f6c1e6c50eaa270061f0df94ec067dd6f24b58627ef93f715df8fe28301e602da3772c937a7e802fe99ec94547b383503e2fba6727539727320b5993723a6e2b67d3d09de6b78d6be4e13e5a73450ab9e6cacd874a47b8319639c81498d7d64a228b083b6423cd8a73ef9b528ae5094b7d1e2f28258ea293a2bb3c584f327203e30e379e374dc58fca8b7b59c0fc25103f5df20d380ecb3058b41275a0d83dd90dd300224bbfd7904ba0e983cdc1aa2929953c1c6394b61124895fdaee8683f2a00d84a107687eb6032
  • Auth tag (hex): f659496b1338321af60613388a40af25

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