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

Petrocub vs Dacia-Buiucani

Super Liga · Moldova · 28 Jun 2026, 17:00 UTC

Final score
2 : 1
Result
Won
Pick
Petrocub
Market
1x2
Model prob.
80.9%
Best price
1.36
Min odds
1.30
Stake factor
1.80

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)
CdFTptb5CfNudUGCaxsOgNWKYAk7jqqRh9ZFunslAK7FYr/eQG/+8WdOjveJUCJUCgXx4g7YMh6fD3woPm0tFl0fYDRosgLteQJK0snoQ7nab2r2YvRm+oXomQZ5Fxf08IzUnEwRwly9zKDnwQA0MmCacLoOl11ONZnZgbRhqTY+SaR6oiEvHJNGa7c4OSQGLdCJnHiL0+Ye/zeRLgrc3WOsHIyPIoylZYbrUvV7IouxtKDPvVWRg4QfYqKH3qQkE+mqhxi/9XhrMH15WI1Spp/jXANSpCvGqKc7aSIwTDgWJVRSuKjoGaWvuLNI9uaRpU+B/ZLc+912ffBvE2VepqNz/xrhgA==
key fingerprint sha256: 600dfcd867380276c990aa009b47b149dc5c30ef6cb334a2745b87dac43ef286
Decrypt it & read the pick
Decryption key (released after the match)
2ebaefa94cb589543ae7451067e2f264746d152bf3829b0aaca377ba27ba434b
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("CdFTptb5CfNudUGCaxsOgNWKYAk7jqqRh9ZFunslAK7FYr/eQG/+8WdOjveJUCJUCgXx4g7YMh6fD3woPm0tFl0fYDRosgLteQJK0snoQ7nab2r2YvRm+oXomQZ5Fxf08IzUnEwRwly9zKDnwQA0MmCacLoOl11ONZnZgbRhqTY+SaR6oiEvHJNGa7c4OSQGLdCJnHiL0+Ye/zeRLgrc3WOsHIyPIoylZYbrUvV7IouxtKDPvVWRg4QfYqKH3qQkE+mqhxi/9XhrMH15WI1Spp/jXANSpCvGqKc7aSIwTDgWJVRSuKjoGaWvuLNI9uaRpU+B/ZLc+912ffBvE2VepqNz/xrhgA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2ebaefa94cb589543ae7451067e2f264746d152bf3829b0aaca377ba27ba434b".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): 2ebaefa94cb589543ae7451067e2f264746d152bf3829b0aaca377ba27ba434b
  • IV / nonce (hex): 09d153a6d6f909f36e754182
  • Ciphertext (hex): 6b1b0e80d58a60093b8eaa9187d645ba7b2500aec562bfde406ffef1674e8ef7895022540a05f1e20ed8321e9f0f7c283e6d2d165d1f603468b202ed79024ad2c9e843b9da6f6af662f466fa85e89906791717f4f08cd49c4c11c25cbdcca0e7c1003432609a70ba0e975d4e3599d981b461a9363e49a47aa2212f1c93466bb7383924062dd0899c788bd3e61eff37912e0adcdd63ac1c8c8f228ca56586eb52f57b228bb1b4a0cfbd559183841f62a287dea42413e9aa8718bff5786b307d79588d52a69fe35c0352a42bc6a8a73b6922304c3816255452b8a8e819a5afb8b348f6e691a54f81fd92dc
  • Auth tag (hex): fbdd767df06f13655ea6a373ff1ae180

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