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

Fiorentina vs Frosinone

Serie A · Italy · 29 Aug 2026, 16:30 UTC

Final score
0 : 3
Result
Won
Pick
Frosinone
Market
1X2
Model prob.
17.6%
Best price
6.50
Min odds
5.78
Stake factor
1.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)
+IXjyW/DKCf8nPZKhZ6w+1Gk+MSClDRmmdwJdi7Bg8SMuVjL2s2lKhJ6nIpdQrniHu3LDzaoZS184/nvACr4CwK6I5H+6B+LFzlKj6htmXrztP77YqAL5zQlGv4oNaRql0C3kqSDWkKIyVkCfEcN2FCSmEEgItsB92dVAZ4mI17LRNM/6+fVly4OOiEFk1gbqDXMhzWSbyPq2SL1RWaBoFzmXBTlakYl/CLUMM6+CqJs4W7TC12kvPvf8S5ez0SMZkWQp2SzLbZ9loG7Jn+9MJuV5BUgNBjhi7b0iFKr2H+iNSSFWKixVdsBTGSQJyThPqqtZTMp8nISDdq8mYHbZvHFMOnwYJM5
key fingerprint sha256: 3dd39b69020a72db93e75232a40a0f05683c856ffcb9758c3fbc2bd10f43d1df
Decrypt it & read the pick
Decryption key (released after the match)
0547bee6a2c747f4f51098b85b67db36276efc48f4269e1fd0a683715b32ad57
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("+IXjyW/DKCf8nPZKhZ6w+1Gk+MSClDRmmdwJdi7Bg8SMuVjL2s2lKhJ6nIpdQrniHu3LDzaoZS184/nvACr4CwK6I5H+6B+LFzlKj6htmXrztP77YqAL5zQlGv4oNaRql0C3kqSDWkKIyVkCfEcN2FCSmEEgItsB92dVAZ4mI17LRNM/6+fVly4OOiEFk1gbqDXMhzWSbyPq2SL1RWaBoFzmXBTlakYl/CLUMM6+CqJs4W7TC12kvPvf8S5ez0SMZkWQp2SzLbZ9loG7Jn+9MJuV5BUgNBjhi7b0iFKr2H+iNSSFWKixVdsBTGSQJyThPqqtZTMp8nISDdq8mYHbZvHFMOnwYJM5"), c => c.charCodeAt(0));
const key  = Uint8Array.from("0547bee6a2c747f4f51098b85b67db36276efc48f4269e1fd0a683715b32ad57".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): 0547bee6a2c747f4f51098b85b67db36276efc48f4269e1fd0a683715b32ad57
  • IV / nonce (hex): f885e3c96fc32827fc9cf64a
  • Ciphertext (hex): 859eb0fb51a4f8c48294346699dc09762ec183c48cb958cbdacda52a127a9c8a5d42b9e21eedcb0f36a8652d7ce3f9ef002af80b02ba2391fee81f8b17394a8fa86d997af3b4fefb62a00be734251afe2835a46a9740b792a4835a4288c959027c470dd8509298412022db01f76755019e26235ecb44d33febe7d5972e0e3a210593581ba835cc8735926f23ead922f5456681a05ce65c14e56a4625fc22d430cebe0aa26ce16ed30b5da4bcfbdff12e5ecf448c664590a764b32db67d9681bb267fbd309b95e415203418e18bb6f48852abd87fa235248558a8b155db014c64902724e13eaaad653329f272
  • Auth tag (hex): 120ddabc9981db66f1c530e9f0609339

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