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

Benfica vs Villarreal

Club Friendlies 3 · World · 17 Jul 2026, 18:45 UTC

Final score
2 : 0
Result
Won
Pick
Benfica
Market
1x2
Model prob.
56.1%
Best price
2.04
Min odds
1.92
Stake factor
2.20

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)
Giz/WpW8TBkKhU+eDVG/mh4OK420tskRb0CkkLACYnIle+tmMVp9l29qj1S8Evw7DyW3eLF5JDprttqT+WS7lu/CYjZHEDnFZ5iipO3e/eKwT9aEem7K50CokOHYDcd6zNY6B+jVdlfcVRcKmDoWSa81x5mlqiZiW3RTQCJk73BNYTl1MVsYETjsaky5N1mtuw8v1lIylpNUFziZZYtK9nV8nsMISgNIC/ZciQ3aWYQRED+VAAImsrppBJ2bbgKQleU/E3ozL6/c+Oepz+BPWTjEQGs1V0Zdp5cB4FnsdNyegXwGZn/oTe1qIALZJggKHZPP6XAGKbJsgOa1g36OEz9hzhx32XDU
key fingerprint sha256: 3999ec9f9542ed3f7370c41f7acd8d7e48958758659efe85b4abffd41279153c
Decrypt it & read the pick
Decryption key (released after the match)
ecca6d18bad3d22b96165f2b02af075e2416f69d808ac0494ac56b043b8e0a87
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("Giz/WpW8TBkKhU+eDVG/mh4OK420tskRb0CkkLACYnIle+tmMVp9l29qj1S8Evw7DyW3eLF5JDprttqT+WS7lu/CYjZHEDnFZ5iipO3e/eKwT9aEem7K50CokOHYDcd6zNY6B+jVdlfcVRcKmDoWSa81x5mlqiZiW3RTQCJk73BNYTl1MVsYETjsaky5N1mtuw8v1lIylpNUFziZZYtK9nV8nsMISgNIC/ZciQ3aWYQRED+VAAImsrppBJ2bbgKQleU/E3ozL6/c+Oepz+BPWTjEQGs1V0Zdp5cB4FnsdNyegXwGZn/oTe1qIALZJggKHZPP6XAGKbJsgOa1g36OEz9hzhx32XDU"), c => c.charCodeAt(0));
const key  = Uint8Array.from("ecca6d18bad3d22b96165f2b02af075e2416f69d808ac0494ac56b043b8e0a87".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): ecca6d18bad3d22b96165f2b02af075e2416f69d808ac0494ac56b043b8e0a87
  • IV / nonce (hex): 1a2cff5a95bc4c190a854f9e
  • Ciphertext (hex): 0d51bf9a1e0e2b8db4b6c9116f40a490b0026272257beb66315a7d976f6a8f54bc12fc3b0f25b778b179243a6bb6da93f964bb96efc26236471039c56798a2a4eddefde2b04fd6847a6ecae740a890e1d80dc77accd63a07e8d57657dc55170a983a1649af35c799a5aa26625b7453402264ef704d613975315b181138ec6a4cb93759adbb0f2fd65232969354173899658b4af6757c9ec3084a03480bf65c890dda598411103f95000226b2ba69049d9b6e029095e53f137a332fafdcf8e7a9cfe04f5938c4406b3557465da79701e059ec74dc9e817c06667fe84ded6a2002d926080a1d93cfe9700629b2
  • Auth tag (hex): 6c80e6b5837e8e133f61ce1c77d970d4

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