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

Arba Minch Kenema vs Welwalo Adigrat Uni

Premier League · Ethiopia · 26 Jun 2026, 15:00 UTC

Final score
0 : 1
Result
Won
Pick
Welwalo Adigrat Uni
Market
1x2
Model prob.
46.6%
Best price
2.58
Min odds
2.35
Stake factor
2.60

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)
SU8+FsJoawWKeRWs+Hl5nOG2C7k+XgeRsVTH2docTfQh/eQZmm3Y6ek6ExxiNqB8mA6mHfeykf2FGtvDu8xrFd4Q4eywTz6je636SjOAfkK/k1etvu8FAMFKl0vn9MedGdqn7euYa2/grSKHDqZwnMEVgVkyfSPZJiKWrK3RPpcie8hwuvRvkXez0KbqjHRRYsJLczCUoJ8ljwpOJa3q30CL6ErPLGOQOKfx6aVwrqXYf69JVFfEDn/tagHtsjoCkhn1F+HZVVZfaUDdQj55HZDMWaba0DFst6yofrw8UWzz3D0Hvc8jZ6y/V12Y/Od0Lbp+mZZ/y4GXSf+QO0rOEpm8zxcGObGhIqng+Upu+H5VB/I2
key fingerprint sha256: 3c7510bc061b1513586d2cd586a04ba8a4197d1ac831dbb1e9cb0f02a18a73e0
Decrypt it & read the pick
Decryption key (released after the match)
dea59e9902784b75d5ae5daea3f2f702c455c94d45816bb751da48b6fb523473
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("SU8+FsJoawWKeRWs+Hl5nOG2C7k+XgeRsVTH2docTfQh/eQZmm3Y6ek6ExxiNqB8mA6mHfeykf2FGtvDu8xrFd4Q4eywTz6je636SjOAfkK/k1etvu8FAMFKl0vn9MedGdqn7euYa2/grSKHDqZwnMEVgVkyfSPZJiKWrK3RPpcie8hwuvRvkXez0KbqjHRRYsJLczCUoJ8ljwpOJa3q30CL6ErPLGOQOKfx6aVwrqXYf69JVFfEDn/tagHtsjoCkhn1F+HZVVZfaUDdQj55HZDMWaba0DFst6yofrw8UWzz3D0Hvc8jZ6y/V12Y/Od0Lbp+mZZ/y4GXSf+QO0rOEpm8zxcGObGhIqng+Upu+H5VB/I2"), c => c.charCodeAt(0));
const key  = Uint8Array.from("dea59e9902784b75d5ae5daea3f2f702c455c94d45816bb751da48b6fb523473".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): dea59e9902784b75d5ae5daea3f2f702c455c94d45816bb751da48b6fb523473
  • IV / nonce (hex): 494f3e16c2686b058a7915ac
  • Ciphertext (hex): f879799ce1b60bb93e5e0791b154c7d9da1c4df421fde4199a6dd8e9e93a131c6236a07c980ea61df7b291fd851adbc3bbcc6b15de10e1ecb04f3ea37badfa4a33807e42bf9357adbeef0500c14a974be7f4c79d19daa7edeb986b6fe0ad22870ea6709cc1158159327d23d9262296acadd13e97227bc870baf46f9177b3d0a6ea8c745162c24b733094a09f258f0a4e25adeadf408be84acf2c639038a7f1e9a570aea5d87faf495457c40e7fed6a01edb23a029219f517e1d955565f6940dd423e791d90cc59a6dad0316cb7aca87ebc3c516cf3dc3d07bdcf2367acbf575d98fce7742dba7e99967fcb819749ff903b4ace1299bccf17
  • Auth tag (hex): 0639b1a122a9e0f94a6ef87e5507f236

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