From 1f30ff762daa9991500adf06fe81e4241cd49983 Mon Sep 17 00:00:00 2001
From: Andrew <realendermanch@gmail.com>
Date: Thu, 1 Jun 2023 19:47:07 +0300
Subject: [PATCH] Fix logic

---
 convert_keys_to_cpp.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/convert_keys_to_cpp.py b/convert_keys_to_cpp.py
index 2edf32c..e7b1449 100644
--- a/convert_keys_to_cpp.py
+++ b/convert_keys_to_cpp.py
@@ -14,9 +14,6 @@ with open('bink.h', 'w') as out:
 #ifndef WINDOWSXPKG_BINK_H
 #define WINDOWSXPKG_BINK_H
 
-std::unordered_map<std::string, std::unordered_map<int, std::string>> Products;
-std::unordered_map<std::string, ECDLP_Params> BINKData;
-
 struct ECDLP_Params {
     //         p,           a,           b
     std::tuple<std::string, std::string, std::string> E;
@@ -31,6 +28,9 @@ struct ECDLP_Params {
     std::string k;
 };
 
+std::unordered_map<std::string, std::unordered_map<int, std::string>> Products;
+std::unordered_map<std::string, ECDLP_Params> BINKData;
+
 struct ProductID {
     uint8_t SiteID;
     uint16_t Serial;