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

MTE 1904 vs Beşiktaş

Club Friendlies 1 · World · 05 Jul 2026, 15:00 UTC

Final score
0 : 0
Result
Lost
Pick
Beşiktaş
Market
1x2
Model prob.
88.2%
Best price
1.24
Min odds
1.19
Stake factor
1.70

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)
FsHzjA0SHBDZ/W3gRARzT9fnYxP1cfNcMyBBAID/17AY3+2VuMep78A8swMTIIVaE7488piuVr82zu3X0jc7bWOky8evCcrDp4FHNJ1XWhpr1CzgJcpU55T9ZkJxltnCFB/aEdKNHxyX3uHjgwu/0RTDOtjag3Z7uNVaeou6gX4+PbHESoePH8jeDFlmk21VDgEdYHsmGsncFWgDqZab35AN8HvkhXltnE77cfhhHcuicYpIkCbqqN1jguV0JsOdbvBvxidzphgMEU/QdUATTRXDygcMVEbH+38i1LAx/bcxOD1Sf+YDQ4zxpz9F/XdtDy3RuVpCbYX28w3u+zT8zx/pBT+YrMqTlfo=
key fingerprint sha256: 030e0d6068ecb79f85c017bf8eabab2d4c02a39856d6f86d1949266351545110
Decrypt it & read the pick
Decryption key (released after the match)
98a646d99c835469f11c8fa832b5f93349bc65a42b71d0e4ec5511c1b26c4ca0
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("FsHzjA0SHBDZ/W3gRARzT9fnYxP1cfNcMyBBAID/17AY3+2VuMep78A8swMTIIVaE7488piuVr82zu3X0jc7bWOky8evCcrDp4FHNJ1XWhpr1CzgJcpU55T9ZkJxltnCFB/aEdKNHxyX3uHjgwu/0RTDOtjag3Z7uNVaeou6gX4+PbHESoePH8jeDFlmk21VDgEdYHsmGsncFWgDqZab35AN8HvkhXltnE77cfhhHcuicYpIkCbqqN1jguV0JsOdbvBvxidzphgMEU/QdUATTRXDygcMVEbH+38i1LAx/bcxOD1Sf+YDQ4zxpz9F/XdtDy3RuVpCbYX28w3u+zT8zx/pBT+YrMqTlfo="), c => c.charCodeAt(0));
const key  = Uint8Array.from("98a646d99c835469f11c8fa832b5f93349bc65a42b71d0e4ec5511c1b26c4ca0".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): 98a646d99c835469f11c8fa832b5f93349bc65a42b71d0e4ec5511c1b26c4ca0
  • IV / nonce (hex): 16c1f38c0d121c10d9fd6de0
  • Ciphertext (hex): 4404734fd7e76313f571f35c3320410080ffd7b018dfed95b8c7a9efc03cb3031320855a13be3cf298ae56bf36ceedd7d2373b6d63a4cbc7af09cac3a78147349d575a1a6bd42ce025ca54e794fd66427196d9c2141fda11d28d1f1c97dee1e3830bbfd114c33ad8da83767bb8d55a7a8bba817e3e3db1c44a878f1fc8de0c5966936d550e011d607b261ac9dc156803a9969bdf900df07be485796d9c4efb71f8611dcba2718a489026eaa8dd6382e57426c39d6ef06fc62773a6180c114fd07540134d15c3ca070c5446c7fb7f22d4b031fdb731383d527fe603438cf1a73f45fd776d0f2dd1b95a426d85f6f3
  • Auth tag (hex): 0deefb34fccf1fe9053f98acca9395fa

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