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

Árbær vs Tindastóll

3. Deild · Iceland · 25 Jul 2026, 16:00 UTC

Final score
Result
Void
Pick
Árbær
Market
1x2
Model prob.
22.7%
Best price
6.59
Min odds
5.35
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)
J7rp8sgeybKK6kmwVTligVhfWhcZ0hHeAqKefE+gp3VoxldEAkw3SWKqkZxckzzrpbCRMGehtkmuGfPMpnQ1P6pcmIF1YTZJuXoOfGjdX+LYNIR7L2GoHa5/4VJEux9+tgMZobFhDaiABW5tI4roP57qM8W6Dyam0odvTY60qwHSq00dqr9X1v1u0Rhagklv7xJXz8byLVniRcJGGR6X4wAXNdDQAiVtSbyF/amLveJu3qOGx/UBBxevjUBHq519fpTHOMmgEZf/y7ihpNORQD7ODlDiZeGWzUptP0ZamYVTXB/zNcIhxLzVM/vXCHgJ9FZREmHdYRtvIktToNb4uRka0F5E
key fingerprint sha256: 1aca643daa6f4afbbe2be66c060d10ac5854be994f50b388e19e11faf146520e
Decrypt it & read the pick
Decryption key (released after the match)
c1dc726815867be0329b51d6e44560d104aaf22b01aee239d144171cd2e3077b
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("J7rp8sgeybKK6kmwVTligVhfWhcZ0hHeAqKefE+gp3VoxldEAkw3SWKqkZxckzzrpbCRMGehtkmuGfPMpnQ1P6pcmIF1YTZJuXoOfGjdX+LYNIR7L2GoHa5/4VJEux9+tgMZobFhDaiABW5tI4roP57qM8W6Dyam0odvTY60qwHSq00dqr9X1v1u0Rhagklv7xJXz8byLVniRcJGGR6X4wAXNdDQAiVtSbyF/amLveJu3qOGx/UBBxevjUBHq519fpTHOMmgEZf/y7ihpNORQD7ODlDiZeGWzUptP0ZamYVTXB/zNcIhxLzVM/vXCHgJ9FZREmHdYRtvIktToNb4uRka0F5E"), c => c.charCodeAt(0));
const key  = Uint8Array.from("c1dc726815867be0329b51d6e44560d104aaf22b01aee239d144171cd2e3077b".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): c1dc726815867be0329b51d6e44560d104aaf22b01aee239d144171cd2e3077b
  • IV / nonce (hex): 27bae9f2c81ec9b28aea49b0
  • Ciphertext (hex): 55396281585f5a1719d211de02a29e7c4fa0a77568c65744024c374962aa919c5c933ceba5b0913067a1b649ae19f3cca674353faa5c988175613649b97a0e7c68dd5fe2d834847b2f61a81dae7fe15244bb1f7eb60319a1b1610da880056e6d238ae83f9eea33c5ba0f26a6d2876f4d8eb4ab01d2ab4d1daabf57d6fd6ed1185a82496fef1257cfc6f22d59e245c246191e97e3001735d0d002256d49bc85fda98bbde26edea386c7f5010717af8d4047ab9d7d7e94c738c9a01197ffcbb8a1a4d391403ece0e50e265e196cd4a6d3f465a9985535c1ff335c221c4bcd533fbd7087809f456511261
  • Auth tag (hex): dd611b6f224b53a0d6f8b9191ad05e44

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