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

Club Fernando de La Mora vs Libertad Asuncion

Cup · Paraguay · 23 Sept 2026, 21:30 UTC

Final score
1 : 1
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
-2.15%
Model prob.
21.5%
Best price
5.00
Min odds
4.74
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)
4/3Lu8HeUvD9fRNBL+m1vAc3b8daRI1pdPSdeRfIwMpcVW3yuspzhrpwtvnx81t8bWgzTXgZsW+R+TBQEKRYTR7O8mQDjBJy+SA/vO1Njp5xf7Rcd/YV6YJXpL9+qBkQsviZt7pNUNVXCTVtnY7HJksZH6u4gcELpDeH4RkaBKcuo1gko3wokPj0p0bTyR8pB4DIIsae0pIgdh9Jt4Dckt6RacnSj33+98ZhHbTxQazgFy1DlyEVVawAojbIDKF9xRbCew2ankg6uIxOwOYkMMZ+OSsb8Wm5/HYofyBq5c5GU/InQFOzVQYuWQaX9PNmGtB7HW/f1YXfi7OVM4Bn
key fingerprint sha256: 9f2b285071ec64adb6e241360e58b714b4dbb66e158d2a0bae1cad20de0d948b
Decrypt it & read the pick
Decryption key (released after the match)
69ecdf25c79647256f64dbebc744b133d8f15c05db45db380dffdcb2b24615a0
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 F12 → Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("4/3Lu8HeUvD9fRNBL+m1vAc3b8daRI1pdPSdeRfIwMpcVW3yuspzhrpwtvnx81t8bWgzTXgZsW+R+TBQEKRYTR7O8mQDjBJy+SA/vO1Njp5xf7Rcd/YV6YJXpL9+qBkQsviZt7pNUNVXCTVtnY7HJksZH6u4gcELpDeH4RkaBKcuo1gko3wokPj0p0bTyR8pB4DIIsae0pIgdh9Jt4Dckt6RacnSj33+98ZhHbTxQazgFy1DlyEVVawAojbIDKF9xRbCew2ankg6uIxOwOYkMMZ+OSsb8Wm5/HYofyBq5c5GU/InQFOzVQYuWQaX9PNmGtB7HW/f1YXfi7OVM4Bn"), c => c.charCodeAt(0));
const key  = Uint8Array.from("69ecdf25c79647256f64dbebc744b133d8f15c05db45db380dffdcb2b24615a0".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).split("\n")[0]));

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): 69ecdf25c79647256f64dbebc744b133d8f15c05db45db380dffdcb2b24615a0
  • IV / nonce (hex): e3fdcbbbc1de52f0fd7d1341
  • Ciphertext (hex): 2fe9b5bc07376fc75a448d6974f49d7917c8c0ca5c556df2baca7386ba70b6f9f1f35b7c6d68334d7819b16f91f9305010a4584d1ecef264038c1272f9203fbced4d8e9e717fb45c77f615e98257a4bf7ea81910b2f899b7ba4d50d55709356d9d8ec7264b191fabb881c10ba43787e1191a04a72ea35824a37c2890f8f4a746d3c91f290780c822c69ed29220761f49b780dc92de9169c9d28f7dfef7c6611db4f141ace0172d4397211555ac00a236c80ca17dc516c27b0d9a9e483ab88c4ec0e62430c67e392b1bf169b9fc76287f206ae5ce4653f2274053b355062e590697f4f3
  • Auth tag (hex): 661ad07b1d6fdfd585df8bb395338067

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

The pick is the first line of the decrypted text. Records sealed from 24 September 2026 are followed by a line break and spaces up to a fixed size, so every encrypted pick has the same length and its size reveals nothing about the selection before the key is published. The commitment hash is sha256(first line + key), exactly as before.

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