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

Giravanz Kitakyushu vs Gainare Tottori

J3 League · Japan · 12 Sept 2026, 09:00 UTC

Final score
2 : 4
Result
Lost
Pick
Giravanz Kitakyushu
Market
1X2
CLV vs fair close
+2.09%
Model prob.
42.9%
Best price
2.50
Min odds
2.38
Stake factor
1.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)
oaLRQVe3Cs1tkDpHW7jvcAptFI9WhkPyDQTumJqUgvZHjP3IR38uPBHthKt1gCdIgujR3ATMhIujo9SlXz+JfLewsNJzTLOyfJxPNgtDAZmNwIt9+xW/2wpVYC/fMfNIUK3yJ9MiPd4wX49CvCy04W/U75H8X8CYGHp5dgZcCKmAkafwMv456IKpJKAAiDbl46B+YTom49Y93L/Tu8GhnSBYjSkuuwYOaIrUaXlmMf4ZRb632i9XvtzBXT9dtllHOwpoxj/4Ds67INcZGa8iSbYOelVXkgVtA79ImfRkFE0gSPbDMGBnBmoPXY5Z0leHxJ/cUUkMJ71yHIOI/f8YL/B9Dc1/jqxCwwOinpvRAW023F126uQ=
key fingerprint sha256: 3fc8d35492d38ac02a666d8b5799076b883bc01af9dea4b0c1654692fc7787a9
Decrypt it & read the pick
Decryption key (released after the match)
bfea99bb9f7b6a6d75fad0bb17e13ec5a81e381dc85d05351fd9c7e3065b2e87
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("oaLRQVe3Cs1tkDpHW7jvcAptFI9WhkPyDQTumJqUgvZHjP3IR38uPBHthKt1gCdIgujR3ATMhIujo9SlXz+JfLewsNJzTLOyfJxPNgtDAZmNwIt9+xW/2wpVYC/fMfNIUK3yJ9MiPd4wX49CvCy04W/U75H8X8CYGHp5dgZcCKmAkafwMv456IKpJKAAiDbl46B+YTom49Y93L/Tu8GhnSBYjSkuuwYOaIrUaXlmMf4ZRb632i9XvtzBXT9dtllHOwpoxj/4Ds67INcZGa8iSbYOelVXkgVtA79ImfRkFE0gSPbDMGBnBmoPXY5Z0leHxJ/cUUkMJ71yHIOI/f8YL/B9Dc1/jqxCwwOinpvRAW023F126uQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("bfea99bb9f7b6a6d75fad0bb17e13ec5a81e381dc85d05351fd9c7e3065b2e87".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): bfea99bb9f7b6a6d75fad0bb17e13ec5a81e381dc85d05351fd9c7e3065b2e87
  • IV / nonce (hex): a1a2d14157b70acd6d903a47
  • Ciphertext (hex): 5bb8ef700a6d148f568643f20d04ee989a9482f6478cfdc8477f2e3c11ed84ab7580274882e8d1dc04cc848ba3a3d4a55f3f897cb7b0b0d2734cb3b27c9c4f360b4301998dc08b7dfb15bfdb0a55602fdf31f34850adf227d3223dde305f8f42bc2cb4e16fd4ef91fc5fc098187a7976065c08a98091a7f032fe39e882a924a0008836e5e3a07e613a26e3d63ddcbfd3bbc1a19d20588d292ebb060e688ad469796631fe1945beb7da2f57bedcc15d3f5db659473b0a68c63ff80ecebb20d71919af2249b60e7a555792056d03bf4899f464144d2048f6c3306067066a0f5d8e59d25787c49fdc51490c27bd721c8388fdff182ff07d0dcd7f8e
  • Auth tag (hex): ac42c303a29e9bd1016d36dc5d76eae4

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