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

Atletico Grau vs FBC Melgar

Liga 1 · Peru · 31 Aug 2026, 20:00 UTC

Final score
0 : 0
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
+6.25%
Model prob.
33.5%
Best price
3.20
Min odds
3.04
Stake factor
1.10

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)
on/gQ+qCj0pAmnoysuCbdIAkqUc2n8jbp+bWcI7oSsGqnCyWEt8Zc1seGPP2sM4fXNj6PcboAFhMjiCeP9qcMWUj2T8J5h8viQJhsivhEgozLFJIDr/CfFHUkLd1SNXJjyQ9CQIj1YqkQb8X61vd+DEULr8JDnjDu513vQjbqqGNrgB53WANs0bXgrlMSagYvwbdOkgX5PM3S0anvIiFYfa7yYjbyD87uQPvfa+S4h48urKi3RoZjD7mNZrUTYhIRYxHN38D2eCSzKWODQfg1k8Enns8YqkgqkvkgnWR6dK4wv1PKrfJW2Zy+I++RXHL4sMpMn6vGExMSVQCrCVaSYwU6q9EFQ==
key fingerprint sha256: 884dce2d65e330bc861c3ef1cd9c81030e63f5f9f2628541a29fae052b5b9e41
Decrypt it & read the pick
Decryption key (released after the match)
71741f5f5006704ea8554d858316a4271889826d1b5426704c0b8c09ef45a0cd
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("on/gQ+qCj0pAmnoysuCbdIAkqUc2n8jbp+bWcI7oSsGqnCyWEt8Zc1seGPP2sM4fXNj6PcboAFhMjiCeP9qcMWUj2T8J5h8viQJhsivhEgozLFJIDr/CfFHUkLd1SNXJjyQ9CQIj1YqkQb8X61vd+DEULr8JDnjDu513vQjbqqGNrgB53WANs0bXgrlMSagYvwbdOkgX5PM3S0anvIiFYfa7yYjbyD87uQPvfa+S4h48urKi3RoZjD7mNZrUTYhIRYxHN38D2eCSzKWODQfg1k8Enns8YqkgqkvkgnWR6dK4wv1PKrfJW2Zy+I++RXHL4sMpMn6vGExMSVQCrCVaSYwU6q9EFQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("71741f5f5006704ea8554d858316a4271889826d1b5426704c0b8c09ef45a0cd".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): 71741f5f5006704ea8554d858316a4271889826d1b5426704c0b8c09ef45a0cd
  • IV / nonce (hex): a27fe043ea828f4a409a7a32
  • Ciphertext (hex): b2e09b748024a947369fc8dba7e6d6708ee84ac1aa9c2c9612df19735b1e18f3f6b0ce1f5cd8fa3dc6e800584c8e209e3fda9c316523d93f09e61f2f890261b22be1120a332c52480ebfc27c51d490b77548d5c98f243d090223d58aa441bf17eb5bddf831142ebf090e78c3bb9d77bd08dbaaa18dae0079dd600db346d782b94c49a818bf06dd3a4817e4f3374b46a7bc888561f6bbc988dbc83f3bb903ef7daf92e21e3cbab2a2dd1a198c3ee6359ad44d8848458c47377f03d9e092cca58e0d07e0d64f049e7b3c62a920aa4be4827591e9d2b8c2fd4f2ab7c95b6672f88fbe4571cbe2c329327eaf
  • Auth tag (hex): 184c4c495402ac255a498c14eaaf4415

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