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

Metaloglobus vs Metalul Buzău

Liga 2 · Romania · 01 Aug 2026, 08:00 UTC

Final score
0 : 0
Result
Lost
Pick
Metalul Buzău
Market
1x2
Model prob.
38.5%
Best price
3.09
Min odds
2.90
Stake factor
2.60

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)
t9Tt8K4rUnhzhKgnLJxU7Pq/nUnmC526urXhIhE8BqRAwCHqkYZeqp3AeSV/j6JOyAVIn0UwBlaxUpbcHvnv9Grjh7GXve6+wb1C/01dI5h2o9e8S4B3j6uSBkG4WwJSCIlOGi5EwsLa59bDpJtBs5ZOINQfsMp3mjnzcAVPAHvtqsMVnkcdzyHN+aI4nWZMLhVUHNUdVgcvQI4LuApWfiqQirqx++kyl/WGJ/VzeNP/ijl/4J5v8exiAGOnOqEZ2qWZjbw15awwUw9wxyajCJQT1/4gU6+0UDItbflg9vNy8/xIVOQVYwcxaFm0FgK8gpdyhswYNMbzzZm+mBgWls0t3SOJdBPU9z4rOSk=
key fingerprint sha256: 482d6633ecc30d5c6a89d2098efff0eb9f4728a3f6db838ebaab7a73902d802b
Decrypt it & read the pick
Decryption key (released after the match)
c6107b65771e74e3e2f9cd20e03f4ead23d82e2a28809b1eaeb6f1d87cbf510a
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("t9Tt8K4rUnhzhKgnLJxU7Pq/nUnmC526urXhIhE8BqRAwCHqkYZeqp3AeSV/j6JOyAVIn0UwBlaxUpbcHvnv9Grjh7GXve6+wb1C/01dI5h2o9e8S4B3j6uSBkG4WwJSCIlOGi5EwsLa59bDpJtBs5ZOINQfsMp3mjnzcAVPAHvtqsMVnkcdzyHN+aI4nWZMLhVUHNUdVgcvQI4LuApWfiqQirqx++kyl/WGJ/VzeNP/ijl/4J5v8exiAGOnOqEZ2qWZjbw15awwUw9wxyajCJQT1/4gU6+0UDItbflg9vNy8/xIVOQVYwcxaFm0FgK8gpdyhswYNMbzzZm+mBgWls0t3SOJdBPU9z4rOSk="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c6107b65771e74e3e2f9cd20e03f4ead23d82e2a28809b1eaeb6f1d87cbf510a".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): c6107b65771e74e3e2f9cd20e03f4ead23d82e2a28809b1eaeb6f1d87cbf510a
  • IV / nonce (hex): b7d4edf0ae2b52787384a827
  • Ciphertext (hex): 2c9c54ecfabf9d49e60b9dbabab5e122113c06a440c021ea91865eaa9dc079257f8fa24ec805489f45300656b15296dc1ef9eff46ae387b197bdeebec1bd42ff4d5d239876a3d7bc4b80778fab920641b85b025208894e1a2e44c2c2dae7d6c3a49b41b3964e20d41fb0ca779a39f370054f007bedaac3159e471dcf21cdf9a2389d664c2e15541cd51d56072f408e0bb80a567e2a908abab1fbe93297f58627f57378d3ff8a397fe09e6ff1ec620063a73aa119daa5998dbc35e5ac30530f70c726a3089413d7fe2053afb450322d6df960f6f372f3fc4854e4156307316859b41602bc82977286cc1834c6f3cd99be98
  • Auth tag (hex): 181696cd2ddd23897413d4f73e2b3929

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