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

Estudiantes de Buenos Aires vs Racing de Córdoba

Primera B Nacional · Argentina · 05 Jul 2026, 18:00 UTC

Final score
1 : 1
Result
Lost
Pick
Estudiantes de Buenos Aires
Market
1x2
Model prob.
52.1%
Best price
2.19
Min odds
2.08
Stake factor
2.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)
KeV6MxSXRbW9FbPo3vu83CnQC5GC7YoA+D828XyBSo02XWZqN/2WAZgOkTaxfgf0Z2qGAJQEb2HNHjGRydgEuMd44EFGaXxw92LTXJC+2LRc3bpZa1C+uo2CjFUrm1jfCw29yt1oX3vGjMGIOlT+Gn16IQ9I4gPTxbB45dVjNgdoaRWDjzSU3bKg1YH5z02JACbWxuze/xtSDoaNkymx5Yu609eKVxl5FPb11IrztgAmqzpQ3mDGHPiZmhsM6mct1aNj93iOQ90KPNOPuOqDYq54NtvX0A0t7f7BbgHttafNJEkltJCc7+wc6fA6ZyI15OwELbOwUQOvljaXoo2ndWMOqzrVu3TW3ic9YBccWheCu+8YKmlfc14xPKI=
key fingerprint sha256: 9a4239a2bc953c89228ce78ef3c05067e1d495b4dabd41d649f571b0b843d8a5
Decrypt it & read the pick
Decryption key (released after the match)
27047507e7890c8ba936f058d734c9e824dcbcea31a53b830801756e2bcdc547
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("KeV6MxSXRbW9FbPo3vu83CnQC5GC7YoA+D828XyBSo02XWZqN/2WAZgOkTaxfgf0Z2qGAJQEb2HNHjGRydgEuMd44EFGaXxw92LTXJC+2LRc3bpZa1C+uo2CjFUrm1jfCw29yt1oX3vGjMGIOlT+Gn16IQ9I4gPTxbB45dVjNgdoaRWDjzSU3bKg1YH5z02JACbWxuze/xtSDoaNkymx5Yu609eKVxl5FPb11IrztgAmqzpQ3mDGHPiZmhsM6mct1aNj93iOQ90KPNOPuOqDYq54NtvX0A0t7f7BbgHttafNJEkltJCc7+wc6fA6ZyI15OwELbOwUQOvljaXoo2ndWMOqzrVu3TW3ic9YBccWheCu+8YKmlfc14xPKI="), c => c.charCodeAt(0));
const key  = Uint8Array.from("27047507e7890c8ba936f058d734c9e824dcbcea31a53b830801756e2bcdc547".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): 27047507e7890c8ba936f058d734c9e824dcbcea31a53b830801756e2bcdc547
  • IV / nonce (hex): 29e57a33149745b5bd15b3e8
  • Ciphertext (hex): defbbcdc29d00b9182ed8a00f83f36f17c814a8d365d666a37fd9601980e9136b17e07f4676a860094046f61cd1e3191c9d804b8c778e04146697c70f762d35c90bed8b45cddba596b50beba8d828c552b9b58df0b0dbdcadd685f7bc68cc1883a54fe1a7d7a210f48e203d3c5b078e5d5633607686915838f3494ddb2a0d581f9cf4d890026d6c6ecdeff1b520e868d9329b1e58bbad3d78a57197914f6f5d48af3b60026ab3a50de60c61cf8999a1b0cea672dd5a363f7788e43dd0a3cd38fb8ea8362ae7836dbd7d00d2dedfec16e01edb5a7cd244925b4909cefec1ce9f03a672235e4ec042db3b05103af963697a28da775630eab3ad5bb74d6de273d60
  • Auth tag (hex): 171c5a1782bbef182a695f735e313ca2

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