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

Gorila do Universo vs Artilheiros

Primeira Division · Macau · 24 Jul 2026, 13:00 UTC

Final score
3 : 1
Result
Won
Pick
Gorila do Universo
Market
1x2
Model prob.
66.4%
Best price
1.77
Min odds
1.60
Stake factor
2.40

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)
A99muXH3IawAbKYJ7rpHTSpaX1m58B1JXh90xFYxkueo8JqTLSpLYGBL/lmOdKgmuurLeQ1LaRa02KFG3v0oyZr+JHzGtQVG0TAZDB4VnNFY2yxDVYa6DwJ1gv0yUVKKUEorKe1AdcLNX7t6BF33QPFbNTwd94bZrQlZZfN9yKUgYqIEhl8GxBF0Ll9+EKms+JUnqHzw98zo8qRgQ8ZzY1wylE8BtfWFsVMTYGuBVgH2GJXyKeaCd7gkdwtFgsruk/fMwdsM2WRYLK4fXLR0QxvzVlBaK4ZLFNFfKW31fFxghBjVegzXPNzme5h1Inm7nlf3lSafdEJXd+uV+oeyKwEmT+qNC0bI8IKaDNzk74PjAA==
key fingerprint sha256: 063e9f7ba6b7ae8c8da93d4266e54cee88c3369b2d4c433fdd98282470a61618
Decrypt it & read the pick
Decryption key (released after the match)
a9928c1808e352f3466cd103c33aa159b268aca4194fb697baf6043ba49b67cb
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("A99muXH3IawAbKYJ7rpHTSpaX1m58B1JXh90xFYxkueo8JqTLSpLYGBL/lmOdKgmuurLeQ1LaRa02KFG3v0oyZr+JHzGtQVG0TAZDB4VnNFY2yxDVYa6DwJ1gv0yUVKKUEorKe1AdcLNX7t6BF33QPFbNTwd94bZrQlZZfN9yKUgYqIEhl8GxBF0Ll9+EKms+JUnqHzw98zo8qRgQ8ZzY1wylE8BtfWFsVMTYGuBVgH2GJXyKeaCd7gkdwtFgsruk/fMwdsM2WRYLK4fXLR0QxvzVlBaK4ZLFNFfKW31fFxghBjVegzXPNzme5h1Inm7nlf3lSafdEJXd+uV+oeyKwEmT+qNC0bI8IKaDNzk74PjAA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a9928c1808e352f3466cd103c33aa159b268aca4194fb697baf6043ba49b67cb".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): a9928c1808e352f3466cd103c33aa159b268aca4194fb697baf6043ba49b67cb
  • IV / nonce (hex): 03df66b971f721ac006ca609
  • Ciphertext (hex): eeba474d2a5a5f59b9f01d495e1f74c4563192e7a8f09a932d2a4b60604bfe598e74a826baeacb790d4b6916b4d8a146defd28c99afe247cc6b50546d130190c1e159cd158db2c435586ba0f027582fd3251528a504a2b29ed4075c2cd5fbb7a045df740f15b353c1df786d9ad095965f37dc8a52062a204865f06c411742e5f7e10a9acf89527a87cf0f7cce8f2a46043c673635c32944f01b5f585b15313606b815601f61895f229e68277b824770b4582caee93f7ccc1db0cd964582cae1f5cb474431bf356505a2b864b14d15f296df57c5c608418d57a0cd73cdce67b98752279bb9e57f795269f74425777eb95fa87b22b0126
  • Auth tag (hex): 4fea8d0b46c8f0829a0cdce4ef83e300

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