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

Wiener Viktoria vs SV Wienerberg

Regionalliga Ost · Austria · 19 Sept 2026, 15:00 UTC

Final score
3 : 0
Result
Lost
Pick
Draw
Market
1X2
CLV vs fair close
+8.96%
Model prob.
18.5%
Best price
6.20
Min odds
5.51
Stake factor
1.00

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)
joWBlhmO0NWDx7w6xM7K7VH4pvGvpPdJU0GW3wWWIq0cgzC33Go4npMnWY+3zPKE1bmLfBgcWIhVkDuVg3zDsI0qM1Fx/ZrIHz5gP2mCy2qOfnljMOy/Y75ZR55AFJ8drKKfCx/8xP9Z/PzsCA8PtPwHxItdUUGtfdi9HtYGpdnr6gcxO/BG6rURwewcP0WwbxkDl01YHM/4Yb7TaHsYT3/Oz/Pq44GhlEFKfa9h2cdpUcutr489oI9LzfjtkBprF5tE/VhVLGKC1WP6QvPNmNmouck4W+Pwx9yZI3tosa2iIClc6uqOkzm8KTVrpXs3EXxVSJJ5UxQRcgnya/vp0po4iw78
key fingerprint sha256: eceb405bf4e9465c84cd7c9c5517e994fbeb238b73e91d16bafd7b588381dfe7
Decrypt it & read the pick
Decryption key (released after the match)
a3f6ec2aadf23eef921938b1200e1c6c473f97c54633031700fd1df7601dd5f1
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("joWBlhmO0NWDx7w6xM7K7VH4pvGvpPdJU0GW3wWWIq0cgzC33Go4npMnWY+3zPKE1bmLfBgcWIhVkDuVg3zDsI0qM1Fx/ZrIHz5gP2mCy2qOfnljMOy/Y75ZR55AFJ8drKKfCx/8xP9Z/PzsCA8PtPwHxItdUUGtfdi9HtYGpdnr6gcxO/BG6rURwewcP0WwbxkDl01YHM/4Yb7TaHsYT3/Oz/Pq44GhlEFKfa9h2cdpUcutr489oI9LzfjtkBprF5tE/VhVLGKC1WP6QvPNmNmouck4W+Pwx9yZI3tosa2iIClc6uqOkzm8KTVrpXs3EXxVSJJ5UxQRcgnya/vp0po4iw78"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a3f6ec2aadf23eef921938b1200e1c6c473f97c54633031700fd1df7601dd5f1".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): a3f6ec2aadf23eef921938b1200e1c6c473f97c54633031700fd1df7601dd5f1
  • IV / nonce (hex): 8e858196198ed0d583c7bc3a
  • Ciphertext (hex): c4cecaed51f8a6f1afa4f749534196df059622ad1c8330b7dc6a389e9327598fb7ccf284d5b98b7c181c588855903b95837cc3b08d2a335171fd9ac81f3e603f6982cb6a8e7e796330ecbf63be59479e40149f1daca29f0b1ffcc4ff59fcfcec080f0fb4fc07c48b5d5141ad7dd8bd1ed606a5d9ebea07313bf046eab511c1ec1c3f45b06f1903974d581ccff861bed3687b184f7fcecff3eae381a194414a7daf61d9c76951cbadaf8f3da08f4bcdf8ed901a6b179b44fd58552c6282d563fa42f3cd98d9a8b9c9385be3f0c7dc99237b68b1ada220295ceaea8e9339bc29356ba57b37117c554892
  • Auth tag (hex): 795314117209f26bfbe9d29a388b0efc

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