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

EVV Echt vs SV Poortugaal

Derde Divisie · Netherlands · 05 Sept 2026, 17:30 UTC

Final score
0 : 1
Result
Lost
Pick
EVV Echt
Market
1X2
CLV vs fair close
+13.23%
Model prob.
34.3%
Best price
3.30
Min odds
2.97
Stake factor
1.90

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)
b4FuPkCeq08hvY6bRQoTg++DAYN2oup4aAY2hTZsVOgKEe07+sXJ81czVX7HhlKOCxlBJk3NHmDMvbXA3qAQ6J65mrsCVH/n7fLavadYr6Pn/VR86d2oXu223cD9Ylw3URCZslhAZnifkJKijBhSmOUN6DCzFJSyusHudMRJjPj0jYxzlfo70GaMMav/U/RCliZyDjn8lomatxyGFt8jaKfqkX0D77ObW9xx06cDFI7RIi2VYv1REziEiZfGkX4PqmFu2JpjKF9ozLnD/ZK8Gt2AXHqrXqf5T7vipumT4POnEy5ykrXiyOdYl8OSjcGJY2nRER0rTHNYyiEVuR7TUFxMJtMVLbl18oUC
key fingerprint sha256: ea96c697a5422780e6ddd1af35bf5af50bfe2dbb2b8e1379d28273cc56962be8
Decrypt it & read the pick
Decryption key (released after the match)
a38d87db7a0c060ee18a33f681b006ad885c6a1cfcf2d7c7bdc255309ed77931
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("b4FuPkCeq08hvY6bRQoTg++DAYN2oup4aAY2hTZsVOgKEe07+sXJ81czVX7HhlKOCxlBJk3NHmDMvbXA3qAQ6J65mrsCVH/n7fLavadYr6Pn/VR86d2oXu223cD9Ylw3URCZslhAZnifkJKijBhSmOUN6DCzFJSyusHudMRJjPj0jYxzlfo70GaMMav/U/RCliZyDjn8lomatxyGFt8jaKfqkX0D77ObW9xx06cDFI7RIi2VYv1REziEiZfGkX4PqmFu2JpjKF9ozLnD/ZK8Gt2AXHqrXqf5T7vipumT4POnEy5ykrXiyOdYl8OSjcGJY2nRER0rTHNYyiEVuR7TUFxMJtMVLbl18oUC"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a38d87db7a0c060ee18a33f681b006ad885c6a1cfcf2d7c7bdc255309ed77931".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): a38d87db7a0c060ee18a33f681b006ad885c6a1cfcf2d7c7bdc255309ed77931
  • IV / nonce (hex): 6f816e3e409eab4f21bd8e9b
  • Ciphertext (hex): 450a1383ef83018376a2ea7868063685366c54e80a11ed3bfac5c9f35733557ec786528e0b1941264dcd1e60ccbdb5c0dea010e89eb99abb02547fe7edf2dabda758afa3e7fd547ce9dda85eedb6ddc0fd625c37511099b2584066789f9092a28c185298e50de830b31494b2bac1ee74c4498cf8f48d8c7395fa3bd0668c31abff53f4429626720e39fc96899ab71c8616df2368a7ea917d03efb39b5bdc71d3a703148ed1222d9562fd511338848997c6917e0faa616ed89a63285f68ccb9c3fd92bc1add805c7aab5ea7f94fbbe2a6e993e0f3a7132e7292b5e2c8e75897c3928dc1896369d1111d2b4c7358ca21
  • Auth tag (hex): 15b91ed3505c4c26d3152db975f28502

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