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

Sportivo Ameliano vs Deportivo Recoleta

Division Profesional · Paraguay · 22 Aug 2026, 19:00 UTC

Final score
3 : 1
Result
Lost
Pick
Deportivo Recoleta
Market
1X2
CLV vs fair close
-3.83%
Model prob.
28.7%
Best price
3.70
Min odds
3.56
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)
d2wUKWH41vXgE7ANRy8M7iksuOVMRd/Ni1OUEmSEHbdJmk5iBsil4wU5VQQTMGXCfUBOQUEF1dKsvHEs93HOfDTUhYo3mND1wkX3cKAZwKHOtL6ouzB/G7+V3Ss4OKfTJli1qSLbijG8xqs2r9cHum8kvE+mRola9ND+qvsmM8q5+QIT6idi2FHGXKrjGIb4r4ZdSusM4l9Hw52DM3eHfliEr3o40hMHvHC+vvrOGG/FasgE5Tuk0NTqvOuxZh8ICJaokmYZVfVhq8djVlvPZEkCR7TDfDYZ0Hm65S+fSRfze5S9QYpybTbi9xpVq2vDpq9EYyGhtQ7zN3tZk/1+VRLaJtdd/oZK3nnKZDXoAdKtbg==
key fingerprint sha256: 7f2037077a00eba9c0f39384e3d1cd98b00f6d02bdc80d5f8e5e1c9cd66c0fdd
Decrypt it & read the pick
Decryption key (released after the match)
b540bbc93b29632ae27de5f48664f846f6d6568648cf02e50d2b47b8be8d668f
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("d2wUKWH41vXgE7ANRy8M7iksuOVMRd/Ni1OUEmSEHbdJmk5iBsil4wU5VQQTMGXCfUBOQUEF1dKsvHEs93HOfDTUhYo3mND1wkX3cKAZwKHOtL6ouzB/G7+V3Ss4OKfTJli1qSLbijG8xqs2r9cHum8kvE+mRola9ND+qvsmM8q5+QIT6idi2FHGXKrjGIb4r4ZdSusM4l9Hw52DM3eHfliEr3o40hMHvHC+vvrOGG/FasgE5Tuk0NTqvOuxZh8ICJaokmYZVfVhq8djVlvPZEkCR7TDfDYZ0Hm65S+fSRfze5S9QYpybTbi9xpVq2vDpq9EYyGhtQ7zN3tZk/1+VRLaJtdd/oZK3nnKZDXoAdKtbg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("b540bbc93b29632ae27de5f48664f846f6d6568648cf02e50d2b47b8be8d668f".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): b540bbc93b29632ae27de5f48664f846f6d6568648cf02e50d2b47b8be8d668f
  • IV / nonce (hex): 776c142961f8d6f5e013b00d
  • Ciphertext (hex): 472f0cee292cb8e54c45dfcd8b53941264841db7499a4e6206c8a5e305395504133065c27d404e414105d5d2acbc712cf771ce7c34d4858a3798d0f5c245f770a019c0a1ceb4bea8bb307f1bbf95dd2b3838a7d32658b5a922db8a31bcc6ab36afd707ba6f24bc4fa646895af4d0feaafb2633cab9f90213ea2762d851c65caae31886f8af865d4aeb0ce25f47c39d833377877e5884af7a38d21307bc70bebeface186fc56ac804e53ba4d0d4eabcebb1661f080896a892661955f561abc763565bcf64490247b4c37c3619d079bae52f9f4917f37b94bd418a726d36e2f71a55ab6bc3a6af446321a1b50ef3377b5993fd7e5512da
  • Auth tag (hex): 26d75dfe864ade79ca6435e801d2ad6e

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