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

Club Portugalete vs Gimnastica de Torrelavega

Club Friendlies · International · 28 Aug 2026, 16:30 UTC

Final score
1 : 0
Result
Lost
Pick
Gimnastica de Torrelavega
Market
1X2
CLV vs fair close
-24.57%
Model prob.
43.9%
Best price
2.40
Min odds
2.33
Stake factor
1.20

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)
5gCAYZitVvH/WsmLrFEM5SbO4PYZEqblJzc8jQBD2bLzhmTp93WDXa61bXLYX9/hZ4yejTWyLlW4ceZeGwvl506YBY8N11fb/8mo9lpnrvi4SqpdskHTf+019yMzuwyUr1vf1L33CRzN9IxSKBrnbofy8v6kjNTDi0/t76pm+hsu3cgLvVV/9FXkBk7zbmx0sVraiNrH0FU+H+jC64A3oqcMI4BQ98SaWlgyGeuQeriM1xT9fu58KYeVyaW6ySEM/sIzf7yyqFMkrawf5LCjZbxlnfmNY3DKrQ5y4uXoKEutdBY/Y16UDHbFkid+D8HDmQvyi30CIDiLFmiATvYHNWrgZCxa7kU9DLifCpAsXcVYQcEmINlSM1S+Xw==
key fingerprint sha256: 6e9123fb774a5a111105e2ca43de694b63bc6f228325d60183886ee1ef730575
Decrypt it & read the pick
Decryption key (released after the match)
ef57f9a0ec92f76ee146f263307f3acfa26cc60d56bf3840bef585a1ee358970
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("5gCAYZitVvH/WsmLrFEM5SbO4PYZEqblJzc8jQBD2bLzhmTp93WDXa61bXLYX9/hZ4yejTWyLlW4ceZeGwvl506YBY8N11fb/8mo9lpnrvi4SqpdskHTf+019yMzuwyUr1vf1L33CRzN9IxSKBrnbofy8v6kjNTDi0/t76pm+hsu3cgLvVV/9FXkBk7zbmx0sVraiNrH0FU+H+jC64A3oqcMI4BQ98SaWlgyGeuQeriM1xT9fu58KYeVyaW6ySEM/sIzf7yyqFMkrawf5LCjZbxlnfmNY3DKrQ5y4uXoKEutdBY/Y16UDHbFkid+D8HDmQvyi30CIDiLFmiATvYHNWrgZCxa7kU9DLifCpAsXcVYQcEmINlSM1S+Xw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ef57f9a0ec92f76ee146f263307f3acfa26cc60d56bf3840bef585a1ee358970".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): ef57f9a0ec92f76ee146f263307f3acfa26cc60d56bf3840bef585a1ee358970
  • IV / nonce (hex): e600806198ad56f1ff5ac98b
  • Ciphertext (hex): ac510ce526cee0f61912a6e527373c8d0043d9b2f38664e9f775835daeb56d72d85fdfe1678c9e8d35b22e55b871e65e1b0be5e74e98058f0dd757dbffc9a8f65a67aef8b84aaa5db241d37fed35f72333bb0c94af5bdfd4bdf7091ccdf48c52281ae76e87f2f2fea48cd4c38b4fedefaa66fa1b2eddc80bbd557ff455e4064ef36e6c74b15ada88dac7d0553e1fe8c2eb8037a2a70c238050f7c49a5a583219eb907ab88cd714fd7eee7c298795c9a5bac9210cfec2337fbcb2a85324adac1fe4b0a365bc659df98d6370caad0e72e2e5e8284bad74163f635e940c76c592277e0fc1c3990bf28b7d0220388b1668804ef607356ae0642c5aee453d0cb89f
  • Auth tag (hex): 0a902c5dc55841c12620d9523354be5f

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